@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/abouttop.webp')no-repeat center center / 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;
}
}

/* Purpose----- */
#purpose{
  padding-top: 50px;
  padding-bottom: 100px;
  background: #f7f7f7;
}

.purpose-box{
  position: relative;
  padding-bottom: 40%;
}
 .purpose-img1{
  position: absolute;
  width: 50%;
  top: 60px;
  left: 0;
 }
 .purpose-img1 img{
  border-radius: 6px;
 }
  .purpose-img2{
  position: absolute;
  width: 35%;
  top: 30px;
  right: 6%;
 }
 .purpose-img2 img{
  border-radius: 6px;
 }

 @media (min-width:768px) {
  #purpose{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .purpose-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .purpose-text{
    width: 45%;
  }
  .purpose-box{
    width: 50%;
    padding-bottom: 30%;
  }
   .purpose-img1{
    top: 60px;
    left: 6%;
 }
  .purpose-img2{
    top: 10px;
    right: 0;
 }
 }

/* Value----- */
#value{
  padding-top: 50px;
  padding-bottom: 20px;
}
.value-img{
  width: 80%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.value-item {
  padding: 24px 0;
  border-bottom: 1px solid #E0DBDB;
}
.value-item:last-child {
  border-bottom: none;
}
.value-item .num {
  font-weight: 500;
  color: #007365;
  margin-right: 8px;
}
.value-title {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 500;
}

 @media (min-width:768px) {
  #value{
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .value-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .value-img{
    width: 40%;
    margin: 0;
  }
  .value-list{
    width: 50%;
  }
  .value-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .value-item {
    padding: 32px 0;
  }
    .value-item:first-of-type {
    padding: 0 0 32px 0;
  }
 }

/* Business----- */
#business{
  padding-top: 30px;
  padding-bottom: 60px;
  background: #f7f7f7;
}
.business-title{
  font-size: 18px;
  position: relative;
  padding-left: 14px;
  margin-top: 30px;
}
.business-title::before{
  content: "";
  position: absolute;
  height: 20px;
  width: 5px;
  top: 0;
  left: 0;
  background: #007365;
}
.business-img1,
.business-img2,
.business-img3{
  margin-left: -6%;
}
.business-text{
  margin: 16px auto 50px;
}

@media (min-width:768px) {
  #business{
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .business-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 40px;
  }
  .business-img1,
  .business-img2,
  .business-img3{
    width: 45%;
    margin-left: 0;
  }
  .business-box{
    width: 45%;
  }
  .business-title{
    font-size: 24px;
    padding-left: 20px;
    margin-bottom: 30px;
  }
  .business-title::before{
    content: "";
    position: absolute;
    height: 26px;
    width: 6px;
}
}

/* il mio----- */
#ilmio{
  padding-top: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E0DBDB;
  overflow: hidden;
}
.ilmio-img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 40px;
}
.ilmio-img img {
  width: 100%;
  height: auto;
  display: block;
}
.ilmio-text{
  margin-bottom: 20px;
}

@media (min-width:768px) {
  #ilmio{
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .ilmio-img {
    margin-top: 70px;
  }
  .ilmio-img img {
    height: 500px;
    object-fit: cover;
    object-position: center 70%
  }
  .ilmio-textbox{
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
  }
  .ilmio-text{
    margin-bottom: 40px;
  }
}

/* History----- */
#history{
  padding-top: 30px;
  padding-bottom: 40px;
  overflow: hidden;
}
.history-img {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.history-img img {
  width: 100%;
  height: auto;
  display: block;
}
.kome{
  font-size: 10px;
  color: #4d4d4d;
  text-align: right;
  padding-right: 4%;
}
.history-text{
  margin-top: 20px;
}

@media (min-width:768px) {
  #history{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .history-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .history-img{
    width: 47%;
    margin-left: 0;
  }
  .history-textbox{
    width: 48%;
  }
  .kome{
  font-size: 12px;
  padding-right: 0;
  margin-top: 6px;
}

}

/* 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;
}

@media (min-width: 1000px) {
  .footer-bottom {
  padding-top: 30px;
  }
  .footer-col li a{
    transition: 0.3s ease;
  }
  .footer-col li a:hover{
    color: #C3AC80;
  }
}


/* 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);
}