@charset "UTF-8";
/* CSS Document */
html {
  height: 100%;
}

body {
  font-family: "YakuHanJP", "Lato", "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 auto;
  background: #fff;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.sentence p + p {
  margin-top: 20px;
}

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

.ggmap {
  width: 100%;
  height: 350px;
}

input, select {
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}

.phone {
  display: none;
}

.pc {
  display: block;
}

.tcen {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .tcen {
    text-align: left;
  }
  body {
    font-size: 13px;
    line-height: 1.5;
  }
  .phone {
    display: block;
  }
  .pc {
    display: none !important;
  }
}
#page-top {
  position: fixed;
  bottom: 65px;
  right: 5px;
  font-size: 12px;
  font-weight: bold;
  z-index: 9999;
}
#page-top a {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  border-radius: 45px;
  background: #5c4233;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
}
#page-top a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.mtext1.type1 {
  margin-bottom: 25px;
  text-align: center;
}
.mtext1.type1 br {
  display: none;
}

@media all and (max-width: 896px) {
  .mtext1 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .mtext1.type1 {
    margin-bottom: 20px;
  }
  .mtext1.type1 br {
    display: block;
  }
}
.mtext2 {
  font-size: 2.4rem;
  line-height: 1.6;
}
.mtext2.type1 {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

@media all and (max-width: 896px) {
  .mtext2 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 2rem;
  }
  .mtext2.type1 {
    margin-bottom: 25px;
  }
}
.mtext3 {
  font-size: 4rem;
  line-height: 1.6;
  text-align: center;
}

@media all and (max-width: 896px) {
  .mtext3 {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 2.4rem;
  }
}
.loader {
  align-items: center;
  background-image: url(ttps://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28550/bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader.off {
  display: none;
}
@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#page {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #page {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ============================================
   有限会社浅野運送 コーポレートサイト
   scss/style.scss
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #1f2420;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

h1, h2, h3, p, ul, figure {
  margin: 0;
}

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

a {
  color: #1b5122;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s, border-color 0.2s;
}
a:hover {
  color: #4e9b4a;
}

table {
  border-collapse: collapse;
  width: 100%;
}

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap--md {
  max-width: 1100px;
}
.wrap--sm {
  max-width: 1000px;
}
.wrap--xs {
  max-width: 900px;
}
.wrap--form {
  max-width: 800px;
}

.section {
  padding: 96px 0;
}
.section--lg {
  padding: 104px 0;
}
.section--sm {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .section--lg {
    padding: 64px 0;
  }
}

.bg-dot {
  background-color: #fbfcfa;
  background-image: radial-gradient(#e2e9dc 1px, transparent 1px);
  background-size: 24px 24px;
}

.bg-stripe {
  background-color: #f4f6f1;
  background-image: repeating-linear-gradient(135deg, rgba(78, 155, 74, 0.05) 0 12px, transparent 12px 26px);
}

.bg-relative {
  position: relative;
  overflow: hidden;
}

.watermark {
  position: absolute;
  width: 520px;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 34%;
     object-position: center 34%;
  border-radius: 50%;
  opacity: 0.055;
  pointer-events: none;
}
.watermark--right {
  right: -140px;
  top: 40px;
}
.watermark--left {
  left: -160px;
  top: 100px;
}
.watermark--br {
  right: -150px;
  bottom: -80px;
  width: 460px;
  height: 460px;
}

.eyebrow {
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #4e9b4a;
}
.eyebrow--light {
  color: #9ecb95;
}

.h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.55;
  color: #1b5122;
  margin-top: 16px;
}
.h2--lg {
  font-size: 34px;
}
@media (max-width: 768px) {
  .h2--lg {
    font-size: 26px;
  }
}
.h2--sm {
  font-size: 28px;
}
@media (max-width: 768px) {
  .h2--sm {
    font-size: 23px;
  }
}
@media (max-width: 768px) {
  .h2 {
    font-size: 26px;
  }
}

.lead {
  font-size: 16px;
  line-height: 2.2;
  color: #3c433c;
  text-wrap: pretty;
}
.lead + .lead {
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  padding: 19px 34px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
}
.btn .arw {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}
.btn--primary {
  background: #4e9b4a;
  color: #fff;
}
.btn--primary:hover {
  background: #3d8f45;
  color: #fff;
}
.btn--light {
  background: rgba(255, 255, 255, 0.94);
  color: #1b5122;
}
.btn--light:hover {
  background: #fff;
}
.btn--white {
  background: #fff;
  color: #1b5122;
  font-size: 17px;
  padding: 22px 40px;
}
.btn--white:hover {
  background: #eaf3e7;
}
.btn--sm {
  font-size: 14px;
  padding: 14px 24px;
}
.btn--block {
  width: 100%;
  justify-content: center;
  padding: 18px;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    justify-content: center;
    padding: 17px 24px;
  }
}

