@charset "utf-8";

.first-view {
  height: calc(100vh - 110px);
  background-image: url(../images/index/bg-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;

}

.first-view-text {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-bottom: 80px;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 10px #0d015044;

}

.first-view-text h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 56px;
  line-height: 72px;

}

.first-view-text p {
  font-size: 20px;
  margin-top: 50px;

}

.lead {
  max-width: 1200px;
  margin: 60px auto;

}

.lead p {
  line-height: 3;
  text-align: center;

}

.link-button-area {
  text-align: center;
  margin-top: 40px;

}

.link-button {
  background-color: #007bbb;
  display: inline-block;
  min-width: 180px;
  line-height: 48px;
  border-radius: 24px;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;

}

.link-button:hover {
  background-color: #164a84;

}



/* レコメンド
============================
============================ */
.news {
  background-color: #abced8;
  padding-top: 45px;
  padding-bottom: 55px;

}

.news h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: #17184b;

}

.news h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;

}

.item-list {
  display: flex;
  padding: 40px 60px 10px 60px;
  overflow: scroll;
justify-content: space-between;
}

.item-list li {
  flex-shrink: 0;
  width: 260px;
  margin-left: 75px;

}

.item-list li:first-child {
  margin-left: 0;

}

.item-list dl {
  margin-top: 20px;

}

.item-list dt {
  font-weight: bold;
  color: #17184b;

}

.item-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
  color: #17184b;

}

.item-list .day {
  font-weight: bold;
  margin-top: 15px;
  color: #17184b;

}

.comment {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
}

.comment h3 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 200px;
  margin-bottom: 30px;

}

.comment p {
  line-height: 2;
}


/* スマホ版：画面幅800px以下
============================
============================ */
@media (max-width: 800px) {
  .first-view{
    height: calc(100vh - 50px);
    background-image: url(../images/index/bg-main-sp.jpg);
    align-items: flex-start;
  }

  .first-view-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 300px;
    padding-left: 0;
    text-align: center;
  }

  .first-view-text h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .first-view-text p {
    font-size: 14px;
    margin-top: 15px;
  }

  .lead {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lead p {
    font-size: 15px;
    text-align: center;

  }

  /* =====レコメンド===== */
  .item-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .item-list li {
    width: 220px;
    margin-left: 30px;
  }
}