/************************************************************/
/*   base   */
/************************************************************/
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

/* 全体に Noto Serif JP Medium を適用 */
body.home {
  font-family: 'Noto Sans JP', sans-serif;
  /* font-weight: 500; */
  /* line-height: 1.8; */
  font-size: clamp(16px, 2vw, 20px);
  /* 画面幅に応じてサイズが変わる */
  color: #333;
  margin: 0;
  padding: 0;
}

body {
  padding-top: 0px;
  margin: 0;
}

h1, h2, h3 {
  font-family: 'Noto Sans JP', serif;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 3.5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
}

p {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', serif;
  /* text-align: justify;
  text-justify: inter-ideograph; */
}

a {
  text-decoration: none !important;
  color: inherit;
}

a:visited {
  /* color: #333; */
  /* 訪問済みリンクも同じ色 */
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

/* TELリンク対応 */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

a[href^="tel"]:visited,
a[href^="tel"]:hover,
a[href^="tel"]:active,
a[href^="tel"]:focus {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

*, *::before, *::after {
  box-sizing: inherit;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.inner-wrapper {
  max-width: 1060px;
  margin: 0 auto;
}


/************************************************************/
/*   TOP   */
/************************************************************/
/* <---------- スライダーPC ----------> */
/* .swiper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
} */

.mv-swiper {
  width: 100%;
  /* 横幅は画面幅に合わせる */
  /* max-width: 1400px; */
  /* 最大幅を指定 */
  margin: auto;
  position: relative;
  height: 800px;
  overflow: hidden;
}

.mv-swiper .swiper-slide {
  /* position: relative; */
}

.mv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* スライド文字：縦中央右寄せ＋浮き出るアニメーション */
.mv-swiper .slide-text {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%) translateX(30px);
  text-align: right;
  color: #fff;
  /* background: rgba(0, 0, 0, 0.4); */
  padding: 20px 25px;
  border-radius: 10px;
  opacity: 0;
  transition: all 1.5s ease;
}

/* アクティブスライドで文字浮き出す */
.mv-swiper .swiper-slide-active .slide-text {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.mv-swiper .slide-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 10px;
}

.mv-swiper .slide-text p {
  /* font-size: clamp(1rem, 2.5vw, 1.5rem); */
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  /* 文字間を広げる */
  margin: 0 0 10px 0;
  font-family: 'Noto Serif JP', serif;
}

/* 矢印を白に */
:root {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
}

/* ページネーションのカスタマイズ */
.mv-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.mv-swiper .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

/* 矢印を白に変更 */
.mv-swiper .swiper-button-prev,
.mv-swiper .swiper-button-next {
  color: #fff;
  --swiper-navigation-color: #fff
}

/* ページネーションドットの基本デザイン */
.mv-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  /* 通常は半透明の白 */
  opacity: 1;
  /* Swiperのデフォルトは0.2なので上書き */
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  border-radius: 50%;
  /* 丸型 */
  transition: all 0.3s ease;
}

/* アクティブ時（現在のスライド） */
.mv-swiper .swiper-pagination-bullet-active {
  background: #fff;
  /* 白に強調 */
  transform: scale(1.3);
  /* ちょっと大きく */
}

:root {
  --swiper-navigation-color: #fff;
  /* 矢印 白 */
  --swiper-pagination-color: #fff;
  /* アクティブなドット 白 */
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.6);
}

