@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF9800;
    text-decoration-color: rgba(29, 209, 176, 0.6);
}

.wp-core-ui .button, .wp-core-ui .button-secondary {
    color: #2271b1 !important;
    border-color: #2271b1 !important;
    background: #f6f7f7 !important;
    vertical-align: top !important;
}


.site-footer a {
    color: #fff;
}

.site-footer a:hover {
    color: #f9a825;
}

.footer {
  border-top: none;
}

.widget-area, .main, .content, .entry, .sidebar {
  border-bottom: none;
}


.pankuzu {
    max-width: 1200px;
    margin-inline: auto;
	color: #666;
}

.pankuzu a {
    color: #FFAA2A;
    text-decoration: none;
}

.pankuzu a:hover {
    text-decoration: underline;
}

/* ヘッダースタイル */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.header-top {
    padding: 10px 20px;
    background-color: #fffdfa;
	align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.site-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.job-search-header {
  max-width: 1000px;
  margin: 0 auto;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
	margin-bottom: 10px;
}


.home-fixed-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.home-fixed-footer-container {
    display: flex;
    width: 100%;
}

.home-footer-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
    position: relative;
}

.home-footer-button:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #f0f0f0;
}

.home-footer-button i {
    font-size: 20px;
    color: #1DD1B0 !important; 
    margin-bottom: 5px;
}

.home-footer-button span {
    font-size: 12px;
    font-weight: bold;
}

.home-footer-button:hover {
    background-color: #f9f9f9;
}


@media screen and (max-width: 768px) {
    .home-fixed-footer-bar {
        display: block;
    }
    
}


