@charset "utf-8";


/*　全体設定
================================================================================*/
*, ::before, ::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #000000
}
img {
  max-width: 100%;
}



/*　ヘッダー設定
================================================================================*/
.main:hover +.header {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
  transition-duration: 0.3s;
}
.header {
  position: relative;
  opacity: 0;
}
.header:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
  transition-duration: 0.3s;
}
.header-inner {
  max-width: 1200px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.header-logo_english-menu {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.header-site-menu {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
}
.site-menu {
  width: 100%;
  color: #ffffff;
}
.site-menu ul {
  display: flex;
  justify-content: space-between;
}
.site-menu ul li{
  font-size: 18px;
}
.site-menu ul li::after {
  content: '';
  display: block;
  width: 120%;
  height: 2px;
  background-color:#93c80e;
  margin-top: 3px;
  margin-left: -10%;
  visibility: hidden;
}
.site-menu ul li:hover{
  color: #93c80e;
}
.site-menu ul li:hover:after {
  visibility: visible;
}



.movie iframe {
  display: block;
  width: 100vw;
  /* height: 100vh; */
  aspect-ratio: 16/9;
  margin-top: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}





/* ここからfooter */
/* .footer {
  height: 300px;
  background-color: #2C2E2C;
  color: #EBEBEB;
  margin-top: 100px;
}

.footer-inner {
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.footer-address_and_contact {
  margin-left: 50px;
  margin-top: 50px;
  width: 500px;
  text-align: left;
}

.footer-address_and_contact h4::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #EBEBEB;
  margin-top: 3px;
  margin-bottom: 8px;
}

.footer-address_and_contact p {
  line-height: 1.3;
}

.cooyright {
  font-size: 10px;
} */