/* <---------- スライダーSP ----------> */
@media (max-width: 767px) {
  .mv-swiper .swiper {
    aspect-ratio: 16/9;
    /* 横16:縦9の比率を維持 */
    width: 100%;
    max-width: 1400px;
  }

  .mv-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

/************************************************************/
/*       */
/************************************************************/
/* <----------  ----------> */







/************************************************************/
/*   recruit-header   */
/************************************************************/
/* <---------- ヘッダー ----------> */

/* Header Styles */
header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background: #2D7944;
  /* background: #77a0919e; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

header.scrolled .header-logo-text,
header.scrolled .header-nav a,
header.scrolled .hamburger span {
  color: white;
}

header.scrolled .hamburger span {
  background: white;
}

header.scrolled .header-logo-icon,
header.scrolled .header-instagram {}

header.scrolled .corporate-btn {
  background: white;
  color: #2D7944;
  font-weight: 600;
}

header.scrolled .corporate-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

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

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
  position: relative;
  padding: 0 20px;
}

.header-nav a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #ddd;
}

header.scrolled .header-nav a:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.4);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.corporate-btn {
  background: #2D7944;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.corporate-btn-mb {
  background: #2D7944;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.corporate-btn-mb span {
  color: white;
}

.corporate-btn:hover {
  background: #2D7944;
  transform: translateX(4px);
}

.corporate-btn .arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

.corporate-btn:hover .arrow {
  transform: translateX(4px);
}

.arrow {
  font-family: "Arial", "Helvetica", sans-serif;
  /* 絵文字でないフォントを指定 */
}

.header-instagram {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.header-instagram:hover {
  opacity: 0.7;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 35px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #e0e0e0;
  padding: 20px 40px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu .mobile-social {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

/* Main Content */
main {
  min-height: 100vh;
  padding: 120px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

main h1 {
  color: #333;
  margin-bottom: 20px;
}

main p {
  /* color: #666;
  line-height: 1.8; */
}

/* Tablet Styles */
@media (max-width: 968px) {
  .header-nav {
    gap: 20px;
  }

  .header-nav a {
    font-size: 14px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 16px 20px;
  }

  .header-nav,
  .header-social {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  main {
    padding-top: 80px;
  }

}

@media (max-width: 480px) {
  .header-logo-text {
    font-size: 20px;
  }

  .mobile-menu {
    padding: 20px 20px;
  }

}


/************************************************************/
/*   recruit-slider   */
/************************************************************/
/* <---------- スライダー ----------> */
/* Main Content */
main {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

/* Hero Slider */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(80%); */
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)); */
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 100%;
  max-width: 326px;
}

.slide-content img {
  width: 100%;
}



.slide-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.3);
  line-height: 1.3;
}

.slide-content p {
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 40px;
  text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.3);
  line-height: 1.8;
}

.slide-content .slide-image-c {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.slide-content-left {
  position: absolute;
  left: 0%;
  transform: translate(0%, -86%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 90%;
  max-width: 1000px;
}

.slide-image-l {

  width: 100%;
}

.slider-nav {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}

.slider-arrow {
  display: none;
}

.content-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}


/* Tablet Styles */
@media (max-width: 968px) {}

/* Mobile Styles */
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .slide-content p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .slide-content .slide-image-l {
    max-width: 280px;
  }

  .slider-nav {
    right: 20px;
    gap: 12px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .content-section {
    padding: 40px 20px;
  }

  .content-section h2 {
    font-size: 28px;
  }

}

@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 24px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .slide-content .slide-image-l {
    max-width: 200px;
  }

  .slider-nav {
    right: 12px;
    gap: 10px;
  }

  .slider-dot {
    width: 7px;
    height: 7px;
  }

  .content-section h2 {
    font-size: 24px;
  }

}

/************************************************************/
/*   recruit-vision   */
/************************************************************/
/* <---------- vision ----------> */

#vision {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 50px 0 0;
  background-color: #CDF0D3;
}

.vision-section {
  background: linear-gradient(to bottom, #e8f5e0 0%, #ffffff 100%);
  text-align: center;
}

.vision-3k {
  max-width: 825px;
  width: 100%;
  margin: 0 auto;
}

.vision-3k img {
  width: 100%;
}

.vision-title {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  letter-spacing: 0.2em;
  padding: 0 40px;
  font-size: 30px;
}

.vision-title span {
  font-size: 2.5rem;
  font-weight: normal;
}

.vision-description {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 2;
  text-align: center;
  padding: 0 40px;
}

.vision-description strong {
  font-weight: bold;
}

.vision-description p:last-child {
  font-size: 22px;
}

.vision-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}

