@charset "UTF-8";
/* =========================================
共通変数
  ========================================= */
/* ピンク色 */
/* トップバーの薄い水色 */
/* コンテンツ幅 */
/* =========================================
  共通要素
  ========================================= */
body {
  font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
}

/* =========================================
  ヘッダー全体
  ========================================= */
.site-header {
  width: 100%;
  font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  /* -----------------------------------------
    1. トップバー（水色エリア）
    ----------------------------------------- */
  /* -----------------------------------------
    2. メインヘッダー（白エリア）
    ----------------------------------------- */
}
.site-header .header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .site-header .header-inner {
    padding: 0 8px;
  }
}
.site-header .header-top {
  background-color: #e3f6f5;
  padding: 8px 0;
  font-size: 12px;
  color: #333;
}
.site-header .header-top .header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .site-header .header-top .header-top-inner {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}
.site-header .header-top .header-desc {
  font-weight: bold;
}
.site-header .header-top .header-utility {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .site-header .header-top .header-utility {
    gap: 12px;
  }
}
.site-header .header-top .header-utility .utility-link {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.site-header .header-top .header-utility .utility-link:hover {
  opacity: 0.7;
}
.site-header .header-top .header-utility .utility-link i {
  color: #555;
}
.site-header .header-main {
  padding: 15px 0;
  /* ロゴ */
  /* 右側のエリア */
  /* 「求人情報をさがす」リンク */
  /* 問い合わせブロック */
  /* ピンクのボタン（相談受付中！） */
  /* 電話番号 */
}
@media (max-width: 768px) {
  .site-header .header-main {
    padding: 8px 0;
  }
}
.site-header .header-main .header-main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .site-header .header-main .header-main-inner {
    flex-direction: column-reverse;
    gap: 6px;
  }
}
@media (max-width: 768px) {
  .site-header .header-main .header-logo {
    width: 100%;
  }
}
.site-header .header-main .header-logo img {
  height: 54px;
  width: auto;
  display: block;
}
.site-header .header-main .header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .site-header .header-main .header-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 15px;
  }
}
.site-header .header-main .header-search-link {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #e87289;
}
@media (max-width: 768px) {
  .site-header .header-main .header-search-link {
    font-size: 12px;
  }
}
.site-header .header-main .header-search-link:hover {
  text-decoration: underline;
  color: #e87289;
}
.site-header .header-main .header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
@media (max-width: 768px) {
  .site-header .header-main .header-contact {
    align-items: center;
  }
}
.site-header .header-main .contact-status {
  width: 168px;
  text-align: center;
  background-color: #e87289;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.4;
  position: relative;
}
.site-header .header-main .contact-tel {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.05em;
  pointer-events: none;
}
@media (max-width: 768px) {
  .site-header .header-main .contact-tel {
    font-size: 14px;
  }
}
.site-header .header-main .contact-tel i {
  font-size: 20px;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .site-header .header-main .contact-tel i {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .site-header .header-main .contact-tel {
    pointer-events: auto;
  }
}

/* =========================================
フッター (Footer)
========================================= */
.site-footer {
  margin-top: 60px; /* コンテンツとの余白 */
  font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
  width: 100%;
  /* 共通のインナー幅設定 */
  /* -----------------------------------------
  1. 上段エリア (リンク)
    ----------------------------------------- */
  /* -----------------------------------------
  2. 下段エリア (コピーライト)
    ----------------------------------------- */
}
.site-footer .footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.site-footer .footer-top {
  background-color: #5f6d74; /* 画像のような青みがかったダークグレー */
  color: #fff;
  padding: 20px 0;
  font-size: 12px;
}
.site-footer .footer-top .footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* 中央揃え */
  flex-wrap: wrap; /* スマホで折り返し */
  /* スマホ対応: 縦並びにする場合 */
}
.site-footer .footer-top .footer-nav li {
  display: flex;
  align-items: center;
  /* 区切り線 (|) の設定 */
  /* 最後の項目の後ろには線をつけない */
}
.site-footer .footer-top .footer-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 0 10px; /* 文字の左右余白 */
  display: block;
}
.site-footer .footer-top .footer-nav li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.site-footer .footer-top .footer-nav li::after {
  content: "|";
  color: #fff;
  opacity: 0.6;
  font-size: 10px;
  margin-top: -1px; /* 微調整 */
}
.site-footer .footer-top .footer-nav li:last-child::after {
  content: none;
}
@media (max-width: 768px) {
  .site-footer .footer-top .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .site-footer .footer-top .footer-nav li::after {
    content: none; /* スマホでは線消す */
  }
  .site-footer .footer-top .footer-nav li a {
    padding: 5px;
  }
}
.site-footer .footer-bottom {
  background-color: #f2f2f2; /* 非常に薄いグレー */
  color: #333;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
}
.site-footer .footer-bottom .copyright {
  margin: 0;
}

