@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;
}

@media screen and (min-width: 1600px) {
  .section {
    padding-top: 4.5vw;
  }
}

/* --------------------
.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 screen and (min-width: 1600px) {
  .hero.lower {
    height: 12.5vw;
  }

  .hero.lower .area {
    width: 60vw;
    min-height: 12.5vw;
  }

  .hero.lower .area .maxheadline .text {
    font-size: 2vw;
  }

  .hero.lower .area .lead {
    font-size: 1vw;
  }
}

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

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

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

  .hero.lower .area .maxheadline .text { 
    font-size: 24px;
    line-height: 1.2em;
  }

  .hero.lower .area .lead {
    font-size: 16px;
  }
}

/* --------------------
headline
-------------------- */
/* .headline  */
.headline {
  padding: 0;
  margin: 0;
  padding-bottom: 40px;
  background: none;
}

.headline .text {
  font-size: 40px;
  color: #333;
  display: block;
  text-align: center;
}

.headline .en {
  font-size: 16px;
  color: #2D5FBD;
  display: block;
  text-align: center;
}

.lead.center {
  text-align: center;
  padding-bottom: 40px;
  font-size: 16px;
}

/* .subheadline  */
.subheadline {
  padding: 0;
  margin: 0;
  padding-bottom: 80px;
  display: block;
}

.subheadline .text {
  display: block;
  text-align: center;
  font-size: 32px;
  position: relative;
}

.subheadline .text::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #2D5FBD;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 25px);
}

@media screen and (min-width: 1600px) {
  .headline {
    padding-bottom: 2.5vw;
  }

  .headline .text {
    font-size: 2.5vw;
  }

  .headline .en {
    font-size: 1vw;
  }

  .subheadline {
    padding-bottom: 5vw;
  }

  .subheadline .text {
    font-size: 1.5vw;
  }

  .subheadline .text::before {
    width: 3.125vw;
    left: calc(50% - 1.5625vw);
  }

  .lead.center {
    font-size: 1vw;
  }
}

@media screen and (max-width: 767px) {
  .headline .text {
    font-size: 32px;
  }

  .headline .en {
    font-size: 12px;
  }

  .subheadline .text {
    font-size: 24px;
  }

  .subheadline .text::before {
    bottom: -24px;
  }
}

/* --------------------
.section,.item-list
-------------------- */
.section .sub-section {
  padding-top: 60px;
  margin-top: -60px;
  padding-bottom: 60px;
}

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

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

.section .item-list .item .inner {
  min-height: auto;
  display: block;
  width: 100%;

  position: relative;
}

.section .item-list .item .inner .click-area {
  display: block;
  height: auto;
}

.section .item-list .item .inner .click-area .image img {
  transition: all 0.2s ease-in-out;
  max-width: 100%;
}

.section .item-list .item .inner .click-area .image:hover img {
  max-width: 110%;
  width: 110%;
}

.section .item-list .item .inner .image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 168px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d5dbdf;
  border-radius: 8px;
}

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

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

.layout-main .section .item-list .item .inner .click-area:hover .title .text {
  color: #333;
  text-decoration: underline;
}

.section .item-list .item .inner .more-link {
  display: block;
  width: calc(100% - 40px);
  height: auto;
  position: static;
}

.section .item-list .item .inner .more-link .click-area {
  position: relative;
  height: 28px;
  border: 1px solid #A5A5A5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 14px;
  transition: all 0.2s ease-in-out;
  width: 75%;
  margin: 0 auto;
}

.section .item-list .item .inner .more-link .click-area .text {
  font-size: 12px;
  color: #A5A5A5;
  transition: all 0.2s ease-in-out;
}

.section .item-list .item .inner .more-link .click-area:hover {
  border-color: #999;
  color: #333;
}

.section .item-list .item .inner .more-link .click-area:hover .text {
  text-decoration: none;
  color: #333;
}
.section .item-list .item .inner .more-link .click-area .text .fa {
  margin-left: 5px;
}

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

@media screen and (min-width: 1600px) {
  .section .item-list .item {
    margin-bottom: 4vw;
  }

  .section .item-list .item .inner .image {
    height: 10.5vw;
  }
}

