@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
/* ===============================
   
=============================== */


/*****************************************
 * グローバルナビ文字設定
 ******************************************/

.c-gnav {
  font-weight: bold;
}
.c-gnav .menu-item:hover {
  background-color: rgba(150, 200, 120, 1);
  border-radius: 5px;
  color: #fff;
}
.c-smallNavTitle {
  color: rgba(139, 200, 162, 1);
}
.c-gnav .menu-item a:hover .c-smallNavTitle {
  color: #ffffff !important;
  opacity: 1 !important;
}


/*****************************************
 * フッターナビ設定
 ******************************************/
/* フッターナビ hover カラー変更 */
.w-footer__box .menu li a:hover {
  background-color: rgba(150, 200, 120, 1); /* ホバー背景 */
  color: #ffffff !important; /* 文字色を白に */
  border-radius: 5px;
  transition: all 0.3s ease;
}


/*****************************************
 * カスタムH1見出し用スタイル
 ******************************************/

.custom-h1 {
  line-height: 1.2;
}

.custom-h1 .subtitle {
  display: block;
  font-size: 0.7em !important;
}

/*****************************************
 * カスタムH2見出し用スタイル
 * （背景テキスト＋サブタイトル＋日本語タイトル）
 ******************************************/

/* ▼ カスタムH2コンテナ */
.section-heading {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px;
  overflow: hidden;
}

/* ▼ 背景の大きな英字テキスト */
.section-heading .background-text {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  font-weight: bold;
  color: rgba(60, 88, 85, 0.1);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

/* ▼ 画面幅720px以下のときの調整 */
@media screen and (max-width: 720px) {
  .section-heading .background-text {
    font-size: 60px;
  }
}

/* ▼ サブタイトル（落ち着いたグリーン） */
.section-heading .section-subtitle {
  font-size: 14px;
  color: #8BA6A2;
  margin-bottom: 1px;
  position: relative;
  z-index: 1;
}

/* ▼ 日本語タイトル（h2用） */
.section-heading h2.section-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 1;
  color: #3C5855;
}

/* ▼ タイトル下のライン */
.section-heading h2.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  margin: 12px auto 0;
  background: #8BA6A2;
  border-radius: 2px;
}


/*****************************************
 * カスタムH2見出し用スタイル ここまで
 ******************************************/


/* ============================
   フッターメニュー全体 ここから
============================ */

/* フッター内のロゴを左寄せ */
.w-footer__box:first-child figure {
  display: flex;
}

.l-footer__widgetArea {
  background-color: #3C5855;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  padding: 80px 8%;
}

.w-footer__box .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end; /* 右寄せ */
  gap: 12px 60px; /* 上下・左右の間隔 */
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 650px;
  text-align: left;
}

/* 各メニュー項目 */
.w-footer__box .menu li {
  flex: 1 1 160px; /* 幅自動調整 */
}

/* リンクのデザイン */
.w-footer__box .menu li a {
  display: inline-block;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.w-footer__box .menu li a:hover {
  color: #fff;
  opacity: 0.9;
}

/* 現在ページ強調 */
.w-footer__box .menu li.current-menu-item a {
  color: #fff;
  font-weight: 600;
}

/* ============================
   背景やエリア全体の整え
============================ */
.w-footer__box {
  background: transparent; /* 背景透過、必要なら指定可能 */
  padding: 0;
}

/* ============================
   レスポンシブ対応
============================ */
@media (max-width: 1024px) {
  .w-footer__box .menu {
    justify-content: flex-start;
    gap: 10px 40px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .w-footer__box .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    justify-content: start;
  }

  .w-footer__box .menu li {
    flex: none;
  }

  .w-footer__box .menu li a {
    font-size: 15px;
    line-height: 1.8;
  }
}


/* ============================
   フッターメニュー全体 ここまで
============================ */



/* ===============================
   共通チャートコンテナ ここから
=============================== */
.chart-style h3 {
    margin-top: 20px;
}

ul[class*="ses-"] li {
  list-style: none;  /* 「・」を非表示にする */
  padding-left: 0;   /* 左の余白も消す */
}

.ses-skills__chart-container,
.ses-age__counter-container,
.ses-workrate__chart-container,
.ses-age-dist__chart-container,
.ses-ratio__chart-container {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-sizing: border-box;
}

.ses-skills__chart-container canvas,
.ses-ratio__chart-container canvas,
.ses-workrate__chart-container canvas,
.ses-age-dist__chart-container canvas,
.ses-skills__chart-container svg,
.ses-ratio__chart-container svg,
.ses-workrate__chart-container svg,
.ses-age-dist__chart-container svg {
  width: 100% !important;
  height: 100% !important;
}

.ses-ratio-percentage,
.ses-workrate__percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: bold;
  color: #4F8EF7;
}

/* 棒グラフ用も中央寄せ */
.ses-skills__chart-wrapper-salary,
.ses-age-dist__chart {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* カウンター中央寄せ */
.ses-age__counter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #3c5855;
}

