/* 共通
------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
/*--------------------------*/
body {
  font-family: "Lato", "Noto Sans JP", "Helvetica", "Helvetica Neue", "Yu Gothic", "Verdana", "Meiryo", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #414141;
}

a {
  text-decoration: none;
  color: #414141;
}

img {
  width: 100%;
  height: auto;
}
h4 {
  font-size: 20px;
}

h5 {
  font-size: 17px;
}

p {
  font-size: 15px;
}
.flex-box {
  display: flex;
}

.block-box {
  display: block;
}

/* main
------------------------------------------------------------*/
main {
  width: 90%;
  margin: 0 auto;
}

.large-category.red {
  color: #c30d23;
}

.large-category {
  font-size: 60px;
  margin: 200px 0 0px;
  text-align: center;
}

.large-category::before {
  content: "ムービー";
  font-size: 12px;
  color: #000;
  display: block;
}

.description {
  text-align: center;
  margin-top: 20px;
}
.youtube-logo {
  border-bottom: 1px solid #7e7e7e;
}
.youtube-logo img {
  width: 180px;
  margin-top: 100px;
}
.container {
  display: grid;
  gap: 10px;
  margin-top: 50px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.item {
  text-align: center;
  padding: 20px;
}
.youtube {
  max-width: 400px;
  margin: 0 auto;
}
.Y-title {
  margin: 10px 0;
}
.movie-description {
  font-size: 13px;
  letter-spacing: 1px;
}

iframe {
  width: 100%;
  height: 220px;
}
/* footer
------------------------------------------------------------*/
footer {
  background-color: #f5f5f5;
  margin-top: 100px;
  padding-top: 70px;
}

footer .copywrite {
  text-align: center;
  color: #fff;
  padding: 10px;
  background-color: #414141;
  font-size: 10px;
}

/* RESPONSIVE 設定
------------------------------------------------------------*/

/*---------●タブレット●----------*/
@media only screen and (max-width: 999px) {
  /*-----------共通------------*/

  body {
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 800px) {
}
@media only screen and (max-width: 700px) {
}
/*------●スマホ●-------*/
@media only screen and (max-width: 600px) {
  /*-------共通--------*/
  .container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .large-category {
    font-size: 40px;
  }
}