.vision-image {
  /* aspect-ratio: 1; */
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.vision-image img {
  width: 100%;
  display: block;
}

/* Responsive - PC */
@media screen and (max-width: 1400px) {
  .container {
    max-width: 95%;
  }

  .vision-3k {
    max-width: 825px;
    width: 100%;
    margin: 0 auto;
  }

  .vision-3k img {
    width: 100%;
  }

}


/* Responsive - Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .vision-3k {
    max-width: 825px;
    width: 80%;
    margin: 0 auto;
  }

  .vision-3k img {
    width: 100%;
  }

  .vision-title {
    gap: 20px;
    text-align: center;
  }

}

/* Responsive - Mobile */
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 15px;
  }

  .vision-3k {
    max-width: 825px;
    width: 80%;
    margin: 0 auto;
  }

  .vision-3k img {
    width: 100%;
  }

  .vision-title {
    gap: 20px;
    font-size: 18px;
    text-align: center;
  }

  .vision-title img {
    margin-top: 10px;
  }

  .vision-images {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .vision-description {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 2;
    text-align: left;

  }


}

/************************************************************/
/*   recruit-about us   */
/************************************************************/
/* <---------- about us ----------> */
#about {
  width: 100%;
  height: 1450px;
  margin: 0 auto;
  padding: 50px 0;
  background-color: #2C7944;
  color: #fff;
  position: relative;
  z-index: 1;
  scroll-margin-top: 150px;
}

.about-inner {
  max-width: 1060px;
  width: 100%;
  translate: -50% -80%;
  position: absolute;
  height: 1000px;
  top: 50%;
  left: 50%;
  z-index: 999;
  background-color: #2C7944;
  border-radius: 37px;
}

.about-content {
  max-width: 860px;
  margin: 0 auto 20px;
  padding: 0 40px;
  text-align: center;
  line-height: 2;
}

.about-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-content p {
  margin-bottom: 100px;
}


.values-title {
  margin: 100px 0 50px;
  text-align: center;
}

.values-title h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}

.value-item {
  text-align: center;
  padding: 20px;
}

.value-img1 {
  width: 230px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-img2 {
  width: 230px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-img3 {
  width: 230px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-img1::before {
  content: url("../images/recruit/aboutus_no1.png");
  display: inline-block;
  width: 45px;
  height: 250px;
  margin-right: 8px;
  vertical-align: middle;
}

.value-img2::before {
  content: url("../images/recruit/aboutus_no2.png");
  display: inline-block;
  width: 45px;
  height: 250px;
  margin-right: 8px;
  vertical-align: middle;
}

.value-img3::before {
  content: url("../images/recruit/aboutus_no3.png");
  display: inline-block;
  width: 45px;
  height: 250px;
  margin-right: 8px;
  vertical-align: middle;
}

.value-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.value-description {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
}

/* Responsive - Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {

  #about {
    width: 100%;
    height: 2100px;
    margin: 0 auto;
    padding: 50px 0;
    background-color: #2C7944;
    color: #fff;
    position: relative;
    z-index: 1;
    scroll-margin-top: 150px;
  }

  .about-inner {

    width: 100%;
    translate: -50% -95%;
    position: absolute;
    height: 1000px;
    top: 50%;
    left: 50%;
    z-index: 999;
    background-color: #2C7944;
    border-radius: 0;
  }


  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Responsive - Mobile */
@media screen and (max-width: 767px) {

  #about {
    width: 100%;
    height: 2100px;
    margin: 0 auto;
    padding: 50px 0;
    background-color: #2C7944;
    color: #fff;
    position: relative;
    z-index: 1;
    scroll-margin-top: 150px;
  }

  .about-inner {

    width: 100%;
    translate: -50% -135%;
    position: absolute;
    height: 1000px;
    top: 50%;
    left: 50%;
    z-index: 999;
    background-color: #2C7944;
    border-radius: 0;
  }

  .about-content h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: left;
  }

  .about-content p {
    text-align: left;
    margin-bottom: 50px;

  }


  .value-item {
    text-align: center;
    padding: 5px;
  }


  .values-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

}


/* Responsive - Mobile */
@media screen and (max-width: 480px) {

  #about {
    width: 100%;
    height: 2850px;
    margin: 0 auto;
    padding: 50px 0;
    background-color: #2C7944;
    color: #fff;
    position: relative;
    z-index: 1;
    scroll-margin-top: 150px;
  }
}



/************************************************************/
/*   recruit-workstyle   */
/************************************************************/
/* <---------- workstyle ----------> */

/* WORK STYLE Section */
#workstyle {
  width: 100%;
  margin: 0 auto;
  padding: 50px 40px;
  background: white;
  background-image: url(../images/recruit/workstyle_bg.png);
}

.workstyle-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.workstyle-intro h2 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #2C7944;
  margin-bottom: 60px;
  max-width: 900px;
  margin: 0 auto 20px;
}

.workstyle-intro p {
  text-align: center;
  margin-bottom: 60px;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.benefit-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
  max-width: 1200px;
  justify-items: center;
  align-items: center;
}

.benefit-box {
  padding: 30px;
  border-radius: 10px;
}

.benefit-box1 h3 {
  margin-bottom: 15px;
  color: #ffffff;
  background-color: #2C7944;
  border-radius: 10px;
  text-align: center;
  font-size: 26px;
  height: 80px;
  align-content: center;
  max-width: 480px
}

.benefit-box2 h3 {
  margin-bottom: 15px;
  color: #ffffff;
  background-color: #3EC678;
  border-radius: 10px;
  text-align: center;
  font-size: 26px;
  height: 80px;
  align-content: center;
  max-width: 480px
}

.benefit-box1,
.benefit-box2 p {
  margin-bottom: 15px;
  text-align: left;
  font-size: 18px;
  max-width: 480px;
  color: #333;
  line-height: 1.8;
}

.benefit-text {
  margin-bottom: 100px;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  max-width: 1200px
}

.work-schedule {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 10px;
  margin: 60px 0;
}

.schedule-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.schedule-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.schedule-number {
  background: #4a7c59;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 20px;
}

.schedule-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.welfare-section {
  margin-top: 60px;
}

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

.welfare-item {
  text-align: center;
}

.welfare-icon {
  width: 80px;
  height: 80px;
  background: #e8f5e0;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

/* Responsive - PC */
@media screen and (max-width: 1400px) {}

/* Responsive - Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {


  .welfare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Responsive - Mobile */
@media screen and (max-width: 767px) {

  .workstyle-intro h2 {
    font-size: 22px;

  }

  .workstyle-intro p {}

  .benefit-boxes {
    grid-template-columns: 1fr;
  }

  .welfare-grid {
    grid-template-columns: 1fr;
  }

}

/* career path */
.career-path {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0;
}

.career-path-container {
  display: flex;
  flex-direction: row;

}

.career-path-right {
  display: flex;
  align-items: flex-start;
}

.header-title {
  font-size: 18px;
  color: #2d7a3e;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.career-path-left {
  margin-right: 40px;
  max-width: 690px;
}

.career-path-left-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #333;
}

.career-section {
  display: flex;
  gap: 10px;
  margin-bottom: 80px;
  align-items: flex-start;
}

.year-number {
  flex-shrink: 0;
  width: 90px;
}

.year-digit {
  font-size: 72px;
  font-weight: bold;
  color: #2d7a3e;
  line-height: 1;
  margin-bottom: 10px;
}

.year-label {
  font-size: 18px;
  color: #2d7a3e;
  font-weight: 500;
}

.content-area {
  flex: 1;
  display: flex;
  gap: 40px;
  align-items: center;
}

.text-content {
  flex: 1;
  padding-right: 20px;
}

