@charset "utf-8";

/* --------------------
.layout-main
-------------------- */
.layout-main {
  background-color: #f8fafb;
  margin: 0;
  padding: 0;
  font-feature-settings: "palt";
  overflow-wrap: break-word;
  letter-spacing: 0.01em;
}

.section {
  padding-top: 72px;
  margin-bottom: 0;
}

.section .sub-section {
  margin-bottom: 0;
}


/* --------------------
.hero.lower
-------------------- */

.hero.lower {
  width: 100%;
  height: 200px;
  background: linear-gradient(240deg, #21c2c0 0%, #004ec4 80%) fixed;
}

.hero.lower .area {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  min-height: 200px;
  width: 960px;
  margin: 0 auto;
}

.hero.lower .area .maxheadline {
  padding: 0;
  margin-bottom: 20px;
  line-height: 1em;
}

.hero.lower .area .maxheadline .text {
  font-size: 32px;
  line-height: 1em;
  text-align: left;
  color: #fff;
  font-weight: bold;
  padding-bottom: 0;
}

.hero.lower .area .lead {
  font-size: 16px;
  line-height: 1.75em;
  margin-bottom: 0;
  color: #fff;
}

@media only screen and (max-width: 960px) {
  .hero.lower .area {
    width: auto;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 767px) {
  .hero.lower {
    height: 200px;
  }

  .hero.lower .area {
    width: auto;
    min-height: 200px;
  }
}

/* --------------------
.section,.item-list
-------------------- */
.section {
  padding: 80px 0 0 0;
}

.section .item-list {
  display: flex;
  align-items:stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  gap: 30px;
}

.section .item-list .item {
  width: calc((100% / 3) - 20px);
  margin-bottom: 50px;
}

.section .item-list .item .click-area {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 8px 16px rgba(193, 200, 222, 0.3);
}

.section .item-list .item .click-area:hover {
  text-decoration: none;
}

.section .item-list .item .click-area img {
  transition: all 0.2s ease-in-out;
}

.section .item-list .item .click-area:hover img {
  opacity: 0.6;
}

.section .item-list .label {
  padding: 20px 20px 4px 20px;
  display: block;
  font-size: 12px;
  color: #333;
}

.section .item-list .title {
  font-size: 16px;
  line-height: 1em;
  margin: 0;
  border: none;
  min-height: auto;
  background: none;
  display: block;
  padding: 0 20px 16px 20px;
}

.layout-main .section .item-list .title .text {
  font-size: 16px;
  line-height: 1.5em;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  margin: 0;
  padding: 0;
  border: none;
  transition: all 0.2s ease-in-out;
}

.layout-main .section .item-list .item .click-area:hover .title,
.layout-main .section .item-list .item .click-area:hover .title .text {
  color: #2D5FBD;
}

.layout-main .section .item-list .lead {
  padding: 0 20px 20px 20px;
  line-height: 1.75em;
  font-size: 14px;
}

@media only screen and (max-width: 960px) {
  .section .item-list {
    gap: 20px;
  }

  .section .item-list .item {
    width: calc((100% / 3) - 14px);
    min-height: auto;
  }

  .section .item-list .item .click-area {
    min-height: 30vw;
  }

  .section .item-list .item .click-area img {
    width: 100%;
  }

  .layout-main .section .item-list .title .text {
    font-size: 14px;
    line-height: 1.5em;
  }
}

@media only screen and (max-width: 767px) {
  .section .item-list {
    display: block;
  }

  .section .item-list .item {
    width: auto;
  }

  .layout-main .section .item-list .title .text {
    font-size: 16px;
    line-height: 1.75em;
  }
}