@charset "UTF-8";
body,
div,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
blockquote {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "Meiryo", "メイリオ", "Outfit", "Noto Sans JP", "Yu Gothic UI", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  overflow-wrap: break-word;
  color: #333;
  overflow-x: hidden;
}

address,
cite,
code,
dfn,
h1,
h2,
h3,
h4,
th,
var {
  font-style: normal;
  font-weight: normal;
}

fieldset,
abbr {
  border: 0;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

img {
  border: none;
  vertical-align: bottom;
}

a:link {
  color: #253a6e;
  text-decoration: underline;
}

a:hover {
  color: #cc0000;
  text-decoration: underline;
}

.alignleft {
  float: left;
  font-size: 0.9em;
  color: #333;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.alignright {
  float: right;
  font-size: 0.9em;
  color: #333;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 30px;
}

.aligncenter {
  text-align: center !important;
  margin: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 15px;
  padding-left: 0px;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-mac \*/
.clearfix {
  display: block;
}

/* End hide from IE-mac */
.clear {
  clear: both;
  margin: 0px;
  padding: 0px;
}

.header {
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  /* ハンバーガーボタン */
  /* 3本線を描画 */
  /* 開いた状態で「×」に変形 */
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}
.header__logo img {
  height: 55px;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__right a {
  color: #fff;
  text-decoration: none;
}
.header__tel {
  height: 40px;
}
.header__btn {
  display: inline-block;
  background: #3d8be4;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
  white-space: nowrap;
}
.header__btn:hover {
  background: #2873c8;
}
.header__menu-btn {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
.header__menu-icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  z-index: 200;
}
.header__menu-icon::before, .header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__menu-icon::before {
  top: -8px;
}
.header__menu-icon::after {
  top: 8px;
}
.header__menu-btn.active .header__menu-icon {
  background: transparent;
}
.header__menu-btn.active .header__menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.header__menu-btn.active .header__menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ====== nav (PC用) ====== */
.nav__list {
  display: flex;
  gap: 24px;
  list-style: none;
  white-space: nowrap;
}
.nav__item a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav__item a:hover {
  color: #3d8be4;
}

/* ====== ドロワーメニュー ====== */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s;
  z-index: 90;
  padding-top: 80px;
}
.drawer.is-open {
  right: 0;
}
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 30px;
  list-style: none;
}
.drawer__item a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.drawer__item a:hover {
  color: #3d8be4;
}

/* ====== レスポンシブ ====== */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .header__btn {
    display: none;
  }
  .header__menu-btn {
    display: block;
  }
  .header__inner {
    padding: 10px 16px;
  }
  .header__logo img {
    height: 32px;
  }
  .header__tel {
    height: 32px;
  }
  .header__right {
    gap: 10px;
  }
}
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1200/450;
  /* ← この1行で比率固定 */
  overflow: hidden;
  background: #000;
  /* 読み込み時の背景 */
}
.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  /* 比率を保ちながら全体表示 */
  display: block;
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero .icons {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 300px;
}
@media (max-width: 768px) {
  .hero .icons {
    max-width: 100px;
  }
}
.hero .icons img {
  width: 100%;
  opacity: 95%;
}

.section-business {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
  color: #111;
}
.section-business__inner {
  max-width: 800px;
  margin: 0 auto;
}
.section-business__title {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 8px;
  letter-spacing: 0.05em;
}
.section-business__subtitle {
  color: #204b8c;
  font-size: 24px;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 40px;
}
.section-business__body {
  font-size: 15px;
  line-height: 2;
  color: #222;
}
.section-business__body p {
  margin-bottom: 20px;
}
.section-business__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-business {
    padding: 60px 16px;
  }
  .section-business__title {
    font-size: 22px;
  }
  .section-business__subtitle {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .section-business__body {
    font-size: 14px;
    line-height: 1.9;
  }
}
.section-service {
  background: #4b8adf;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.section-service__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-service__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 6px;
}
.section-service__subtitle {
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

/* --- 各段 --- */
.service-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.service-row:last-child {
  margin-bottom: 0;
}

.service-card {
  opacity: 0;
  transform: translateY(30px);
}

/* --- カード共通 --- */
.service-card {
  background: #fff;
  color: #111;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.service-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card__title {
  font-size: 18px;
  font-weight: bold;
  color: #4b8adf;
  margin-bottom: 10px;
}
.service-card__text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-card a {
  color: #fff;
  text-decoration: none;
}
.service-card__link {
  display: inline-block;
  margin-left: auto;
  margin-top: 12px;
  background: #4b8adf;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 18px 8px 24px;
  border-radius: 4px;
  position: relative;
  transition: background 0.3s ease, transform 0.2s ease;
}
.service-card__link::after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
}
.service-card__link:hover {
  background: #3680f7;
  transform: translateY(-2px);
}