.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* モバイルメニューオーバーレイ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 900;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  overflow-y: auto;
  transition: all 0.3s ease;
  padding-top: 60px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-nav {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.mobile-menu-nav li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-nav li a {
  display: block;
  padding: 15px 20px;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.mobile-menu-nav li a:hover {
  background-color: #f9f9f9;
  color: #FF9234;
}

.mobile-user-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-user-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
}

.mobile-user-nav .login-btn {
  color: #333;
  background-color: #f5f5f5;
}

.mobile-user-nav .login-btn i {
  color: #FFBD59;
  margin-right: 8px;
}

.mobile-user-nav .register-btn {
  background-color: #1DD1B0;
  color: white;
}

.mobile-user-nav .login-btn:hover {
  background-color: #e5e5e5;
}

.mobile-user-nav .register-btn:hover {
  background-color: #19C0A0;
}



/* フッター */
.site-footer {
  background-color: #2c3454;
  color: #fff;
  padding: 50px 0 0;
  width: 100%;
  position: relative;
  margin: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

.footer-container {
    max-width:calc(100% - 300px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}
.region-title {
    font-size: 18px;
    font-weight: bold;
	color: #f9a825;
}

.region-links {
    font-size: 16px;
}

/* 左側セクション */
.footer-left {
  width: 20%;
  padding-right: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-info {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-btn {
  display: block;
  background-color: #f9a825;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.footer-btn:hover {
  background-color: #ff9234;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* 中央セクション */
.footer-center {
  width: 45%;
  padding: 0 20px;
}

/* 右側セクション */
.footer-right {
  width: 35%;
  padding-left: 20px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-bottom: 20px;
}
/* フッターを幅いっぱいにするCSS */
.copy-right {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.copy-right-container {
    width: 100%;
    padding: 0 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.copy-right-copyright p {
    margin: 0;
    font-size: 14px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .copy-right {
        padding: 15px 0;
    }
}



/* 検索カテゴリー */
.footer-search-group {
  margin-bottom: 30px;
}

.search-category {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #f9a825;
  border-radius: 50%;
  margin-right: 10px;
}

/* エリア検索 */
.search-container {
  background-color: #FFFFFF !important;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  margin-bottom: 100px;
  overflow: hidden;
}

/* ヘッダー部分 */

.search-header {
  background-color: rgb(255, 245, 230);
  color: #333;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.search-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.search-count {
  font-size: 14px;
  margin: 0;
}

#job-count {
  font-weight: 700;
  font-size: 16px;
}

/* 検索コンテンツ */
.search-content {
      padding: 10px 20px 30px 20px;
}

/* 検索フォーム */
.search-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 15px;
  margin-top: 20px;
}

.search-col {
  flex: 1;
  min-width: 200px;
}

.search-group {
  display: flex;
  flex-direction: column;
}

.search-label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
  font-size: 15px;
}

.label-icon {
  margin-right: 6px;
  color: #FFBD59;
}

/* 選択フィールド共通スタイル */
.selection-field {
  position: relative;
  cursor: pointer;
}

.selection-display {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  transition: all 0.2s ease;
  position: relative;
}

.selection-display:hover {
  border-color: #FFBD59;
}

.selection-display:after {
  content: "⌄";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #FFBD59;
  pointer-events: none;
}

.selection-placeholder {
  color: #999;
}

/* 特徴フィールド */
.feature-field {
  position: relative;
  cursor: pointer;
  margin-top: 10px;
}

.feature-selection-display {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  transition: all 0.2s ease;
  position: relative;
}

.feature-selection-display:hover {
  border-color: #FFBD59;
}

.feature-selection-display:after {
  content: "⌄";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #FFBD59;
  pointer-events: none;
}

.feature-placeholder {
  color: #999;
}

.selected-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.feature-tag {
  display: inline-block;
  padding: 4px 10px;
  background-color: #e7f4ff;
  border: 1px solid #cce5ff;
  border-radius: 20px;
  font-size: 13px;
  color: #FFBD59;
}

/* 検索ボタン */
.search-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.search-button {
  background-color: #FFBD59;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(255, 140, 0, 0.2);
}

.search-button:hover {
  background-color: #FFBD59;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
}

.detail-button {
  background-color: transparent;
  color: #FFBD59;
  border: 1px solid #FFBD59;
  border-radius: 50px;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.detail-button:hover {
  background-color: rgba(255, 165, 0, 0.1);
  transform: translateY(-2px);
}

/* 詳細検索セクション */
.detail-search-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.detail-heading-row {
  margin-bottom: 15px;
}

.detail-heading {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.feature-section {
  margin-top: 20px;
}

.feature-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* モーダル関連 */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 0;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

/* モーダルが表示される時のスタイル（JavaScriptで.activeクラスを追加） */
.modal-overlay.active {
  display: flex; /* アクティブ時のみflexレイアウトを適用 */
  align-items: center;
  justify-content: center;
}

.modal-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px; /* 横幅を800pxに拡大 */
  max-height: 80vh;
  margin: 60px auto 30px; /* 上部の余白を増やして下に配置 */
  overflow: hidden;
}

.modal-panel {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 100%;
}

.modal-header {
  background-color: #FFBD59;
  padding: 15px 20px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 25px; /* パディングを増やして内容に余裕を持たせる */
  max-height: 65vh;
  overflow-y: auto;
}

/* 選択グリッド共通スタイル */
.area-grid,
.prefecture-grid,
.city-grid,
.position-grid,
.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* 列の幅を広く */
  gap: 15px; /* 間隔を広げる */
  margin-bottom: 20px;
}

.city-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

/* 特徴カテゴリー見出し */
.feature-category-heading {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9ecef;
}



/* 選択ボタン共通スタイル */
.area-btn,
.prefecture-btn,
.city-btn,
.position-btn,
.selection-btn {
  padding: 12px 10px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
   font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.area-btn:hover,
.prefecture-btn:hover,
.city-btn:hover,
.position-btn:hover,
.selection-btn:hover {
  background-color: #fff4e5;
  border-color: #FFBD59;
  color: #FFBD59;
  transform: translateY(-2px);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}

/* 特徴選択グリッド */
.feature-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* 列の幅を広く */
  gap: 12px;
  margin-bottom: 25px;
}

.feature-checkbox-item {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  cursor: pointer;
  background-color: #f8f9fa;
  transition: all 0.2s ease;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.feature-checkbox-item:hover {
  background-color: #e9f7fe;
  border-color: #cce5ff;
}

.feature-checkbox {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}

.checkbox-label {
  font-size: 14px;
  color: #333;
}

/* モーダルアクション */
.modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.right-aligned {
  justify-content: flex-end;
}

.back-btn {
  background-color: transparent;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.back-btn i {
  margin-right: 5px;
}

.back-btn:hover {
  background-color: #f5f5f5;
  color: #333;
}

.select-area-btn,
.select-prefecture-btn,
.apply-btn {
  background-color: #FFBD59;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.select-area-btn:hover,
.select-prefecture-btn:hover,
.apply-btn:hover {
  background-color: #ff8c00;
  transform: translateY(-2px);
}

/* アニメーション */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-panel {
  animation: slideUp 0.3s ease forwards;
}

.modal-overlay {
  animation: fadeIn 0.3s ease forwards;
}

/* リスト */
.search-list {
  list-style: none;
  padding-left: 0;
  columns: 1;
}

.search-list li {
  margin-bottom: 5px;
  font-size: 14px;
}

/* 特徴リスト */
.search-features {
  display: flex;
  flex-wrap: wrap;
}

.feature-group {
  width: 50%;
  margin-bottom: 20px;
}

.featu-title {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 5px;
  font-size: 13px;
}

/* バナー */
.footer-banners {
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  max-width: 1200px;
  margin: 30px auto 0;
}

.footer-banner {
  width: 23%;
}

.footer-banner img {
  width: 100%;
}

/* レスポンシブ対応 */
@media screen and (max-width: 992px) {
  .footer-left,
  .footer-center,
  .footer-right {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .feature-group {
    width: 100%;
  }
  
  .footer-banners {
    flex-wrap: wrap;
  }
  
  .footer-banner {
    width: 48%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 576px) {
  .footer-banner {
    width: 100%;
  }
}

/* ナビゲーションスタイル */
nav {
    display: flex;
    align-items: center;
}

.main-nav {
    display: flex;
    list-style: none;
}

.main-nav li {
    position: relative;
    margin: 0 10px;
    display: flex;
    align-items: center;
}

.main-nav li:not(:last-child)::after {
    content: '';
    height: 20px;
    width: 2px !important;
    background-color: #FFA91C;
    margin-left: 20px;
}

.main-nav a {
    display: block;
    padding: 20px 0;
    color: #333;
    font-weight: bold;
    position: relative;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #FF9234;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF9234;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* ユーザーナビゲーション */
.user-nav {
    display: flex;
    align-items: center;
}

.login-btn, .register-btn {
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.login-btn {
    color: #333;
    margin-right: 10px;
}

.login-btn i {
    color: #FFBD59;
    margin-right: 5px;
    font-size: 20px;
}

.register-btn {
    background-color: #1DD1B0;
    color: white;
}

.login-btn:hover {
    background-color: #f5f5f5;
}

.register-btn:hover {
    background-color: #19C0A0;
}

/* メインコンテンツ */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* === 最終版：無限ループ対応 476×476 正方形スライダー === */
.peek-slider-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #f5f5f5;
  padding: 30px 0;
  margin-bottom: 40px;
  overflow: hidden;
}

.peek-slider {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: visible; /* 左右のスライドが見えるように */
}

.peek-slider-container {
  display: flex;
  gap: 20px; /* 画像間のギャップ */
  transition: transform 0.5s ease;
  will-change: transform;
  align-items: center;
  /* 中央の位置を調整して左右が見えるように */
  justify-content: flex-start;
}

.peek-slide {
  width: 476px;
  height: 476px;
  flex: 0 0 476px; /* 固定サイズ */
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.peek-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* 吹き出しコンテナ */
.peek-slide .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
  pointer-events: none;
}

/* 吹き出しスタイル */
.peek-slide .read-article {
  background-color: rgba(255, 146, 52, 0.95);
  color: white;
  padding: 15px 35px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 20px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  pointer-events: none;
}

/* ホバー時のスタイル変更 */
.peek-slide:hover .slide-overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.peek-slide:hover .read-article {
  opacity: 1;
  transform: scale(1);
}

.peek-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 正方形に合わせてトリミング */
  border-radius: 15px;
  display: block;
  pointer-events: none; /* ドラッグ防止 */
}

/* デモスライド用スタイル */
.demo-slide {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ddd;
  border-radius: 15px;
  padding: 20px;
  box-sizing: border-box;
}

.demo-slide h2 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #333;
}

.demo-slide p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* ドットとボタンのコンテナ */
.peek-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
}

/* ナビゲーションボタン（ドット横に配置） */
.peek-slider-button {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 146, 52, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.peek-slider-button:hover {
  background-color: rgba(255, 146, 52, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.peek-slider-button:active {
  transform: scale(0.95);
}

/* ドットインジケーター */
.peek-slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.peek-slider-dot {
  width: 14px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}

.peek-slider-dot.active {
  background-color: rgba(255, 146, 52, 0.9);
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(255, 146, 52, 0.4);
}

/* ドラッグ中のスタイル */
.peek-slider-container.dragging {
  transition: none;
  cursor: grabbing;
}

.peek-slider-container.dragging .peek-slide {
  pointer-events: none;
}

/* タブレット用の調整 */
@media (max-width: 1380px) {
  .peek-slider {
    max-width: 1100px;
    padding: 0 15px;
  }
  
  .peek-slide {
    width: 400px;
    height: 400px;
    flex: 0 0 400px;
  }
  
  .peek-slider-container {
    gap: 15px;
  }
  
  .peek-slide .read-article {
    font-size: 18px;
    padding: 12px 30px;
  }
  
  .peek-slider-button {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* タブレット小サイズ用の調整 */
@media (max-width: 1024px) {
  .peek-slider {
    max-width: 900px;
  }
  
  .peek-slide {
    width: 350px;
    height: 350px;
    flex: 0 0 350px;
  }
  
  .peek-slider-container {
    gap: 12px;
  }
}

/* スマートフォン用の調整 */
@media (max-width: 768px) {
  .peek-slider-wrapper {
    padding: 20px 0;
  }
  
  .peek-slider {
    padding: 0 10px;
  }
  
  .peek-slide {
    width: 280px;
    height: 280px;
    flex: 0 0 280px;
    border-radius: 12px;
  }
  
  .peek-slider-container {
    gap: 10px;
  }
  
  .peek-slider-button {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .peek-slider-controls {
    gap: 15px;
    margin-top: 20px;
  }
  
  .peek-slide .read-article {
    font-size: 16px;
    padding: 10px 25px;
  }
  
  .peek-slider-dot {
    width: 12px;
    height: 12px;
  }
}

/* 超小サイズ用の調整 */
@media (max-width: 480px) {
  .peek-slide {
    width: 250px;
    height: 250px;
    flex: 0 0 250px;
  }
  
  .peek-slider-button {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .peek-slider-controls {
    gap: 10px;
  }
  
  .peek-slide .read-article {
    font-size: 14px;
    padding: 8px 20px;
  }
}
/* 共通スタイル */
.section-tit {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: left;
  margin-bottom: 30px;
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.breadcrumb-container {
    margin-bottom: 20px;
    padding: 10px 0;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #FFAA2A;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}
/* 求人検索 */
.job-search {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.search-box {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  margin-right: 15px;
  min-width: 200px;
}

.search-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  font-size: 14px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.search-btn {
  padding: 12px 30px;
  background-color: #FFBD59;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #FF9234;
}

.advanced-search {
  width: 100%;
  text-align: right;
  margin-top: 10px;
}

.toggle-advanced {
  color: #1DD1B0;
  font-size: 14px;
  text-decoration: underline;
}

/* 職種から探す */
.job-category {
  padding: 60px 0;
}

.category-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.category-item {
  background-color: #FFF5E6;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 70px;
  height: 70px;
  margin: 15px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon i {
  font-size: 42px;
  color: #FFBD59;
}

.category-item h3 {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.2rem);
  color: #333;
}

@media screen and (max-width: 768px) {
  .category-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 特徴から探す - スタイリング */
.feature-search {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.tokuchou-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.tokuchou-item {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.tokuchou-item:hover {
    transform: translateY(-5px);
}

.tokuchou-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tokuchou-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tokuchou-item:hover .tokuchou-image img {
    transform: scale(1.05);
}

/* オーバーレイテキスト - 中央配置 */
.tokuchou-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    width: 90%;
    text-align: center;
}

.tokuchou-title h3 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}


   
/* 新着求人情報 */
/* 新着求人情報セクションのスタイル */
.new-jobs {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #f8f9fa;
  padding: 50px 0;
  margin-bottom: 30px;
  overflow: hidden;
  box-sizing: border-box;
}

.new-jobs .container {
  max-width: 100%;
  padding-left: 50px;
  margin: 0 auto;
  position: relative;
}

.new-jobs .section-tit {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  position: relative;
}

.new-jobs .section-tit:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ffb74d;
  margin: 10px auto 0;
}

.job-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.job-container {
  display: flex;
  transition: transform 0.5s ease;
}

/* 求人カードのサイズを完全に固定 */
.jo-card {
  flex: 0 0 340px;
  width: 340px;
  max-width: 340px;
  height: 490px; /* 高さを少し増やす */
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

.jo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.jo-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px;
  background-color: #fff;
  height: 70px;
}

.inf-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inf-icon {
    width: 20px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmpany-name {
  font-size: 14px;
  color: #333;
  margin: 0;
  width: 70%;
  height: 100%; /* 高さを100%に */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.cmpany-name p {
    margin: 0;
    padding: 0 0 5px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.bold-text {
  font-weight: bold;
  font-size: 16px;
}


.employment-type {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
}


.employment-type.full-time {
  background-color: #C5E5FF;
  color: #5599FF;
}

.employment-type.part-time {
  background-color: #FFD5F9;
  color: #F58284;
}

.employment-type.other {
  background-color: #D5FFEC;
  color: #0FB96A;
}

.jo-image {
  height: 190px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.jo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}




.jo-info {
  padding: 15px;
  flex-grow: 1;
  overflow: hidden; /* 溢れた内容を非表示 */
  position: relative;
}

/* 境界にグラデーションを追加（オプション） */
.jo-info:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;
}

.jo-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-location, .job-sala {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 20px; /* 行の高さ固定 */
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  height: 30px;
}

.feature-tag {
  padding: 4px 12px;
  background-color: #fff;
  border: 1px solid #ffa726;
  color: #f57c00;
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}

.job-footer {
  padding: 15px;
  border-top: 1px solid #eee;
  height: 60px;
  box-sizing: border-box;
  background-color: #1DD1B0; 
}

.detail-btn {
  display: block;
  width: 100%;
  text-align: right;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.detail-btn i {
  margin-left: 5px;
  font-size: 16px;
  vertical-align: middle;
}

.detail-btn:hover {
  color: #ffb74d;
}

/* ナビゲーションボタン - カードの外側に配置 */
.next-job-btn, .prev-job-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.next-job-btn {
  right: 0;
}

.prev-job-btn {
  left: 0;
}

.next-job-btn button, .prev-job-btn button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #26b7a0;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.next-job-btn button:hover, .prev-job-btn button:hover {
  background-color: #1c9a86;
  transform: scale(1.1);
}

/* 無効なナビゲーションボタン */
.next-job-btn.disabled, .prev-job-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* スライドインジケーター */
.slide-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background-color: #26b7a0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .job-card {
    flex: 0 0 320px;
    width: 320px;
    max-width: 320px;
  }
  
  .job-slider-wrapper {
    padding: 0 40px; /* ボタン用のスペースをやや減らす */
  }
}

@media screen and (max-width: 767px) {
  .job-card {
    flex: 0 0 280px;
    width: 280px;
    max-width: 280px;
  }
  
.job-slider-wrapper {
  padding: 0 18px;
}


  .next-job-btn button, .prev-job-btn button {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* サイト案内 */
.about-site {
  padding: 150px 0;
  background-color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-main-title {
  font-size: clamp(1.2rem, 2vw + 0.5rem, 2rem);
  white-space: nowrap; 
  color: #333;
  text-align: center;
  margin-bottom: 80px;
}

.about-items {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.about-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-item-title {
  font-size: 20px;
  color: #FF9234;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.about-item-image {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

.about-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-item-text {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  text-align: left;

}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .about-items {
    flex-direction: column;
  }
  
  .about-item {
    margin-bottom: 40px;
  }
}

/* マッチング案内 - 全幅表示 */
.matching-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background-color: #1DD1B0;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.matching-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.matching-title {
  font-size: 24px;
  margin-bottom: 30px; 
}

.matching-desc {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.matching-image {
  width: 200px;
  margin: 0 auto 15px;
}

.matching-image img {
  width: 100%;
}

.matching-label {
  font-size: 20px;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.register-large-btn {
  display: inline-block;
  background-color: #fff;
  color: #FFBD59;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.register-large-btn:hover {
  background-color: #FF9234;
  color: #fff;
}

.btn-icon {
  display: inline-block;
  margin-right: 5px;
}

/* タクソノミーページ用のスタイル */



.job-search-results {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 左側のフィルターサイドバー */
.filter-sidebar {
    flex: 1;
    max-width: 300px;
    background-color: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.filter-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-item {
    padding-left: 5px;
}

.filter-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.filter-link:hover {
    color: #ff8c00;
}

.filter-link.current {
    color: #ff8c00;
    font-weight: bold;
}

/* エリアフィルター */
.area-filter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.area-group {
    margin-bottom: 10px;
}

.area-group-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.prefecture-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
}

.prefecture-link {
    font-size: 13px;
    color: #333;
    text-decoration: none;
}

.prefecture-link:hover {
    color: #ff8c00;
    text-decoration: underline;
}

.prefecture-link.current {
    color: #ff8c00;
    font-weight: bold;
}

/* 特徴フィルター */
.feature-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* 右側のコンテンツ */
.search-results-content {
    flex: 1;
    min-width: 0;
}

/* 会員登録ページ用のCSS */
.auth-form {
  margin: 0 auto !important;
  max-width: 600px !important;
  width: 100% !important;
  padding: 1rem;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* 2カラムレイアウト調整 */
@media (min-width: 769px) {
  .registration-page .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  .registration-page .col-md-8 {
    width: 65%;
    padding-right: 20px;
    box-sizing: border-box;
  }
  
  .registration-page .col-md-4 {
    width: 35%;
    padding-left: 20px;
    box-sizing: border-box;
  }
}

/* レスポンシブ対応（モバイル） */
@media (max-width: 768px) {
  .registration-page .col-md-8,
  .registration-page .col-md-4 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  
  .benefits-container {
    margin-top: 30px;
  }
  
  .social-buttons {
    flex-direction: column;
  }
}

/* 認証コンテナ */
.auth-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}

/* ヘッダー部分 */
.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  position: relative;
}

.registration-free {
  display: inline-block;
  background-color: #ff6b6b;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 10px;
  vertical-align: middle;
}

.auth-description {
  color: #666;
  font-size: 16px;
}

/* 進行状況表示 */
.registration-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number {
  width: 30px;
  height: 30px;
  background-color: #e0e0e0;
  color: #666;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-bottom: 5px;
}

.progress-step.active .step-number {
  background-color: #4CAF50;
  color: white;
}

.step-label {
  font-size: 12px;
  color: #666;
}

.progress-step.active .step-label {
  color: #4CAF50;
  font-weight: bold;
}

.progress-line {
  flex-grow: 1;
  height: 2px;
  background-color: #e0e0e0;
  margin: 0 10px;
  position: relative;
  top: -15px;
}

/* フォームスタイル調整 */
.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="number"],
.auth-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 16px;
}

.auth-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

.auth-form input[type="submit"],
.auth-form button[type="submit"] {
  width: 100%;
  padding: 15px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.auth-form input[type="submit"]:hover,
.auth-form button[type="submit"]:hover {
  background-color: #3d8b40;
}

.benefits-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.benefits-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.benefits-title:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #4CAF50;
  margin: 10px auto;
}

.benefits-list {
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.benefit-icon i {
  color: #4CAF50;
  font-size: 20px;
}

.benefit-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.benefit-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.privacy-note {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 15px;
  margin-top: 20px;
}

.privacy-note i {
  font-size: 24px;
  color: #6c757d;
  margin-right: 15px;
}

.privacy-note p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.privacy-note a {
  color: #FFBD59;
  text-decoration: underline;
}

.auth-footer {
  text-align: center !important;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.login-link {
  color: #1DD1B0;
  font-weight: 600;
  text-decoration: none;
}

.login-link:hover {
  text-decoration: underline;
}

#wpmem_reg {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#wpmem_reg fieldset {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  border: none;
}

#wpmem_reg label {
  text-align: left;
  display: block;
  width: 100%;
  margin-bottom: 8px;
  padding-left: 0;
}

#wpmem_reg label .req {
  margin-left: 3px;
  color: red;
}

#wpmem_reg .div_text, 
#wpmem_reg .div_select, 
#wpmem_reg .div_number {
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  padding: 0;
}

#wpmem_reg input.textbox,
#wpmem_reg select.dropdown {
  width: 100%;
  box-sizing: border-box;
  display: block;
}

#wpmem_reg .button_div {
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

#wpmem_reg .button_div input.buttons {
  margin: 0 auto;
  display: inline-block;
  min-width: 200px;
}

#wpmem_reg .req-text {
  text-align: right;
  margin-top: 15px;
  font-size: 0.9em;
}

#wpmem_reg fieldset legend {
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

#wpmem_reg p img {
  display: block;
  margin: 0 auto;
}

#wpmem_reg p label[for="siteguard_captcha"] {
  text-align: center;
  margin: 10px auto;
}

#siteguard_captcha {
  display: block;
  margin: 10px auto;
  max-width: 200px;
}

.buttons, 
.button_div input[type="submit"] {
  background-color: #FFBD59 !important;
  border-color: #FFBD59 !important;
  color: #fff !important;
}
/* CAPTCHA画像の中央寄せと拡大 */
#lostpasswordform p img {
    display: block;
    margin: 20px auto;
    width: 100px;
    max-width: 100%;
    height: auto;
}

.fa {
  color: #FFBD59 !important;
}

.registration-free {
  background-color: #FFBD59 !important;
  color: #fff !important;
}

.progress-step.active {
  border-color: #FFBD59 !important;
}

.progress-line {
  background-color: #FFBD59 !important;
}

.buttons:hover,
.button_div input[type="submit"]:hover {
  background-color: #e5a94f !important;
  border-color: #e5a94f !important;
}

.req {
  color: #FFBD59 !important;
}

input:focus, select:focus {
  border-color: #FFBD59 !important;
  box-shadow: 0 0 5px rgba(255, 189, 89, 0.5) !important;
}

.benefit-icon {
  background-color: #FFF5E6 !important;
}

.progress-step.active .step-number {
    background-color: #1DD1B0;
}

.progress-step.active .step-label {
    color: #1DD1B0;
}

.benefits-title:after {
    background-color: #FFBD59 !important;
}

main.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
}

main.login-page .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

main.login-page .auth-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
  max-width: 600px;
}

main.login-page .auth-container .auth-header {
  text-align: center;
  margin-bottom: 20px;
}

main.login-page .auth-container form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

main.login-page .auth-container fieldset {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

main.login-page .auth-container label {
  margin-bottom: 5px;
  display: block;
}

main.login-page .auth-container .div_text {
  margin-bottom: 15px;
}

main.login-page .auth-container input[type="text"],
main.login-page .auth-container input[type="password"],
main.login-page .auth-container input[type="email"]
{
  width: 100%;
  padding: 10px;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

main.login-page .auth-container .button_div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

main.login-page .auth-container .button_div input[type="checkbox"] {
  width: auto;
  margin-right: 5px;
  vertical-align: middle;
}

main.login-page .auth-container .button_div label[for="rememberme"] {
   width: auto;
   margin-right: auto;
   display: inline-block;
   vertical-align: middle;
}

main.login-page .auth-container .button_div input[type="submit"] {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  box-sizing: border-box;
　background-color: #007bff;
  cursor: pointer;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
}

main.login-page .auth-container .link-text {
  margin-top: 15px;
  text-align: center;
  width: 100%;
}

main.login-page .auth-container .link-text a {
  color: #007bff;
  text-decoration: none;
}
main.login-page .auth-container .link-text a:hover {
  text-decoration: underline;
}

main.login-page .auth-container p img {
    margin-top: 10px;
    margin-bottom: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    max-width: 100%;
    height: auto;
}
main.login-page .auth-container p label[for="siteguard_captcha"] {
  margin-top: 5px;
  display: block;
  text-align: center;
}
main.login-page .auth-container input#siteguard_captcha {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 150px;
  text-align: center;
  margin-bottom: 15px;
}

legend {
  display: none;
}

#wpmem_reg fieldset legend {
  display: none;
}

.wpmem_msg {
  padding: 15px 20px !important;
  margin: 20px 0 !important;
  background-color: #e6ffed !important;
  border: 1px solid #b7ebc9 !important;
  color: #0f5132 !important;
  border-radius: 5px !important;
  text-align: left !important;
  line-height: 1.6 !important;
  font-size: 0.95em !important;
  width: 100% !important;
}

#wpmem_msg {
    padding: 15px 20px !important;
    margin: 20px 0 !important;
    background-color: #e6ffed !important;
    border: 1px solid #b7ebc9 !important;
    color: #0f5132 !important;
    border-radius: 5px !important;
    text-align: left !important;
    line-height: 1.6 !important;
    font-size: 0.95em !important;

}

#wpmem_msg br + br,
.wpmem_msg br + br {
  margin-top: 5px !important;
  display: block !important;
  content: "" !important;
}

/* ページID 253 (/instructor-login/) だけで .link-text を非表示 */
body.page-id-253 .link-text {
  display: none !important;
}

/* === こどもプラスについて === */
.main-visual {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  padding: 170px 0;
  background-color: #333; /* 画像読み込み失敗時の背景色 */
  color: #fff;
  overflow: hidden;
  background-image: url('../img/kodomobut.webp'); /* 相対パスに変更 */
  background-size: cover;
  background-position: center center;
  margin-top: 0 !important;
}
.main-visual > img {
  display: none;
}
.main-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.main-visual .container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 1px;
}

.main-visual-content {
  max-width: 700px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 100px;
}

.main-visual-title {
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.6em;
  color: #333;
}

.main-visual-text {
  font-size: 0.9em;
  line-height: 1.7;
  margin: 0;
  color: #555;
}



header {
  margin-bottom: 0 !important;
}
#content, main#main, div#content-in {
  padding-top: 0 !important;
  margin-top: 0 !important;
}


/* 全国展開セクション */
.nationwide {
  padding: 80px 0;
}

.nationwide .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 50px;
  align-items: center;
}

.japan-map {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  max-width: 500px;
  margin: 0;
  align-self: center;
}

.japan-map img {
  width: 100%;
  height: auto;
}

.nationwide-title {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  font-size: 32px;
  margin-bottom: 0;
  text-align: center;
  align-self: end;
}

.nationwide-number {
  font-size: 40px;
  font-weight: bold;
  color: #f39800;
  margin: 0 5px;
}

.nationwide-text {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  max-width: none;
  margin: 0;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  align-self: start;
}


    
/* 特徴セクション */
.features {
  padding: 80px 0;
}

.section-tit {
  text-align: center;
  font-size: 24px;
  margin-bottom: 50px;
  position: relative;
}

.section-tit:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #f39800;
  margin: 15px auto 0;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2%;
}

.feature-card {
  flex-basis: 31%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 120px;
  height: 120px;
  background-color: #fff4e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 30px;
  order: 2;
}

.feature-icon svg {
  width: 60px;
  height: 60px;
  fill: #f39800;
}

.feature-icon i {
  font-size: 55px;
  color: #f39800;
}

.feature-title {
  font-size: 18px;
  margin-bottom: 0;
  color: #f9a825;
}

.feature-text {
  font-size: 16px;
  text-align: left;
  order: 3;
  width: 100%;
}

@media (max-width: 992px) {
    .features-grid {
        gap: 3%;
    }
    .feature-card {
        flex-basis: 47%;
    }
}
@media (max-width: 768px) {
    .features-grid {
        gap: 0;
    }
    .feature-card {
        flex-basis: 100%;
    }
    .feature-icon {
         width: 100px;
         height: 100px;
         margin-bottom: 25px;
    }
     .feature-icon svg {
         width: 50px;
         height: 50px;
     }
      .feature-icon i {
         font-size: 45px;
     }
}
    
    /* スタッフの声セクション */
    .staff-voices {
      padding: 80px 0;
		background-color: #fff8eb;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
		margin-bottom: 110px;
    }
    
    .voices-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    
    .voice-card {
      width: 31%;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      padding: 30px;
      margin-bottom: 30px;
      position: relative;
    }
    
    .staff-info {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .staff-photo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background-color: #f0f0f0;
      margin-right: 15px;
    }
    
    .staff-name {
      font-weight: bold;
    }
    
    .staff-role {
      font-size: 12px;
      color: #666;
    }
    
    .voice-text {
      font-size: 16px;
      margin-bottom: 20px;
    }
    
    .read-more {
      display: inline-flex;
      align-items: center;
      color: #f39800;
      font-size: 14px;
      font-weight: bold;
      text-decoration: none;
    }
    
    .read-more:after {
      content: "→";
      margin-left: 5px;
    }
.staff-voices__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

    
    /* 支援・研修制度セクション */
    .support-system {
      background-color: #fafafa;
      padding: 80px 0;
    }
    
    .support-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    
    .support-item {
      width: 23%;
      margin-bottom: 100px;
    }
    
    .support-image {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 15px;
      overflow: hidden;
    }
    
    .support-image img {
      width: 100%;
      object-fit: cover;
    }
    
    .support-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #f39800;
  border: 2px solid #f39800;
  padding: 10px;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #fff8eb;
}

    .support-text {
      font-size: 16px;
    }
    
    /* 働く環境・待遇セクション */
    .working-conditions {
      padding: 80px 10px;
	  background-color: #F5FFFE;
	width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    }
    
    .conditions-intro {
      text-align: center;
      margin-bottom: 40px;
      font-size: 15px;
    }
    
    .conditions-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 850px;
  margin: 0 auto;
}

.condition-item {
  width: 48%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start; /* ← アイコンと本文を縦揃え */
}

.condition-body {
  display: flex;
  flex-direction: column;
}

.condition-icon {
  margin-right: 15px;
  color: #f39800;
  font-size: 24px;
}

.condition-text {
  font-size: 18px;
  font-weight: bold;
}

.conditions-text {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.5;
}

    
    /* 募集セクション */
    .recruitment {
      background-color: #fff8eb;
      padding: 80px 0;
      text-align: center;
	  width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    }
    
    .recruitment-title {
      font-size: 24px;
      margin-bottom: 30px;
    }
    
    .recruitment-text {
      font-size: 16px;
      max-width: 600px;
      margin: 0 auto 40px;
    }
    
    .apply-button {
      display: inline-block;
      background-color: #14C8B9;
      color: white;
      font-size: 18px;
      font-weight: bold;
      padding: 15px 50px;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s;
    }
    
    .apply-button:hover {
      background-color: #109d75;
    }

.main {
    padding: 0px;
}
    
    

/* 住所入力関連のスタイル */
.zipcode-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

#facility_zipcode {
    width: 150px;
}

.btn-search-address {
    padding: 8px 15px;
    background-color: #2196f3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-search-address:hover {
    background-color: #0d8bf2;
}

.zipcode-result {
    margin-top: 5px;
}

.address-display {
    display: inline-block;
    padding: 8px 12px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 20px;
    min-width: 100px;
    margin-right: 10px;
    margin-bottom: 5px;
}

.address-display:empty:before {
    content: "未選択";
    color: #999;
    font-style: italic;
}

/************************************
** ◆マイページ
************************************/

/* 雇用形態バッジの基本スタイル */
.employment-type {
  grid-column: 2 !important; /* 右側に配置 */
  justify-self: end !important;
  font-size: 14px !important;
  padding: 6px 15px !important;
  border-radius: 30px !important;
  white-space: nowrap !important;
  text-align: center !important;
  min-width: 80px !important;
  display: inline-block !important;
  box-sizing: border-box !important;
}

/* フルタイム */
.employment-type.full-time {
    background-color: #C5E5FF;
    color: #5599FF;
}

/* パートタイム */
.employment-type.part-time {
    background-color: #FFD5F9;
    color: #F58284;
}

/* その他の雇用形態 */
.employment-type.other {
    background-color: #D5FFEC;
    color: #0FB96A;
}


/* 施設アイコン関連スタイル */
.facility-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.facility-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
}
.facility-icon.red-icon {
    border-color: #FF5252;
}
.facility-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* 施設アイコンのテキストを非表示 */
.facility-icon span {
    display: none;
}

/* 求人カードのスタイル */
.job-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 30px;
}