/* ドーナツチャート共通 */
.ses-ratio-chart-container,
.ses-workrate__chart-container {
  position: relative;
}

/* ドーナツ中央数値 */
.ses-ratio-percentage,
.ses-workrate__percentage {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #3c5855;
}

/* 各ラベル色 */
.ses-ratio__label.engineer { color: #3c5855; }
.ses-ratio__label.non_engineer { color: #A9CFCB; }
.ses-ratio__label.male { color: #3c5855; }
.ses-ratio__label.female { color: #A9CFCB; }
.ses-ratio__label.fulltime { color: #3c5855; }
.ses-ratio__label.executive { color: #A9CFCB; }

.ses-ratio__chart-labels {
    display: flex;
    justify-content: center;
    gap: 8px; 
    flex-wrap: wrap;
    margin-top: 8px; 
}

.ses-ratio__chart-labels .ses-ratio__label {
    font-size: 12px; 
    line-height: 1.3;
}

/* モバイル対応 */
@media (max-width: 520px) {
  .ses-skills__chart-container,
  .ses-age__counter-container,
  .ses-workrate__chart-container,
  .ses-age-dist__chart-container,
  .ses-ratio__chart-container {
    width: 80%; 
    max-width: 300px; 
	height: 180px;
    aspect-ratio: 1 / 1; 
  }

  .ses-ratio-percentage,
  .ses-workrate__percentage {
    font-size: clamp(1rem, 4vw, 1.3rem); 
  }

  .ses-age__counter-container {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }

  .cahart-age-mobile-style .ses-age__counter-container {
    height: 150px !important;
  }
}

/* ===============================
   共通チャートコンテナ ここまで
=============================== */


/* ============================================
   引用符風の装飾　ここから
============================================ */
.citation-style {
    font-size: 20px;
    margin-top: 50px;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(60, 88, 85, 0.1);
    position: relative;
    color: #3C5855;
}

.citation-style::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: rgba(60, 88, 85, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.citation-style::after {
    content: '"';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(60, 88, 85, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ============================================
   引用符風の装飾　ここまで
============================================ */


/* ============================================
   採用-リクルート職種リスト ここから
============================================ */
.top-recruit-style {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 各リスト項目 */
.top-recruit-style li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(215, 216, 216, 0.4);
  box-sizing: border-box;
}

/* 最初の要素だけ上にボーダーをつける */
.top-recruit-style li:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(215, 216, 216, 0.4);
}

/* 各リンク部分 */
.top-recruit-style li a {
  display: grid;
  align-items: center;
  width: 100%;
  position: relative;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: 0.5s;
  padding: 24px 20px;
  box-sizing: border-box;
}

/* ホバー時の背景：隙間なくフル */
.top-recruit-style li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 矢印アイコン */
.top-recruit-style li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-image: url(https://demo28.oknw-pool.com/wp-content/uploads/2025/10/arrow-icon-white.svg);
  background-repeat: no-repeat;
  background-position: 55% center;
  background-color: rgba(255, 255, 255, 0.4);
  background-size: 9px 8px;
  border-radius: 50%;
  transition: background-color 0.5s;
}

/* ホバー時の矢印ボタン色変化 */
.top-recruit-style li:hover a::after {
  background-color: rgba(255, 255, 255, 0.7);
}

/* PC時のレスポンシブ調整 */
@media screen and (min-width: 1025px) {
  .top-recruit-style {
    margin-top: min(4.0625vw, 52px);
  }

  .top-recruit-style li a {
    padding: min(2.5vw, 32px) min(1.5625vw, 20px);
  }

  .top-recruit-style li a::after {
    width: min(3.4375vw, 44px);
    height: min(3.4375vw, 44px);
    right: min(2.1875vw, 28px);
    background-size: min(0.703125vw, 9px) min(0.625vw, 8px);
  }
}

.top-recruit-style.-list-under-dashed > li,
.top-recruit-style li {
  margin: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ============================================
   採用-リクルート職種リスト ここまで
============================================ */

/* ============================================
   画像付きセクション ここから
============================================ */

/* 全体の余白 */
.media-section.swell-block-fullWide.pc-py-60.sp-py-40.alignfull {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9f8 100%);
  padding: 80px 0 !important;
}

/* ==========================
   メディアテキスト共通
========================== */
.media-section .wp-block-media-text {
  margin-bottom: 80px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(60,88,85,0.08);
  overflow: hidden;
  background-color: #fff;
}

/* 画像の角丸 */
.media-section .wp-block-media-text__media img {
  border-radius: 14px 0 0 14px;
  object-fit: cover;
}

/* 右画像バージョン */
.media-section .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media img {
  border-radius: 0 14px 14px 0;
}

/* テキスト部分 */
.media-section .wp-block-media-text__content {
  padding: 50px 60px;
}

.media-section .wp-block-media-text__content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1em;
}

/* ==========================
   レスポンシブ対応
========================== */

/* タブレット */
@media (max-width: 1024px) {
  .media-section .wp-block-media-text__content {
    padding: 40px;
  }

  .media-section .section-heading .section-title {
    font-size: 1.7rem;
  }

  .media-section .section-heading .background-text {
    font-size: 4.5rem;
  }
}

/* スマホ（800px以下） */
@media (max-width: 800px) {
  .media-section .wp-block-media-text.is-stacked-on-mobile {
    display: flex !important;
    flex-direction: column !important;
  }

  .media-section .wp-block-media-text__media {
    order: -1 !important;
    width: 100% !important;
  }

  .media-section .wp-block-media-text__media img {
    border-radius: 14px 14px 0 0 !important;
    width: 100% !important;
    height: auto !important;
  }

  .media-section .wp-block-media-text__content {
    width: 100% !important;
    padding: 30px 20px !important;
  }

  .media-section .wp-block-media-text {
    margin-bottom: 60px !important;
  }

  .media-section .section-heading .background-text {
    font-size: 3.2rem;
  }

  .media-section .section-heading .section-title {
    font-size: 1.4rem;
  }

  .media-section .wp-block-media-text__content p {
    font-size: 1rem;
  }
}

/* ============================================
   画像付きセクション ここまで
============================================ */

/* ============================================
   テーブル全体 ここから
============================================ */
/* テーブル全体 */
.wp-block-table.is-style-simple table {
  margin: 40px auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

/* 左側の見出しセル */
.wp-block-table.is-style-simple table th {
  background-color: #f7f9f8; /* Calm tone: 白に近いグリーングレー */
  color: #3C5855; /* メインカラー */
  font-weight: 600;
  text-align: left;
  padding: 18px 24px;
  width: 30%;
  border-right: 1px solid #d6e1df;
  border-bottom: 1px solid #e6eceb;
}

/* 右側の内容セル */
.wp-block-table.is-style-simple table td {
  padding: 18px 24px;
  color: #333;
  line-height: 1.8;
  background-color: #fff;
  border-bottom: 1px solid #e6eceb;
}

/* 最終行のボーダー削除 */
.wp-block-table.is-style-simple table tr:last-child th,
.wp-block-table.is-style-simple table tr:last-child td {
  border-bottom: none;
}

/* 全体に柔らかい角丸影 */
.wp-block-table.is-style-simple table tr:hover {
  background: rgba(139,166,162,0.05);
  transition: background 0.3s ease;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .wp-block-table.is-style-simple table,
  .wp-block-table.is-style-simple table tbody,
  .wp-block-table.is-style-simple table tr,
  .wp-block-table.is-style-simple table th,
  .wp-block-table.is-style-simple table td {
    display: block;
    width: 100%;
  }

  /* 上下線だけ削除（中央線は残す） */
  .wp-block-table.is-style-simple table th,
  .wp-block-table.is-style-simple table td {
    border-top: none !important;
    border-bottom: none !important;
  }

  /* 中央線を Calmトーンで描画 */
  .wp-block-table.is-style-simple table th {
    border-bottom: 1px solid #d6e1df !important;
  }

  /* 行全体をカード風に */
  .wp-block-table.is-style-simple table tr {
    margin-bottom: 1.5em;
    border: 1px solid #e6eceb;
    border-radius: 8px;
    padding: 12px 14px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  /* ラベル部分 */
  .wp-block-table.is-style-simple table th {
    border-right: none;
    background: none;
    color: #3C5855;
    padding-bottom: 5px;
    font-weight: 600;
  }

  /* 内容部分 */
  .wp-block-table.is-style-simple table td {
    padding-top: 0;
    color: #333;
  }
}
/* ============================================
   テーブル全体 ここまで
============================================ */


/*****************************************
 * Contact Parts ここから
 ******************************************/
.contact-parts {
  background: #f7f7f7 !important;
  padding: 80px 0;
  border-top: 1px solid #d6e1df;
}

.contact-parts .wp-block-heading {
  color: #3C5855;
  font-size: 28px !important;
  font-weight: 700;
  position: relative;
  margin-bottom: 40px !important;
  text-align: center;
}
.contact-parts .wp-block-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: #8ba6a2;
  border-radius: 2px;
}

/* テキスト */
.contact-parts p {
  color: #333;
  text-align: center;
  font-size: 16px;
  margin-bottom: 32px;
}

/* ボタン */
.contact-parts .swell-block-button__link {
  background: #3C5855 !important;
  border-radius: 40px !important;
  box-shadow: 0 4px 10px rgba(60,88,85,0.15) !important;
  transition: all 0.3s ease;
	padding: 20px 50px !important;
}
.contact-parts .swell-block-button__link:hover {
  background: #8ba6a2 !important;
  box-shadow: 0 6px 14px rgba(60,88,85,0.25) !important;
  transform: translateY(-3px);
}
.contact-parts .swell-block-button__link span::after {
  content: '';
  margin-left: 8px;
  color: #fff;
}


/*****************************************
 * Contact Parts ここまで
 ******************************************/