@charset "UTF-8";

/* 元サイトの内容は変更せず、案内2枠とニュース枠の配置だけを調整 */
.home-information-area {
  padding: 56px 20px;
  background: #f3f8fb;
}
.home-information-grid {
  width: min(1180px, calc(100% - 20px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(300px, .95fr);
  gap: 28px;
  align-items: stretch;
}
.home-primary-column {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto;
  gap: 28px;
}
.home-primary-column > .introduction,
.home-primary-column > .recruit-section {
  width: 100%;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0,61,102,.08);
}
.home-primary-column > .introduction {
  padding: 58px 0;
  background: #fff;
}
.home-primary-column > .recruit-section {
  padding: 52px 0;
}
.home-primary-column > .introduction .container,
.home-primary-column > .recruit-section .container {
  width: min(100% - 56px, 760px);
}

.latest-news-section {
  min-width: 0;
  padding: 42px 22px 28px;
  background: #F8FDF8;
  border: 1px solid #C9E5CB;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
  text-align: center;
}
.latest-news-inner { width: 100%; margin: 0 auto; }
.latest-news-heading {
  margin: 4px 0 8px;
  color: #063e65;
  font-size: clamp(23px, 2.25vw, 31px);
  line-height: 1.4;
}
.latest-news-intro {
  margin: 0 0 22px;
  color: #66737c;
  font-size: 13px;
  line-height: 1.7;
}
.latest-news-list {
  overflow: hidden;
  text-align: left;
  background: transparent;
}
.latest-news-item {
  display: block;
  padding: 14px 2px;
  border-bottom: 1px solid #dbe5eb;
  color: #24323c;
  transition: background .2s;
}
.latest-news-item:last-child { border-bottom: 0; }
.latest-news-item:hover { background: #f8fbfd; }
.latest-news-item time {
  display: block;
  margin: 0 0 2px;
  padding: 0;
  border: 0;
  color: #66737c;
  font-size: 12px;
  line-height: 1.4;
}
.latest-news-item > a {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  text-decoration: none;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.latest-news-item > a:hover { text-decoration: underline; }
.latest-news-title {
  font: inherit;
  font-weight: 400;
}
.latest-news-more { margin: 24px 0 0; }
.latest-news-more a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #00568f;
  border-radius: 6px;
  color: #00568f;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.latest-news-more a:hover { color: #fff; background: #00568f; }
.latest-news-empty { padding: 28px 8px; color: #66737c; text-align: center; }

@media (max-width: 900px) {
  .home-information-area { padding: 48px 20px; }
  .home-information-grid {
    width: min(100%, 760px);
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-primary-column { gap: 24px; }
  .latest-news-section { padding: 46px 24px 30px; }
  .latest-news-heading { font-size: 28px; }
}

@media (max-width: 680px) {
  .home-information-area { padding: 36px 14px; }
  .home-information-grid { width: 100%; gap: 18px; }
  .home-primary-column { gap: 18px; }
  .home-primary-column > .introduction { padding: 48px 0; }
  .home-primary-column > .recruit-section { padding: 46px 0; }
  .home-primary-column > .introduction .container,
  .home-primary-column > .recruit-section .container { width: calc(100% - 36px); }
  .latest-news-section { padding: 42px 18px 26px; }
  .latest-news-heading { font-size: 26px; }
  .latest-news-item { padding: 13px 1px; }
  .latest-news-item > a { font-size: 13.5px; }
}