.job-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* 左側のスタイル */
.left-content {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-img {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.job-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.tags-container {
    display: flex;
    flex-wrap: wrap !important; 
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 30px;
  max-height: 120px;
}
.tag {
  background-color: #fff;
  border: 1px solid #FFB74D;
  color: #FF9800;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
  text-align: center;
  max-width: 150px; /* タグの最大幅を制限 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}


.tag.premium {
    background-color: #fff;
    border: 1px solid #FFA000;
    color: #FFA000;
}

/* 右側のスタイル */
.right-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-section {
  width: 100%;
  display: grid !important; /* gridレイアウトを使用 */
  grid-template-columns: 1fr auto !important; /* 左側を会社名、右側を雇用形態に */
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 10px !important;
}
.company-name {
  grid-column: 1 !important; /* 左側に配置 */
  justify-self: start !important;
  font-size: 14px !important;
  color: #666 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  width: 100% !important;
  max-width: 100% !important; /* 幅いっぱいに広げる */
}

.job-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
	color: #FF9800;
}

.job-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
	display: -webkit-box;
  -webkit-line-clamp: 2; /* 2行まで表示 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: 4.5em; /* 行の高さ × 行数 */
}


/* 区切り線 */
.divider {
    height: 1px;
    background-color: #eee;
    margin: 15px 0;
}

.job-inf {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.info-icon {
  width: 20px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* アイコンのサイズを固定 */
}

.info-item span {
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2行まで表示 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



.info-icon {
    width: 20px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ボタンエリア */
.buttons-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.keep-butt {
    background-color: #fff;
    border: 1px solid #FFB74D;
    color: #FF9800;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.keep-butt .star {
    color: #FFB74D;
    margin-right: 10px;
}

.keep-butt.kept {
    background-color: #FFF8E1;
}

.detail-view-button {
    background-color: #1DD1B0;
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .job-content {
        flex-direction: column;
    }
    
    .left-content, .right-content {
        width: 100%;
    }
    
    .buttons-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .keep-button, .detail-view-button {
        width: 100%;
    }
}

/* マイページでの追加スタイル */
.more-link {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.no-jobs, .no-profile-info {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    color: #666;
}

/* マイページ全体のスタイル */
.site-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー部分 */
.mypage-header {
    text-align: center;
    margin: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mypage-header h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #333;
}

.welcome-message {
    font-size: 1rem;
    color: #666;
}

.mypage-navigation a .fa-user:before,
.mypage-navigation a .fa-key:before,
.mypage-navigation a .fa-envelope:before,
.mypage-navigation a .fa-user-times:before {
    color: #FFF;
}

/* ナビゲーション */
.mypage-navigation {
    margin-bottom: 30px;
}

.mypage-navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 5px;
}

.mypage-navigation li {
    margin: 0;
    flex: 1;
    min-width: 200px;
    max-width: 200px;
}

.mypage-navigation a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #FFF;
    background-color: #FFBD59;
	font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

#wpmem_login fieldset,
#wpmem_reg fieldset {
    margin: 0  auto!important;
}

#wpmem_login,
#wpmem_reg {
    max-width: 400px;
    margin: 0 auto;
}
	
.mypage-navigation li.active a {
    background-color: #1DD1B0;
    color: white;
}

.mypage-navigation li.active a:hover {
    background-color: #1DD1B0;
}

.nav-icon {
    margin-right: 8px;
    display: inline-block;
}

/* コンテンツ部分 */
.mypage-content {
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.member-section {
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.section-header h2 i {
    margin-right: 10px;
    color: #1DD1B0 !important;
}

.section-header .fa-key:before,
.section-header .fa-envelope:before,
.section-header .fa-user-times:before,
.section-header .fa-user:before {
    color: #1DD1B0;
}

.password-reset-form img {
    display: block;
    margin: 0 auto;
	width: 30%;
}


.section-header p {
    color: #666;
    margin: 0;
}

/* フォーム要素 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.input, input[type="text"], input[type="email"], input[type="password"], textarea, select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.description {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.form-actions {
    margin-top: 20px;
}

/* ボタンスタイル */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.2s;
	margin: 15px;
}

.button:hover {
    background-color: #005f8a;
    color: white;
}

.button-secondary {
    background-color: #f7f7f7;
    color: #555;
    border: 1px solid #ccc;
}

.button-secondary:hover {
    background-color: #eaeaea;
    color: #333;
}

.button-danger {
    background-color: #dc3545;
}

.button-danger:hover {
    background-color: #c82333;
}

/* ログアウトボタン */
.logout-section {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.logout-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f7f7f7;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logout-button:hover {
    background-color: #eaeaea;
    color: #333;
}


/* メッセージスタイル */
.notice, .message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.notice-success, .message-success {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.message-error {
    background-color: #f8d7da;
    border-left: 4px solid #f5c6cb;
    color: #721c24;
}

/* ラジオボタングループ */
.radio-group {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: all 0.3s ease;
	background-color: #fff;
}

.radio-group:hover {
    background-color: #f9f9f9;
}

.radio-container {
    display: flex;
    cursor: pointer;
}

.radio-text {
    font-weight: bold;
    margin-left: 5px;
}

.radio-description {
    margin-left: 25px;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* パスワードリセット */
.password-reset-container {
    max-width: 500px;
    margin: 0 auto;
}

.password-reset-form {
    margin-bottom: 20px;
}

.password-reset-note {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 4px solid #0073aa;
    margin-top: 20px;
}

.password-reset-note h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.password-reset-note ol {
    margin-left: 20px;
    padding-left: 0;
}

.password-reset-note li {
    margin-bottom: 8px;
}

/* 退会関連 */
.withdrawal-notice {
    background-color: #fff4f4;
    border-left: 4px solid #dc3545;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.confirmation-check {
    margin: 20px 0;
}

.withdrawal-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

/* 求人リスト */
.job-list-container {
    margin-top: 20px;
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.job-link {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border-left: 4px solid #0073aa;
}

.job-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.job-meta {
    font-size: 0.9rem;
    color: #666;
}

.location {
    display: inline-flex;
    align-items: center;
}

.location i {
    margin-right: 5px;
    color: #0073aa;
}

.more-link {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.no-jobs, .no-profile-info {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    color: #666;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .mypage-navigation ul {
        flex-direction: column;
    }
    
    .mypage-navigation li {
        width: 100%;
        max-width: 100%;
    }
    
    
    .form-actions .button {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
}

/************************************
** ◆求人ページ
************************************/
.cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー部分 */
.company-name {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
    text-align: left;
}
.job-title1 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}
.job-subtitle1 {
    font-size: 16px;
    margin-bottom: 15px;
}
.facility-type {
    display: flex;
    position: absolute;
    right: 35px;
    top: 75px;
}
.facility-type img {
    width: 70px;
    height: 70px;
    margin-left: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* メイン画像と詳細情報部分 */
.slideshow-container {
    position: relative;
    display: flex;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 15px;
    min-height: 450px; /* 十分な高さを確保 */
}
.slideshow {
    width: 65%;
    height: 420px; /* 高さを増やす */
    overflow: hidden;
    position: relative;
}
.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.job-details {
    width: 35%;
    padding: 0 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 420px; /* slideshow と同じ高さに */
}
.job-position {
    flex: 0 0 auto; /* サイズ固定 */
    margin-bottom: 30px;
}
.job-position span {
    display: inline-block;
}
.job-position .position {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}
.job-position .employment-type {
    background-color: #cae7fd;
    color: #333;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 14px;
}
.job-salary {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    min-height: 100px;
}
.salary-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
    margin-top: 15px;
    display: block !important;
}
.salary-label:first-child {
    margin-top: 0;
}
.salary-range {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    display: block !important;
    word-break: break-word;
    line-height: 1.4;
}
.button-group {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}
.button-group .keep-button,
.button-group .contact-button {
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.button-group .keep-button {
    border: 1px solid #ffb74d;
    color: #f57c00;
    background-color: #fff;
	width: 100%;
}

.contact-button {
    background-color: #26b7a0;
    color: #fff;
    border: none;
}

/* 情報タブ部分 */
.info-tabs {
    background-color: #ffc069;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}
.tab-navigation {
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    margin-bottom: 20px;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.tab-navigation a {
    color: #777;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
}
.tab-navigation a.active {
    color: #333;
    font-weight: bold;
}
.tab-navigation a i {
    border: solid 1px #ffc069;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}

.job-introduction {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* コンテンツエリア */
.content-area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.main-content {
    flex: 1;
    min-width: 60%;
}
.custom-sidebar {
    width: 300px;
}
.job-descripti, .facility-details {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    background-color: #fff8e1;
    padding: 15px;
    border-radius: 5px 5px 0 0;
    margin: -20px -20px 15px -20px; /* ボックスにくっつけるための調整 */
    background-image: none !important;
    box-shadow: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    padding-left: 15px !important;
	text-align: center;
}
.section-title:after {
    display: none !important;
    content: none !important;
}
/* 事業所情報の見出し背景をグレーに変更 */
#facility-info .section-title {
    background-color: #f5f5f5;
}

/* 求人情報テーブルスタイル */
.job-info-table, .facility-info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}
.job-info-table th, .job-info-table td,
.facility-info-table th, .facility-info-table td {
    padding: 12px !important;
    border-bottom: 1px solid #eee !important;
    vertical-align: top;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
	word-break: break-word; /* ★追加 */
    width: auto; /* ★修正 */
    max-width: 100%; /* ★追加 */
}
.job-info-table th, .facility-info-table th {
    width: 25%;
    text-align: left;
    font-weight: normal;
    color: #777;
    background-color: #fff !important;
	white-space: nowrap;
}
/* テーブルの交互の背景色を打ち消し */
table tr:nth-of-type(2n+1) {
    background-color: #fff !important; /* 全ての行を白背景に */
}

/* 求人特徴のスタイル */
.feature-section {
    background-color: #fff;
    margin: 20px 0;
    border-radius: 8px;
}
.feature-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.job-tag {
    background-color: #fff;
    border: 1px solid #ffb74d;
    color: #f57c00;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* 職場環境のスタイル */
.workplace-environment {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.environment-title {
    font-size: 20px;
    font-weight: bold;
    margin: -20px -20px 20px -20px;
    padding: 15px;
    background-color: #fff8e1;
    border-radius: 8px 8px 0 0;
    text-align: center;
}
.section-subtitle {
    font-size: 18px;
    font-weight: bold;
    margin: 25px 0 15px;
    display: flex;
    align-items: center;
}
.orange-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ff9800;
    border-radius: 50%;
    margin-right: 8px;
}

/* タイムラインのスタイル */
.daily-schedule {
    margin: 20px 0;
}
.timeline-row {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.timeline-time-orange {
    width: 75px;
    background-color: #ffa726;
    color: white;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    margin-right: 15px;
    flex-shrink: 0;
}

.timeline-time-white {
    min-width: 75px;
    background-color: #ffffff;
    color: #f57c00;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #ffa726;
    border-radius: 5px;
    margin-right: 15px;
    flex-shrink: 0;
}

.timeline-content {
    flex-grow: 1;
    padding-top: 3px;
    text-align: left;
}
.timeline-title {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
}
.timeline-description {
    color: #666;
    font-size: 14px;
    text-align: left;
}

/* スタッフの声のスタイル - 更新版 */
.voice-section {
    margin: 25px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #eee;
}

.staff-voices-container {
    margin-top: 20px;
}

.staff-voice {
    background-color: #fff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.staff-info {
    display: flex;
    margin-bottom: 15px;
}

.staff-photo {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 5px;
}

.staff-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.staff-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.staff-role, .staff-years {
    margin-bottom: 5px;
    font-size: 14px;
}

.staff-label {
    font-weight: bold;
    color: #555;
}

.staff-comment {
    font-size: 15px;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}


/* マップ・施設情報 */
.map-container {
    height: 150px;
    background-color: #eee;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.facility-staff div {
    margin-bottom: 5px;
}
/* 本文タイトルのスタイル */
.job-content-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffc069;
    color: #333;
}
/* サイドバースタイル */
.related-jobs {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.related-jobs h3 {
    font-size: 20px;
	text-align: center;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 3px solid #ff9800;
    color: #ff9800;
    line-height: 1.4;
}
.related-job-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.related-job-item:last-child {
    border-bottom: none;
}
.related-job-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.related-job-item a:hover {
    opacity: 0.8;
}
.related-job-thumb {
    width: 100%;
    height: 100%;
    background-color: #eee;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}
.related-job-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.related-job-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}
.related-job-subtitle {
    font-size: 12px;
    color: #777;
}
.see-more {
    display: block;
    text-align: center;
    color: #4db6ac;
    text-decoration: none;
    margin-top: 10px;
    font-size: 12px;
    padding: 8px;
    border: 1px solid #4db6ac;
    border-radius: 5px;
}
.see-more:hover {
    background-color: #4db6ac;
    color: #fff;
}

/* 関連求人なしの表示 */
.no-related-jobs {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
}
.no-related-jobs p {
    margin: 0;
    color: #777;
}

/* チェックリスト */
.checklist {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
.checklist li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}
.checklist li:before {
    content: "□";
    position: absolute;
    left: 0;
}

/* WordPressデフォルトウィジェットの選択的非表示 */
.widget_recent_entries,
.widget_categories,
.widget_popular_posts {
    display: none !important;
}

/* 給与備考欄のスタイル */
.salary-remarks {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dotted #eee;
    color: #666;
    font-size: 14px;
}

	
/* 雇用形態ごとの色分け */
.employment-type.full-time {
    background-color: #C5E5FF;
    color: #5599FF;
}

.employment-type.part-time {
    background-color: #FFD5F9;
    color: #F58284;
}

.employment-type.other {
    background-color: #D5FFEC;
    color: #0FB96A;
}
	
/**
 * 求人詳細ページのスライドショー用CSSスタイル (修正版)
 */

/* スライドショーコンテナのスタイル */
.slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 画像のスタイル */
.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ナビゲーションドットのコンテナ - 修正 */
.slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
    /* 画像幅の中に収まるように調整 */
    margin: 0 auto;
    width: auto;
    max-width: 100%;
}

/* ドットのスタイル */
.slideshow-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* アクティブなドットのスタイル */
.slideshow-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* ナビゲーションボタンの共通スタイル */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* 常に表示 */
}

/* 前へボタンの位置 */
.slideshow-nav.prev {
    left: 10px;
}

/* 次へボタンの位置 */
.slideshow-nav.next {
    right: 10px;
}

/* ホバー時のナビゲーションボタンのスタイル */
.slideshow-nav:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .slideshow-nav {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .slideshow-dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

/* ホバー時のナビゲーションボタンの表示（不要なので削除） */
/* .slideshow:hover .slideshow-nav {
    opacity: 1;
} */

/* 前へボタンの位置 */
.slideshow-nav.prev {
    left: 10px;
}

/* 次へボタンの位置 */
.slideshow-nav.next {
    right: 10px;
}

/* ホバー時のナビゲーションボタンのスタイル */
.slideshow-nav:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .slideshow-nav {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .slideshow-dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}
/* ナビゲーションボタンの共通スタイル */
.slideshow-nav {
    opacity: 1; /* 元の値は0でホバー時のみ表示、常時表示するために1に変更 */
}

/* ホバー時のナビゲーションボタンの表示（不要なので削除） */
/* .slideshow:hover .slideshow-nav {
    opacity: 1;
} */

/* ナビゲーションドットのコンテナ */
.slideshow-dots {
    width: 100%; /* 画像の幅全体を使用するように指定 */
}

/* モバイル対応 */
@media (max-width: 768px) {
    .slideshow-nav {
        /* opacity: 1; の記述は不要になったので削除 */
    }
}

.fixed-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 12px 0;
    display: block; /* 常に表示 */
}

.fixed-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-job-info {
    flex: 1;
    overflow: hidden;
    padding-right: 10px;
}

.footer-job-title {
    font-weight: bold;
    margin: 0 0 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.footer-job-position {
    color: #777;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}

.footer-buttons {
    display: flex;
    gap: 10px;
    min-width: 220px; /* 最小幅を確保 */
}

.keep-button-footer {
    background-color: #fff;
    border: 1px solid #ffb74d;
    color: #f57c00;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.keep-button-footer.kept {
    background-color: #fff8e1;
}

.contact-button-footer {
    background-color: #26b7a0;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* PCとモバイル共通の表示設定 */
.fixed-footer-bar {
    display: block; /* 常に表示 */
}




/* PC用のスタイル調整 */
@media screen and (min-width: 769px) {
    .fixed-footer-container {
        padding: 0 30px;
        max-width: 1200px;
    }
    
    .footer-job-title {
        font-size: 16px;
    }
    
    .footer-job-position {
        font-size: 14px;
    }
    
    .footer-buttons {
        flex: 1;
        max-width: 600px;
        justify-content: flex-end;
        gap: 20px;
    }
    
    .keep-button-footer, .contact-button-footer {
        padding: 10px 80px;
        font-size: 18px;
        border-radius: 8px;
        min-width: 200px;
        text-align: center;
    }
    
    .fixed-footer-bar {
        padding: 15px 0;
    }
    

}
/************************************
** ◆求人一覧
************************************/


/* 雇用形態に基づくカラー設定 */
.employment-type {
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 14px;
    margin-left: auto;
    display: inline-block;
}
.employment-type.full-time {
    background-color: #C5E5FF;
    color: #5599FF;
}
.employment-type.part-time {
    background-color: #FFD5F9;
    color: #F58284;
}
.employment-type.other {
    background-color: #D5FFEC;
    color: #0FB96A;
}

/* 施設アイコン関連スタイル */
.facility-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.facility-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
}
	
.facility-icon.red-icon {
    border-color: #FF5252;
}

.facility-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* 施設アイコンのテキストを非表示 */
.facility-icon span {
    display: none;
}

/* 求人カードのセンター寄せと幅調整 */
.job-list, .job-cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
	margin-top: 30px;
}

/* コンテナ幅の統一 */
.job-listing-container,
.container,
.content-wrapper .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* 現在の検索条件の表示 */
.current-filters {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    background-color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.filter-tag .remove-filter {
    margin-left: 5px;
    cursor: pointer;
    color: #666;
}

.filter-tag .remove-filter:hover {
    color: #f00;
}
/* ボタンエリア */
.buttons-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.keep-button {
    background-color: #fff;
    border: 1px solid #FFB74D;
    color: #FF9800;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.keep-button .star {
    color: #FFB74D;
    margin-right: 10px;
}

.keep-button.kept {
    background-color: #FFF8E1;
}

.detail-view-button {
    background-color: #1DD1B0;
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}
/************************************
** ◆加盟教室
************************************/
/* 求人一覧ページのスタイル */
.job-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.job-action-buttons {
    margin-bottom: 20px;
}

.btn-new-job {
    display: inline-block;
    padding: 10px 15px;
    background-color: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.status-message {
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.status-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.status-message.info {
    background-color: #e3f2fd;
    color: #0d47a1;
    border-left: 4px solid #2196f3;
}

.status-message.warning {
    background-color: #fff3e0;
    color: #e65100;
    border-left: 4px solid #ff9800;
}

.job-lis {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.job-list-header {
    display: flex;
    background-color: #f5f5f5;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
	text-align:center;
}

.job-header-item {
    padding: 12px 15px;
}

.job-title-header {
    flex: 3;
}

.job-status-header, 
.job-date-header {
    flex: 1;
}

.job-actions-header {
    flex: 1.3;
    text-align: center;
}

.job-list-item {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.job-list-item:last-child {
    border-bottom: none;
}

.job-item-cell {
    padding: 15px;
}

.job-title-cell {
    flex: 3;
}

.job-status-cell, 
.job-date-cell {
    flex: 1;
    display: flex;
    align-items: center;
}

.job-actions-cell {
    flex: 1.3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-title-link {
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.job-title-link:hover {
    text-decoration: underline;
}

.job-taxonomy-info {
    margin-top: 5px;
}

.job-position-tag {
    display: inline-block;
    padding: 3px 8px;
    background-color: #fff8e1;
    color: #ff8f00;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 5px;
}

.job-type-tag {
    display: inline-block;
    padding: 3px 8px;
    background-color: #e0f7fa;
    color: #0097a7;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 5px;
}

.status-publish {
    font-weight: bold;
	margin: auto;
}

.status-draft {
    color: #9e9e9e;
	margin: auto;
}

.status-pending {
    color: #ff9800;
}

.btn-edit, 
.btn-draft, 
.btn-publish, 
.btn-delete {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
}

.btn-edit {
    background-color: #2196f3;
    color: white;
}

.btn-draft {
    background-color: #9e9e9e;
    color: white;
}

.btn-publish {
    background-color: #4caf50;
    color: white;
}

.btn-delete {
    background-color: #f44336;
    color: white;
}

.no-jobs-message {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

		/* 複数サムネイルのスタイル */
#thumbnails-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.thumbnail-item {
    position: relative;
    width: 150px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    background: #f9f9f9;
}

.thumbnail-preview {
    width: 100%;
    height: 120px;
    margin-bottom: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-preview img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.remove-thumbnail-btn {
    width: 100%;
    padding: 4px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.remove-thumbnail-btn:hover {
    background-color: #d32f2f;
}

/* ドラッグ&ドロップ用のスタイル */
.ui-state-highlight {
    width: 150px;
    height: 165px;
    border: 2px dashed #2196F3;
    background-color: #E3F2FD;
}
    /* コンパクトな勤務地域選択のスタイル */
    .location-selector {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .location-level {
        flex: 1;
        min-width: 150px;
    }
    
    .location-dropdown {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background-color: #fff;
    }
    
    .location-dropdown:disabled {
        background-color: #f5f5f5;
        cursor: not-allowed;
    }
    
    .selected-location-display {
        margin-top: 5px;
        padding: 8px;
        background-color: #f5f5f5;
        border-radius: 4px;
        font-size: 14px;
    }
    
    .selected-location-display span {
        display: inline-block;
    }
    
    /* 特徴タグのアコーディオンスタイル */
    .feature-accordion-container {
        border: 1px solid #ddd;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .feature-accordion {
        margin-bottom: 1px;
    }
    
    .feature-accordion:last-child {
        margin-bottom: 0;
    }
    
    .feature-accordion-header {
        background-color: #f7f7f7;
        padding: 10px 15px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .feature-accordion-header h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 500;
    }
    
    .accordion-icon {
        font-size: 18px;
        font-weight: bold;
    }
    
    .feature-accordion-content {
        padding: 15px;
        background-color: #fff;
        display: none;
    }
    
    /* チェックボックスのスタイル強化 */
    .feature-accordion .taxonomy-select {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .feature-accordion .checkbox-label {
        flex: 0 0 auto;
        margin: 0;
    }

    /* ラジオボタンのスタイル */
    .radio-label {
        display: inline-block;
        margin: 5px;
        padding: 6px 12px;
        background-color: #f5f5f5;
        border-radius: 4px;
        font-size: 14px;
    }
    
    .radio-label input {
        margin-right: 5px;
    }
    
    /* 下書きにするボタン */
    .btn-draft {
        display: inline-block;
        border-radius: 4px;
        cursor: pointer;
        text-decoration: none;
        font-size: 14px;
        background-color: #ffb74d;
        color: white;
        border: none;
    }
    
    .btn-draft:hover {
        background-color: #ff9800;
    }

    /* 施設住所のスタイル */
    .address-container {
        margin-bottom: 15px;
    }
    
    .address-row {
        margin-bottom: 10px;
    }
    
    .address-row label {
        display: block;
        margin-bottom: 5px;
        font-weight: normal;
    }
    
    #facility_zipcode {
        width: 150px;
    }
    
    .location-display {
        padding: 8px;
        background-color: #f5f5f5;
        border: 1px solid #ddd;
        border-radius: 4px;
        min-height: 20px;
    }
    
    .location-empty {
        color: #999;
        font-style: italic;
    }

    /* モバイル対応 */
    @media (max-width: 768px) {
        .location-selector {
            flex-direction: column;
        }
        
        .location-level {
            width: 100%;
        }
    }

    /* 求人投稿フォームのスタイル */
    .edit-job-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .success-message {
        background-color: #e8f5e9;
        color: #2e7d32;
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
    }
    
    .error-message {
        background-color: #ffebee;
        color: #c62828;
        padding: 15px;
        border-radius: 4px;
        margin-bottom: 20px;
    }
    
    .form-section {
        margin-bottom: 30px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        padding: 20px;
        background-color: #fff;
    }
    
    .secti-title {
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .form-row {
        margin-bottom: 20px;
    }
    
    .form-row label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    .form-row input[type="text"],
    .form-row input[type="url"],
    .form-row textarea {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
    }
    
    .form-hint {
        display: block;
        font-size: 12px;
        color: #757575;
        margin-top: 5px;
    }
    
    .required {
        color: #f44336;
    }
    
    .taxonomy-select {
        display: flex;
        flex-wrap: wrap;
        margin: -5px;
    }
    
    .checkbox-label {
        display: inline-block;
        margin: 5px;
        padding: 6px 12px;
        background-color: #f5f5f5;
        border-radius: 4px;
        font-size: 14px;
    }
    
    .checkbox-label input {
        margin-right: 5px;
    }
    
    .feature-label {
        background-color: #e3f2fd;
    }
    
    .thumbnail-preview, .voice-image-preview {
        margin-bottom: 10px;
    }
    
    .thumbnail-preview img, .voice-image-preview img {
        max-width: 200px;
        max-height: 200px;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 2px;
    }
    
    .btn-media-upload,
    .btn-media-remove,
    .btn-submit,
    .btn-cancel,
    .btn-view,
    .btn-new,
    .btn-add-item,
    .upload-voice-image,
    .remove-voice-image,
    .remove-schedule-item,
    .remove-voice-item {
        display: inline-block;
        padding: 8px 15px;
        border-radius: 4px;
        cursor: pointer;
        text-decoration: none;
        font-size: 14px;
        margin-right: 10px;
        background-color: #f5f5f5;
        color: #333;
        border: 1px solid #ddd;
    }
    
    .btn-media-remove,
    .remove-voice-image,
    .remove-schedule-item,
    .remove-voice-item {
        background-color: #ffebee;
        color: #c62828;
        border: 1px solid #ffcdd2;
    }
    
    .btn-view {
        background-color: #2196f3;
        color: white;
        border: none;
    }
    
    .btn-new, .btn-add-item {
       background-color: #ff9800;
       color: white;
       border: none;
   }
   
   .form-actions {
       margin-top: 20px;
       text-align: center;
   }
   
   .btn-submit {
       background-color: #4caf50;
       color: white;
       border: none;
       font-size: 16px;
       padding: 10px 20px;
   }
   
   .btn-cancel {
       background-color: #f5f5f5;
       color: #333;
       border: 1px solid #ddd;
   }
   
   /* 階層化タクソノミー用スタイル */
   .parent-term {
       width: 100%;
       margin-bottom: 10px;
   }
   
   .parent-label {
       background-color: #e8eaf6;
       font-weight: bold;
   }
   
   .child-label {
       background-color: #f5f5f5;
   }
   
   .grandchild-label {
       background-color: #fafafa;
   }
   
   /* 一日の流れと職員の声のスタイル */
   .daily-schedule-item, .staff-voice-item {
       padding: 15px;
       border: 1px solid #e0e0e0;
       border-radius: 4px;
       margin-bottom: 15px;
       background-color: #fafafa;
       position: relative;
   }
   
   .schedule-time, .schedule-title, .voice-role, .voice-years {
       display: inline-block;
       vertical-align: top;
       margin-right: 15px;
       margin-bottom: 10px;
   }
   
   .schedule-time input, .schedule-title input, .voice-role input, .voice-years input {
       width: 150px;
   }
   
   .schedule-description, .voice-comment, .voice-image {
       margin-bottom: 10px;
   }
   
   .remove-schedule-item, .remove-voice-item {
       position: absolute;
       top: 10px;
       right: 10px;
       padding: 5px 10px;
       font-size: 12px;
   }
		
		input[type="submit"] {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid var(--cocoon-thin-color);
    background-color: #0073aa;/* ブルー系 */
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.2s ease;
    margin-bottom: 10px;
    width: 100%; /* スマホで全幅にするなら追加 */
    max-width: 300px; /* 上限をつけて中央寄せも可能 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 20px auto;
}

/* ホバー時 */
input[type="submit"]:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

/* クリック時 */
input[type="submit"]:active {
    background-color: #004080;
    transform: scale(0.98);
}

.btn-cancel {
    background-color: #f5f5f5;
    color: #555;
    border: 1px solid #ccc;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-bottom: 10px;
    font-weight: 500;
}

/* ホバー時：少し濃いグレーでアクションを感じさせる */
.btn-cancel:hover {
    background-color: #e0e0e0;
    color: #000;
}

/* クリック時：さらに濃くして押した感を出す */
.btn-cancel:active {
    background-color: #d6d6d6;
    color: #111;
}

/* ハンバーガーメニュー関連のスタイル */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}
   
   /* レスポンシブ対応 */
   @media (max-width: 768px) {
       .edit-job-container {
           padding: 10px;
       }
       
       .form-section {
           padding: 15px;
       }
       
       .taxonomy-select {
           flex-direction: column;
       }
       
       .checkbox-label {
           margin: 3px 0;
       }
       
       .schedule-time, .schedule-title, .voice-role, .voice-years {
           display: block;
           margin-right: 0;
       }
   }


/************************************
** ◆お役立ちコラム
************************************/

/* ------------------------------------------
  全体のレイアウト
------------------------------------------ */

.column {
  background-color: #FFFAEE;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}


.column-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 30px;
  background-color: #FFFAEE;
}

.column-main {
  flex: 1;
  min-width: 0;
  width: calc(100% - 380px);
  border-radius: 12px;
  overflow: hidden;
}

.column-main-inner {
  padding: 30px;
}

.column-sidebar {
  width: 350px;
}

/* ------------------------------------------
  ヘッダー部分
------------------------------------------ */
.column-header {
  position: relative;
  width: 100vw;
  height: 300px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.column-header-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/opening-staff.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.column-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.column-title-container {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px 60px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid #FFAF1B;
  text-align: center;
  max-width: 80%;
}

.column-title {
  color: #FFAF1B;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* ------------------------------------------
  記事一覧
------------------------------------------ */
.page-column-sec01 {
  width: 100%;
}

.page-column-post {
  padding: 20px;
  border: 3px solid #FFAF1B;
  border-radius: 20px;
  margin-bottom: 30px;
  display: flex;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: transform 0.3s, box-shadow 0.3s;
}

.page-column-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-column-post figure {
  width: 30%;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 15px;
}

.page-column-post figure img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s;
}

.page-column-post:hover figure img {
  transform: scale(1.05);
}

.page-column-post > div {
  width: 60%;
}

.page-column-post__cd, .post-column__cd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.post-categories li {
  list-style: none;
  margin: 5px;
}

.page-column-post__cd p, .post-categories, .post-column__cd p {
  padding-left: 0px;
  margin: 5px 0;
}

.page-column-post__cd .post-categories li a, .post-column__cd .post-categories li a {
  color: #fff;
  background-color: #FFAF1B;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.page-column-post__cd .post-categories li a:hover, .post-column__cd .post-categories li a:hover {
  background-color: #ff9900;
}

.page-column-post__cd .page-column-post__date, .post-column__cd .post-column__date {
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  padding-top: 5px;
  color: #777;
  font-size: 14px;
}

.page-column-post h4 {
  font-weight: 700;
  font-size: clamp(20px, 3.5vw, 25px);
  margin-top: 10px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-column-post h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.page-column-post h4 a:hover {
  color: #FFAF1B;
}

.page-column-post div p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.page-column-post .page-column__readmore {
  color: #fff;
  font-weight: 700;
  background-color: #1DD1B0;
  border-radius: 50px;
  padding: 8px 30px;
  display: inline-block;
  float: right;
  transition: background-color 0.3s;
  font-size: 14px;
}

.page-column-post .page-column__readmore:hover {
  background-color: #36a5ca;
}

.page-column-post .page-column__readmore.btm {
  margin-top: 15px;
}

/* ------------------------------------------
  ページネーション
------------------------------------------ */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin: 0 3px;
}

.page-numbers {
  background-color: #1DD1B0;
  color: #fff;
  border: 1px solid #1DD1B0;
}

.page-numbers:hover {
  background-color: #36a5ca;
}

.page-numbers.current {
  background-color: #D9D9D9;
  color: #333;
  border: 1px solid #D9D9D9;
}

.prev.page-numbers,
.next.page-numbers {
  width: auto;
  padding: 0 15px;
}

/* ------------------------------------------
  サイドバー
------------------------------------------ */
.column-sidebar {
  margin-top: 50px;
}

.sidebar-widget {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.sidebar-popular {
  border: 3px solid #FFAF1B;
}

.sidebar-categories {
  border: 3px solid #1DD1B0;
}

.sidebar-recent {
  border: 3px solid #FFAF1B;
}

.sidebar-widget-title {
  margin: 0;
  padding: 15px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
}

.sidebar-popular .sidebar-widget-title {
  background-color: #FFAF1B;
}

.sidebar-categories .sidebar-widget-title {
  background-color: #1DD1B0;
}

.sidebar-recent .sidebar-widget-title {
  background-color: #FFAF1B;
}

.sidebar-widget-content {
  padding: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* 人気記事・新着記事 共通スタイル */
.popular-post,
.recent-post {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}

.popular-post:last-child,
.recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-post-thumbnail,
.recent-post-thumbnail {
  flex: 0 0 80px;
  margin-right: 15px;
}

.popular-post-thumbnail img,
.recent-post-thumbnail img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.popular-post-content,
.recent-post-content {
  flex: 1;
}

.popular-post-title,
.recent-post-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  line-height: 1.4;
}

.popular-post-title a,
.recent-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.popular-post-title a:hover,
.recent-post-title a:hover {
  color: #FFAF1B;
}

.popular-post-date,
.recent-post-date {
  font-size: 13px;
  color: #777;
}

/* カテゴリーリスト */
.column-categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column-category-item {
  margin-bottom: 10px;
  padding: 0;
}

.column-category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: #f7f7f7;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

.column-category-link:hover {
  background-color: #1DD1B0;
  color: #fff;
}

.column-category-link:hover .column-category-count {
  color: #fff;
}

.column-category-name {
  font-weight: 600;
}

.column-category-count {
  color: #777;
  font-size: 14px;
  transition: color 0.3s;
}

/* ------------------------------------------
  レスポンシブ対応
------------------------------------------ */
@media screen and (max-width: 1024px) {
  .column-container {
    max-width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .column-main {
    width: 100%;
  }
  
  .column-sidebar {
    width: 100%;
    margin-top: 30px;
  }
  
  .column-container {
    flex-direction: column;
  }
}



@media screen and (max-width: 576px) {
  .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .popular-post-thumbnail,
  .recent-post-thumbnail {
    flex: 0 0 70px;
  }
  
  .popular-post-thumbnail img,
  .recent-post-thumbnail img {
    height: 70px;
  }
}

.column-post-categories .cat-item {
  list-style: none;
}

.column-post-categories a {
  display: inline-block;
  padding: 5px 12px;
  background-color: #FFAF1B;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s;
  text-decoration: none;
}

.column-post-categories a:hover {
  background-color: #ff9900;
}

.column-post-date {
  color: #777;
  font-size: 14px;
}

.column-post-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: 1.4;
  color: #333;
}

.column-post-excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.column-post-readmore {
  text-align: right;
  margin-top: auto;
}

.column-post-readmore span {
  display: inline-block;
  padding: 8px 20px;
  background-color: #1DD1B0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.column-post-card:hover .column-post-readmore span {
  background-color: #36a5ca;
}

/* ------------------------------------------
  ページネーション
------------------------------------------ */
.column-pagination {
  margin: 40px 0;
  text-align: center;
}

.column-pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.column-pagination li {
  margin: 0;
}

.column-pagination a,
.column-pagination span.current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.column-pagination a {
  background-color: #1DD1B0;
  color: #fff;
}

.column-pagination a:hover {
  background-color: #36a5ca;
}

.column-pagination span.current {
  background-color: #D9D9D9;
  color: #333;
}

.column-pagination .prev,
.column-pagination .next {
  width: auto;
  padding: 0 15px;
}

/* ------------------------------------------
  サイドバー
------------------------------------------ */
.column-sidebar {
  margin-top: 50px;
}

.sidebar-widget {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.sidebar-popular {
  border: 3px solid #FFAF1B;
}

.sidebar-categories {
  border: 3px solid #1DD1B0;
}

.sidebar-recent {
  border: 3px solid #FFAF1B;
}

.sidebar-tags {
  border: 3px solid #1DD1B0;
}

.sidebar-widget-title {
  margin: 0;
  padding: 15px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
}

.sidebar-popular .sidebar-widget-title {
  background-color: #FFAF1B;
}

.sidebar-popular .sidebar-widget-title::after {
  content: url("img/人気記事.webp");
  vertical-align: middle;
  display: inline-block;
  transform: scale(0.6);
  margin-left: 10px;
}

.sidebar-categories .sidebar-widget-title {
  background-color: #1DD1B0;
}

.sidebar-categories .sidebar-widget-title::after {
  content: url("img/カテゴリー.webp");
  vertical-align: middle;
  display: inline-block;
  transform: scale(0.6);
  margin-left: 10px;
}

.sidebar-recent .sidebar-widget-title {
  background-color: #FFAF1B;
}

.sidebar-recent .sidebar-widget-title::after {
  content: url("img/新着記事.webp");
  vertical-align: middle;
  display: inline-block;
  transform: scale(0.6);
  margin-left: 10px;
}

.sidebar-tags .sidebar-widget-title {
  background-color: #1DD1B0;
}

.sidebar-widget-content {
  padding: 20px;
}

/* 人気記事・新着記事 共通スタイル */
.popular-post,
.recent-post {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}

.popular-post:last-child,
.recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-post-thumbnail,
.recent-post-thumbnail {
  flex: 0 0 80px;
  margin-right: 15px;
}

.popular-post-thumbnail img,
.recent-post-thumbnail img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.popular-post-content,
.recent-post-content {
  flex: 1;
}

.popular-post-title,
.recent-post-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  line-height: 1.4;
}

.popular-post-title a,
.recent-post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.popular-post-title a:hover,
.recent-post-title a:hover {
  color: #FFAF1B;
}

.popular-post-date,
.recent-post-date {
  font-size: 13px;
  color: #777;
}

/* カテゴリーリスト */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-column-category {
		display: inline-block;
		margin: 20px;
	}
.page-column-bottomarea {
		margin-top: 100px;
	}
.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #f7f7f7;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
}

.category-link:hover {
  background-color: #eee;
}

.category-count {
  color: #777;
  font-size: 14px;
}

/* タグクラウド */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-link {
  display: inline-block;
  padding: 5px 12px;
  background-color: #f7f7f7;
  color: #555;
  font-size: 14px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.tag-link:hover {
  background-color: #1DD1B0;
  color: #fff;
}

/* ------------------------------------------
  レスポンシブ対応
------------------------------------------ */
@media screen and (max-width: 1024px) {
  .column-container {
    max-width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .column-main {
    width: 100%;
  }
  
  .column-sidebar {
    width: 100%;
    margin-top: 30px;
  }
  
  .column-container {
    flex-direction: column;
  }
  
  .column-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .column-header {
    height: 200px;
  }
  
  .column-title-container {
    padding: 20px 30px;
    max-width: 90%;
  }
  
  .column-title {
    font-size: clamp(26px, 5vw, 36px);
  }
  
  .column-description {
    font-size: 16px;
  }
  
  .column-main-inner {
    padding: 20px;
  }
}

@media screen and (max-width: 576px) {
  .column-post-grid {
    grid-template-columns: 1fr;
  }
  
  .column-pagination a,
  .column-pagination span.current {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .popular-post-thumbnail,
  .recent-post-thumbnail {
    flex: 0 0 70px;
  }
  
  .popular-post-thumbnail img,
  .recent-post-thumbnail img {
    height: 70px;
  }
}

.column {
  background-color: #FFFAEE;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-bottom: 50px;
}

/* ヘッダー部分 */
.column-header {
  position: relative;
  width: 100vw;
  height: 300px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.column-header-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background-image: url('img/opening-staff.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.column-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.column-title-container {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px 60px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 4px solid #FFAF1B;
  text-align: center;
  max-width: 80%;
}

.column-title {
  color: #FFAF1B;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.column-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 30px;
}

/* メインエリア */
#main.column-main {
  width: calc(100% - 380px);
  margin-top: 0;
}

/* 記事一覧スタイル */
.page-column-sec01 {
  width: 100%;
}



.page-column-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-column-post figure {
  width: 30%;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 0;
}

.page-column-post figure img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s;
}

.page-column-post:hover figure img {
  transform: scale(1.05);
}

.page-column-post > div {
  width: 60%;
}

.page-column-post__cd, .post-column__cd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.post-categories li {
  list-style: none;
  margin: 5px;
}

.page-column-post__cd p, .post-categories, .post-column__cd p {
  padding-left: 0px;
  margin: 5px 0;
}

.page-column-post__cd .post-categories li a, .post-column__cd .post-categories li a {
  color: #fff;
  background-color: #FFAF1B;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.page-column-post__cd .post-categories li a:hover, .post-column__cd .post-categories li a:hover {
  background-color: #ff9900;
}

.page-column-post__cd .page-column-post__date, .post-column__cd .post-column__date {
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  padding-top: 5px;
  color: #777;
  font-size: 14px;
}

.page-column-post h4 {
  font-weight: 700;
  font-size: clamp(20px, 3.5vw, 25px);
  margin-top: 10px;
  margin-bottom: 15px;
  line-height: 1.4;
  background: none;
  padding: 0;
  border: none;
}

.page-column-post h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.page-column-post h4 a:hover {
  color: #FFAF1B;
}


.page-column-post .page-column__readmore {
  color: #fff;
  font-weight: 700;
  background-color: #1DD1B0;
  border-radius: 50px;
  padding: 8px 30px;
  display: inline-block;
  float: right;
  transition: background-color 0.3s;
  font-size: 14px;
}

.page-column-post .page-column__readmore:hover {
  background-color: #36a5ca;
}

.page-column-post .page-column__readmore.btm {
  margin-top: 15px;
}

/* サイドバースタイル */
#sidebar.column-sidebar {
  width: 350px;
  margin-top: 80px;
}

/* ウィジェットスタイルのカスタマイズ */
#sidebar .widget {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

#sidebar .widget_new_entries,
#sidebar .widget_popular_entries {
  border: 3px solid #FFAF1B;
}

#sidebar .widget_categories {
  border: 3px solid #1DD1B0;
}

#sidebar .widget-title {
  margin: 0;
  padding: 15px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  position: relative;
}

#sidebar .widget_new_entries .widget-title,
#sidebar .widget_popular_entries .widget-title {
  background-color: #FFAF1B;
}

#sidebar .widget_categories .widget-title {
  background-color: #1DD1B0;
}

/* カテゴリーリスト */
#sidebar .widget_categories ul {
  list-style: none;
  padding: 15px;
  margin: 0;
}

#sidebar .widget_categories li {
  margin-bottom: 10px;
  padding: 0;
}

#sidebar .widget_categories li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background-color: #f7f7f7;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

#sidebar .widget_categories li a:hover {
  background-color: #1DD1B0;
  color: #fff;
}

/* 記事カード */
#sidebar .widget-entry-cards {
  padding: 15px;
}

#sidebar .widget-entry-card-link {
  display: block;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #ddd;
  text-decoration: none;
  transition: opacity 0.3s;
}

#sidebar .widget-entry-card-link:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#sidebar .widget-entry-card-link:hover {
  opacity: 0.8;
}

#sidebar .widget-entry-card {
  display: flex;
  align-items: flex-start;
}

#sidebar .card-thumb {
  width: 120px;
  margin-right: 15px;
}

#sidebar .card-thumb img {
  border-radius: 8px;
  height: auto;
}

#sidebar .card-content {
  flex: 1;
}

#sidebar .card-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  line-height: 1.4;
  color: #333;
}

/* ページネーション */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin: 0 3px;
  background-color: #1DD1B0;
  color: #fff;
  border: 1px solid #1DD1B0;
}

.page-numbers:hover {
  background-color: #36a5ca;
}

.page-numbers.current {
  background-color: #D9D9D9;
  color: #333;
  border: 1px solid #D9D9D9;
}

.prev.page-numbers,
.next.page-numbers {
  width: auto;
  padding: 0 15px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .column-container {
    max-width: 100%;
  }
  
  #main.column-main {
    width: calc(100% - 320px);
  }
  
  #sidebar.column-sidebar {
    width: 300px;
  }
}

@media screen and (max-width: 900px) {
  #main.column-main {
    width: 100%;
  }
  
  #sidebar.column-sidebar {
    width: 100%;
    margin-top: 30px;
  }
  
  .column-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .column-header {
    height: 200px;
  }
  
  .column-title-container {
    padding: 20px 30px;
    max-width: 90%;
  }
  
  .column-title {
    font-size: clamp(26px, 5vw, 36px);
  }
  
  .page-column-post {
    flex-direction: column;
  }
  
  .page-column-post figure {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .page-column-post > div {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* ------------------------------------------
  記事ページ（single.php）用スタイル
------------------------------------------ */

/* 記事コンテナ */
.post-column-sec01 {
  background-color: #fff;
  border-radius: 20px;
  border: 3px solid #FFAF1B;
  padding: 40px;
  margin-bottom: 40px;
}

/* 記事ヘッダー */
.post-column__cd {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.post-column .post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-column .post-categories li {
  margin: 5px;
  padding: 0;
}

.post-column .post-categories li::before {
  display: none;
}

.post-column .post-categories li a {
  color: #fff;
  background-color: #FFAF1B;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.post-column .post-categories li a:hover {
  background-color: #ff9900;
}

.post-column__date {
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  color: #777;
  font-size: 14px;
  margin: 5px 0;
}

/* 記事タイトル */
.post-column__title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  margin: 20px 0;
  color: #333;
  line-height: 1.4;
}

/* アイキャッチ画像 */
.post-column__thumbnail {
  text-align: center;
  margin: 30px 0;
}

.post-column__thumbnail img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 記事コンテンツ */
.post-column__content {
  margin-top: 30px;
}

.post-column__content p {
  line-height: 1.8;
  margin-bottom: 1.5em;
  color: #333;
}

.post-column__content strong {
  background-color: #ff9;
  font-weight: bold;
}

/* 記事内の見出し */
.post-column__content h2 {
  padding: 0.5em;
  color: #494949;
  background: #fffaf4;
  border-left: solid 5px #ffaf58;
  margin: 1.5em 0 1em;
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.4;
}

.post-column__content h3 {
  padding: 0.5em !important;
  color: #FFAF1B !important;
  border-left: solid 5px #FFAF1B !important;
  margin: 1.2em 0 0.8em !important;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.4;
}

.post-column__content h4 {
  margin: 1em 0 0.7em !important;
  color: #ee7800 !important;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.4;
}

/* リスト */
.post-column__content ul {
  border: solid 2px #ffb03f;
  border-radius: 10px;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
  list-style: none; /* ブラウザデフォルトのマーク無効 */
  margin: 1em 0;
}

.post-column__content ul li {
  position: relative;
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.2em;
  border-bottom: 1px dashed #f0b97d;
}

.post-column__content ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c"; /* チェックマーク */
  position: absolute;
  left: -1.3em;
  color: #ffb03f;
}

.post-column__content ul li:last-of-type {
  border-bottom: none;
}


.post-column__content ol {
  counter-reset: number; /* 数字をリセット */
  list-style-type: none !important; /* デフォルトの数字を消す */
  padding: 0.3em 0.8em;
  border: solid 2px #ffb107;
  margin: 0; /* 必要に応じて調整 */
}

.post-column__content ol li {
  border-bottom: dashed 1px orange;
  position: relative;
  padding: 0.5em 0.5em 0.5em 30px;
  line-height: 1.5em;
}

.post-column__content ol li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #ffb107;
  color: white;
  font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.post-column__content ol li:last-of-type {
  border-bottom: none; /* 最後のliの線だけ消す */
}

.region-lin {
            display: grid !important;
            grid-template-columns: 1fr 1fr 1fr !important;
            gap: 0 !important;
            max-width: 600px !important;
        }

        .search-heading {
            font-size: 18px !important;
            font-weight: bold !important;
            margin-bottom: 20px !important;
            color: #333 !important;
            display: flex !important;
            align-items: center !important;
            gap: 8px !important;
            border-bottom: 2px solid #1DD1B0 !important;
            padding-bottom: 8px !important;
        }

        .search-heading::before {
            content: "🔍" !important;
            font-size: 20px !important;
        }

        .region-links p {
            margin: 0 !important;
            padding: 0 !important;
        }

        .region-link {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            padding: 10px 15px !important;
            border: 1px solid #1DD1B0 !important;
            border-radius: 4px !important;
            text-decoration: none !important;
            color: #333 !important;
            background: white !important;
            white-space: nowrap !important;
            box-sizing: border-box !important;
            position: relative !important;
			margin: 4px !important;
        }

        .region-link::after {
            content: "▶" !important;
            color: #1DD1B0 !important;
            position: absolute !important;
            right: 15px !important;
        }

        .region-link:hover {
            background: #f5f5f5 !important;
        }

        @media (max-width: 768px) {
            .region-lin {
                grid-template-columns: 1fr 1fr !important;
                max-width: 100% !important;
            }
			.region-link {
				font-size: 13px;
        }
}
/* テーブル */
.post-column__content table {
  margin: 1.5em auto;
  width: 100%;
  border-collapse: collapse;
}

.post-column__content tbody tr {
  border-bottom: 1px solid #f3e0cc;
}

.post-column__content tbody tr:last-child {
  border-bottom: none;
}

.post-column__content tbody tr:nth-child(odd) {
  background-color: #fff8f0;
}

.post-column__content tbody tr:nth-child(even) {
  background-color: #ffefe0;
}

.post-column__content td {
  padding: 16px 20px;
  vertical-align: middle;
}

.post-column__content td:first-child {
  width: 65%;
  border-right: 1px solid #f3e0cc;
}

.post-column__content td:last-child {
  text-align: center;
  font-weight: bold;
  color: #e67300;
}

/* 引用ブロック */
.post-column__content blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 0;
  padding: 1em;
  quotes: "\201C""\201D""\2018""\2019";
  position: relative;
}

.post-column__content blockquote::before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

/* ボックスデザイン */
.post-column__content .box8 {
  margin: 2em 0 !important;
  padding: 20px !important;
  background: #fffaf0;
  border-radius: 10px;
  border: 2px dashed #ffb03f;
}

.post-column__content .box3 {
  margin: 2em 0 !important;
  padding: 20px !important;
  background: #f7f9ff;
  border-radius: 10px;
  border: 2px solid #b0c4de;
}

.post-column__content .cta-box {
  padding: 2em 1em;
  margin: 2em 0;
  background: #FFF1E1;
  border-radius: 10px;
  text-align: center;
}

.post-column__content .cta-box p {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 22px;
  text-align: center;
  color: #F39800;
  line-height: 1.5;
}

.post-column__content .cta-box p span {
  border-bottom: solid 2px #F39800;
}

/* タグ */
.post-column__tags {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed #ddd;
}

.post-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-tag-icon {
  margin-right: 8px;
  color: #777;
}

.post-column__tags a {
  display: inline-block;
  padding: 6px 12px;
  background: #f5f5f5;
  color: #555;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

.post-column__tags a:hover {
  background: #1DD1B0;
  color: #fff;
}

/* 関連記事 */
#related-entries {
  background-color: #fff;
  border-radius: 20px;
  border: 3px solid #FFAF1B;
  padding: 20px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

#related-entries .related-entry-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

#related-entries .related-entry-heading:before {
  content: "●　";
  color: #FFAF1B;
}

.related-entry-card-wrap {
  padding: 20px;
  border-bottom: 2px solid #FFAF1B;
  margin-bottom: 10px;
}

.related-entry-card-wrap:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.related-entry-card-wrap figure img {
  border-radius: 10px;
}

.related-entry-card-wrap .related-entry-card-snippet,
.related-entry-card-wrap .cat-label {
  display: none;
}

/* ページナビゲーション */
#pager-post-navi {
  display: inline-block;
  width: 100%;
  margin: 30px 0;
}

#pager-post-navi a {
  width: 50%;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #FFAF1B;
  padding: 15px;
  transition: all 0.3s;
  text-decoration: none;
  color: #333;
}

#pager-post-navi a:hover {
  background-color: #fff8e1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#pager-post-navi > a:first-child.next-post {
  margin-left: 50%;
}

#pager-post-navi a .iconfont {
  color: #FFAF1B;
  font-size: clamp(25px, 3.5vw, 38px);
}

