@charset "utf-8";
/*-------------------------------------------
main
-------------------------------------------*/
.main {
  padding-top: 0;
  align-items: center;
}

.title {
  height: 310px;
  background-image: url(../images/concept/concept_bg.jpg);
  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 #4b2c14;
 }

 .title h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: bold;
 }

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

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

  .memory h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    padding: 0.6em;
    color: #7b6459;
    background: -webkit-repeating-linear-gradient(-45deg, #fff5df, #fff5df 4px,#ffe4b1 3px, #ffe4b1 8px);
    background: repeating-linear-gradient(-45deg, #fff5df, #fff5df 4px,#ffe4b1 3px, #ffe4b1 8px);
    border-radius: 7px;
  }

  .memory img {
    width: 360px;
  }
  
  .memory-text {
    max-width: 500px;
    margin-right: 40px;
  }

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

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

  .memory-text p {
    font-size: 15px;
    line-height: 28px;
    margin-top: 10px;
  }

  .movie {
    width: 930px;
    max-width: 90%;
    background-color: #fcf6d9;
    padding: 50px 60px;
    margin: 55px auto;
  }

  .movie h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
  }

  .movie iframe {
    display: block;
    width: 100%;
    height: 456px;
    margin-top: 30px;
  }

  .movie p {
    font-size: 15px;
    line-height: 20px;
    margin-top: 20px;
  }

@media (max-width: 800px) {
  .memory {
    display: block;
    width: 500px;
    margin-top: 45px;
  }
  .memory-text {
    margin-right: 0;
  }

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

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

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

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

  .movie iframe {
    height: 240px;
  }

}

