/* フォント読み込み - Google Fonts (Noto Sans JP) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400&display=swap');

/* リセットCSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  /* 以下は表示された際のデザイン */
  display: inline-block;
  padding: 10px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin: 10px;
}

html {
  font-size: 62.5%;
  /* 10px = 1rem */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
}

a {
  color: #00498A;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

/* メインカラー変数 */
:root {
  --main-color: #00498A;
  --main-color-light: #3373A9;
  --main-color-dark: #003366;
}


/* 共通クラス */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.en-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 5px;
  color: #fff;
  text-transform: uppercase;
}

.font-yellow {
  color: #F3D423;
}

/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
  html {
    font-size: 56.25%;
    /* 9px = 0.9rem */
  }

  .container {
    padding: 0 15px;
  }
}

.header {
  position: relative;
  padding: 15px 0;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0D428F;
  background: linear-gradient(90deg, rgba(13, 66, 143, 1) 0%, rgba(78, 180, 231, 1) 50%, rgba(236, 155, 22, 1) 56%, rgba(244, 218, 40, 1) 98%);
}

/* ヘッダーレイアウト */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  margin-right: 20px;
}

/* ナビゲーション */
.header nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header nav a {
  color: #333;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.header nav a:hover {
  color: var(--main-color);
  text-decoration: none;
}

/* ボタンスタイル */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 40px 0;
}

.btn {
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
  background-color: #00498A;
  border-radius: 80px;
}

.btn a {
  display: block;
  color: #fff;
  padding: 12px 60px;
  text-align: center;
  transition: all 0.3s;
  font-weight: 700;
  text-decoration: none;
  background-image: url('../images/icon_nav_arrow.png');
  background-position: calc(100% + -10px);
  background-repeat: no-repeat;
  background-size: 20px;
}

.btn:hover {
  text-decoration: none;
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn a:hover {
  text-decoration: none;
  color: #fff;
}

.btn-primary {
  background-color: var(--main-color);
  color: #fff;
}

.btn-secondary {
  background-color: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}

.btn-small {
  padding: 8px 15px;
  font-size: 1.4rem;
}

@media screen and (max-width:768px) {
  .btn-group {
    padding: 30px 0;
  }

  .btn a {
    padding: 10px 40px;
    font-size: 1.4rem;
    background-size: 14px;
    background-position: calc(100% + -10px);
  }
}

/* ハンバーガーメニュー */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1000;
}

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

/* レスポンシブ対応 */
@media screen and (max-width: 600px) {
  .header-container {
    flex-wrap: wrap;
  }

  .logo {
    margin-right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 999;
    padding: 80px 20px 20px;
  }

  .header nav.active {
    right: 0;
  }

  .header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .header nav a {
    font-size: 1.6rem;
    display: block;
    width: 100%;
  }

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

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

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

  .header .btn {
    margin-top: 15px;
    width: 100%;
  }
}

.hero-content {
  background: url('../images/mv_pc.png') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  width: 100%;
}

.hero-content picture {
  display: block;
  position: absolute;
  bottom: 100px;
  left: 10%;
}

@media screen and (max-width: 600px) {
  .hero-content {
    /* background: url('../images/mv_sp.jpg') no-repeat center center / cover; */
    min-height: 400px;

    img {
      max-width: 80%;
    }
  }

  .hero-content picture {

    left: 0;
  }
}


/* セクション共通スタイル */
.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bg-light {
  background-color: #f8f9fa;
}

/* 安心して働ける理由セクション */
.reason {
  background-color: #00498A;
}

.reason .section-title {
  margin-bottom: 50px;
  color: #fff;
}



.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reason-card {
  background-color: #fff;
  color: #157AC0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}



.reason-icon {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}


/* レスポンシブ対応 - 安心して働ける理由セクション */
@media screen and (max-width: 900px) {
  .reason-grid {
    gap: 20px;
  }

  .reason-card {
    padding: 20px 15px;
  }
}

@media screen and (max-width: 600px) {
  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }

  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .reason-icon {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
  }

  .reason-card {
    padding: 15px 10px;
  }

  .reason-card p {
    font-size: 1.3rem;
  }
}