.fa-chevron-left:before {
  content: "\025c0";
}

.fa-chevron-right:before {
  content: "\025b6";	
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  #main.column-main {
    width: calc(100% - 320px);
  }
  
  .column-sidebar {
    width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .post-column-sec01 {
    padding: 20px;
  }
  
  #main.column-main {
    width: 100%;
  }
  
  .column-sidebar {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  
  .column-container {
    flex-direction: column;
  }
  
  #pager-post-navi a .page-navigation-title {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .post-column__cd {
    flex-direction: column;
  }
  
  .post-column__date {
    margin-top: 10px;
  }
  
  .post-column__title {
    font-size: clamp(20px, 5vw, 28px);
  }
  
  .post-column__content p,
  .post-column__content li {
    font-size: 15px;
  }
  
  #pager-post-navi a {
    padding: 10px;
  }
}
/* パスワードリセットページのスタイル */
.password-reset-page {
    padding: 2rem 0;
}



.auth-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.auth-header {
    margin-bottom: 2rem;
    text-align: center;
}

.auth-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.auth-description {
    color: #666;
}

.auth-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.auth-form input[type="submit"],
.button {
    display: inline-block;
    padding: 10px 20px;
    color: white !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none !important;
    transition: background-color 0.2s;
	display: block;
    margin: 0 auto;
}