/* =========================================
コラム一覧ページ
========================================= */
.a-column {
  /* =========================================
    コラム一覧エリア
    ========================================= */
  /* 記事アイテム */
  /* サムネイル画像 */
  /* テキストエリア */
  /* =========================================
    ページネーション
    ========================================= */
}
.a-column .mv-section {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .a-column .mv-section {
    margin-top: 20px;
  }
}
.a-column .mv-section .mv-inner {
  width: 100%;
  height: 110px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .a-column .mv-section .mv-inner {
    height: 72px;
  }
}
.a-column .mv-section .mv-inner .mv-title {
  font-size: 38px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .a-column .mv-section .mv-inner .mv-title {
    font-size: 24px;
  }
}
.a-column .mv-section .mv-inner img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.a-column .mv-section .mv-text {
  margin-top: 24px;
  line-height: 1.4;
  color: #3EA8B0;
}
@media (max-width: 768px) {
  .a-column .mv-section .mv-text {
    padding: 0 8px;
    font-size: 14px;
    margin-top: 18px;
  }
}
.a-column .column-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
}
@media (max-width: 768px) {
  .a-column .column-container {
    margin: 32px auto;
    padding: 0 8px;
  }
}
.a-column .column-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.a-column .column-item {
  border: 1px solid #eee;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.a-column .column-item:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.a-column .column-item .column-link {
  display: flex;
  text-decoration: none;
  color: #333;
  align-items: flex-start;
  padding: 12px;
}
.a-column .column-img {
  width: 300px;
  flex-shrink: 0;
}
.a-column .column-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .a-column .column-img img {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 768px) {
  .a-column .column-img {
    width: 90px;
  }
}
.a-column .column-body {
  padding: 12px 20px;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .a-column .column-body {
    padding: 4px 6px;
  }
}
.a-column .column-cat-label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.a-column .column-cat-label::before {
  content: "◆";
  margin-right: 5px;
}
.a-column .column-cat-label::after {
  content: "◆";
  margin-left: 5px;
}
@media (max-width: 768px) {
  .a-column .column-cat-label {
    font-size: 10px;
    margin-bottom: 4px;
  }
}
.a-column .column-title {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.5;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 768px) {
  .a-column .column-title {
    font-size: 12px;
    margin-bottom: 6px;
  }
}
.a-column .column-meta .column-info-01 .custom-box p {
  font-weight: bold;
  font-size: 14px;
}
@media (max-width: 768px) {
  .a-column .column-meta .column-info-01 .custom-box p {
    font-size: 10px;
  }
}
.a-column .column-meta .column-info-02 {
  margin-top: 16px;
  font-size: 12px;
  color: #888;
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .a-column .column-meta .column-info-02 {
    font-size: 10px;
    margin-top: 0;
  }
}
.a-column .pagination {
  margin-top: 40px;
  text-align: center;
}
.a-column .pagination .nav-links {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.a-column .pagination a, .a-column .pagination span {
  display: block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
}
.a-column .pagination a.current, .a-column .pagination span.current {
  background-color: #79d1c8;
  color: #fff;
  border-color: #79d1c8;
}
.a-column .pagination a:hover:not(.current), .a-column .pagination span:hover:not(.current) {
  background-color: #f5f5f5;
}

/* =========================================
詳細ページレイアウト (2カラム)
  ========================================= */
.s-column a {
  color: #0033cc;
}
.s-column .single-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  /* -----------------------------------------
  サイドバー (2つの記述を統合しました)
  ----------------------------------------- */
  /* -----------------------------------------
    メインコンテンツ
    ----------------------------------------- */
  /* 記事ヘッダー */
  /* -----------------------------------------
    記事本文 (WordPress出力コンテンツ)
    ----------------------------------------- */
  /* -----------------------------------------
    記事下 CTAエリア
    ----------------------------------------- */
}
@media (max-width: 768px) {
  .s-column .single-container {
    flex-direction: column-reverse; /* スマホではサイドバーを下に */
    gap: 30px;
    margin: 24px auto;
    padding: 0 8px;
  }
}
.s-column .single-container .sidebar {
  width: 260px;
  flex-shrink: 0;
  /* スティッキー設定 (PCのみ) */
  /* ウィジェット共通スタイル */
  /* カテゴリ等のタイトル */
  /* リスト（カテゴリ・最新記事） */
  /* 検索フォーム */
}
@media (min-width: 769px) {
  .s-column .single-container .sidebar {
    position: sticky;
    top: 50px;
  }
}
@media (max-width: 768px) {
  .s-column .single-container .sidebar {
    width: 100%;
  }
}
.s-column .single-container .sidebar .widget {
  margin-bottom: 30px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  /* 目次ウィジェット特有のデザイン */
}
.s-column .single-container .sidebar .widget.widget_toc {
  border-top: 3px solid #e87289;
}
.s-column .single-container .sidebar .widget.widget_toc .toc-list {
  list-style: none;
  padding: 0;
}
.s-column .single-container .sidebar .widget.widget_toc .toc-list li {
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
}
.s-column .single-container .sidebar .widget.widget_toc .toc-list li:last-child {
  border-bottom: none;
}
.s-column .single-container .sidebar .widget.widget_toc .toc-list li a {
  display: block;
  padding: 10px 5px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}