.section-subtitle {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.section-description {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.image-content {
  flex-shrink: 0;
  width: 400px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.divider {
  width: 3px;
  background: #2d7a3e;
  margin-right: 40px;
  align-self: stretch;
}

/* PC用 */
@media screen and (max-width:1400px) {
  .container {
    padding: 50px 30px;
  }

  .image-content {
    width: 350px;
    height: 250px;
  }

}

/* タブレット用 */
@media screen and (min-width:768px) and (max-width:1023px) {
  .container {
    padding: 40px 30px;
  }

  .career-path-left {
    margin-right: 0;
    max-width: 100%;
  }

  .career-path-left-title {
    font-size: 25px;
    margin-bottom: 50px;
  }

  .career-section {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 60px;
  }

  .year-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .year-digit {
    font-size: 60px;
  }

  .year-label {
    font-size: 16px;
  }

  .content-area {
    flex-direction: column;
    gap: 30px;
  }

  .text-content {
    padding-right: 0;
  }

  .section-subtitle {
    font-size: 24px;
  }

  .section-description {
    font-size: 16px;
  }

  .image-content {
    width: 100%;
    height: 300px;
  }

  .divider {
    /* display: none; */
    height: 3px;
    width: 100%;
    background: #2d7a3e;
    align-self: auto;
  }
}

/* スマートフォン用 */
@media screen and (max-width:767px) {
  .container {
    padding: 30px 20px;
  }

  .header-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .career-path-left {
    margin-right: 0;
    max-width: 100%;
  }

  .career-path-left-title {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .career-path {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
  }


  .career-section {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
  }

  .year-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .year-digit {
    font-size: 48px;
  }

  .year-label {
    font-size: 14px;
  }

  .content-area {
    flex-direction: column;
    gap: 20px;
  }

  .text-content {
    padding-right: 0;
  }

  .section-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .section-description {
    font-size: 16px;
    line-height: 1.9;
  }

  .image-content {
    width: 100%;
    height: 220px;
  }

  .divider {
    /* display: none; */
    height: 3px;
    width: 100%;
    background: #2d7a3e;
    align-self: auto;
  }
}


/* デフォルトはPC表示 */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.pc-only img {
  display: block;
}

/* TB・SP用切り替え */
@media (max-width: 1023px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }
}

/* support */
.support-section {
  /* background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #e8f5e9 100%); */
  background: linear-gradient(#cdf0d363);
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.support-section::before,
.support-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-radius: 10px;
}

.support-section::before {
  top: -100px;
  left: -100px;
}

.support-section::after {
  bottom: -100px;
  right: -100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
}

.section-title-en {
  color: #2e7d32;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
}

.section-title-ja {
  color: #000;
  font-size: 26px;
  font-weight: 700;
  margin-top: 10px;
}

.cards-container {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 50px 30px 40px;
  flex: 1;
  max-width: 325px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 630px;
}

*, *::before, *::after {
  box-sizing: inherit;
}

ユーザー エージェント スタイルシート div {
  display: block;
  unicode-bidi: isolate;
}

:root {
  --swiper-navigation-size: 44px;
}

:root {
  --swiper-theme-color: #007aff;
}

:root {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.6);
}

:root {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
}

*, *::before, *::after {
  box-sizing: inherit;
}

*, *::before, *::after {
  box-sizing: inherit;
}


.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-number {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: #BFF0C7;
  width: 180px;
  height: 90px;
  border-radius: 0 0 100px 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  color: white;
  font-size: 42px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
}

.card-icon {
  text-align: center;
  margin: 100px 0 30px;
  height: 100%;
  max-height: 125px;
}

.card-icon svg {
  width: 120px;
  height: 120px;
  stroke: #2e7d32;
  fill: none;
  stroke-width: 3;
}

.card-title {
  color: #2e7d32;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.card-description {
  color: #333;
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
}

.note {
  text-align: center;
  margin: 20px 0 50px;
  color: #555;
  font-size: 13px;
}

@media screen and (max-width: 1400px) {
  .cards-container {
    gap: 25px;
  }

  .card {
    padding: 45px 25px 35px;
    max-width: 350px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .support-section {
    padding: 60px 20px;
  }

  .cards-container {
    gap: 20px;
  }

  .card {
    padding: 40px 20px 30px;
    max-width: 240px;
  }

  .card-icon svg {
    width: 90px;
    height: 90px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 16px;
  }

  .section-title-en {
    font-size: 24px;
  }

  .section-title-ja {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .support-section {
    padding: 50px 15px;
  }

  .cards-container {
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
  }

  .card {
    max-width: 100%;
    padding: 50px 25px 35px;
  }

  .card-icon svg {
    width: 100px;
    height: 100px;
  }

  .section-title-en {
    font-size: 22px;
  }

  .section-title-ja {
    font-size: 20px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 16px;
  }

  .note {
    font-size: 12px;
    margin-top: 40px;
  }
}

/************************************************************/
/*   recruit-entry   */
/************************************************************/
/* <---------- entry ----------> */

.entry-section {
  background: #CDF0D3;
  background-color: #CDF0D3;
  padding: 80px 20px;
  overflow: hidden;
}

.entry-inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.entry-title {
  font-size: 48px;
  margin-bottom: 5px;
}

.entry-sub {
  margin-bottom: 40px;
}

.entry-catch {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 60px;
  line-height: 1.8;
}

/* ====== コラージュ全体 ====== */
.entry-collage {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 80px;
  position: relative;
}

/* ====== メイン画像 ====== */
.entry-collage .main-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* ====== サブ画像基本 ====== */
.sub-img {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* 左上サブ画像 */
.sub1 {
  width: 276px;
  height: 185px;
  top: -320px;
  left: 70px;
}

/* 右中サブ画像 */
.sub2 {
  width: 278px;
  height: 196px;
  top: -30px;
  left: -140px;
}

/* 右下サブ画像*/
.sub3 {
  width: 346px;
  height: 275px;
  top: 360px;
  left: -180px;
}

/* 左上サブ画像 */
.sub4 {
  width: 263px;
  height: 196px;
  top: -320px;
  right: 70px;
}

/* 左中サブ画像 */
.sub5 {
  width: 316px;
  height: 260px;
  top: -140px;
  right: -140px;
}

/* 左下サブ画像 */
.sub6 {
  width: 281px;
  height: 228px;
  top: 460px;
  right: -90px;
}

/* ====== テキスト ====== */
.entry-text {
  text-align: center;
  line-height: 1.9;
  font-size: 18px;
  max-width: 790px;
  margin: 0 auto;
  width: 95%;

}

.entry-text span {
  font-weight: bold;
}

.entry-text-bold {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
}


/* ----------------------------------------------------
  ▼ タブレット
---------------------------------------------------- */
@media screen and (min-width:768px) and (max-width:1200px) {

  .entry-collage {
    max-width: 768px;
  }

  /* 左上サブ画像 */
  .sub1 {
    width: 180px;
    height: auto;
    top: -320px;
    left: 20px;
  }

  /* 右中サブ画像 */
  .sub2 {
    width: 180px;
    height: auto;
    top: -30px;
    left: -140px;
  }

  /* 右下サブ画像*/
  .sub3 {
    width: 180px;
    height: auto;
    top: 200px;
    left: -100px;
  }

  /* 左上サブ画像 */
  .sub4 {
    width: 180px;
    height: auto;
    top: -320px;
    right: 70px;
  }

  /* 左中サブ画像 */
  .sub5 {
    width: 180px;
    height: auto;
    top: -140px;
    right: -140px;
  }

  /* 左下サブ画像 */
  .sub6 {
    width: 180px;
    height: auto;
    top: 200px;
    right: -90px;
  }

}

/* ----------------------------------------------------
  ▼ スマホ
---------------------------------------------------- */
@media screen and (max-width:767px) {

  .entry-collage {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .entry-text {
    text-align: left;


  }

  .sub-img {
    display: none;
  }
}

/* <---------- 募集要項 ----------> */

.recruit-box {
  background: #ffffff;
  padding: 40px 20px;
  width: 100%;
  max-width: 1200px;
  border-radius: 20px;
  margin: 50px 0;
}

.recruit-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
}

.recruit-table {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
}

.recruit-table th,
.recruit-table td {
  border: 1px solid #ddd;
  vertical-align: top;
}

.recruit-table th {
  width: 20%;
  background: #f7f7f7;
  font-weight: bold;
}

.recruit-table th {
  padding: 18px;
  font-size: 15px;
}

.recruit-table td {
  text-align: left;
  padding: 18px 50px 18px;
  font-size: 15px;
}



.recruit-note {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 14px;
}

/* ーーーーーーーーーーーーーーーー */
/* PC（〜1400px） */
/* ーーーーーーーーーーーーーーーー */
@media screen and (max-width:1400px),
print {

  .recruit-table th {
    padding: 18px;
    font-size: 15px;
  }

  .recruit-table td {
    text-align: left;
    padding: 18px 50px 18px;
    font-size: 15px;
  }

}

/* ーーーーーーーーーーーーーーーー */
/* タブレット TB（768〜1023px） */
/* ーーーーーーーーーーーーーーーー */
@media screen and (min-width:768px) and (max-width:1023px) {

  .recruit-table th {
    padding: 18px;
    font-size: 15px;
  }

  .recruit-table td {
    text-align: left;
    padding: 18px 50px 18px;
    font-size: 15px;
  }
}

/* ーーーーーーーーーーーーーーーー */
/* スマホ SP（〜767px） */
/* ーーーーーーーーーーーーーーーー */
@media screen and (max-width:767px) {

  .recruit-table,
  .recruit-table tbody,
  .recruit-table tr,
  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
  }

  .recruit-table tr {
    /* margin-bottom: 10px;
                border: 1px solid #ddd; */
  }

  .recruit-table th {
    width: 100%;
    background: #f7f7f7;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
  }

  .recruit-table td {
    padding: 12px 12px;
    text-align: center;
  }

  .recruit-title {
    font-size: 24px;
  }

  .recruit-note {
    font-size: 13px;
  }
}

/* <---------- 応募方法 ----------> */
.contact {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
}

.contact-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000;
  letter-spacing: 0.05em;
}

.contact-description {
  text-align: left;
  font-size: 16px;
  line-height: 2;
  color: #333;
  letter-spacing: 0.02em;
  max-width: 705px;
  margin: 0 auto 60px;
}

.contact-catch {
  margin: 0 auto 70px;
  max-width: 700px;
}

.contact-catch img {
  width: 100%;
}

.main-heading {
  font-size: 72px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
  letter-spacing: 0.02em;
}

.sub-heading {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  color: #000;
  letter-spacing: 0.08em;
}

.contact-methods {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
}

.contact-card {
  flex: 1;
  background: #3DC678;
  border-radius: 20px;
  padding: 40px 30px 30px;
  position: relative;
  text-align: center;
  color: #fff;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.contact-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: #3DC678;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 40px;
}

.contact-info {
  font-size: 1.6rem;
  font-weight: 700;

}

.contact-info span {
  font-size: 2rem;
  font-family: Oswald;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.contact-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}


@media screen and (max-width: 1400px) {
  .container {
    padding: 70px 50px;
  }

  .contact-catch {
    margin: 0 auto 70px;
    max-width: 700px;
  }

  .main-heading {
    font-size: 64px;
  }

  .sub-heading {
    font-size: 32px;
  }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 60px 40px;
    border-radius: 30px;
  }

  .contact-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .contact-description {
    font-size: 15px;
    margin: 0 auto 50px;
    max-width: 657px;
  }


  .contact-catch {
    margin: 0 auto 70px;
    max-width: 500px;
  }


  .main-heading {
    font-size: 56px;
    margin-bottom: 15px;
  }

  .sub-heading {
    font-size: 28px;
    margin-bottom: 60px;
  }

  .contact-methods {
    gap: 25px;
  }

  .contact-card {
    padding: 50px 25px 35px;
    min-height: 180px;
  }

  .contact-methods {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
  }

  .contact-card {
    flex: 1;
    background: #3DC678;
    border-radius: 20px;
    padding: 60px 30px 30px;
    position: relative;
    text-align: center;
    color: #fff;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: 0.05em;
  }

  .contact-icon {
    width: 70px;
    height: 70px;
    top: -25px;
  }

  .contact-icon img {
    width: 35px;
  }

  .contact-label {
    font-size: 18px;
  }

  .contact-info {
    font-size: 1.6rem;
    font-weight: 700;

  }

  .contact-info span {
    font-size: 2rem;
    font-family: Oswald;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
  }
}

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

  .container {
    padding: 0;
    border-radius: 20px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .section-description {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .main-heading {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .sub-heading {
    font-size: 22px;
    margin-bottom: 50px;
  }

  .contact {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 20px;
  }

  .contact-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: 0.05em;
  }

  .contact-methods {
    flex-direction: column;
    gap: 50px;
  }

  .contact-card {
    padding: 50px 20px 30px;
    min-height: 160px;
    width: 100%;
  }

  .contact-icon {
    width: 65px;
    height: 65px;
    top: -32px;
  }

  .contact-icon img {
    width: 33px;
  }

  .contact-label {
    font-size: 17px;
  }

  .contact-info {
    font-size: 26px;
  }

  .contact-arrow {
    bottom: 15px;
    right: 15px;
    border-left: 10px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
}

/************************************************************/
/*   recruit-footer   */
/************************************************************/
/* <---------- フッター ----------> */

footer {
  background: white;
  padding: 24px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #e0e0e0;
  border-radius: 4px;
}

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

.logo-img img {
  width: 100%;
}

.logo-img .t-text {
  color: #333;
}

.logo-img.agri-text {
  color: #4CAF50;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 3%;
}

.footer-nav a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #4CAF50;
}

.footer-nav .separator {
  color: #ccc;
}

.instagram-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.instagram-icon:hover {
  opacity: 0.7;
}

.copyright {
  color: #666;
  font-size: 12px;
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 768px) {
  footer {
    padding: 20px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-nav {
    width: 100%;
    gap: 16px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .footer-right {
    width: 100%;
    justify-content: space-between;
  }

  .copyright {
    font-size: 11px;
    margin-left: 0;
  }

}

@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-nav .separator {
    display: none;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .copyright {
    width: 100%;
    margin-left: 0;
  }
}


/************************************************************/
/*   共通   */
/************************************************************/
/* <---------- 共通 ----------> */

/* <---------- section-title-img ----------> */

.section-title {
  text-align: center;
  padding: 70px 0;
}

/* 英語タイトル画像 */
.section-title .title-img {
  max-height: 60px;
  margin-bottom: 10px;
}

/* 日本語タイトル */
.section-title .title-sub {
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #155D26;
}

/* ============================
    PC（最大幅1400px以下 & 印刷）
   ============================ */
@media screen and (max-width:1400px), print {
  .section-title {
    text-align: center;
    padding: 60px 0;
  }

  .section-title .title-img {
    text-align: center;
    margin-bottom: 6px;
    max-height: 38px;
    overflow: hidden;
  }

  .section-title .title-sub {
    font-size: 16px;
    font-family: Noto Sans JP;
    color: #155D26;
  }

  .section-title .title-sub-white {
    font-size: 16px;
    font-family: Noto Sans JP;
    color: #ffffff;
  }
}

/* ============================
      TB（768px ～ 1023px）
   ============================ */
@media screen and (min-width:768px) and (max-width:1023px) {
  .section-title .title-img {}

  .section-title .title-sub {
    font-size: 15px;
  }
}

/* ============================
        SP（～ 767px）
   ============================ */
@media screen and (max-width:767px) {
  .section-title {
    text-align: center;
    padding: 60px 0;
  }

  .section-title .title-img {
    margin-bottom: 6px;
    max-height: 10vw;
    overflow: hidden;
  }

  .section-title .title-sub {
    font-size: 14px;
  }
}

/* <---------- section-title-img ----------> */