.link-more {
  font-size: 15px;
  font-weight: 700;
  color: #1b5122;
  flex-shrink: 0;
}

.link-under {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #1b5122;
  border-bottom: 2px solid #4e9b4a;
  padding-bottom: 6px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e6e8e3;
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .header__inner {
    height: 72px;
  }
}
.header .btn {
  font-size: 14px;
  padding: 13px 22px;
}
@media (max-width: 1024px) {
  .header .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header .btn {
    width: auto;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo__text {
  display: flex;
  flex-direction: column;
}
.logo__mark {
  width: 44px;
  height: 44px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 44%;
     object-position: center 44%;
  border-radius: 50%;
}
.logo__name {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #1b5122;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .logo__name {
    font-size: 19px;
  }
}
.logo__en {
  font-family: "Barlow", sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #8a9188;
  margin-top: 3px;
}

.gnav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.gnav__link {
  color: #2c322c;
}
.gnav__link.is-current {
  color: #4e9b4a;
}
@media (max-width: 1024px) {
  .gnav__link {
    display: block;
    font-size: 16px;
    padding: 17px 4px;
    border-bottom: 1px solid #e0e3dc;
  }
}
.gnav__tel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 8px;
}
@media (max-width: 1024px) {
  .gnav__tel {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-left: 0;
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .gnav {
    position: fixed;
    left: 0;
    right: 0;
    top: 88px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e0e3dc;
    box-shadow: 0 12px 24px rgba(31, 36, 32, 0.08);
    padding: 8px 20px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  }
}
@media (max-width: 768px) {
  .gnav {
    top: 72px;
  }
}

.tel-label {
  font-family: "Barlow", sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #8a9188;
}

.tel-num {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1b5122;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .tel-num {
    font-size: 28px;
  }
}

/* --- ハンバーガー --- */
.navtoggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.navtoggle:checked ~ .hamburger .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navtoggle:checked ~ .hamburger .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.navtoggle:checked ~ .hamburger .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .navtoggle:checked ~ .gnav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}
.hamburger__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #1b5122;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.hero {
  position: relative;
  height: 660px;
  overflow: hidden;
  background: #1b5122;
}
@media (max-width: 768px) {
  .hero {
    height: 520px;
  }
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 60%;
     object-position: center 60%;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 28, 14, 0.85) 0%, rgba(10, 28, 14, 0.55) 46%, rgba(10, 28, 14, 0.12) 80%);
  z-index: 5;
}
.hero__body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}
.hero__rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #4e9b4a 0%, #9ecb95 50%, transparent 100%);
}
.hero__title {
  font-size: 62px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 26px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 46px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 34px;
  }
}
.hero__text {
  font-size: 18px;
  line-height: 2;
  color: #e4ede1;
  margin-top: 24px;
  text-wrap: pretty;
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 16px;
  }
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero__actions .btn--primary {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 18px;
}
.badge__en {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #c9e6c2;
}
.badge__sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.35);
}
.badge__jp {
  font-size: 13px;
  font-weight: 500;
  color: #eaf3e7;
}

.pagehead {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: #1b5122;
}
@media (max-width: 768px) {
  .pagehead {
    height: 220px;
  }
}
.pagehead__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.44;
}
.pagehead__body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pagehead__title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .pagehead__title {
    font-size: 30px;
  }
}

.newsbar {
  background: #f4f6f1;
  border-bottom: 1px solid #e6e8e3;
}
.newsbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .newsbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.newsbar__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-shrink: 0;
}
.newsbar__head-jp {
  font-size: 17px;
  font-weight: 700;
  color: #1b5122;
}
.newsbar__head-en {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #96a094;
}
.newsbar__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.newsbar__item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 15px;
}
.newsbar__item a {
  color: #2c322c;
}

.date {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: #8a9188;
  flex-shrink: 0;
  width: 92px;
}
@media (max-width: 768px) {
  .date {
    width: auto;
  }
}

.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}
.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
  .grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--5 {
    grid-template-columns: 1fr;
  }
}
.grid--gap20 {
  gap: 20px;
}
.grid--gap16 {
  gap: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.split--text-wide {
  grid-template-columns: 1.35fr 1fr;
  align-items: start;
  gap: 56px;
}
@media (max-width: 1024px) {
  .split--text-wide {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.split--md {
  gap: 56px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.greeting__sign {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.greeting__sign-role {
  font-size: 14px;
  color: #8a9188;
}
.greeting__sign-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1f2420;
}
.greeting__sign--ruled {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid #dfe4da;
}
.greeting__sign--ruled .greeting__sign-name {
  font-size: 22px;
}

.photo-cluster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
  position: relative;
}
@media (max-width: 768px) {
  .photo-cluster {
    grid-template-rows: 180px 180px;
  }
}
.photo-cluster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.photo-cluster__wide {
  grid-column: span 2;
}

.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.photo-stack img {
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.photo-stack img:first-child {
  height: 260px;
  -o-object-position: center 42%;
     object-position: center 42%;
}
.photo-stack img:last-child {
  height: 200px;
}

.years {
  position: absolute;
  left: -28px;
  bottom: -28px;
  background: #1b5122;
  color: #fff;
  border-radius: 14px;
  padding: 20px 26px;
}
@media (max-width: 768px) {
  .years {
    position: static;
    margin-top: 16px;
  }
}
.years__num {
  font-family: "Barlow", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}
.years__unit {
  font-size: 19px;
  font-weight: 600;
  margin-left: 4px;
}
.years__label {
  font-size: 13px;
  color: #bcd6b6;
  margin-top: 6px;
}

.photo-single {
  width: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-single--tall {
  height: 420px;
}
.photo-single--mid {
  height: 320px;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.card--shadow {
  box-shadow: 0 2px 14px rgba(31, 36, 32, 0.05);
}
.card--bordered {
  border: 1px solid #e0e3dc;
}
.card__img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__body {
  padding: 30px 30px 34px;
}
.card__num {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #4e9b4a;
}
.card__title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 10px;
  color: #1b5122;
}
.card__text {
  font-size: 15px;
  line-height: 2;
  color: #3c433c;
  margin-top: 16px;
  text-wrap: pretty;
}
.card {
  /* 横並びカード */
}
.card--row {
  display: grid;
  grid-template-columns: 150px 1fr;
}
@media (max-width: 768px) {
  .card--row {
    grid-template-columns: 1fr;
  }
}
.card--row img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .card--row img {
    height: 170px;
  }
}
.card--row .card__body {
  padding: 28px 28px 30px;
}
.card--row .card__title {
  font-size: 19px;
  margin-top: 0;
}
.card--row .card__text {
  margin-top: 12px;
}

/* エリアカード */
.area-card {
  background: #fff;
  border: 1px solid #e0e3dc;
  border-radius: 14px;
  padding: 30px 28px;
}
.area-card__en {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #96a094;
}
.area-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1b5122;
  margin-top: 10px;
}
.area-card__text {
  font-size: 14px;
  line-height: 1.9;
  color: #6b736a;
  margin-top: 10px;
}

.stats {
  position: relative;
  overflow: hidden;
  background: #1b5122;
}
.stats__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}
.stats__cell {
  padding: 52px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.stats__cell:last-child {
  border-right: 0;
}
@media (max-width: 1024px) {
  .stats__cell:nth-child(2) {
    border-right: 0;
  }
}
@media (max-width: 768px) {
  .stats__cell {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 32px 0;
  }
}
.stats__label {
  font-size: 13px;
  color: #9ecb95;
}
.stats__num {
  font-family: "Barlow", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-top: 8px;
}
.stats__unit {
  font-size: 17px;
  font-weight: 600;
  margin-left: 4px;
}
.stats__text {
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-top: 12px;
}

.gallery {
  display: grid;
  gap: 14px;
}
.gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.gallery img.span2 {
  grid-column: span 2;
}
.gallery img.span2x2 {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery--top {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
}
@media (max-width: 768px) {
  .gallery--top {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
  }
}
.gallery--truck {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
@media (max-width: 768px) {
  .gallery--truck {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
  }
}

.cta {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1b5122;
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
}
.cta__body {
  position: relative;
  padding: 76px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1024px) {
  .cta__body {
    grid-template-columns: 1fr;
    padding: 52px 40px;
  }
}
@media (max-width: 768px) {
  .cta__body {
    padding: 40px 24px;
  }
}
.cta__body--sm {
  padding: 56px 52px;
  gap: 48px;
}
@media (max-width: 1024px) {
  .cta__body--sm {
    grid-template-columns: 1fr;
    padding: 52px 40px;
  }
}
@media (max-width: 768px) {
  .cta__body--sm {
    padding: 40px 24px;
  }
}
.cta__body--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 52px;
}
@media (max-width: 768px) {
  .cta__body--row {
    padding: 40px 24px;
  }
}
.cta__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.55;
  color: #fff;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 26px;
  }
}
.cta__title--sm {
  font-size: 28px;
  margin-top: 0;
}
.cta__text {
  font-size: 16px;
  line-height: 2.1;
  color: #dbe8d7;
  margin-top: 20px;
  max-width: 640px;
  text-wrap: pretty;
}

.tags {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.tag {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 18px;
}

.navcard {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  box-shadow: 0 2px 12px rgba(31, 36, 32, 0.05);
}
.navcard:hover {
  box-shadow: 0 6px 20px rgba(31, 36, 32, 0.12);
}
.navcard img {
  width: 100%;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.navcard__body {
  padding: 20px 22px 24px;
}
.navcard__en {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #96a094;
}
.navcard__jp {
  font-size: 17px;
  font-weight: 700;
  color: #1b5122;
  margin-top: 8px;
}

.deftable {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.deftable th {
  width: 200px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #1b5122;
  background: #eef2ea;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e3dc;
}
@media (max-width: 768px) {
  .deftable th {
    display: block;
    width: 100%;
    border-bottom: 0;
    padding: 14px 18px;
  }
}
.deftable td {
  font-size: 15px;
  color: #3c433c;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e3dc;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .deftable td {
    display: block;
    width: 100%;
    padding: 14px 18px;
  }
}
.deftable tr:last-child th, .deftable tr:last-child td {
  border-bottom: 0;
}
.deftable--recruit th {
  width: 190px;
}

.note-inline {
  color: #a0442e;
  font-size: 13px;
}

.note-sub {
  font-size: 13px;
  color: #6b736a;
}

.truck-card__img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.truck-card__body {
  padding: 26px 28px 30px;
}
.truck-card__name {
  font-size: 18px;
  font-weight: 700;
  color: #1b5122;
}
.truck-card__count {
  font-family: "Barlow", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #4e9b4a;
  line-height: 1.1;
  margin-top: 12px;
}
.truck-card__unit {
  font-size: 18px;
  font-weight: 600;
  color: #1b5122;
  margin-left: 6px;
}
.truck-card__text {
  font-size: 14px;
  line-height: 1.9;
  color: #6b736a;
  margin-top: 12px;
}

.total {
  background: #1b5122;
  border-radius: 14px;
  padding: 22px 28px;
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.total__label {
  font-size: 15px;
  font-weight: 700;
  color: #9ecb95;
}
.total__num {
  font-family: "Barlow", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.total__unit {
  font-size: 16px;
  margin-left: 4px;
}

.contact-card {
  border-radius: 16px;
  padding: 34px 32px;
}
.contact-card--fill {
  background: #1b5122;
  color: #fff;
}
.contact-card--fill .contact-card__label {
  color: #9ecb95;
}
.contact-card--fill .contact-card__text {
  color: #bcd6b6;
}
.contact-card--line {
  background: #fff;
  border: 1px solid #e0e3dc;
}
.contact-card--line .contact-card__label {
  color: #96a094;
}
.contact-card--line .contact-card__num {
  color: #1b5122;
}
.contact-card--line .contact-card__text {
  color: #6b736a;
}
.contact-card__label {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.contact-card__num {
  font-family: "Barlow", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
}
.contact-card__num.type01 {
  color: #fff !important;
}
.contact-card__text {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 12px;
}

.formcard {
  background: #fff;
  border-radius: 18px;
  padding: 48px 44px;
}
@media (max-width: 768px) {
  .formcard {
    padding: 32px 22px;
  }
}
.formcard__title {
  font-size: 24px;
  font-weight: 700;
  color: #1b5122;
  margin-bottom: 32px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__note {
  font-size: 12px;
  color: #8a9188;
  text-align: center;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field__label {
  font-size: 14px;
  font-weight: 700;
  color: #1b5122;
}
.field input, .field select, .field textarea {
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid #d5dad2;
  border-radius: 10px;
  background: #fbfcfa;
  color: #1f2420;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid #9ecb95;
  outline-offset: 1px;
}
.field textarea {
  resize: vertical;
}

.entry-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.entry {
  background: #fff;
  border: 1px solid #e0e3dc;
  border-radius: 14px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
}
@media (max-width: 768px) {
  .entry {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.entry__title {
  font-size: 17px;
  font-weight: 700;
  color: #1b5122;
}
.entry__text {
  font-size: 15px;
  line-height: 2;
  color: #3c433c;
  margin-top: 10px;
  text-wrap: pretty;
}

.map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0e3dc;
}
.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}
@media (max-width: 768px) {
  .map iframe {
    height: 280px;
  }
}
.map--sm iframe {
  height: 360px;
}

.note {
  font-size: 12px;
  color: #a0442e;
  background: #fbf3ef;
  border-radius: 8px;
  padding: 12px 16px;
  line-height: 1.8;
  margin-top: 22px;
}

.footer {
  position: relative;
  overflow: hidden;
  background: #161c17;
  color: #d5ded3;
}
.footer__wm {
  position: absolute;
  right: -120px;
  top: -60px;
  width: 420px;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 34%;
     object-position: center 34%;
  border-radius: 50%;
  opacity: 0.07;
  pointer-events: none;
}
.footer__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 56px;
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.footer .logo__name {
  color: #fff;
  font-size: 22px;
}
.footer__addr {
  font-size: 14px;
  line-height: 2;
  color: #a8b2a6;
  margin-top: 24px;
}
.footer__tels {
  display: flex;
  gap: 28px;
  margin-top: 16px;
}
.footer__tel-label {
  font-family: "Barlow", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #8a9188;
}
.footer__tel-num {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.footer__map-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
  color: #9ecb95;
}
.footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  font-size: 14px;
}
.footer__nav a {
  color: #c3ccc1;
}
.footer__nav a:hover {
  color: #9ecb95;
}
.footer .btn--sm {
  margin-top: 26px;
  background: #4e9b4a;
  color: #fff;
}
.footer .btn--sm:hover {
  background: #5cae56;
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid #2a332b;
}
.footer__copy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #7d867c;
}

/*新メールフォーム*/
.form {
  margin: 10px 0 10px;
}
.form dt span {
  color: #fff;
  background: #FF4F4F;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt strong {
  color: #fff;
  background: #999;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt .optional::before {
  content: "任意";
  color: #fff;
  background: #999;
}
.form dl {
  margin: 10px 0;
  font-size: 16px;
}
.form dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}
.form dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}
.form dd p {
  font-size: 14px;
  padding-top: 5px;
  color: #888;
}
.form dd:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
}

.dropdown {
  border-radius: 2px;
  border: 1px solid #ddd;
}

.textarea, .textarea2 {
  width: 95%;
  border-radius: 2px;
  border: 1px solid #ddd;
  padding: 5px;
}

.form-button {
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0;
}

#mailform button {
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  display: block;
  margin: 0 auto 5px;
  padding: 10px 0 10px;
  color: #fff;
  text-align: center;
  width: 250px;
  border-radius: 5px;
  background: #5c4233;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #5c4233;
}
#mailform button:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #5c4233;
}
#mailform button * {
  transition: 0.2s;
}

.form-button * {
  transition: 0.2s;
}

/*RadioとText*/
label {
  display: block;
}
label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #5c4233;
  z-index: 1;
}
label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  left: -15px;
  top: 2px;
  margin: 0px;
  box-shadow: 15px -1px #fff;
  border-radius: 50%;
}
label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 15px -1px #FFF;
}
label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}
label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}
label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #5c4233;
  border-bottom: 3px solid #5c4233;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #EEE;
}

/*CheckBoxとText */
.fm-text {
  padding: 10px;
  font-size: 11px;
  margin: 10px 0;
}

@media all and (max-width: 890px) {
  .form dl {
    margin: 10px 0;
  }
  .form dt {
    float: none;
    width: 100%;
    line-height: 20px;
    padding-top: 10px;
  }
  .form dd {
    width: 100%;
    padding-left: 0;
    padding-bottom: 10px;
    padding-top: 10px;
    line-height: 20px;
    border-bottom: 1px solid #eee;
  }
  .form dd:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .form-contents :not(.pattern-exclusion) button {
    width: 100% !important;
  }
}
/* /新メールフォーム */
.blog-box {
  margin-bottom: 50px;
}
.blog-box img {
  max-width: 100%;
  height: auto;
}

.page_next {
  float: right;
}

.page_prev {
  float: left;
}

.mtitle_box {
  background: rgba(23, 125, 23, 0.1);
  border-radius: 10px;
  color: #343338;
  font-size: 2rem;
  position: relative;
  padding: 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.8rem;
  }
}
.newsl2 dt {
  font-size: 120%;
  padding-top: 10px;
  line-height: 1.3;
  color: #5c4233;
  font-weight: bold;
}
.newsl2 dd {
  padding-bottom: 5px;
  padding-top: 10px;
  margin-bottom: 15px;
  line-height: 1.6;
  border-bottom: dotted 1px #b6ae83;
}
.newsl2 dd b {
  color: #594C39;
}/*# sourceMappingURL=basis.css.map */