.s-column .single-container .sidebar .widget.widget_toc .toc-list li a:hover {
  background-color: #fff;
  color: #e87289;
  padding-left: 10px;
}
.s-column .single-container .sidebar .widget.widget_toc .toc-list li a::before {
  content: "▼";
  font-size: 10px;
  color: #ccc;
  margin-right: 5px;
}
.s-column .single-container .sidebar .widget-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #e87289;
  padding-bottom: 5px;
  display: inline-block;
}
@media (max-width: 768px) {
  .s-column .single-container .sidebar .widget-title {
    margin-bottom: 0px;
    text-align: center;
    display: block;
    border-bottom: none;
  }
}
.s-column .single-container .sidebar ul {
  list-style: none;
}
.s-column .single-container .sidebar ul li {
  margin-bottom: 10px;
}
.s-column .single-container .sidebar ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  display: block;
  padding: 5px 0;
  border-bottom: 1px dotted #ccc;
}
.s-column .single-container .sidebar ul li a:hover {
  color: #e87289;
}
.s-column .single-container .sidebar .search-form {
  display: flex;
}
.s-column .single-container .sidebar .search-form input[type=text] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
}
.s-column .single-container .sidebar .search-form button {
  background: #e87289;
  color: #fff;
  border: none;
  padding: 0 10px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
.s-column .single-container .main-content {
  flex-grow: 1;
  width: calc(100% - 300px); /* サイドバー分を引く */
  background: #fff;
}
@media (max-width: 768px) {
  .s-column .single-container .main-content {
    width: 100%;
  }
}
.s-column .single-container .column-title {
  font-size: 24px;
  color: #5bbfb6;
  font-weight: bold;
  margin-bottom: 24px;
}
.s-column .single-container .column-title span {
  font-weight: bold;
}
@media (max-width: 768px) {
  .s-column .single-container .column-title {
    font-size: 20px;
  }
}
.s-column .single-container .post-header {
  margin-bottom: 30px;
}
.s-column .single-container .post-header .post-cat-label {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.s-column .single-container .post-header .post-cat-label::before {
  content: "◆";
  margin-right: 5px;
}
.s-column .single-container .post-header .post-cat-label::after {
  content: "◆";
  margin-left: 5px;
}
.s-column .single-container .post-header .post-title_container {
  border-bottom: 1px solid #5bbfb6;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .s-column .single-container .post-header .post-title_container {
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
}
.s-column .single-container .post-header .post-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .s-column .single-container .post-header .post-title {
    font-size: 20px;
  }
}
.s-column .single-container .post-header .custom-box p {
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .s-column .single-container .post-header .custom-box p {
    font-size: 12px;
  }
}
.s-column .single-container .post-header .post-meta {
  font-size: 12px;
  color: #888;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.s-column .single-container .post-header .post-meta i {
  margin-right: 3px;
}
.s-column .single-container .post-header .post-tags {
  margin-top: 5px;
}
.s-column .single-container .post-header .post-tags .tag-item {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 10px;
  margin-right: 5px;
  font-size: 11px;
}
.s-column .single-container .post-thumbnail {
  margin-bottom: 30px;
}
.s-column .single-container .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.s-column .single-container .post-body {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  /* br自動挿入を隠す設定 */
  /* 見出し H2 */
  /* 見出し H3 */
  /* 画像配置クラス対応 */
}
.s-column .single-container .post-body br {
  display: none;
}
.s-column .single-container .post-body h2 {
  background-color: #e3f6f5;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 15px;
  margin: 40px 0 20px;
  border-radius: 4px;
  color: #333;
}
.s-column .single-container .post-body h3 {
  font-size: 17px;
  font-weight: bold;
  margin: 30px 0 15px;
  border-left: 5px solid #e87289;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .s-column .single-container .post-body p {
    font-size: 14px;
  }
}
.s-column .single-container .post-body img {
  max-width: 100%;
  height: auto;
  margin: 20px 0 6px;
  display: block;
}
.s-column .single-container .post-body img.aligncenter {
  margin: 0 auto;
}
.s-column .single-container .post-body img.alignleft {
  float: left;
  margin-right: 1.5em;
}
.s-column .single-container .post-body img.alignright {
  float: right;
  margin-left: 1.5em;
}
.s-column .single-container .post-body ul, .s-column .single-container .post-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.s-column .single-container .post-cta-area {
  margin-top: 40px;
  background-color: #f9f9f9;
  padding: 30px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #eee;
}
.s-column .single-container .post-cta-area .cta-text {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: bold;
}
.s-column .single-container .post-cta-area .cta-btn {
  display: inline-block;
  background-color: #e87289;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 0px;
  width: 100%;
  max-width: 220px;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.3s;
  box-shadow: 0 3px 0 rgb(224.8475609756, 70.1524390244, 100.3048780488);
}
.s-column .single-container .post-cta-area .cta-btn:hover {
  opacity: 0.9;
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgb(224.8475609756, 70.1524390244, 100.3048780488);
}
.s-column .single-container .post-back {
  margin-top: 60px;
}
.s-column .single-container .post-back a {
  padding: 14px 0;
  margin: 0 auto;
  border-radius: 5px;
  width: 160px;
  background: #9ED5D1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================================
ユーティリティクラス
========================================= */
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */