@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ======================================
   1. 変数・ルート設定
====================================== */
:root {
  /* カラー設定 */
  --primary-color: #023c63;  /* メインブランドカラー（深いネイビー） */
  --secondary-color: #4A90E2; /* アクセントカラー（ブルー） */
  --bg-color-light: #f8f9fa; /* 薄い背景色 */
  --bg-color-dark: #333; /* 暗い背景色 */
  --bg-color-green: #3c7f4a; /* 緑の背景色 */
  --text-color-dark: #333; /* 暗いテキスト色 */
  --text-color-light: #fff; /* 明るいテキスト色 */
  --border-color: #e0e0e0; /* ボーダーカラー */
  --error-color: #FFB2CC; /* エラー表示色 */

  /* フォント設定 */
  --font-family-base: "Noto Sans JP", "游ゴシック Medium", "YuGothic", "Yu Gothic", "メイリオ", sans-serif;
  --font-family-heading: "Outfit", var(--font-family-base);

  /* サイズ設定 */
  --container-width: 1100px;
  --header-height: 80px;
  --footer-height: 120px;
  --section-spacing: 80px;
  
  /* トランジション */
  --transition-speed: 0.3s;
}

/* ======================================
   2. ベーススタイル
====================================== */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color-dark);
  font-family: var(--font-family-base);
  background-color: #fff;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

a:hover {
  opacity: 0.8;
}

/* コンテナ */
.contentInner,
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* セクション */
.content,
.section {
  padding: 60px 0;
}

/* パンくずリスト */
#pan {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 20px 15px;
  font-size: 0.9rem;
  color: #666;
}

#pan a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

#pan a:hover {
  opacity: 0.7;
}

#pan span {
  font-weight: 500;
  color: #333;
}


/* ======================================
  3. ユーティリティクラス
====================================== */
/* 背景色 */
.bgGreen {
  background-color: #6EBCCC;
}

.bgGray {
  background-color: var(--bg-color-light);
}

.bgWhite {
  background-color: #fff;
}

/* テキスト色 */
.colWhite {
  color: var(--text-color-light);
}

/* 表示/非表示（スマホ/PC） */
@media (max-width: 767px) {
  .header-pc,
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .header-mobile,
  .mobile-only {
    display: none !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* ボタン */
.btn2 {
  display: inline-block;
  padding: 12px 30px;
  text-align: center;
  font-weight: 500;
  border-radius: 4px;
  transition: all var(--transition-speed) ease;
  margin-top: 20px;
  background-color: #6EBCCC;
}

.btn2 a {
  color: var(--text-color-light);
  display: block;
}

/* .btn2.bgGreen {
  background-color: var(--bg-color-green);
} */

.btn2:hover {
  background-color: #01294a;
}

/* .btn2.bgWhite {
  background-color: #fff;
}

.btn2.bgWhite a {
  color: var(--bg-color-green);
}

.btn2.bgWhite:hover {
  background-color: #f0f0f0;
} */

/* アニメーション */
.animated {
  opacity: 0;
}

/* フェードインアップアニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

/* フェードインライトアニメーション */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRight {
  animation: fadeInRight 0.8s ease forwards;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 8px;
  vertical-align: middle;
}

/* .fab.fa-line {
  color: #06c755;
} */


/* ホバー時の効果 */
.contactBtnBox ul li a:hover .contact-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}



/* ======================================
   4. ヘッダー
====================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* PC向けヘッダー */
.header-pc {
  height: var(--header-height);
}

.header-pc .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

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

.header-logo img {
  max-height: 50px;
}

.main-nav .nav-list {
  display: flex;
  gap: 20px;
}

.main-nav .nav-list li a {
  display: block;
  padding: 8px 15px;
  position: relative;
  color: var(--text-color-dark);
  font-weight: 500;
  text-transform: uppercase;
  min-width: 80px;
  text-align: center;
}

.main-nav .nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

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

.main-nav .nav-list li a span {
  position: relative;
  z-index: 1;
}

.main-nav .nav-list li a[data-hover] span {
  display: inline-block;
  transition: transform var(--transition-speed) ease;
}

.main-nav .nav-list li a[data-hover]:hover span {
  transform: translateY(-20px);
  opacity: 0;
}

.main-nav .nav-list li a[data-hover]::before {
  content: attr(data-hover);
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

.main-nav .nav-list li a[data-hover]:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 8px;
}

.header-contact p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* モバイル向けヘッダー */
.header-mobile {
  height: 60px;
}

.header-mobile .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.header-mobile .header-logo img {
  max-height: 30px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-tel .phone-icon {
  font-size: 30px;
}

.menu-button {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease;
}

.menu-button:hover {
  background-color: #01294a;
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background-color: var(--primary-color);
  color: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-speed) ease;
  overflow-y: auto;
  padding: 20px;
}

.mobile-menu.is-active {
  transform: translateX(0);
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list li a {
  display: block;
  padding: 15px 0;
  color: #fff;
  font-size: 1rem;
}

.mobile-nav-list li.contact a {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 4px;
  margin: 15px 0;
  text-align: center;
}

.mobile-contact-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.mobile-contact-info a {
  color: #fff;
}

/* ======================================
  5. メインコンテンツ
====================================== */
#main {
  padding-top: var(--header-height);
}

@media (max-width: 767px) {
  #main {
    padding-top: 60px;
  }
}

/* トップバナー */
#topBn {
  max-width: var(--container-width);
  position: relative;
}

#topBn img {
  width: 100%;
  height: auto;
}

/* スライダー用のスタイル */
.slider {
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

.slider img {
  width: 100%;
  height: auto;
}

/* slick のカスタマイズ */
.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #fff;
  opacity: 0.7;
}

.slick-dots li.slick-active button:before {
  color: var(--primary-color);
  opacity: 1;
}

.slick-prev, 
.slick-next {
  z-index: 1;
  width: 40px;
  height: 40px;
}

.slick-prev {
  left: 0px!important;
}

.slick-next {
  right: 20px!important;
}

.slick-prev:before, 
.slick-next:before {
  font-size: 40px!important;
}

/* スライダーのフェードアニメーション */
.slick-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slick-active {
  opacity: 1;
}


/* サービス特徴セクション */
#services {
  position: relative;
}

#services .contentTitle {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 15px;
  color: var(--primary-color);
}

#services .contentTitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--text-color-light);
}

#services .contentTitle span {
  font-size: 2.2rem;
  margin: 0 5px;
}

#services .contentStylel .contentInnerBox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

#services .contentStylel .contentInnerBox li {
  flex: 1;
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  padding-top: 50px; /* 理由ラベルのためのスペース確保 */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform var(--transition-speed) ease;
  position: relative; /* 理由ラベルの絶対配置のための指定 */
}

#services .contentStylel .contentInnerBox li:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#services .contentStylel .contentInnerBox li .head {
  background-color: #6EBCCC;
  color: #ffffff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 20px;
  position: absolute;
  top: -12px;
  left: -12px;
}

#services .contentStylel .contentInnerBox li .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 10px;
}

#services .contentStylel .contentInnerBox li .caption {
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  #services .contentTitle { font-size: 27px; }

}



/* お問い合わせボックス */
.contactBtnBox {
  background-color: #fff;
  padding: 50px 0;
}

.contactBtnBox .contactTitle {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.contactBtnBox ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contactBtnBox ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 60px;
  background-color: #6EBCCC;
  color: #fff;
  border-radius: 8px;
  font-size: 25px;
  font-weight: 500;
  transition: background-color var(--transition-speed) ease;
}

.contactBtnBox ul li a:hover {
  background-color: #01294a;
  opacity: 1;
}

.contactBtnBox ul li a img {
  max-height: 24px;
}

/* エリアセクション */
#area .contentBox {
  position: relative;
  height: 500px;
  margin: 0 100px;
}

#area .caption {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  background: #6EBCCC;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin: 30px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#area #areaList {
  position: relative;
  top: 0px;
  left: 0px;
  font-size: 30px;
  font-weight: bold;
  z-index: 1;
}

#area #areaList li {
	position: absolute;
	text-shadow: 0 0 3px #fff;
	font-family: 'Outfit', sans-serif;
}

#area #areaList li:nth-child(1) {
  top: 56px;
  right: 237px;
}

#area #areaList li:nth-child(2) {
  top: 215px;
  right: 126px;
}

#area #areaList li:nth-child(3) {
  top: 301px;
  right: 256px;
}

#area #areaList li:nth-child(4) {
  top: 276px;
  right: 400px;
}

#area #areaList li:nth-child(5) {
  top: 324px;
  right: 500px;
}

#area #areaList li:nth-child(6) {
  top: 261px;
  left: 191px;
}

#area #areaList li:nth-child(7) {
  top: 272px;
  left: 44px;
}

#area #areaList li:nth-child(8) {
  top: 57px;
  left: 54px;
}

#area #areaList li:nth-child(9) {
  top: 380px;
  right: 20px;
  font-size: 26px;
}

#area #areaMap {
	position: absolute;
	top: 0px;
	left: 0px;
}

#area #areaList {
  position: relative;
  top: 0px;
  left: 0px;
  font-size: 18px;
  font-weight: bold;
  z-index: 1;
}

@media (max-width: 767px) {
  #area .contentInner{
    padding: 0;
  }


  #area .contentBox {
    position: relative;
    height: 200px;
    margin:0;
}


  #area #areaList li:nth-child(1) {
    top: 20px;
    right: 73px;
  }
  
  #area #areaList li:nth-child(2) {
    top: 86px;
    right: 48px;
  }
  
  #area #areaList li:nth-child(3) {
    top: 125px;
    right: 102px;
  }
  
  #area #areaList li:nth-child(4) {
    top: 107px;
    right: 158px;
  }
  
  #area #areaList li:nth-child(5) {
    top: 130px;
    right: 206px;
  }
  
  #area #areaList li:nth-child(6) {
    top: 111px;
    left: 60px;
  }
  
  #area #areaList li:nth-child(7) {
    top: 127px;
    left: 10px;
  }
  
  #area #areaList li:nth-child(8) {
    top: 32px;
    left: 26px;
  }
  
  #area #areaList li:nth-child(9) {
    top: 157px;
    right: 12px;
    font-size: 16px;
  }
  
  #area #areaMap {
    position: absolute;
    top: 0px;
    left: 0px;
  }

}





/* 職種リスト */

#job .contentTitle {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}


#jobList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

#jobList li {
  width: calc(25% - 15px);
  min-width: 200px;
  margin-bottom: 15px;
}

#jobList li .label {
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
}

#jobList li:nth-child(4n) {	margin-right: 0;}

#jobList li:nth-child(1) {
	background: url('/img/category/1.webp');
	background-size: cover;
}

#jobList li:nth-child(2) {
	background: url('/img/category/2.webp');
	background-size: cover;
}

#jobList li:nth-child(3) {
	background: url('/img/category/3.webp');
	background-size: cover;
}

#jobList li:nth-child(4) {
	background: url('/img/category/4.webp');
	background-size: cover;
}

#jobList li:nth-child(5) {
	background: url('/img/category/5.webp');
	background-size: cover;
}

#jobList li:nth-child(6) {
	background: url('/img/category/6.webp');
	background-size: cover;
}

#jobList li:nth-child(7) {
	background: url('/img/category/7.webp');
	background-size: cover;
}

#jobList li:nth-child(8) {
	background: url('/img/category/8.webp');
	background-size: cover;
}

#jobList li:nth-child(9) {
	background: url('/img/category/9.webp');
	background-size: cover;
}

#jobList li:nth-child(10) {
	background: url('/img/category/10.webp');
	background-size: cover;
}

#jobList li:nth-child(11) {
	background: url('/img/category/11.webp');
	background-size: cover;
}

#jobList li:nth-child(12) {
	background: url('/img/category/12.webp');
	background-size: cover;
}

/* スマホ版ジョブリストの調整 */
@media (max-width: 767px) {
  #jobList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px;
  }
  
  #jobList li {
    position: relative;
    width: 30vw;
    height: 30vw;
    margin: 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    min-width: auto;
}
  
#jobList li .label {
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  background-color: inherit;
}
  
  /* 背景画像の位置調整 */
  /* #jobList li {
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  } */
  
  /* 各カテゴリの文字を見やすくするための背景オーバーレイ */
  /* #jobList li .label {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  } */
}


/* お仕事までの流れ */
#step {
  position: relative;
}

#step .contentTitle {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

#step ul {
  max-width: 900px;
  margin: 0 auto;
}

#step li {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

#step li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 70px;
  left: 25px;
  height: calc(100% + 40px);
  width: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

#step li .head {
  flex: 0 0 50px;
  position: relative;
  z-index: 1;
}

#step li .head p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #6ebccc;
  color: var(--bg-color-light);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

#step li .stepBox {
  flex: 1;
  padding-left: 30px;
}

#step li .stepBox .title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

#step li .stepBox .caption {
  font-size: 14px;
  line-height: 1.7;
}

#step li .stepBox .caption a {
  text-decoration: underline;
}

#step li .stepBox .caption span {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}


@media (max-width: 767px) {
  #step li .stepBox .caption span {
    font-size: 17px;
  }
}



/* 会社概要セクション */
#about {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

#about .contentStyle2 {
  display: flex;
  align-items: center;
  gap: 40px;
}

.contentStyle2 .contentInnerImg {
  width: 50%;
  float: none; /* floatを削除 */
}

.contentStyle2 .contentInnerBox {
  width: 50%;
  padding: 0;
  margin: 0;
}

#about .contentTitle {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

#about .contentTitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

#about .contentInnerBox p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

#about .contentInnerImg img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform var(--transition-speed) ease;
  width: 100%;
}

#about .contentInnerImg img:hover {
  transform: scale(1.02);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .contentStyle2 {
    flex-direction: column;
  }
  
  .contentStyle2 .contentInnerImg,
  .contentStyle2 .contentInnerBox {
    width: 100%;
  }
  
  #about .contentTitle {
    text-align: center;
    margin-top: 30px;
  }
  
  #about .contentTitle:after {
    left: 50%;
    transform: translateX(-50%);
  }
  #about .contentInnerBox p {
    font-size: 16px;
    text-align: center;
  }

}



/* 採用情報セクション */
#recruit {
  position: relative;
}

#recruit .contentStyle2 .contentInnerBox {
  width: 70%;
  padding: 0;
  margin: 0 auto;
}


#recruit .contentTitle {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

#recruit .contentInnerBox p {
  margin-bottom: 30px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  #recruit .contentStyle2 .contentInnerBox {
    width: 100%;
  }
  
  #recruit .contentTitle {
    text-align: center;
  }
  
  #recruit .contentTitle:after {
    left: 50%;
    transform: translateX(-50%);
  }
  #recruit .contentInnerBox p {
    font-size: 15px;
  }
}




/* 企業様フォーム */
#formInner .caption{
  text-align: center;
}

form#form {
  width: 700px;
  margin: 30px auto;
}

.tableStyle1 {
  width: 100%;
  margin-bottom: 40px;
}

.tableStyle1 th,
.tableStyle1 td {
  padding: 15px;
  border: 1px solid var(--border-color);
}

.tableStyle1 th {
  width: 31%;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
}

.tableStyle1 th span {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-left: 8px;
}

.tableStyle1 td input,
.tableStyle1 td textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 0.95rem;
}

.tableStyle1 td textarea {
  min-height: 150px;
  resize: vertical;
}

form#form input[type="submit"] {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 15px;
  background-color: #6EBCCC;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color var(--transition-speed) ease;
}

form#form input[type="submit"]:hover {
  background-color: #01294a;
}

/* アクセスセクション */
#access {
  position: relative;
}

#access .contentTitle {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

#access .iframe {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  width: 700px;
  margin: auto;
}

#access .iframe p {
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
}


@media (max-width: 768px) {
  form#form {
    width: auto;
}

  #access .iframe {
    width: auto;
  }
}


/* ======================================
  6. フッター
====================================== */
/* フッター */
.site-footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 50px 0 0;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

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

.footer-logo img {
  max-height: 50px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav li a {
  color: #fff;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
  position: relative;
}

.footer-nav li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

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

.footer-info {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-info p {
  margin-bottom: 10px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 15px 0;
  text-align: center;
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 0.8rem;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav ul {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-nav ul li{
width: 100%;
  }
  
  .footer-info {
    text-align: center;
  }
}

/* ======================================
  7. company.php 会社概要ページ
====================================== */
#company.content {
  padding: 40px 0 80px;
  background-color: #f8f9fa;
}

#company .contentTitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

#company .contentTitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

/* テーブルスタイル */
#company .tableStyle1 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

#company .tableStyle1 th,
#company .tableStyle1 td {
  padding: 18px 25px;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.6;
}

#company .tableStyle1 tr:last-child th,
#company .tableStyle1 tr:last-child td {
  border-bottom: none;
}

#company .tableStyle1 th {
  width: 31%;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
}

#company .tableStyle1 td {
  background-color: #f8f9fa;
}

#company .tableStyle1 td a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

#company .tableStyle1 td a:hover {
  text-decoration: underline;
}

#company .bgGreen {
  /* background-color: var(--primary-color); */
}

#company .colWhite {
  color: #fff;
}

#company .bgGray {
  background-color: #f8f9fa;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  #company .contentTitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  #company .tableStyle1 th,
  #company .tableStyle1 td {
    display: block;
    width: 100%;
  }
  
  #company .tableStyle1 th {
    padding: 15px 20px 5px;
  }
  
  #company .tableStyle1 td {
    padding: 15px 20px;
  }
  
  #company .tableStyle1 tr:not(:last-child) td {
    border-bottom: 1px solid #e5e5e5;
  }
}

/* ======================================
  8. access.php アクセスページ
====================================== */
/* アクセスページのスタイル */
#accessPage {
  padding: 60px 0 80px;
  background-color: #f8f9fa;
}

#accessPage .contentTitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

#accessPage .contentTitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

#accessPage .contentInnerBox {
  max-width: 800px;
  margin: 0 auto;
}

#accessPage iframe {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

#accessPage p {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 25px;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  #accessPage {
    padding: 40px 0 60px;
  }
  
  #accessPage .contentTitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  #accessPage iframe {
    height: 300px;
  }
  
  #accessPage p {
    font-size: 1rem;
    padding: 0 15px;
  }
}


/* ======================================
  8. recruit.php アクセスページ
====================================== */
/* 求人ページのスタイル */
#recruitPage {
  padding: 60px 0 40px;
  background-color: #f8f9fa;
}

#recruitPage .contentTitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

#recruitPage .contentTitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

#recruitPage .contentInnerBox {
  max-width: 900px;
  margin: 0 auto;
}

/* 求人情報テーブル */
#recruitPage .tableStyle1 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

#recruitPage .tableStyle1 th,
#recruitPage .tableStyle1 td {
  padding: 18px 25px;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.6;
}

#recruitPage .tableStyle1 tr:last-child th,
#recruitPage .tableStyle1 tr:last-child td {
  border-bottom: none;
}

#recruitPage .tableStyle1 th {
  width: 25%;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
  background-color: #6EBCCC;
}

#recruitPage .tableStyle1 td {
  background-color: #f8f9fa;
}

#recruitPage .tableStyle1 td a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

#recruitPage .tableStyle1 td a:hover {
  text-decoration: underline;
}

/* 問い合わせセクション */
#recruitPage_contact {
  padding: 60px 0 80px;
}

.bgGray2 {
  background-color: #f0f0f0;
}

#recruitPage_contact .contentTitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

#recruitPage_contact .contentTitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

#recruitPage_contact .contentInnerBox {
  max-width: 800px;
  margin: 0 auto;
}

/* 問い合わせフォームテーブル */
#recruitPage_contact .tableStyle2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

#recruitPage_contact .tableStyle2 th,
#recruitPage_contact .tableStyle2 td {
  padding: 18px 25px;
  border-bottom: 1px solid #e5e5e5;
}

#recruitPage_contact .tableStyle2 tr:last-child th,
#recruitPage_contact .tableStyle2 tr:last-child td {
  border-bottom: none;
}

#recruitPage_contact .tableStyle2 th {
  width: 30%;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
  background-color: #6EBCCC;
}

#recruitPage_contact .tableStyle2 th span {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-left: 8px;
}

#recruitPage_contact .tableStyle2 td {
  background-color: #fff;
}

#recruitPage_contact .tableStyle2 td input,
#recruitPage_contact .tableStyle2 td textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#recruitPage_contact .tableStyle2 td input:focus,
#recruitPage_contact .tableStyle2 td textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

#recruitPage_contact .tableStyle2 td textarea {
  min-height: 150px;
  resize: vertical;
}

/* 送信ボタン */
#recruitPage_contact form input[type="submit"] {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 15px;
  /* background-color: var(--primary-color); */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#recruitPage_contact form input[type="submit"]:hover {
  background-color: #01294a;
}

/* 送信完了メッセージ */
#recruitPage_contact form div {
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  #recruitPage,
  #recruitPage_contact {
    padding: 40px 0;
  }
  
  #recruitPage .contentTitle,
  #recruitPage_contact .contentTitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  #recruitPage .tableStyle1 th,
  #recruitPage .tableStyle1 td,
  #recruitPage_contact .tableStyle2 th,
  #recruitPage_contact .tableStyle2 td {
    display: block;
    width: 100%;
  }
  
  #recruitPage .tableStyle1 th,
  #recruitPage_contact .tableStyle2 th {
    padding: 15px 20px 5px;
  }
  
  #recruitPage .tableStyle1 td,
  #recruitPage_contact .tableStyle2 td {
    padding: 15px 20px;
  }
  
  #recruitPage .tableStyle1 tr:not(:last-child) td,
  #recruitPage_contact .tableStyle2 tr:not(:last-child) td {
    border-bottom: 1px solid #e5e5e5;
  }
  
  #recruitPage_contact form input[type="submit"] {
    width: 100%;
    max-width: 300px;
  }
}


/* ======================================
  9. contact.php お問い合わせページ
====================================== */
/* お問い合わせページのスタイル */
#contactPage {
  padding: 60px 0 80px;
  background-color: #f8f9fa;
}

#contactPage .contentTitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

#contactPage .contentTitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

#contactPage .contentInnerBox {
  max-width: 800px;
  margin: 0 auto;
}

/* お問い合わせフォームテーブル */
#contactPage .tableStyle1 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

#contactPage .tableStyle1 th,
#contactPage .tableStyle1 td {
  padding: 18px 25px;
  border-bottom: 1px solid #e5e5e5;
}

#contactPage .tableStyle1 tr:last-child th,
#contactPage .tableStyle1 tr:last-child td {
  border-bottom: none;
}

#contactPage .tableStyle1 th {
  width: 31%;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
  background-color: #6EBCCC;
}

#contactPage .tableStyle1 th span {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-left: 8px;
}

#contactPage .tableStyle1 td {
  background-color: #f8f9fa;
}

#contactPage .tableStyle1 td input,
#contactPage .tableStyle1 td textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: #fff;
}

#contactPage .tableStyle1 td input:focus,
#contactPage .tableStyle1 td textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

#contactPage .tableStyle1 td textarea {
  min-height: 150px;
  resize: vertical;
}

/* エラー表示 */
#contactPage .tableStyle1 td input[style*="background:#FFB2CC"],
#contactPage .tableStyle1 td textarea[style*="background:#FFB2CC"] {
  border-color: #e74c3c;
  background-color: #ffebef !important;
}