/* コ・ソーシングセクション */
.co-sourcing {
  position: relative;
  background-image: url(../images/co-sourcing-bg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: center;
}


.co-sourcing-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.co-sourcing-title {
  font-size: 3rem;
  margin-bottom: 60px;
  line-height: 1.4;
}

.co-sourcing-title span {
  background-color: #F5DD39;
  padding-left: 10px;
  padding-right: 10px;
}

.co-sourcing-description {
  font-size: 1.6rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* レスポンシブ対応 - コ・ソーシングセクション */
@media screen and (max-width: 768px) {
  .co-sourcing {
    padding: 80px 0;
    /* background-position: -45% center, calc(100% + 5%) center; */
  }

  .co-sourcing .section-title {
    font-size: 2.8rem;
  }

  .co-sourcing-text {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .co-sourcing-description {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .co-sourcing {
    padding: 60px 15px;
  }

  .co-sourcing .section-title {
    font-size: 2.4rem;
  }

  .co-sourcing-text {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
}


/* 事業紹介セクション */
.business {
  background-color: #E9F0F7;
}

.business-title,
.business-title .en-title {
  color: var(--main-color);
}

.business-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.business-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.business-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



.business-subtitle {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
  /* color: var(--main-color); */
}

.business-text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .business-content {
    flex-direction: column;
    gap: 20px;
  }

  .business-image {
    flex: 0 0 100%;
  }


  .business-text-content {
    flex: 0 0 100%;
  }

  .business-subtitle {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .business-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .business-image {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .business-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .business-text {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}

/* 事業部紹介 - 部署一覧 */
.business-departments {
  margin-top: 40px;
  width: 100%;
}

.business-departments-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.business-departments-row:last-child {
  margin-bottom: 0;
}

.department-item {
  text-align: center;
  max-width: 33%;
}

.department-item img {
  border-radius: 10px;
  transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* レスポンシブ対応 - 事業部紹介 */
@media screen and (max-width: 768px) {
  .business-departments-row {
    gap: 20px;
    margin-bottom: 20px;
  }


}

@media screen and (max-width: 480px) {
  .business-departments-row {
    flex-wrap: wrap;
    gap: 15px;
  }

  .department-item {
    flex: 0 0 calc(50% - 10px);
    max-width: 48%;
  }

  .department-item img {
    width: 100%;
    height: auto;
  }

}

/* パークマネジメント事業部セクション */
.park-management-section {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 40px;
}

.park-management-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.park-management-text {
  flex: 1;
}

.park-management-image {
  flex: 1;
}

.park-management-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.park-management-image img:hover {
  transform: translateY(-5px);
}

.en-subtitle {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 5px;
  color: var(--main-color-light);
}

/* レスポンシブ対応 - パークマネジメント事業部 */
@media screen and (max-width: 768px) {
  .park-management-content {
    flex-direction: column;
    gap: 30px;
  }

  .park-management-text {
    order: 1;
  }

  .park-management-image {
    order: 2;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .park-management-section {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .park-management-content {
    gap: 20px;
  }

  .en-subtitle {
    font-size: 1.6rem;
  }
}

/* サポートセクション */
.support {
  background-color: #003366;
  color: #fff;
}

.support .section-title {
  margin-bottom: 50px;
}

/* タブナビゲーション */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 25px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .2em;
  background-color: #B3C9DC;
  color: var(--main-color);
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  border-radius: 10px 10px 0 0;
}

.tab-btn:hover {
  color: var(--main-color);
}

.tab-btn.active {
  background-color: #fff;
}


/* タブコンテンツ */
.tabs-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  color: #333;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

  h3 {
    color: #00498A;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid #00498A;
  }
}

.tab-panel {
  padding: 30px;
  display: none;
  .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    p:first-of-type{
      margin-bottom: 1.4rem;
    }
  }
}

.tab-panel.active {
  display: block;
}


/* レスポンシブ対応 - サポートセクション */
@media screen and (max-width: 768px) {
  .tabs-nav {
    gap: 5px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 1.5rem;
  }

  .tab-panel {
    padding: 25px 20px;
    .container{
      grid-template-columns: 1fr;
      padding: 0;
    }
  }
}

@media screen and (max-width: 480px) {
  .tabs-nav {
    gap: 0;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 1.4rem;
    border-radius: 0;
    border-bottom: 1px solid #e0e0e0;
  }

  .tab-btn.active::after {
    display: none;
  }

  .tab-btn.active {
    background-color: var(--main-color);
    color: #fff;
  }

  .tab-panel {
    padding: 20px 15px;
  }
}

/* サポートリスト */
.support-list {
  padding: 30px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;

  img {
    max-height: 200px;

  }
}

/* その他の福利厚生リスト */
.other-walfare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 10px;
  margin-bottom: 40px;
}

.other-walfare li img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 800px) {
  .other-walfare {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .other-walfare {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tab-panel {
  .m-img {
    margin: 30px 0;
    display: inline-block;
  }
}

/* 600px以下は2列レイアウトに */
@media screen and (max-width: 600px) {
  .support-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 600px) {
  .walfare-list {
    gap: 15px;
  }

  .walfare-list li {
    flex: 0 0 calc(50% - 8px);
    margin-bottom: 15px;
  }

  .walfare-list li img {
    height: 120px;
    object-fit: contain;
  }
}

/* 求人セクション */
.recruit {
  background-color: #f8f9fa;
  padding-bottom: 0;
}

.recruit .section-title {
  margin-bottom: 50px;
}



.recruit-title {
  color: #00498A;

  .en-title {
    color: #00498A;
  }
}

.recruit-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.recruit-card {
  flex: 0 0 calc(50% - 15px);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;

  p {
    background-color: #157AC0;
    padding: 15px;
    font-size: 15px;
    color: #fff;
    min-height: 80px;

  }
}

.recruit-card:hover {
  transform: translateY(-5px);

  a {
    text-decoration: none;
  }
}

.recruit-card img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #00498A;
  color: #fff;
  padding: 15px;
}

.recruit-card-text p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}

.btn-more {
  text-align: center;
  margin-top: 30px;
  background-color: #E9F0F7;
  padding: 60px 0;
}

.btn-more-img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
  max-width: 400px;
}

.btn-more-img:hover {
  transform: translateY(-3px);
  opacity: .8;
}

/* レスポンシブ対応 - 求人セクション */
@media screen and (max-width: 768px) {
  .recruit-content {
    flex-direction: column;
    gap: 40px;
  }

  .recruit-card {
    width: 80%;
    margin: 0 auto;
  }

  .btn-more-img {
    max-width: 80%;
  }
}

@media screen and (max-width: 480px) {
  .recruit .en-title {
    font-size: 1.6rem;
  }

  .btn-more-img {
    max-width: 90%;
  }
}

/* 先輩社員の声セクション */
.interview-title .en-title,
.interview-title {
  color: var(--main-color);
}

.interview-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.interview-card {
  flex: 0 0 calc(33% - 15px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;

  img {
    border-radius: 10px;
  }
}

.testimonial-content {
  color: #157AC0;
  padding: 10px 0;
}

.testimonial-profile {
  font-size: 14px;
}

.style {
  background-color: #157AC0;
  text-align: center;
  padding: 50px 0;
}

.style-title {
  align-items: center;
  display: flex;
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 30px;
}

.style-title::before,
.style-title::after {
  content: '';
  top: 50%;
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
}

.style-title::before {
  margin: 0 20px 0 10px;
}

.style-title::after {
  margin: 0 10px 0 20px;

}

.style-content {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.style-card {
  flex: 0 0 calc(33% - 15px);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  padding: 30px 20px;
  background-color: #fff;

}

.style-card img {
  width: 80%;
}

.style-subtitle {
  font-size: 1.1em;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
  color: #333;
  background: linear-gradient(30deg, #0D4290 40%, #F3D423 60%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;

}

@media screen and (max-width:600px) {

  .style-card,
  .interview-card {
    width: 80%;
    margin: 0 auto;
  }

  .interview-card+.interview-card {
    margin-top: 30px;
  }
}

.interview .recruit-more {
  margin: 0;
}

/* レスポンシブ対応 - 先輩社員の声セクション */
@media screen and (max-width: 600px) {

  .interview-content,
  .style-content {
    flex-direction: column;
    gap: 20px;
  }

  .interview-card img {
    width: 100%;
    height: auto;
  }

}

@media screen and (max-width: 480px) {

  .recruit-more-img {
    max-width: 90%;
  }
}

/* よくある質問セクション */
.faq {
  background-color: var(--main-color);
}

.faq .section-title {
  color: #fff;
  margin-bottom: 40px;
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

/* details/summaryのデフォルトスタイルをリセット */
.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  padding: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.q-icon {
  color: var(--main-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-right: 15px;
}

/* 開閉アイコンを追加（三角形） */
.faq-question::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #ccc;
  transition: transform 0.3s;
}

/* 開いた状態のアイコン（上向き三角形） */
details[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: #E9F0F7;
  padding: 20px;
  position: relative;
  display: flex;
  align-items: flex-start;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.a-icon {
  color: #4EA0D4;
  font-size: 2.2rem;
  font-weight: 700;
  margin-right: 15px;
}

.faq-answer p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

/* レスポンシブ対応 - よくある質問セクション */
@media screen and (max-width: 768px) {
  .faq-question {
    font-size: 1.6rem;
    padding: 15px;
  }

  .q-icon {
    font-size: 2rem;
    margin-right: 10px;
  }

  .faq-answer {
    padding: 15px;
  }

  .a-icon {
    font-size: 2rem;
    margin-right: 10px;
  }

  .faq-answer p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .faq-item {
    margin-bottom: 15px;
  }

  .faq-question {
    font-size: 1.5rem;
    padding: 12px 15px;
  }

  .q-icon {
    font-size: 1.8rem;
    margin-right: 8px;
  }

  .faq-question::after {
    right: 15px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #ccc;
  }

  .faq-answer {
    padding: 12px 15px;
  }

  .a-icon {
    font-size: 1.8rem;
    margin-right: 8px;
  }

  .faq-answer p {
    font-size: 1.4rem;
  }
}

/* 四国エリアの求人・全国の求人 */
.shikoku {
  text-align: center;
}

.pref-content {
  position: relative;
  width: 600px;
  margin: 0 auto;

  .btn {
    background-color: #157AC0;
  }

  .btn a {
    font-size: 13px;
    padding: 10px 35px;
    line-height: 1;
  }
}

.pref-map {
  position: relative;
  width: 600px;
}

.pref-ehime {
  position: absolute;
  top: 130px;
  left: 70px;
}

.pref-kagawa {
  position: absolute;
  top: 75px;
  left: 335px;
}

.pref-tokushima {
  position: absolute;
  top: 185px;
  left: 380px;
}

.pref-kochi {
  position: absolute;
  top: 260px;
  left: 190px;
}

@media screen and (max-width:768px) {
  .pref-content {
    width: 500px;
    max-width: 100%;
    padding: 0 20px;

    a {
      font-size: 12px;
    }
  }

  .pref-map {
    width: 500px;
    max-width: 100%;
  }

  .pref-ehime {
    top: 100px;
    left: 30px;
  }

  .pref-kagawa {
    top: 55px;
    right: 100px;
    left: auto;
  }

  .pref-tokushima {
    top: 110px;
    right: 10px;
    left: auto;
  }

  .pref-kochi {
    top: 160px;
    left: 170px;
  }
}

@media screen and (max-width:500px) {
  .pref-ehime {
    top: 100px;
    left: 10px;
  }

  .pref-kagawa {
    top: 35px;
    right: 60px;
    left: auto;
  }

  .pref-tokushima {
    top: 105px;
    right: 10px;
    left: auto;
  }

  .pref-kochi {
    top: 150px;
    left: 90px;
  }
}

.nationwide {
  background-image: url(../images/nationwide-more-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nationwide-img {
  max-width: 100%;
  transition: transform 0.3s;
}

/* レスポンシブ対応 - 四国エリアの求人・全国の求人 */
@media screen and (max-width: 768px) {
  .nationwide {
    height: 200px;
  }
}


/* フッターセクション */
.footer {
  background-color: #f8f9fa;
  padding: 50px 0 30px;
}

/* フッターナビゲーション */
.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-nav img {
  max-width: 150px;
  height: auto;
}

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

.footer-nav-list li {
  font-size: 1.4rem;
}

.footer-nav-list a {
  color: #333;
  transition: color 0.3s;
}

.footer-nav-list a:hover {
  color: var(--main-color);
  text-decoration: none;
}

.copyright {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-top: 20px;
}

/* レスポンシブ対応 - フッター */
@media screen and (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav img {
    margin-bottom: 15px;
  }

  .footer-nav-list {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .footer-nav-list {
    flex-direction: column;
    gap: 10px;
  }

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