@charset 'UTF-8';

/* 共通----------------------------------- */

html {
  scroll-behavior: smooth;
}

body{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #282828;
  font-size: 14px;
  animation: fade 2s forwards;
}
@media (min-width:768px) {
  body{
    font-size: 16px;
  }
}

@keyframes fade{
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

p{
  line-height: 1.7;
  color: #333;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
a{
  text-decoration: none;
  color: #fff;
}
ul{
  list-style: none;
}
.wrapper{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}
.wrapper2{
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 0 4%;
}

/* 英語フォント */
.en{
  font-family: "Figtree", sans-serif;
  font-style: normal;
}

/* ヘッダー--------------------------------------------------------- */
.header .logo{
  padding-left: 4%;
}
.header-logo{
  width: clamp(180px, 22vw, 260px);
  height: auto;
    object-fit: contain;
  /* padding-left: 4%; */
  z-index: 100;
}
.header{
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  background: #ffffffda;
}

/* ハンバーガーメニューの三本線 */
.btn{
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 3;
  background: #282828;
}
.btn span,
.btn span::before,
.btn span::after{
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  transition: all 0.4s ease-out;
}
.btn span::before{
  bottom: 8px;
}
.btn span::after{
  top: 8px;
}

/* ハンバーガークリックした時のアニメーション */
.btn.open span{
  background-color: transparent !important;
}
.btn.open span::before{
  bottom: 0;
  transform: rotate(225deg);
  background-color: #fff !important;
}
.btn.open span::after{
  top: 0;
  transform: rotate(-225deg);
  background-color: #fff !important;
}

/* ハンバーガーメニュー開いた時のナビ */
.gnav{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: none;
  z-index: 2;
}
.gnav a{
  font-size: 20px;
  font-weight: 400;
}
.gnav-ul{
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  padding: 20px;
  margin-top: 30%;
}
.gnav-li{
  /* line-height: 80px; */
  padding-left: 20px;
}
.nav-list{
  display: flex;
  flex-direction: column;
  color: #282828; /* 色はお好みで */
  padding-bottom:40px;
}

/* SPナビゲーション内のボタンたち */
.menu-cta{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-cta a{
  font-size: 14px;
}

/* SP版ではPC版用ナビとお問い合わせボタン非表示 */
.pc-nav{
  display: none;
}
.entry-btn2{
  display: none !important;
}

/* エントリーボタンあたり */
.entry-ham{
  display: flex;
  /* gap: 10px; */
}
.entry-btn a,.entry-btn2 a{
  background: #007365;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcnav-box{
  display: none;
}

@media (min-width:1000px) {

  .header{
    height: 90px;
    border-bottom: 1px solid #d9d9d9;
  }
  .gnav{
    display: none;
  }
  .entry-ham{
    display: none;
  }
  .entry-btn2 a{
    /* display: block; */
    padding: 10px 40px;
  }
  .pc-nav{
    display: flex;
  }
  .pc-nav a{
    color: #282828;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  .pc-nav ul {
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
  }
  .pcnav-box{
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: auto;
    padding-right: 4%;
  }
  .entry-btn2{
    display: flex !important;
  }
  .entry-btn2 a:hover{
    background: #C3AC80;
  }
  .pc-nav li a:hover{
    color: #C3AC80;
  }

}

/* 働く環境------------------------------------------------- */

/* 各セクションタイトル */
.section-title{
  font-size: 36px;
}
.section-subtitle{
  font-size: 12px;
  margin-bottom: 32px;
}

@media (min-width:768px) {
  .section-title{
    font-size: 48px;
  }
  .section-subtitle{
    font-size: 16px;
    margin-top: 4px;
    margin-bottom: 40px;
  }
}

.page-top{
  margin-top: 80px;
  padding: 0 4%;
}

@media (min-width:768px) {
  .page-top{
    margin-top: 160px;
    padding: 0 6%;
  }
  }

  .sub-visual{
    background: url('../img/environment.webp')no-repeat center 20% / cover;
    height: 35vh;
    position: relative;
  }
  .page-title{
    font-size: 36px;
    font-weight: 500;
  }
  .page-subtitle{
    font-size: 12px;
    margin-bottom: 32px;
  }

@media (min-width:768px) {
  .sub-visual{
    height: 90svh;
    min-height: 400px;
  }
  .page-title{
    font-size: 70px;
    font-weight: 500;
  }
  .page-subtitle{
    font-size: 16px;
    margin-bottom: 50px;
  }
}

/* 下層ページタイトル */
.section-title2{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}
.section-subtitle2{
  font-size: 16px;
  color: #007365;
  font-weight: 500;
}
@media (min-width:768px) {
  .section-title2{
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
  }
  .section-subtitle2{
    font-size: 20px;
    color: #007365;
    margin-bottom: 12px;
}
}

/* Culture----- */
#culture{
  padding-top: 50px;
  padding-bottom: 60px;
  background: #f7f7f7;
}
.culture-img{
  margin-top: 40px;
  width: 80%;
  margin-left: -6%;
}
.culture-img img{
  border-radius: 0 6px 20px 0;
}
.culture-text p:first-child{
  margin-bottom: 14px;
}

@media (min-width:768px) {
  #culture{
    padding-top: 100px;
    padding-bottom: 100px;
  }
.culture-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .culture-text{
    width: 55%;
  }
  .culture-img{
    width: 38%;
    margin-top: 0;
  }
}

/* Incentive----- */
#incentive{
  padding-top: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid #d9d9d9;
}
@media (min-width:768px) {
  #incentive{
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* 数字で見る----- */
#number{
  padding-top: 50px;
  padding-bottom: 60px;
}
.numbers-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
  justify-items: center;
}

.numbers-item {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 10px 30px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  max-width: 500px;
}
.numbers-text{
  width: 50%;
  text-align: center;
}
.numbers-img{
  width: 50%;
}
.numbers-title{
  color: #007365;
  font-weight: 500;
  font-size: 16px;
}
.numbers-note{
  color: #c0c0c0;
  font-size: 12px;
}

@media (min-width:768px) {
  #number{
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .numbers-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 70px;
  }
}

@media (min-width: 1000px) {
  .numbers-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }

  /* 上3つ：2カラムずつ（6 ÷ 3 = 2） */
  .numbers-item:nth-child(1),
  .numbers-item:nth-child(2),
  .numbers-item:nth-child(3) {
    grid-column: span 2;
  }

  /* 下2つ：2カラムずつ＋中央寄せ */
  .numbers-item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .numbers-item:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .numbers-item {
    min-height: 170px;
  }
}

/* Recruit----- */
.recruit{
  padding-top: 40px;
  padding-bottom: 40px;
  background: #f7f7f7;
}
.recruit-list{
  background: #fff;
  border-radius: 4px;
}
.recruit-item{
  padding: 20px 25px 20px 25px;
  border-bottom: 1px solid #d9d9d9;
}
.recruit-item:last-child {
  border-bottom: none;
}
.recruit-link{
  color: #007365;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recruit-link .arrow {
  width: 34px;
  height: 34px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* エントリーボタンたち */
.recruit-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  width: 290px;
  margin: 0 auto;
}
.recruit-cta{
  text-align: center;
}
.cta-btn.black {
  background: #282828;
  transition: all 0.3s ease;
}

.cta-btn.black:hover {
  background: #C3AC80;
}
.cta-btn.green {
  background: #007365;
  transition: all 0.3s ease;
}
.cta-btn.green:hover {
  background: #C3AC80;
}
.cta-btn .plus {
  font-size: 16px;
  line-height: 1;
}

@media (min-width:768px) {
  .recruit{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .recruit-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .recruit-list{
    width: 55%;
  }
  .recruit-cta{
    width: 40%;
    margin-top: 0;
    gap: 30px;
  }
  .cta-btn {
    padding: 40px 40px;
    font-size: 16px;
    max-width: 320px;
  }
  .recruit-link .arrow {
    width: 40px;
    height: 40px;
  }
  .recruit-link span{
    transition: all 0.3s ease;
  }
  .recruit-item:hover .recruit-link span:first-child{
    color: #C3AC80;
  }
  .recruit-item:hover .arrow{
    color: #C3AC80;
  }
}

/* フッター----- */
.footer {
  padding: 50px 0 40px;
}

.footer-logo {
  margin-bottom: 40px;
  width: 200px;
}

.footer-site {
  font-size: 14px;
  margin-top: 8px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 0px;
}
.footer-col.environment {
  grid-column: 1 / -1; /* 横いっぱい使う */
}

.footer-title {
  font-size: 14px;
  margin-bottom: 10px;
  color: #AAC0B0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #282828;
  font-size: 12px;
}

.site-link1{
  position: relative;
}
.site-link1::after{
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: url(../img/link-icon.png)no-repeat center / contain;;
  top: 25%;
  right: -16px;
}

@media (min-width:768px) {
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 30px;
    width: 65%;
  }
    .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 80px;
  }

  .footer-logo {
    margin-bottom: 0;
    width: 30%;
  }
  .footer-col ul li {
    margin-bottom: 14px;
}
}

@media (min-width: 1000px) {
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 30px;
    width: 65%;
  }
    .footer-logo {
    margin-bottom: 0;
    width: 20%;
  }
}


/* 一番下のところ */
.footer-bottom {
  margin-top: 40px;
  padding-top: 14px;
  border-top: 1px solid #d9d9d9;
  text-align: center;
  font-size: 12px;
}

.footer-bottom a{
  color: #d9d9d9;
  font-size: 10px;
}

.footer-legal {
  margin: 6px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.copyright{
  color: #d9d9d9;
  }
  .footer-col li a{
    transition: 0.3s ease;
  }
  .footer-col li a:hover{
    color: #C3AC80;
  }

@media (min-width: 1000px) {
  .footer-bottom {
  padding-top: 30px;
  }
}


/* Jquery */
.fadein{
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s 0.2s;
}
.fadein.loaded{
  opacity: 1;
}
.slidein{
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.5s 0.2s;
}
.slidein.scrollin{
  opacity: 1;
  transform: translateY(0);
}