/* 送信ボタン */
#contactPage form input[type="submit"] {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 15px;
  /* background-color: var(--primary-color); */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contactPage form input[type="submit"]:hover {
  background-color: #01294a;
}

/* 送信完了メッセージ */
#contactPage form div {
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  #contactPage {
    padding: 40px 0;
  }
  
  #contactPage .contentTitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  #contactPage .tableStyle1 th,
  #contactPage .tableStyle1 td {
    display: block;
    width: 100%;
  }
  
  #contactPage .tableStyle1 th {
    padding: 15px 20px 5px;
  }
  
  #contactPage .tableStyle1 td {
    padding: 15px 20px;
  }
  
  #contactPage .tableStyle1 tr:not(:last-child) td {
    border-bottom: 1px solid #e5e5e5;
  }
  
  #contactPage form input[type="submit"] {
    width: 100%;
    max-width: 300px;
  }
}



/* ======================================
  10. privacy.php プライバシーポリシーページ
====================================== */
/* プライバシーポリシーページのスタイル */
#privacy {
  padding: 60px 0 80px;
  background-color: #f8f9fa;
}

#privacy .contentTitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

#privacy .contentTitle:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

#privacy .contentInnerBox {
  max-width: 900px;
  margin: 0 auto;
}

#privacy article {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#privacy .subTitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 25px 0 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e5e5;
}

#privacy .subTitle:first-child {
  margin-top: 0;
}

#privacy .subTitle.kiyaku {
  font-size: 1.5rem;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid var(--primary-color);
}

#privacy p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 0.95rem;
}

#privacy ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

#privacy ul li {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
}

#privacy ul.sub {
  margin: 15px 0 15px 20px;
}

#privacy ul.sub li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  #privacy {
    padding: 40px 0 60px;
  }
  
  #privacy .contentTitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  #privacy article {
    padding: 20px;
  }
  
  #privacy .subTitle {
    font-size: 1.2rem;
  }
  
  #privacy .subTitle.kiyaku {
    font-size: 1.3rem;
  }
  
  #privacy p,
  #privacy ul li {
    font-size: 0.9rem;
  }
  
  #privacy ul {
    padding-left: 0;
  }
  #privacy ul.sub {
    margin: 15px 0 15px 15px;
}

  #privacy ul.sub li {
    font-size: 0.85rem;
  }
}


/* ======================================
  レスポンシブスタイル
====================================== */
@media (max-width: 991px) {
  :root {
    --section-spacing: 60px;
  }
  
  .section, .content {
    padding: 50px 0;
  }
  
  #services .contentStylel .contentInnerBox ul {
    flex-direction: column;
  }
  
  #services .contentStylel .contentInnerBox li {
    min-width: 100%;
  }
  
  .contentInner,
  .container {
    /* padding: 0 20px; */
  }
  
  #jobList li {
    width: calc(33.33% - 15px);
  }
  
  #step li {
    flex-direction: column;
  }
  
  #step li .head {
    margin-bottom: 20px;
  }
  
  #step li .stepBox {
    padding-left: 0;
  }
  
  #step li:not(:last-child)::after {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-nav {
    justify-content: flex-start;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-spacing: 40px;
  }
  
  .section, .content {
    padding: 40px 0;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .contactBtnBox ul {
    flex-direction: column;
    align-items: center;
  }
  
  .contactBtnBox ul li {
    width: 100%;
    max-width: 300px;
  }
  
  .contactBtnBox ul li a {
    width: 100%;
    justify-content: center;
  }
  
  #jobList li {
    width: calc(50% - 15px);
  }
  
  .tableStyle1 th,
  .tableStyle1 td {
    display: block;
    width: 100%;
  }
  
  .tableStyle1 th {
    border-bottom: none;
    padding-bottom: 5px;
  }
  
  .tableStyle1 td {
    padding-top: 5px;
  }
  
  #pageTop {
    bottom: 20px;
    right: 20px;
  }
  
  #pageTop a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
}