/* --- 縦レイアウト（上段） --- */
.service-card--vertical {
  text-align: center;
}

.service-card--vertical .service-card__img img {
  height: 220px;
}

/* --- 横レイアウト（中段・下段） --- */
.service-card--horizontal {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

/* ここが重要：画像比率 */
.service-card--horizontal .service-card__img {
  flex: 0 0 30%;
  /* ← 40%から30%に変更して画像を小さく */
}

.service-card--horizontal .service-card__body {
  flex: 1;
  text-align: left;
}

/* --- レスポンシブ --- */
@media (max-width: 980px) {
  .service-row {
    flex-direction: column;
  }
  .service-card--horizontal {
    flex-direction: column;
  }
  .service-card--horizontal .service-card__img img {
    height: 200px;
  }
  .service-card--horizontal .service-card__body {
    text-align: center;
  }
}
.section-info {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.section-info a {
  text-decoration: none;
}
.section-info__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-info__header {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}
.section-info__title {
  font-size: 36px;
  font-weight: bold;
  color: #000;
}
.section-info__subtitle {
  font-size: 18px;
  color: #3a7bd5;
}
.section-info__list {
  list-style: none;
}
.section-info__item {
  border-bottom: 1px solid #ccc;
}
.section-info__link {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  text-decoration: none;
  color: #000;
  transition: background 0.3s;
}
.section-info__link:hover {
  background: #f5f5f5;
}
.section-info__date {
  color: #4b8adf;
  font-size: 14px;
  margin-right: 15px;
  white-space: nowrap;
}
.section-info__text {
  font-size: 16px;
  text-align: left;
}
.section-info__btn-wrap {
  margin-top: 30px;
  text-align: center;
}
.section-info__btn-wrap a {
  color: #fff;
}
.section-info__btn {
  display: inline-block;
  background: #4b8adf;
  color: #fff;
  padding: 12px 40px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: background 0.3s;
}
.section-info__btn:after {
  margin-left: 8px;
  font-size: 16px;
}
.section-info__btn:hover {
  background: #2462b5;
}

.section-contact {
  /* 全幅で左=白 / 右=青 を固定 */
  background: linear-gradient(to right, #fff 0%, #fff 50%, #2e8bd3 50%, #2e8bd3 100%);
  color: #fff;
}
@media (max-width: 768px) {
  .section-contact {
    background: #2e8bd3;
  }
}
.section-contact__inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 280px;
}
@media (max-width: 768px) {
  .section-contact__inner {
    display: block;
    background-color: #2e8bd3;
    height: 100%;
  }
}
.section-contact__img {
  width: 50%;
  height: 100%;
}
@media (max-width: 768px) {
  .section-contact__img {
    width: 100%;
  }
}
.section-contact__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-contact__content {
  width: 50%;
  text-align: center;
}
@media (max-width: 768px) {
  .section-contact__content {
    width: 95%;
    margin: 0 auto;
    padding: 20px 0;
  }
}
.section-contact__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
.section-contact__text {
  font-size: 18px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section-contact__text {
    font-size: 16px;
  }
}
.section-contact a {
  text-decoration: none;
  color: #fff;
}
.section-contact__btn {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  padding: 12px 40px;
  font-weight: bold;
  position: relative;
  transition: all 0.3s;
}
.section-contact__btn:hover {
  background: #fff;
  color: #2e8bd3;
}

.section-recruit {
  /* 全幅で左=青 / 右=白 を固定 */
  background: linear-gradient(to right, #2e8bd3 0%, #2e8bd3 50%, #fff 50%, #fff 100%);
  color: #fff;
}
.section-recruit a {
  text-decoration: none;
  color: #fff;
}
@media (max-width: 768px) {
  .section-recruit {
    background: #2e8bd3;
  }
}
.section-recruit__inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 280px;
}
@media (max-width: 768px) {
  .section-recruit__inner {
    display: flex;
    flex-direction: column-reverse;
    /* ← スマホ時は画像が上 */
    background-color: #2e8bd3;
    height: 100%;
  }
}
.section-recruit__content {
  width: 50%;
  text-align: center;
}
@media (max-width: 768px) {
  .section-recruit__content {
    width: 95%;
    margin: 0 auto;
    padding: 20px 0;
  }
}
.section-recruit__img {
  width: 50%;
  height: 100%;
}
@media (max-width: 768px) {
  .section-recruit__img {
    width: 100%;
    height: 200px;
  }
}
.section-recruit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.section-recruit__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
.section-recruit__text {
  font-size: 18px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section-recruit__text {
    font-size: 16px;
  }
}
.section-recruit__btn {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  padding: 12px 40px;
  font-weight: bold;
  position: relative;
  transition: all 0.3s;
}
.section-recruit__btn:hover {
  background: #fff;
  color: #2e8bd3;
}

.footer {
  background: #1871b7;
  color: #fff;
  padding: 40px 0;
  font-size: 14px;
}
.footer .copy {
  font-size: 10px;
  text-align: center;
  margin: 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__left {
  width: 45%;
}
@media (max-width: 768px) {
  .footer__left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer__logo img {
  width: 320px;
  display: block;
  margin-bottom: 20px;
}
.footer a {
  text-decoration: none;
  color: #fff;
}
.footer__btn {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 40px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}
.footer__btn:after {
  content: "›";
  margin-left: 8px;
}
.footer__btn:hover {
  background: #fff;
  color: #2e8bd3;
}
.footer__tel {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 15px;
}
.footer__tel span {
  font-size: 13px;
}
.footer__right {
  width: 60%;
}
@media (max-width: 768px) {
  .footer__right {
    width: 100%;
  }
}
.footer__nav {
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.footer__links li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer__links li a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer__links {
    justify-content: center;
  }
}
.footer__services-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.footer__service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.footer__service-list li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer__service-list li a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer__service-list {
    justify-content: center;
  }
}

.page-hero {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-hero {
    height: auto;
  }
}
.page-hero__inner {
  display: flex;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .page-hero__inner {
    flex-direction: column;
    height: auto;
  }
}
.page-hero__left {
  position: relative;
  width: 50%;
  background: #2e8bd3;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  z-index: 2;
}
@media (max-width: 768px) {
  .page-hero__left {
    width: 100%;
    clip-path: none;
    padding: 40px 0;
  }
}
.page-hero__right {
  width: 50%;
  position: relative;
  margin-left: -5%;
  z-index: 1;
}
.page-hero__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .page-hero__right {
    width: 100%;
    margin-left: 0;
  }
}
.page-hero__en {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.page-hero__title {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
}
@media (max-width: 768px) {
  .page-hero__title {
    font-size: 28px;
  }
}

.breadcrumb {
  background: #f8f8f8;
  padding: 12px 0;
}
.breadcrumb__list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #555;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #aaa;
}
.breadcrumb__item--current {
  color: #2e8bd3;
  font-weight: bold;
}
.breadcrumb__link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb__link:hover {
  color: #2e8bd3;
}

.entry-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 1.8;
  color: #333;
  font-size: 16px;
  /* --------------------------------
     見出し階層の明確化
  -------------------------------- */
  /* 以下は共通要素（p, ul, table, etc.） */
}
@media (max-width: 768px) {
  .entry-content {
    font-size: 15px;
    line-height: 1.7;
    margin: 40px auto;
    padding: 0 15px;
  }
}
.entry-content h1 {
  font-size: 36px;
  font-weight: 700;
  color: #2e8bd3;
  margin: 0 0 1.2em 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .entry-content h1 {
    font-size: 26px;
    padding-left: 12px;
  }
}
.entry-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2e8bd3;
  border-left: 6px solid #2e8bd3;
  padding-left: 14px;
  margin: 2.5em 0 1em;
  line-height: 1.4;
  background: #f8faff;
}
@media (max-width: 768px) {
  .entry-content h2 {
    font-size: 22px;
    padding-left: 10px;
  }
}
.entry-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  border-bottom: 2px solid #2e8bd3;
  padding-bottom: 6px;
  margin: 2em 0 1em;
}
@media (max-width: 768px) {
  .entry-content h3 {
    font-size: 18px;
  }
}
.entry-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #444;
  position: relative;
  padding-left: 1.2em;
  margin: 1.8em 0 1em;
}
.entry-content h4::before {
  content: "◆";
  color: #2e8bd3;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .entry-content h4 {
    font-size: 16px;
  }
}
.entry-content p {
  margin-bottom: 1.6em;
}
.entry-content ul,
.entry-content ol {
  margin: 1em 0 1.5em 1.8em;
  padding: 0;
}
@media (max-width: 768px) {
  .entry-content ul,
  .entry-content ol {
    margin-left: 1.4em;
  }
}
.entry-content ul li {
  list-style: disc;
  margin-bottom: 0.4em;
}
.entry-content ol li {
  list-style: decimal;
  margin-bottom: 0.4em;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
  margin: 2em 0;
  font-size: 15px;
  background-color: #fff;
}
.entry-content table th,
.entry-content table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  text-align: left;
  vertical-align: middle;
}
.entry-content table th {
  background: #f4f8fc;
  color: #1e63d3;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .entry-content table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }
  .entry-content table th,
  .entry-content table td {
    padding: 10px 12px;
    font-size: 14px;
  }
}
.entry-content a {
  color: #1e63d3;
  text-decoration: underline;
  transition: 0.3s;
}
.entry-content a:hover {
  opacity: 0.7;
}
.entry-content blockquote {
  margin: 2em 0;
  padding: 1.2em 1.5em;
  background: #f8faff;
  border-left: 4px solid #1e63d3;
  font-style: italic;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  margin: 2em 0;
  display: block;
  border-radius: 4px;
}
.entry-content strong {
  color: #1e63d3;
  font-weight: bold;
}

