@charset "UTF-8";
/* MV */
.MV {
  position: relative;
  height: 1200px;
  background-image: url(../images/MV.png);
  background-size: cover;
  background-position: center left 20%;
}

.MV h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  font-size: 76px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.3;
  color: #656565;
}

.MV h1 span {
  font-size: 56px;
  color: #e6895a;
}

/* about */
.about {
  text-align: center;
  padding: 0 25px 50px;
}

.about h2 {
  margin-bottom: 50px;
}

.about p {
  margin-bottom: 50px;
  font-size: 22px;
  line-height: 1.9;
}

/* news */
.news {
  padding: 0 0 100px;
}

.news h2 {
  margin-bottom: 30px;
}

.news__card {
  font-weight: normal;
  margin-right: 20px;
}

.news__card img {
  width: 100%;
  margin-bottom: 10px;
}

.news__card .date {
  margin-bottom: 10px;
  font-size: 12px;
}

.news__card .title {
  font-size: 20px;
}

.news__card-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 90%;
  margin: 0 0 60px auto;
}

.news .slick-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -50px;
  width: 40px;
  height: 40px;
  background-color: #ffa375;
  border-radius: 50%;
}

.news .slick-arrow::before {
  font-family: unset;
  font-size: 23px;
}

.news #js-slider-1 .slick-list {
  padding: 0 15% 0 0 !important;
}

.news .slick-prev {
  left: unset;
  right: 100px;
}

.news .slick-prev::before {
  content: "" !important;
  width: 8px;
  height: 13px;
  background-image: url(../images/slide_arrow_l.png);
  background-size: cover;
}

.news .slick-next {
  right: 50px;
}

.news .slick-next:before {
  content: "" !important;
  width: 8px;
  height: 13px;
  background-image: url(../images/slide_arrow_r.png);
  background-size: cover;
}

.news__more {
  width: 360px;
  height: 80px;
  margin: 0 auto;
  line-height: 80px;
  text-align: center;
}

.news__more a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffa375;
  color: #fff;
}

/* flow */
.flow h2 {
  margin-bottom: 60px;
}

.flow__card {
  width: calc(100% / 2 - 160px / 2);
  margin: 0 40px 40px;
}

.flow__card .img {
  position: relative;
  margin-bottom: 20px;
}

.flow__card:nth-of-type(1) .img::after,
.flow__card:nth-of-type(3) .img::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 30px);
  content: "";
  width: 31px;
  height: 47px;
  background-image: url(../images/arrow.png);
}

.flow__card h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.flow__card h3 span {
  margin-right: 20px;
  padding: 2px 5px;
  font-size: 18px;
  background-color: #fff;
  border: solid 1px #d8c3b2;
  border-radius: 5px;
  color: #614848;
}

.flow__card p {
  font-size: 16px;
}

.flow__card small {
  display: block;
  margin-top: 20px;
  font-size: 13px;
}

.flow__card-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1050px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  /* MVスマホ */
  .MV {
    height: 550px;
    background-image: url(../images/MV_sp.png);
    background-position: bottom right 40%;
  }
  .MV h1 {
    left: 20px;
    font-size: 11vw;
    line-height: 1.5;
  }
  .MV h1 span {
    font-size: 9vw;
  }
  /* aboutスマホ */
  .about {
    text-align: center;
    padding: 30px 15px;
  }
  .about h2 {
    margin-bottom: 30px;
  }
  .about p {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.5;
  }
  /* newsスマホ */
  .news {
    padding: 30px 15px;
  }
  .news__card {
    margin-right: 10px;
  }
  .news__card .title {
    font-size: 14px;
  }
  .news__card-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: unset;
    margin: 0 auto 60px;
  }
  .news .slick-arrow {
    display: none !important;
  }
  .news #js-slider-1 .slick-list {
    padding: 0 10% !important;
  }
  .news__more {
    max-width: 360px;
    width: 100%;
    height: 50px;
    line-height: 50px;
  }
  /* flowスマホ */
  .flow {
    padding: 30px 15px;
  }
  .flow h2 {
    margin-bottom: 30px;
  }
  .flow__card {
    position: relative;
    width: 100%;
  }
  .flow__card:not(:last-of-type) {
    margin: 0 20px 65px;
  }
  .flow__card:not(:last-of-type):after {
    position: absolute;
    top: unset;
    bottom: -55px;
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
    width: 31px;
    height: 47px;
    content: "";
    background-image: url(../images/arrow.png);
  }
  .flow__card .img {
    margin-bottom: 10px;
  }
  .flow__card:nth-of-type(1) .img::after,
  .flow__card:nth-of-type(3) .img::after {
    display: none;
  }
  .flow__card h3 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .flow__card h3 span {
    margin-right: 10px;
    font-size: 14px;
  }
  .flow__card p {
    font-size: 14px;
  }
  .flow__card small {
    font-size: 12px;
  }
}