.auth-form input[type="submit"]:hover,
.button:hover {
    background-color: #005f8a;
    color: white !important;
}

.button-secondary {
    background-color: #f7f7f7 !important;
    color: #555 !important;
    border: 1px solid #ccc;
}

.button-secondary:hover {
    background-color: #eaeaea !important;
    color: #333 !important;
}

.button-primary {
    width: 100%;
}

.auth-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.auth-footer a {
    color: #0073aa;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.already-logged-in {
    text-align: center;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 4px;
    margin-bottom: 20px;
}

.notification {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 4px solid #0073aa;
}

.troubleshooting {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff8e1;
    border-left: 4px solid #ffb300;
}

.troubleshooting h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #775500;
}

.notification ol,
.troubleshooting ul {
    margin-left: 20px;
    padding-left: 0;
}

.notification li,
.troubleshooting li {
    margin-bottom: 8px;
}

/* メッセージスタイル */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.message-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #f5c6cb;
}

.message-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #c3e6cb;
}


/* メインコンテナ */
.company-main {
  width: 100vw;
  background-color: #FFFAEE;
  margin: 0;
  padding: 0 0 60px 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ヘッダー部分 */
.company-header {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #2c3454;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.company-header-title {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
}

/* コンテンツ部分 */
.company-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* テーブルスタイル */
.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background-color: #fff;
  margin: 0 auto;
}

