@charset "utf-8";

.area__links {
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
}
@media screen and (min-width: 768px) {
  .area__links {
    width: fit-content;
    grid-template-columns: repeat(6, 1fr);
  }
}

.area__link {
  width: 100%;
  padding: 2px 20px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: #E0ECF5;
  position: relative;
}
@media screen and (min-width: 768px) {
  .area__link {
    width: max-content;
  }
}
@media screen and (min-width: 1024px) {
  .area__link {
    width: 158px;
    padding: 16px 20px;
  }
}

.area__link p {
  color: #09305B;
}
.area__link:hover {
  background: #09305B;
}
.area__link:hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 7px;
  background: #377FC5;
  top: 0;
  left: 0;
}
.area__link:hover p {
  color: #fff;
}

@media screen and (min-width: 768px) {
.area__inner {
  padding: 0 50px !important;
}
}

.area__wrap {
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.area__item {
  display: flex;
  flex-direction: column;
  gap: 60px;
  background: #E0ECF5;
  border-radius: 10px;
  padding: 40px 20px;
}
@media screen and (min-width: 1000px) {
  .area__item {   
    padding: 120px 60px 95px 80px;
  }
}
.area__item:nth-of-type(2n) {
  background: #fff;
}

.area__item-top {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 1000px) {
  .area__item-top {   
    flex-direction: row;
    gap: min(calc(101 / 1366 * 100vw), 101px);
    align-items: start;
  }
}

.c2541.ff-serif {
  font-size: 35px !important;
  line-height: 35px !important;
}
@media screen and (min-width: 1150px) {
  .c2541.ff-serif {
    font-size: 49px !important;
    line-height: 49px !important;
  }
}

.area__box-title {
  display: flex;
  align-items: center;
  gap: 9px;
}
.area__box-title::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2372BF;
  flex-shrink: 0;
}


.area__box-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 1100px) {
  .area__box-wrap {  
    grid-template-columns: repeat(3, 1fr);
  }
}

.area__item-top-img {
  aspect-ratio: 522 / 480;
  width: min(100%, 522px);
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .area__item-top-img {  
    width: min(calc(522 / 1366 * 100vw), 522px);
  }
}

.area__item-bottom-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #C9DCEA;
}
.area__item-bottom-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2372BF;
  flex-shrink: 0;
}

.c12168 {
  width: fit-content;
}