@charset "utf-8";

.title {
  height: 400px;
  background-image: url(../images/concept/bg-main.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px  10px #131212;
}

.title h1 {
  font-family: 'Yuji Syuku', serif;
  font-size: 32px;
  font-weight: bold;
}

.title p {
  margin-top: 15px;
}

.feature {
  display: flex;
  justify-content: space-between;
  width: 930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;  
}

.feature img {
  width: 400px;
}

.feature-text {
  max-width: 550px;
  margin-right: 40px;
}

.reverse {
  flex-direction: row-reverse;
}

.reverse .feature-text {
  margin-left: 40px;
  margin-right: 0;
}

.feature-text h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
}

.feature-text h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
}

.feature-text p {
  font-size: 20px;
  line-height: 28px;
  margin-top: 25px;
}

.row {
  margin-top: 140px;
}

.highlighter {
  background: linear-gradient(transparent 50%, #a8a813 80%);
}

.row p a {
  font-weight: 600;
  font-style: italic;
  border-bottom: solid 1px #181716;
}

.footer {
  margin-top: 140px;
}

@media (max-width: 800px) {
  .title {
    height: 460px;
    background-image: url(../images/concept/bg-main-mobile.jpg);
  }

  .feature {
    display: block;
    width: 500px;
    margin-top: 45px;
  }

  .feature-text {
    margin-right: 0;
    margin-top: 70px;
  }

  .feature-text h2 {
    font-size: 19px;
  }

  .feature-text p {
    font-size: 17px;
    line-height: 2;
  }

  .reverse .feature-text {
    margin-left: 0;
  }

  .feature img {
    width: 100%;
    height: auto;
    margin-top: 25px;
  }

  .movie {
    width: 500px;
    padding: 30px 25px;
  }

  .movie iframe {
    height: 240px;
  }
}