.section-archive {
  background: #fff;
  padding: 30px 0;
}
.section-archive__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.archive-card {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.archive-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.archive-card a {
  color: #fff;
  text-decoration: none;
}
.archive-card__img {
  width: 40%;
}
.archive-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.archive-card__content {
  width: 60%;
}
.archive-card__title {
  font-size: 22px;
  font-weight: bold;
  color: #002147;
  border-left: 4px solid #2e8bd3;
  padding-left: 12px;
  margin-bottom: 20px;
}
.archive-card__text {
  line-height: 1.8;
  margin-bottom: 25px;
}
.archive-card__btn {
  display: inline-block;
  background: #2e8bd3;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  transition: all 0.3s;
  border: 1px solid #2e8bd3;
  font-weight: bold;
}
.archive-card__btn:hover {
  background: #fff;
  color: #2e8bd3;
}
@media (max-width: 768px) {
  .archive-card {
    flex-direction: column;
    gap: 20px;
  }
  .archive-card__img, .archive-card__content {
    width: 100%;
  }
  .archive-card__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .archive-card__btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

.archive {
  background: #fff;
  color: #0b2b4a;
  line-height: 1.8;
  font-size: 16px;
}
.archive__inner {
  max-width: 1100px;
  padding: 40px 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}
.archive__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.archive__sidebar {
  border-left: 1px solid #ccc;
  padding-left: 24px;
}
.archive__sidebar-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  border-bottom: 1px solid #0b2b4a;
  padding-bottom: 4px;
}
@media screen and (max-width: 1024px) {
  .archive__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .archive__sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #ccc;
    padding-top: 24px;
  }
}

