@charset "utf-8";
/*=====  about =====*/
.about {
  width: 100vw;
  height: auto;
  padding: 80px 0 0;
  margin-bottom: 0;
}
.about_description {
  margin-top: 100px;
  padding: 0 20px;
  line-height: 2.4em;
  text-align: center;
}
.about_description p {
  margin-bottom: 20px;
}
.about_text {
  padding-top: 40px;
  text-align: left;
}
/* ループ */
.about_container {
  overflow: hidden;
  width: 100vw;
  height: 100px;
  margin-top: 100px;
}
.scroll-parent {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: inherit;
}
.scroll-child {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  left: 0%;
  top: 0%;
  width: inherit;
  height: inherit;
  color: #f9eaf0;
  font-size: 30px;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.scroll-child > div {
  font-size: 70px;
}
.scroll-child:nth-child(1) {
  animation-name: first;
}
.scroll-child:nth-child(2) {
  animation-name: second;
}
@keyframes first {
  from {
    left: 0%;
  }
  to {
    left: -100%;
  }
}
@keyframes second {
  from {
    left: 100%;
  }
  to {
    left: 0%;
  }
}
@media screen and (min-width: 768px) {
  .about {
    padding: 200px 0 0;
  }
  .about h2 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about_description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 2rem;
    line-height: 2em;
    margin-top: 100px;
  }
  .about_text {
    width: 100%;
    margin-bottom: 40px;
  }
  /* ループ */
  .about_container {
    height: 180px;
  }
  .scroll-child {
    font-size: 65px;
  }
}
/*=====  私たちの想い =====*/
#thought {
  background: rgb(102, 102, 102);
  background: radial-gradient(
      circle,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(3, 3, 3, 0.8) 65%,
      rgba(255, 255, 255, 1) 100%
    ),
    url("../images/about/thought.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 500px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px black;
}
#thought p {
  margin: 0;
  padding: 0;
}
.thought_title {
  margin-bottom: 40px;
}
#thought .thought_description {
  margin-bottom: 40px;
  font-size: 1.8rem;
  line-height: 2em;
}
@media screen and (min-width: 768px) {
  #thought {
    height: 100vh;
    padding: 100px 200px 0;
  }
  .thought_title {
    margin-bottom: 100px;
    font-size: 2rem;
  }
  #thought .thought_description {
    margin-bottom: 150px;
    font-size: 2.5rem;
    line-height: 3em;
  }
}
/*======== message ============*/
.message {
  padding: 0 20px;
}
.message_img img {
  width: 330px;
  padding: 60px 0;
}
.message_title {
  padding-bottom: 40px;
  font-size: 1.8rem;
}
.message_text {
  font-size: 1.4rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .message_container {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .message_img img {
    width: 700px;
  }
  .message_description {
    width: 700px;
    padding: 0 20px;
  }
  .message_title {
    padding-bottom: 80px;
    font-size: 2.2rem;
  }
  .message_text {
    font-size: 1.6rem;
    line-height: 2.4em;
    text-align: left;
  }
}