.company-table tr {
  transition: background-color 0.3s;
}

.company-table th {
  width: 25%;
  padding: 20px;
  text-align: left;
  vertical-align: middle;
  background-color: #FFAF1B;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid #f3e0cc;
  font-size: 16px;
}

.company-table td {
  width: 75%;
  padding: 20px 25px;
  border-bottom: 1px solid #f3e0cc;
  vertical-align: middle;
  line-height: 1.8;
  font-size: 16px;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}


@media screen and (max-width: 480px) {
  .company-header {
    height: 120px;
  }
  
  .company-header-image {
    display: none;
  }
  
  .company-header-title {
    font-size: 24px;
  }
  
}

/**よくある質問**/

.p-accordion-desc  {
  border: 1px solid #FFAA2A; 
  padding: 10px;
  background-color: #fff;
}

.p-accordion {
  max-width: 800px;
  margin-inline: auto;
}

.p-accordion__head {
  cursor: pointer;
  background-color: #FFAA2A;
  display: block;
  color: #000;
  font-weight: bold;
  padding: 7px 20px;
  margin-top: 10px;
}

.p-accordion__head-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-accordion__icon {
  display: block;
  position: relative;
  width: 24px;
  transition: transform 0.25s;
}
.p-accordion__icon:before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 2px;
  background-color: #fff;
}
.p-accordion__icon:after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 2px;
  background-color: #fff;
}
.p-accordion__icon:before {
  left: 0;
  transform: rotate(45deg);
}
.p-accordion__icon:after {
  right: 0;
  transform: rotate(-45deg);
}
.p-accordion__input input[name=p-accordion__block] {
  display: none;
}
.p-accordion__input .p-accordion__block {
  cursor: pointer;
}
.p-accordion__input .p-accordion__content {
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  opacity: 0.5;
  background-color: #fff;
  transition: padding 0.25s ease, opacity 0.3s ease 0s;
}
.p-accordion__input input[name=p-accordion__block]:checked + .p-accordion__head > .p-accordion__head-inner .p-accordion__icon {
  transform: rotate(-180deg);
}
.p-accordion__input input[name=p-accordion__block]:checked + .p-accordion__head + .p-accordion__content {
  /*開閉時*/
  height: auto;
  opacity: 1;
  padding: 20px;
}

.p-accordion:last-child {
  margin-bottom: 35px;
}

/* お問い合わせフォーム */

.wpcf7 br {
  display: none !important;
}

/* フォーム全体のスタイル */
.wpcf7 {
  max-width: 800px;
  margin: 0 auto 50px !important;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 0 !important;
}

/* ヘッダー部分 */
.contact-header {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #fff;
  border-radius: 15px 15px 0 0;
}

.contact-title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 1px;
}

.contact-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto;
}

.contact-form {
    width: 100%;
    max-width: 900px;
    margin: 50px auto;
    margin-bottom: 20px;
    border-collapse: collapse;
}

.contact-form tr {
    background: none !important;
}

.contact-form th {
    text-align: left;
    font-weight: bold;
    padding: 15px 0px 5px 50px;
    font-size: 14px;
    background: none !important;
    vertical-align: top;
    width: 200px;
}

.contact-form td {
    background: none !important;
    padding: 10px 50px 25px 20px;
    vertical-align: top;
}

.required1, .optional1 {
    color: #fff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 3px;
    margin-right: 8px;
    display: inline-block;
}

.required1 {
    background-color: #e74c3c;
}

.optional1 {
    background-color: #3498db;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
    font-family: inherit;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.contact-accept {
    max-width: 600px;
    margin: 30px auto;
    font-size: 14px;
    text-align: center;
    padding: 0 20px;
}

.contact-accept label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-accept input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
}

.privacy-link {
    color: #3498db;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #2980b9;
}

#formbtn {
    display: block;
    width: 100%;
    max-width: 600px;
    background-color: #2ecc71;
    color: #fff;
    padding: 15px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    margin: 30px auto;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-sizing: border-box;
}

