* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
}

:root {
  --text-Color: #fff;
  --point-Color: #bcaf68;
  --mainFont: toppan-bunkyu-mincho-pr6n, serif;
  --pointFont: toppan-bunkyu-midashi-min-st, serif;
}

html {
  font-size: 62.5%; /* 10px */
  scroll-behavior: smooth;
  background-color: #000;
}

body {
  font-family: var(--mainFont);
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--text-Color);
}

body:before{
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url("../img/bg.jpg") center no-repeat;
    background-size: cover;
}

@media screen and (max-width: 420px) {
body:before{
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url("../img/bg_sp.jpg") center no-repeat;
    background-size: cover;
}
}
.slide {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(100px);
}

.slide-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

img {
  width: 100%;
}

a img:hover {
  opacity: 0.9;
  transition: 0.3s;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

header {
  width: 100%;
}

.header__img {
  position: relative;
}

.logoimg {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 1s ease;
}

.logoimg.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.logo {
  width: 80%;
  max-width: 160px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -100%);
  margin-bottom: 0%;
}

@media screen and (min-width: 414px) {
  .logo {
    max-width: 165px;
  }
}

@media screen and (min-width: 769px) {
  .logo {
    max-width: 280px;
  }
}

@media screen and (min-width: 1000px) {
  .logo {
    width: 80%;
    max-width: 340px;
  }
}

@media screen and (min-width: 1200px) {
  .logo {
    width: 80%;
    max-width: 400px;
  }
}

main {
  width: 90%;
  margin: 0 auto;
}
/*--section--*/
section {
  margin: 0 auto;
  padding: 30px 0 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  section {
    width: 80%;
  }
}

.hr {
  width: 100%;
  margin: 90px auto 70px;
}

@media screen and (min-width: 768px) {
  .hr {
    width: 80%;
  }
}

.title {
  text-align: center;
  margin-bottom: 75px;
}

.title img {
  width: 90%;
  max-width: 420px;
}

@media screen and (min-width: 768px) {
  .title img {
    width: 80%;
    max-width: 643px;
  }
}

.movie {
  border: 5px solid var(--point-Color);
  height: auto;
  position: relative;
  display: block;
  overflow-x: hidden;
}

.movie img {
  vertical-align: bottom;
}

.movie a::before {
  background: url("../img/icon_play.png") center center / 80px 80px no-repeat;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  margin: -50px auto 0;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .movie a::before {
    background: url("../img/icon_play.png") center center / 100px 100px
      no-repeat;
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    margin: -80px auto 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
  }
}

.itemarea {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	gap:20px;
}

.item {
	width: calc((100% - 2 * 20px) / 2);
}

@media screen and (max-width: 768px) {
  .itemarea {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.item {
 width: calc((100% - 2 * 15px) / 2);
}
}

@media screen and (max-width: 420px) {
  .itemarea {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.item {
 width: calc((100% - 2 * 15px) / 2);
}
}

.more {
  font-family: var(--pointFont);
  font-weight: 900;
  font-style: normal;
  font-size: 3.6rem;
  text-align: center;
  color: var(--point-Color);
  margin: 15%;
}

@media screen and (max-width: 420px) {
  .more {
  font-size: 2.0rem;
}
}

footer {
  width: 100%;
  margin: 0 auto 1.5rem auto;
  text-align: center;
}

.footLogo {
  width: 120px;
  margin: 0 auto;
}

.footLogo img {
  width: 100%;
}

footer ul {
  margin: 10px 0 15px 0;
}

footer ul li {
  display: inline;
}

footer ul li img {
  width: 25px;
}

footer p {
  font-size: 0.8rem;
}

@media screen and (min-width: 768px) {
  .footLogo {
    width: 180px;
    margin: 0 auto;
  }

  footer ul li img {
    width: 32px;
  }
}