@media 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 .inner {
    height: auto;
  }

  .section .item-list .item .inner .click-area {
    min-height: auto;
    height: auto;
  }

  .section .item-list .item .inner .click-area:hover .image img {
    max-width: 100%;
    width: 100%;
  }

  .section .item-list .item .inner .image {
    height: auto;
    overflow: visible;
  }

  .layout-main .section .item-list .title {
    padding: 20px 10px;
  }

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

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

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

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

  .section .item-list .item .inner {
    height: auto;
  }

  .section .item-list .item .inner .click-area {
    height: auto;
  }

  .section .item-list .item .inner .image {
    height: auto;
    display: block;
    overflow: visible;
  }

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

  .section .item-list .item .inner .more-link .click-area .text {
    font-size: 14px;
  }

  .section .item-list .item .inner .more-link {
    position: absolute;
    padding: 0 0 32px 0;
    display: block;
    bottom: 0;
  }

  .section .item-list .item .inner .more-link .click-area {
    min-height: 48px;
    width: 200px;
    border-radius: 24px;
  }
}


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

.layout-main .section .item-list .item.special-list .click-area:hover .lead {
  color: #333;
}

.section .item-list .item.special-list .inner {
  min-height: 440px;
}

.section .item-list .item.special-list .inner {
  box-shadow: 0 8px 16px rgba(193, 200, 222, 0.3);
}

.section .item-list .item.special-list .inner .image {
  border-radius: 8px 8px 0 0;
}

.section .item-list .item.special-list .inner {
  border-radius: 8px;
  position: relative;
}

.special-list .text-area {
  padding: 20px;
}

.special-list .text-area .title {
  padding: 0 0 16px 0;
}

.layout-main .section .item-list .special-list .text-area .title .text {
  font-size: 20px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.layout-main .section .item-list .special-list .text-area .title .text:hover {
  text-decoration: none;
}

.section .item-list .item.special-list .inner .lead {
  text-decoration: none;
  color: #777;
  padding-bottom: 0;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
}

.section .item-list .item.special-list .inner .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid #A5A5A5;
  height: 32px;
  margin: 0 20%;
  border-radius: 16px;
  position: absolute;
  padding: 0 32px;
  width: auto;
  bottom: 20px;
}

.section .item-list .item.special-list .inner .btn .text {
  transition: all 0.2s ease-in-out;
  color: #A5A5A5;
  font-size: 14px;
  line-height: 2;
}

.section .item-list .item.special-list .inner .btn .fa {
  transition: all 0.2s ease-in-out;
  font-size: 14px;
  padding-left: 12px;
  padding-bottom: 1px;
  color: #A5A5A5;
}

.section .item-list .item.special-list .inner .btn:hover,
.section .item-list .item.special-list .inner .btn:hover .text,
.section .item-list .item.special-list .inner .btn:hover .fa {
  color: #555;
}

.section .item-list .item.special-list .inner .image {
  height: 184px;
}

@media screen and (min-width: 1600px) {
  .section .item-list .item.special-list .inner {
    min-height: 26vw;
  }

  .section .item-list .item.special-list .inner .image {
    height: 11.5vw;
  }

  .layout-main .section .item-list .special-list .text-area .title {
    padding: 0.5vw 0;
  }

  .layout-main .section .item-list .special-list .text-area .title .text {
    font-size: 1.25vw;
    line-height: 1.5;
  }

  .layout-main .section .item-list .special-list .text-area {
    font-size: 1vw;
  }

  .section .item-list .item.special-list .inner .lead {
    font-size: 0.875vw;
  }

  .section .item-list .item.special-list .inner .btn {
    bottom: 1.25vw;
    padding: 0 2vw;
    height: 2vw;
    border-radius: 2vw;
  }

  .section .item-list .item.special-list .inner .btn .text {
    font-size: 0.875vw;
  }
}

@media screen and (max-width: 1100px) {
  .section .item-list .item.special-list .inner .image {
    height: auto;
  }

  .special-list .text-area {
    padding: 8px;
  }

  .layout-main .section .item-list .special-list .title {
    padding: 8px 0;
  }

  .section .item-list .item.special-list .inner {
    min-height: 50vw;
  }

  .section .item-list .item.special-list .inner .btn {
    margin: 0 5vw;
  }
}

@media screen and (max-width: 767px) {
  .section .item-list .item.special-list .inner {
    min-height: auto;
    height: auto;
  }

  .section .item-list .item.special-list .inner .btn {
    position: static;
    margin: 32px 20% 16px 20%;
  }
}