#formbtn:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .wpcf7 {
        margin: 0 10px 30px 10px !important;
    }
    
    .contact-header {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-form th,
    .contact-form td {
        display: block;
        width: 100%;
        padding: 10px 15px;
    }
    
    .contact-form th {
        padding-bottom: 5px;
    }
    
    .contact-form td {
        padding-top: 0;
        padding-bottom: 20px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        font-size: 16px; /* iOS のズーム防止 */
    }
    
    .contact-accept {
        padding: 0px;
    }
    
    #formbtn {
        margin: 20px 15px;
        padding: 12px;
        font-size: 16px;
		width: 90%;
    }
}

/* エラーメッセージのスタイル */
.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.wpcf7-validation-errors {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
}

.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
}

/* 送信中のスタイル */
.wpcf7-form.submitting input[type="submit"] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 無効な入力フィールドのスタイル */
.wpcf7-form .wpcf7-not-valid {
    border-color: #e74c3c !important;
    background-color: #fff5f5;
}

.contact-page-wrapper {
    width: 100vw;
    background-color: #FFFAEE;
    padding: 60px 0 60px 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
} 

.wpcf7 table:not(.has-border-color) :where(th, td) {
  border: none !important;
}

/* 個人情報保護方針用見出しスタイル - シンプル版 */
.txt_orange {
    font-size: 1.5rem;
    color: #2c3e50;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #FFA91C;
    border-radius: 8px;
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.section-number {
    color: #3498db;
    font-weight: bold;
    margin-right: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .txt_orange {
        font-size: 1.5rem;
        padding: 15px;
    }
}
/* キーワード検索フィールドのスタイル */
.keyword-input-field {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
  position: relative;
  height: 47px; /* 他の選択フィールドの高さに合わせる */
  display: flex;
  align-items: center;
}

.keyword-input-field:hover {
  border-color: #FFBD59;
}

.keyword-input-field input {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 15px;
  color: #333;
  padding: 0 15px;
  background: transparent;
  outline: none;
  box-sizing: border-box;
}

.keyword-input-field input::placeholder {
  color: #999;
}

/* 検索フォームのレイアウト調整（既存コードを維持） */
.search-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  width: 100%;
}

.search-col {
  flex: 1;
  min-width: 0;
}


.containe {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.thank-you-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: 50px;
}

.ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #1dd1b0;
    border-radius: 50%;
}

.ico svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.butt {
    display: inline-block;
    padding: 12px 24px;
    font-weight: bold;
    color: #fff;
    background-color: #1dd1b0;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.butt:hover {
    background-color: rgba(29, 209, 176, 0.6);
}

.inf {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}
.thank-you-box h1 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
	.login-btn {
    margin-right: 0;
}
  .header-top {
    padding: 5px;
  }

  .mobile-menu {
    padding-top: 100px;
  }

  .site-title {
    font-size: 11px;
    margin-bottom: 0;
  }

  nav.main-navigation {
    display: none;
  }

  .hamburger-menu {
    display: flex;
  }

  .logo img {
    height: 40px;
  }

  .user-nav {
    display: none;
  }

  .search-title {
    font-size: 18px !important;
  }

  .search-count {
    font-size: 12px;
  }
  .section-tit {
    font-size: 20px;
}
  .tokuchou-image {
    height: 150px;
}
  .tokuchou-title h3 {
    font-size: 18px;
}

    .tokuchou-container {
        flex-direction: column;
    }
    
    .tokuchou-item {
        margin-bottom: 20px;
    }
	
	.new-jobs .section-tit {
    font-size: 20px;
}
	.new-jobs .container {
  padding-left: 0;
}
	.about-main-title {
	margin-bottom: 50px;
}
	.about-site {
    padding: 50px 0;
}
   .about-item-title {
  font-size: 18px;
}
	
.matching-title {
    font-size: 20px;
}
	
	.matching-image img {
    width: 80%;
}
	.matching-label {
    font-size: 16px;
}
	.register-large-btn {
    font-size: 16px;
}
main.main,
div.sidebar {
  padding: 0 16px;
}
	.footer-container {
    max-width: calc(100% - 100px);
}
	.footer-logo {
    text-align: center;
   }
	
	.site-footer {
    padding: 30px 0 0;
}

  .main-visual {
    height: 200px; /* 高さを固定 */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.main-visual-content {
  position: relative;
  top: -60px;
  max-width: 100%;
  padding: 20px 10px;
  margin-left: 0;
}
	
  .main-visual-title {
    font-size: 20px;
	white-space: nowrap; 
  }

  .main-visual-text {
    font-size: 14px;
  }

  .nationwide .container {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .japan-map,
  .nationwide-title,
  .nationwide-text {
    grid-column: 1 / 2;
    grid-row: auto;
    align-self: auto;
  }

  .nationwide-title {
	font-size: 20px;
    margin-bottom: 0;
    order: 1;
  }
  .japan-map {
     margin: 0;
     order: 2;
     max-width: 300px;
  }
   .nationwide-text {
     max-width: 600px;
     font-size: 16px;
     margin: 0 auto;
     order: 3;
   }
	
	.features {
    padding: 0;
}
	.support-grid {
    flex-direction: column;
  }
	.feature-card, .voice-card {
        width: 100%;
      }
      
      .support-item {
        width: 100%;
		margin-bottom: 50px;
      }
      
      .condition-item {
        width: 100%;
      }
	
	.support-title {
        display: block;
        width: 100%;
    }
	
	.recruitment-title {
    font-size: 20px;
}
	.recruitment-text {
    text-align: left;
    padding: 10px;
}
	
	nav {
        display: block;
    }
	
	.mypage-navigation a {
    justify-content: flex-start;
    text-align: left;
    padding-left: 40px;
    padding-right: 40px;
}
	.site-main {
    padding: 0px;
}
	
	.company-section {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
	
	.facility-icon img {
    width: 80%;
    height: 80%;
}
	.facility-icons {
    gap: 0px;
}
	
	.left-content {
    gap: 0px;
}
	.section-header h2 {
    display: block;
	text-align: center;
  }
	
	.mypage-content {
    padding: 10px;
}
	main.login-page .content {
        display: block;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
	
	main.login-page .auth-container {
    width: 100%;
}
	.auth-container {
    width: 100%;
		padding: 20px 15px;
}
	.button {
   margin-bottom: 15px !important;
}

	.auth-form {
    padding: 0 !important;
  }
	
	.link-text-forgot a {
    display: block;
    margin-top: 4px; 
}

.link-text-register a {
    display: block;
    margin-top: 4px;
}
	#wpmem_login .link-text {
    font-size: 14px;
}
	
	.entry {
    padding: 20px;
  }
	
  .company-header {
    height: 160px;
    margin-bottom: 0;
    padding: 0 10px;
  }
  
  .company-header-image {
    width: 30%;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  }
  
  .company-header-title {
    font-size: 28px;
    text-align: center;
  }
  
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  .company-table th {
    padding: 15px;
    font-size: 14px;
    border-bottom: none;
	text-align: center;
  }
  
  .company-table td {
    padding: 15px;
    font-size: 14px;
  }
	    .p-accordion__icon {
        width: 24px;
        flex-shrink: 0;
        transition: transform 0.25s;
    }
	
	.company-table {
    margin-top: 30px;
}
  .column-header {
    height: 200px;
  }
  
  .column-title-container {
    padding: 20px 30px;
    max-width: 90%;
  }
  
  .column-title {
    font-size: clamp(26px, 5vw, 36px);
  }
  
  .column-main-inner {
    padding: 0;
  }
  
  .page-column-post {
    flex-direction: column;
  }
  
  .page-column-post figure {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .page-column-post > div {
    width: 100%;
  }
	
	.cont {
    padding: 10px 0;
}
	.slideshow-container {
   padding: 0px;
}
    .slideshow-container {
        flex-direction: column;
        min-height: auto;
    }
    .slideshow, .job-details {
        width: 100%;
        height: auto;
    }
    .slideshow {
        margin-bottom: 20px;
        height: 200px;
    }
    .job-details {
        padding:0;
        min-height: 350px;
    }
    .job-position {
        margin-bottom: 5px;
    }
	.salary-range {
       margin-bottom: 5px;
}
	.salary-label {
    margin-bottom: 5px;
}
    .job-salary {
        margin-bottom: 20px;
        min-height: 130px;
    }
    .button-group {
        margin-top: 20px;
    }
    .content-area {
        flex-direction: column;
    }
    .main-content, .custom-sidebar {
        width: 100%;
    }
    .facility-type {
        position: static;
        justify-content: flex-end;
        margin-bottom: 15px;
    }
    .tab-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline-time-orange,
    .timeline-time-white {
        margin-bottom: 8px;
		font-size: 14px;
    }
	
	.job-content-title {
    font-size: 16px;
}
	.job-introduction p {
    font-size: 14px;
}
	.job-descripti, .facility-details {
    padding: 10px;
}
	
	.section-title {
    margin: -10px -10px 15px -10px;
	font-size: 18px;
}
	.feature-title {
    font-size: 16px;
}
	.job-tag {
    padding: 5px 10px;
    font-size: 11px;
}
	.environment-title {
	font-size: 18px;
}
	
	.section-subtitle {
    font-size: 16px;
    margin: 5px;
}
	.job-info-table td,
.facility-info-table td {
    font-size: 14px;
}

	.staff-voice {
    padding: 0px;
}
	
    .staff-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }
    
    .staff-details {
        padding-left: 0;
    }
	
	.job-info-table th, {
	font-size: 12px;
}
	.related-jobs h3 {
    font-size: 18px;
}
	
	.tab-navigation a {
    font-size: 16px;
}

  .modal-wrapper {
    max-width: 95% !important;
    margin: 40px auto 20px;
  }


  .search-row {
    flex-direction: column;
  }
  
  .search-col {
    min-width: 100%;
  }
  
  .search-actions {
    flex-direction: column;
  }
  
  .feature-checkbox-grid {
    grid-template-columns: 1fr;
  }
  
	.modal-body {
    padding: 10px;
}
  .modal-wrapper {
    max-width: 100%;
    margin: 0;
  }
  
  .area-grid,
  .prefecture-grid,
  .city-grid,
  .position-grid,
  .selection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

	.area-btn, .prefecture-btn, .city-btn, .position-btn, .selection-btn {
    font-size: 13px;
}

	.agency-nav-container {
    padding: 0 !important;
}
	
   .job-list-item {
    flex-direction: column;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
  }

  .job-item-cell {
    width: 100%;
    flex: none;
    padding: 6px 12px;
  }

  .job-status-cell,
  .job-date-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
.job-status-cell .status-publish {
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
	width: 100%;
    text-align: center;
}

  .job-actions-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    justify-content: flex-start;
  }
	.job-list-header {
        font-size: 14px;
        padding: 6px !important;
    }
	.job-list-header .job-title-header {
    flex: none;
}


  .btn-edit,
  .btn-draft,
  .btn-publish,
  .btn-delete {
    min-width: 80px;
  }
 .job-actions-header {
    display: none;
  }

#wpmem_login {
    width: 100% !important;
	max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.password-reset-page .content {
    padding: 0;
}




}
@media screen and (max-width: 768px) {
  /* 求人カードのレイアウト変更 */
  .job-card {
    padding: 15px;
	overflow: visible !important; 
  }
  
  /* job-contentを縦並びに変更 */
  .job-content {
    flex-direction: column;
    gap: 10px;
  }
  
  /* 内部要素の順序調整のためdisplay:flexを設定 */
  .job-card {
    display: flex;
    flex-direction: column;
  }
  
  /* 右コンテンツを最初に表示 */
  .right-content {
    width: 100%;
    order: 1;
    display: flex;
    flex-direction: column;
  }
  
  /* 左コンテンツを分解して順序を入れ替える */
  .left-content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* company-nameとemployment-typeのレイアウト調整 */
  .company-section {
    display: flex;
  }
  
  .company-name {
    font-size: 13px;
  }
  
  .employment-type {
    font-size: 11px;
    padding: 4px 10px;
  }
  
  /* job-titleを調整 */
  .job-title {
    font-size: 18px;
    margin-bottom: 10px;
    order: 2;
  }
  
  /* サムネイル画像を job-title の直後に配置 */
  .job-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    order: 3;
  }
  
  .job-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
  
  /* job-subtitleを調整 */
  .job-subtitle {
  font-size: 15px;
  margin: 10px 0;
  order: 4;
  width: 100%;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

  
  .job-description {
  font-size: 14px;
  margin-bottom: 10px;
  order: 5;
  width: 100%;
  
  display: -webkit-box;              /* ← 必須 */
  -webkit-line-clamp: 2;             /* ← 表示行数 */
  -webkit-box-orient: vertical;      /* ← 縦方向に制限 */
  overflow: hidden;                  /* ← はみ出しを切る */
  text-overflow: ellipsis;           /* ← 省略記号 (…) を表示 */
}

	.containe {
    margin: 10px auto;
    padding: 0px 0px;
}
  
  /* job-infoを調整 */
  .job-info {
    order: 6;
    margin: 10px 0;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 10px;
	height: auto;
  }
  
  /* 施設アイコンを下に移動 */
  .facility-icons {
    order: 7;
    margin: 0;
    justify-content: flex-start;
  }
  
  /* タグも下に移動 */
  .tags-container {
    order: 8;
    flex-wrap: wrap !important; 
    margin: 10px 0;
  }
  
  /* ボタンエリアを調整 */
  .buttons-container {
    order: 9;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }
  
  .keep-button, .detail-view-button {
    width: 100%;
  }
  
  /* 区切り線の非表示 */
  .divider {
    display: none;
  }
  
  /* 左右コンテンツの入れ子になっている子要素を直接移動させるための調整 */
  .job-content {
    display: contents;
  }
  
  .left-content {
    display: contents;
  }
  
  .right-content {
    display: contents;
  }
	
	.page-column-post h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* ここで表示行数を制限（例：2行） */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
	
	.page-column-post p {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 表示する行数（ここでは3行） */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.other-input-field {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.other-input-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}

.other-input-field input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}

.other-input-field input[type="text"]:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.other-input-field .required {
    color: #dc3545;
}

}

    /* 読み取り専用フィールドのスタイル */
    .readonly-field {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 4px;
        padding: 12px;
    }

    .readonly-value {
        color: #495057;
        font-size: 14px;
        margin: 0;
    }

    .readonly-info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
        margin-top: 15px;
    }

    .readonly-item {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        border-radius: 4px;
        padding: 12px;
    }

    .readonly-item label {
        display: block;
        font-weight: 600;
        color: #495057;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .readonly-item .readonly-value {
        color: #6c757d;
        font-size: 13px;
        line-height: 1.4;
    }

    .readonly-item .readonly-value a {
        color: #007cba;
        text-decoration: none;
    }

    .readonly-item .readonly-value a:hover {
        text-decoration: underline;
    }

    .section-note {
        background-color: #fff3cd;
        color: #856404;
        border: 1px solid #ffeaa7;
        border-radius: 4px;
        padding: 10px;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .map-preview {
        max-height: 200px;
        overflow: hidden;
        border-radius: 4px;
    }

    .map-preview iframe {
        width: 100%;
        height: 200px;
        border: 0;
    }

    /* レスポンシブ対応 */
    @media (max-width: 768px) {
        .readonly-info-grid {
            grid-template-columns: 1fr;
        }
    }

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: 
#212529;
  border-radius: 0.5rem;
}

.btn-wrap {
  margin: 30px 0;
  text-align: center;
}

a.btn-c {
  font-size: 1.3rem;
  position: relative;
  padding: 0.15rem 2rem 0.45rem 3.5rem;
  color: #fff;
  background: 
#FFAF1B;
  -webkit-box-shadow: 0 5px 0 
#FFAF1B;
  box-shadow: 0 5px 0 
#FFAF1B;
}

a.btn-c strong.btn-label {
  font-size: 1.0rem;
  position: absolute;
  top: -10px;
  left: calc(50% - 150px);
  display: block;
  width: 300px;
  padding: 0.2rem 0;
  color: #FFAF1B;
  border: 2px solid #FFAF1B;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: 
#30a967;
-webkit-box-shadow: 0 2px 0 
#FFAF1B;
  box-shadow: 0 2px 0 
#FFAF1B;
}