/* 投稿リスト */
.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 32px;
}

.post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  border-top: 1px solid #d7e1ec;
  padding-top: 24px;
}
.post-card:first-child {
  border-top: none;
  padding-top: 0;
}
.post-card__media {
  display: block;
  overflow: hidden;
}
.post-card__img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.post-card__media:hover .post-card__img {
  transform: scale(1.03);
}
.post-card__body {
  display: grid;
  gap: 10px;
}
.post-card__date {
  font-size: 13px;
  color: #5a7896;
  letter-spacing: 0.04em;
}
.post-card__heading {
  font-size: 20px;
  margin: 0;
  line-height: 1.5;
}
.post-card__heading a {
  color: #0b2b4a;
}
.post-card__link {
  text-decoration: none;
  color: #0b2b4a;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.post-card__link:hover {
  color: #0a4f9a;
  border-bottom-color: #0a4f9a;
}
.post-card__excerpt {
  font-size: 15px;
  color: #333;
}
.post-card__button {
  display: block !important;
  background: #0a4f9a;
  color: #fff !important;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 3px;
  font-size: 14px;
  transition: background 0.3s ease;
  width: 100px;
  text-align: center;
}
.post-card__button:hover {
  background: #083a75;
}
@media screen and (max-width: 640px) {
  .post-card {
    grid-template-columns: 1fr;
  }
}

/* 月別リスト */
.archive-months__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  border-bottom: none;
}

.archive-months__item {
  border-bottom: 1px solid #ccc;
}

.archive-months__link {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  text-decoration: none;
  color: #0b2b4a;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
}
.archive-months__link:hover {
  background: #f3f6fa;
  color: #0a4f9a;
}

.archive-months__label {
  flex: 1;
}

.archive-months__count {
  color: #5a7896;
}

.wp-pagenavi {
  text-align: center;
  margin: 20px 0;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table th,
.contact-table td {
  padding: 12px;
  vertical-align: top;
  border-bottom: 1px solid #ddd;
}

.contact-table th {
  width: 25%;
  text-align: left;
  font-weight: bold;
}

.required {
  color: #c00;
  margin-left: 0.25em;
}

.input-text, .input-textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn-submit {
  display: block;
  margin: 20px auto 0;
  padding: 10px 40px;
  background-color: #c23d34;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}/*# sourceMappingURL=common.css.map */