@charset "UTF-8";

main {
  padding-top: 0;
}

/* タイトル */
.section-title {
  font-size: 15px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 30px;
}
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #c8c8c8;
  margin-left: 20px;
}

/* メインビジュアル */
.mv-area {
  position: relative;
}
.mv-area .slider {
  width: 100%;
  max-height: 100%;
  height: 100vh;
  line-height: 0;
  text-align: center;
}
.mv-area .slider .slider-item img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  font-family: 'object-fit: cover';
}
.mv-area .slider .slider-item {
  position: relative;
}
.mv-area .slider .slider-item::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
}
.mv-area .mv-text {
  color: #fff;
  font-family: "Cormorant", 'Noto Serif JP', 'YuMincho', 'Yu Mincho', serif;
  position: absolute;
  bottom: 12%;
  left: 6%;
  z-index: 10;
}
.mv-area .mv-text .main-text {
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.mv-area .mv-text .sub-text {
  font-size: 20px;
  line-height: 1.6;
}

.head-text {
  font-size: 14px;
  margin: 90px 0;
  line-height: 2.2;
  text-align: center;
}

/* ニュース */
.news .news-area {
  display: flex;
  align-items: center;
}
.news .news-area .img {
  width: 34%;
  max-width: 400px;
  margin-right: 10%;
  text-align: center;
}
.news .news-area .img img {
  max-width: 110px;
}
.news .news-area .news-detail {
  width: 56%;
}
.news .news-area .news-detail .link-text {
  text-align: center;
}
.news .news-area .news-detail .link-text a {
  font-size: 13px;
  text-decoration: underline;
}


@media screen and (max-width: 768px) {
  .mv-area .mv-text .main-text {
    font-size: 42px;
    margin-bottom: 15px;
  }
  .mv-area .mv-text .sub-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .head-text {
    margin: 40px 0 50px;
    text-align: justify;
  }

  /* ニュース */
  .news .news-area {
    flex-direction: column;
  }
  .news .news-area .img {
    display: none;
  }
  .news .news-area .news-detail {
    width: 100%;
  }
}