a.btn-c:hover:before {
  left: 2rem;
}
.fa-angle-double-right:before {
    content: "\f101";
    color: #fff;
}

/* マッチング案内 */
.job-match-section {
  background-color: #1DD1B0;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 15%;
}

.job-match-container {
  max-width: 600px;
  margin: 0 auto;
}

.job-match-heading {
  font-size: 24px;
  margin-bottom: 30px;
}

.job-match-desc {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.job-match-image {
  width: 200px;
  margin: 0 auto 15px;
}

.job-match-image img {
  width: 100%;
  display: block;
}

.job-match-label {
  font-size: 20px;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.job-register-btn {
  display: inline-block;
  background-color: #fff;
  color: #FFBD59;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  transition: background-color 0.3s, color 0.3s;
}

.job-register-btn:hover {
  background-color: #FF9234;
  color: #fff;
}

p.job-match-desc {
    color: #fff;
}

.btn-icon {
  display: inline-block;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .job-match-section {
    padding: 30px 15px;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 50px;
    border-radius: 8px;
  }

  .job-match-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .job-match-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .job-match-label {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .job-match-image {
    width: 150px;
    margin-bottom: 15px;
  }

  .job-register-btn {
    font-size: 16px;
    padding: 12px 30px;
  }

  a.btn-c {
    font-size: 1.1rem;
    padding: 0.3rem 1.5rem 0.5rem 2.5rem;
  }

  a.btn-c span {
    font-size: 0.9rem;
    width: 250px;
    left: calc(50% - 125px);
  }
}
/* 関連記事 */
#related-entries {
  background-color: #fff;
  border-radius: 20px;
  border: 3px solid #FFAF1B;
  padding: 20px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

#related-entries .related-entry-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

#related-entries .related-entry-heading:before {
  content: "●　";
  color: #FFAF1B;
}

.related-entry-card-wrap {
  padding: 20px;
  border-bottom: 2px solid #FFAF1B;
  margin-bottom: 10px;
}

.related-entry-card-wrap:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.related-entry-card-wrap figure img {
  border-radius: 10px;
}

.related-entry-card-wrap .related-entry-card-snippet,
.related-entry-card-wrap .cat-label {
  display: none;
}

/* ページナビゲーション */
#pager-post-navi {
  display: inline-block;
  width: 100%;
  margin: 30px 0;
}

#pager-post-navi a {
  width: 50%;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #FFAF1B;
  padding: 15px;
  transition: all 0.3s;
  text-decoration: none;
  color: #333;
}

#pager-post-navi a:hover {
  background-color: #fff8e1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#pager-post-navi > a:first-child.next-post {
  margin-left: 50%;
}

#pager-post-navi a .iconfont {
  color: #FFAF1B;
  font-size: clamp(25px, 3.5vw, 38px);
}

.fa-chevron-left:before {
  content: "\025c0";
}

.fa-chevron-right:before {
  content: "\025b6";	
}
/* === peek-slider クリック&ドラッグ対応CSS === */

/* 基本設定 */
.peek-slider-container {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  position: relative;
  z-index: 1;
}

/* ドラッグ中のスタイル */
.peek-slider-container.dragging {
  transition: none !important;
  cursor: grabbing;
}

/* スライド要素 */
.peek-slide {
  pointer-events: auto;
  position: relative;
  cursor: pointer; /* クリック可能であることを示す */
}

/* リンク要素は通常時はクリック可能 */
.peek-slide .slide-link {
  pointer-events: auto;
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

/* ドラッグ中はリンクを一時的に無効化（JavaScriptで制御） */
.peek-slider-container.dragging .peek-slide .slide-link {
  pointer-events: none;
}

/* 画像とオーバーレイはクリックイベントを通す */
.peek-slide img,
.peek-slide .slide-overlay,
.peek-slide .read-article {
  pointer-events: none; /* クリックイベントを親に委譲 */
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* ホバー効果 */
.peek-slide:hover .slide-overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.peek-slide:hover .read-article {
  opacity: 1;
  transform: scale(1);
}

/* ドラッグ中はホバー効果を無効化 */
.peek-slider-container.dragging .peek-slide:hover .slide-overlay {
  background-color: rgba(0, 0, 0, 0);
}

.peek-slider-container.dragging .peek-slide:hover .read-article {
  opacity: 0;
  transform: scale(0.8);
}

/* タッチデバイス対応 */
.peek-slider-container {
  touch-action: pan-y pinch-zoom;
}

/* ナビゲーションボタンとドットは常にクリック可能 */
.peek-slider-button,
.peek-slider-dot {
  pointer-events: auto !important;
  z-index: 10;
}

/* 親要素の設定 */
.peek-slider-wrapper,
.peek-slider {
  position: relative;
  overflow: visible;
}

/* アクセシビリティ向上 */
.peek-slide .slide-link {
  outline: none;
}

.peek-slide .slide-link:focus {
  outline: 2px solid #ff9234;
  outline-offset: 2px;
}

/* スムーズなトランジション */
.peek-slider-container {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* クリック時の視覚的フィードバック */
.peek-slide .slide-link:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.peek-slider-container.dragging .peek-slide .slide-link:active {
  transform: none;
}

.banner-container {
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
    padding: 0 10px;
}

.banner-link {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.banner-link:hover {
    opacity: 0.7;
}

.banner-image {
    width: 90%; /* PCは少し小さく */
    height: auto;
    display: block;
    margin: 0 auto; /* 中央寄せ */
}

.banner-pc {
    display: block;
}

.banner-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .banner-pc {
        display: none;
    }

    .banner-mobile {
        display: block;
    }

    .banner-container {
        padding: 0 10px;
    }

    .banner-image {
        width: 100%; /* SPは大きく */
    }
}
/* ≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
教室一覧 - list
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ */
.page-id-11082 #content {
    background-image: url(images/pattern.png);
}

/*教室一覧*/
.list-main-visual {
    background-image: url(images/募集教室一覧.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 27.08vw;
    position: relative;
    overflow: hidden;
    margin-bottom: 6.94vw;
}

.list-content {
    background: #fff;
	width: 100%;
    margin: 0 auto;
    border-radius: 50px;
}

/* 日本地図DOM */
.japan_map{
    width: 600px;
    height: auto;
    position: relative;
    box-sizing: border-box;
    margin: 30px auto;
    display: table;
}

/* 日本地図画像（スマホ対応用） */
.japan_map img{
    max-width: 100%;
    height: auto;
    border: 0;
    -webkit-backface-visibility: hidden;
}

/* 日本地図ボタン */
.japan_map .area_btn{
    position: absolute;
    z-index: 1;
    box-sizing: border-box;
    cursor: pointer;
    border: 1.5px solid #CCC;
    border-radius: 5px;
    background-color: #FFF;
    padding: 0.2em auto;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    transition: 0.3s;
}

.japan_map .area_btn:hover {
    background-color: #F5F4F4;
    transition: 0.2s;
}

/* ボタン配置（使用する日本地図画像により微調整） */
.japan_map .area_btn.area1{
    top: 25%;
    right: 0;
    width: 30%;
}

.japan_map .area_btn.area2{
    top: 68%;
    right: 25%;
    width: 13%;
}

.japan_map .area_btn.area3{
    top: 45%;
    right: 45%;
    width: 13%;
}

.japan_map .area_btn.area4{
    top: 75%;
    right: 50%;
    width: 13%;
}

.japan_map .area_btn.area5{
    top: 60%;
    left: 8%;
    width: 25%;
}

.japan_map .area_btn.area6{
    top: 90%;
    left: 0;
    width: 25%;
}

/* オーバーレイ */
.japan_map .area_overlay{
    display: none;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-color: #111;
    opacity: 0.5;
    cursor: pointer;
}

/* 選択前は表示を隠す */
.japan_map .pref_area{
    display: none;
}

/* 地域毎の都道府県リスト */
.japan_map .pref_list{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    z-index: 3;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    background-color: #FFF;
}

.japan_map .pref_list > div{
    box-sizing: border-box;
    width: 50%;
    border: 1px solid #CCC;
    font-weight: bold;
    text-align: center;
    padding: 0.5em;
    cursor: pointer;
}

.btn.btn-primary {
    width: auto; /* 幅を自動に設定 */
    max-width: 250px; /* 最大幅を設定 */
    padding: 10px 30px; /* パディングを調整 */
    background-color: #FFAA2A;
    border-color: #FFAA2A;
    color: #fff; /* ボタンのテキストカラーを白に設定 */
    font-weight: bold; /* テキストの太字を設定 */
    font-size: 16px; /* テキストのフォントサイズを設定 */
    border-radius: 5px; /* ボーダーの角丸を設定 */
    cursor: pointer; /* カーソルをポインターに設定 */
}

.btn.btn-primary:hover {
    background-color: #FF8800; /* ホバー時の背景色を変更 */
    border-color: #FF8800; /* ホバー時のボーダーカラーを変更 */
}

/** list - 追加調整 **/
.pref_list div {
    transition: 0.3s;
}

.pref_list div:hover {
    background-color: #F5F4F4;
    transition: 0.3s;
}

.page-id-11082 #sidebar {
    display: none;
}

.page-id-11082 #content {
    padding-bottom: 110px;
}

.page-id-11082 #content {
    /** チェック背景 **/
    background-color: #F8F8f8;
    background-repeat: repeat;
    background-size: 45px 45px;
    border-radius: 100px;
    padding-bottom: 150px;
    padding-top: 56px;
    padding-top: 80px;
}

.page-id-11082 main {
    background-color: initial;
}

.page-id-11082 .list-content {
    padding: 2rem 3rem;
}

.page-id-11082 #breadcrumb {
    padding-bottom: 80px;
}
/* ===== 教室一覧専用テーブルの固定幅設定 ===== */
.page-id-11082 .table,
.list-content .table {
    width: 100% !important;
    margin-bottom: 30px !important;
}



/* PC表示のみに適用 */
@media screen and (min-width: 759px) {
    .page-id-11082 .table th:nth-child(2),
    .page-id-11082 .table td:nth-child(2),
    .list-content .table th:nth-child(2),
    .list-content .table td:nth-child(2) {
        width: 60% !important; /* 住所列 - 大幅に広く */
    }

    .page-id-11082 .table th:nth-child(3),
    .page-id-11082 .table td:nth-child(3),
    .list-content .table th:nth-child(3),
    .list-content .table td:nth-child(3) {
        width: 15% !important; /* 求人リンク列 - 狭く */
    }
}

/* セルの基本スタイル */
.page-id-11082 .table th,
.page-id-11082 .table td,
.list-content .table th,
.list-content .table td {
    padding: 12px 8px !important;
    border: 1px solid #ddd !important;
    vertical-align: top !important;
    word-wrap: break-word !important; /* 長いテキストの折り返し */
}

/* ヘッダーのスタイル */
.page-id-11082 .table th,
.list-content .table th {
    background-color: #f5f5f5 !important;
    font-weight: bold !important;
    text-align: center !important;
}

/* 教室名列のスタイル */
.page-id-11082 .td--01,
.list-content .td--01 {
    font-weight: bold !important;
}

.page-id-11082 .td--01 a,
.list-content .td--01 a {
    color: #0066cc !important;
    text-decoration: none !important;
}

.page-id-11082 .td--01 a:hover,
.list-content .td--01 a:hover {
    text-decoration: underline !important;
}

/* 求人リンク列のスタイル */
.page-id-11082 .td--03,
.page-id-11082 .recruitment-link,
.list-content .td--03,
.list-content .recruitment-link {
    text-align: center !important;
    padding: 8px !important;
}

.page-id-11082 .recruitment-link a,
.list-content .recruitment-link a {
    display: inline-block !important;
    background-color: #FFAA2A !important;
    color: white !important;
    padding: 6px 12px !important; /* より小さく */
    border-radius: 4px !important;
    text-decoration: none !important;
    font-size: 12px !important; /* より小さく */
    font-weight: bold !important;
    transition: background-color 0.3s !important;
    white-space: nowrap !important; /* 文字の改行を防止 */
}

.page-id-11082 .recruitment-link a:hover,
.list-content .recruitment-link a:hover {
    background-color: #FF8800 !important;
}

/* レスポンシブ対応 */
@media screen and (max-width: 758px) {
    .page-id-11082 #breadcrumb{
        padding-bottom: 40px;
    }
    .page-id-11082 #content {
        border-radius: 50px;
    }
    .page-id-11082 .list-content {
        padding: 2rem 2rem;
        width: 90%;
    }
    .japan_map {
        width: 100%;
    }
    .page-id-11082 .main {
        height: 100%;
        min-height: auto; 
    }
    
    /* スマホ表示：テーブルヘッダーを非表示 */
    .page-id-11082 .table thead,
    .list-content .table thead {
        display: none !important;
    }
    
    /* スマホ表示：各行をブロック表示に変更 */
    .page-id-11082 .table tr,
    .list-content .table tr {
        /* display: block !important; */
        margin-bottom: 20px !important;
        border: 1px solid #ddd !important;
        border-radius: 8px !important;
        background-color: #fff !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    }
    
    /* スマホ表示：各セルをブロック表示に変更 */
    .page-id-11082 .table td,
    .list-content .table td {
        display: block !important;
        width: 100% !important;
        border: none !important;
        /* border-bottom: 1px solid #eee !important; */
        padding: 5px !important;
        text-align: left !important;
        position: relative !important;
    }
    
    /* スマホ表示：最後のセルの下線を消す */
    .page-id-11082 .table td:last-child,
    .list-content .table td:last-child {
        /* border-bottom: none !important; */
    }
    
    /* スマホ表示：各セルの前にラベルを追加 */
    /*
    .page-id-11082 .table td:nth-child(1)::before,
    .list-content .table td:nth-child(1)::before {
        content: "教室名：" !important;
        font-weight: bold !important;
        color: #666 !important;
        display: inline-block !important;
        margin-bottom: 5px !important;
        font-size: 12px !important;
    }
    
    .page-id-11082 .table td:nth-child(2)::before,
    .list-content .table td:nth-child(2)::before {
        content: "住所：" !important;
        font-weight: bold !important;
        color: #666 !important;
        display: inline-block !important;
        margin-bottom: 5px !important;
        font-size: 12px !important;
    }
    
    .page-id-11082 .table td:nth-child(3)::before,
    .list-content .table td:nth-child(3)::before {
        content: "求人情報：" !important;
        font-weight: bold !important;
        color: #666 !important;
        display: inline-block !important;
        margin-bottom: 8px !important;
        font-size: 12px !important;
    }
    */
    
    /* スマホ表示：教室名のスタイル調整 */
    .page-id-11082 .td--01,
    .list-content .td--01 {
        font-size: 16px !important;
    }
    
    /* スマホ表示：住所のスタイル調整 */
    .page-id-11082 .table td:nth-child(2),
    .list-content .table td:nth-child(2) {
        font-size: 14px !important;
        line-height: 1.4 !important;
        color: #555 !important;
    }
    
    /* スマホ表示：求人ボタンのスタイル調整 */
    .page-id-11082 .table td:nth-child(3),
    .list-content .table td:nth-child(3) {
        text-align: center !important;

    }
    
    .page-id-11082 .recruitment-link a,
    .list-content .recruitment-link a {
        padding: 10px 20px !important;
        font-size: 14px !important;
        display: inline-block !important;
        width: auto !important;
        margin-top: 5px !important;
    }
	
	.japan_map .area_btn {
  font-weight: bold;
}

}

@media screen and (max-width: 480px) {
    /* より小さい画面での調整 */
    .page-id-11082 .list-content {
        padding: 1rem 1rem;
        width: 95%;
    }
    
    .page-id-11082 .table td,
    .list-content .table td {
        padding: 5px !important;
        font-size: 14px !important;
    }
    
    .page-id-11082 .td--01,
    .list-content .td--01 {
        font-size: 15px !important;
    }
    
    .page-id-11082 .table td:nth-child(2),
    .list-content .table td:nth-child(2) {
        font-size: 13px !important;
    }
    
    .page-id-11082 .recruitment-link a,
    .list-content .recruitment-link a {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
}