/* =========================
  Variables (align to your system)
========================= */
/* If you already define these globally, you can delete here */
/** media query */
/* =========================
  Base (minimal - reset.css assumed)
========================= */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
}
body .font-serif {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
  text-box-trim: trim-both;
  border-radius: 4px;
}
a.btn.main-blue {
  color: #fff;
  background: #166cd4;
}
a.btn:hover {
  opacity: 0.8;
}

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

/* =========================
  Layout
========================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow {
  max-width: 760px;
}
@media screen and (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: 96px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
}
@media screen and (max-width: 600px) {
  .section {
    padding: 56px 0;
  }
}
.section-body p + p {
  margin-top: 24px;
}
.section-title {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 600px) {
  .section-title {
    font-size: 1.45rem;
  }
}

/* =========================
  Header
========================= */
.site-header {
  position: fixed;
  background: #fff;
  z-index: 9999;
  width: 100%;
}
.site-header .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .site-header .inner {
    padding: 0;
    padding-left: 16px;
  }
}
.site-header .logo picture img {
  padding: 4px;
  padding-left: 0;
  width: auto;
  height: 48px;
}
@media screen and (max-width: 600px) {
  .site-header .logo picture img {
    height: 38px;
  }
}
.site-header .logo a:hover {
  opacity: 0.8;
}
.site-header .nav {
  display: flex;
  align-items: stretch;
  height: 48px;
}
.site-header .nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  height: 100%;
  font-size: 0.95rem;
  color: #5a88c9;
  transition: all 0.3s;
}
.site-header .nav a:hover {
  color: #fff;
  background: #5a88c9;
}
@media screen and (max-width: 600px) {
  .site-header .nav a.head-contact {
    color: #fff;
    background: #5a88c9;
  }
}

/* =========================
  Hero
========================= */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0) 100%);
  z-index: 3;
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
}
.hero-bg-img:nth-child(1) {
  opacity: 1;
  animation: heroFadeA 16s infinite;
}
.hero-bg-img:nth-child(2) {
  opacity: 0;
  animation: heroFadeB 16s infinite;
}
.hero-bg-img picture,
.hero-bg-img img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-bg-img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 24px 120px;
}
@media screen and (max-width: 1024px) {
  .hero-inner {
    padding: 120px 24px 100px;
  }
}
@media screen and (max-width: 768px) {
  .hero-inner {
    padding: 96px 24px 80px;
  }
}
@media screen and (max-width: 600px) {
  .hero-inner {
    padding: 80px 16px 64px;
  }
}
.hero-en {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  opacity: 0.9;
}
@media screen and (max-width: 600px) {
  .hero-en {
    font-size: 0.85rem;
  }
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 600px) {
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
}
.hero-lead {
  max-width: 680px;
  font-size: 1rem;
  opacity: 0.95;
}
@media screen and (max-width: 600px) {
  .hero-lead {
    font-size: 0.95rem;
  }
}

@keyframes heroFadeA {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes heroFadeB {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* =========================
  Greeting
========================= */
.greeting {
  background: #f1f1f1;
}
.greeting .sign {
  margin-top: 40px;
  text-align: right;
  font-size: 1.15rem;
}

/* =========================
  Philosophy
========================= */
.philosophy-text {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}
.philosophy .goikun {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  margin: 64px auto 0;
  font-size: 21px;
  line-height: 2.2;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", serif;
}
@media screen and (max-width: 600px) {
  .philosophy .goikun {
    font-size: 16px;
    line-height: 1.8;
    max-height: 450px;
    max-width: 100%;
    margin-top: 40px;
    overflow-x: scroll;
    overflow-y: hidden;
    display: block;
    padding-top: 40px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 600px) {
  .philosophy .goikun.moto {
    display: block;
  }
}
.philosophy .goikun.moto p {
  text-indent: -1.5em;
  line-height: 1.4;
}
.philosophy .goikun.moto p + p {
  margin-right: 1em;
}
.philosophy .goikun.moto p .dot {
  position: relative;
  right: -0.75em;
}
.philosophy .yaku {
  margin-top: 80px;
  color: #5a88c9;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

/* =========================
  Safety
========================= */
.safety h3 {
  margin-bottom: 24px;
  color: #166cd4;
  font-size: 28px;
  font-weight: bolder;
  text-align: center;
}
.safety p {
  font-size: 1rem;
  color: #505050;
}

/* =========================
  Services
========================= */
.service {
  background: #f1f1f1;
}
.service-block {
  display: flex;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto 48px;
}
.service-block:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 600px) {
  .service-block:nth-child(even) {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .service-block {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .service-block {
    flex-direction: column;
    gap: 24px;
  }
}
.service-block h3 {
  margin-bottom: 12px;
  padding-left: 12px;
  font-size: 1.2rem;
  border-left: 4px solid #166cd4;
}
@media screen and (max-width: 600px) {
  .service-block h3 {
    font-size: 1.1rem;
  }
}
.service-block p {
  color: #505050;
}
.service-image {
  display: block;
  flex: 0 0 300px;
}
@media screen and (max-width: 768px) {
  .service-image {
    flex: 0 0 240px;
  }
}
@media screen and (max-width: 600px) {
  .service-image {
    flex: 1;
  }
}
.service-image img {
  display: block;
  margin: 0 auto;
}

/* =========================
  Offices
========================= */
.office-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.office-list li {
  padding: 20px 0;
  border-bottom: 1px solid #bbc0cc;
}
.office-list li h3 {
  margin-bottom: 8px;
}
.office-list li .office-flex {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .office-list li .office-flex {
    flex-direction: column;
  }
}
.office-list li .office-flex .info picture {
  display: block;
  margin-bottom: 4px;
}
.office-list li .office-flex .info img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.office-list li .map {
  max-width: 45%;
  width: 100%;
  height: 100%;
  max-height: 250px;
  overflow: hidden;
}
.office-list li .map iframe {
  width: 100%;
  height: 500px;
  margin-top: -150px;
}
@media screen and (max-width: 600px) {
  .office-list li .map {
    max-width: 100%;
  }
}

/* =========================
  Company
========================= */
.company {
  background: #f1f1f1;
}
.company .company-table {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-collapse: collapse;
}
.company .company-table th,
.company .company-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #bbc0cc;
  font-size: 0.95rem;
  vertical-align: top;
}
@media screen and (max-width: 600px) {
  .company .company-table th,
  .company .company-table td {
    padding: 12px 10px;
    font-size: 0.9rem;
  }
}
.company .company-table th {
  width: 30%;
  font-weight: 500;
  text-align: left;
  background: #f1f1f1;
}
@media screen and (max-width: 600px) {
  .company .company-table th {
    width: 36%;
  }
}

/* =========================
  History
========================= */
.history-list-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px 28px;
  padding: 18px 0;
  border-bottom: 1px solid #bbc0cc;
}
.history-list-item:first-child {
  border-top: 1px solid #bbc0cc;
}
@media screen and (max-width: 768px) {
  .history-list-item {
    grid-template-columns: 200px 1fr;
    gap: 12px 20px;
    padding: 16px 0;
  }
}
@media screen and (max-width: 600px) {
  .history-list-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }
}
.history-list-item dt {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #5a88c9;
}
@media screen and (max-width: 600px) {
  .history-list-item dt {
    font-size: 0.98rem;
  }
}
.history-list-item dd {
  color: #333;
}
@media screen and (max-width: 600px) {
  .history-list-item dd {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

/* =========================
  Trucks
========================= */
.trucks-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 600px) {
  .trucks-list {
    flex-direction: column;
    gap: 28px;
  }
}
.trucks-list-item {
  flex: 0 0 200px;
  max-width: 200px;
}
@media screen and (max-width: 600px) {
  .trucks-list-item {
    flex: 1;
  }
}
.trucks-list-item picture {
  display: block;
  margin-bottom: 16px;
}
.trucks-list-item h3 {
  text-align: center;
  font-weight: normal;
}

/* =========================
  Footer
========================= */
.site-footer {
  border-top: 1px solid #bbc0cc;
  margin-top: 80px;
}
.site-footer .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  font-size: 0.85rem;
  color: #333;
}
.site-footer .footer-title {
  color: #505050;
  font-size: 12px;
  font-weight: bolder;
}
.site-footer .footer-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-link {
    justify-content: center;
  }
}
.site-footer .footer-link a {
  display: inline-block;
  color: #166cd4;
}
.site-footer .footer-link a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.site-footer small {
  display: block;
  margin-top: 8px;
  text-align: center;
}

/* =========================
  contact
========================= */
.contact {
  padding-top: 48px;
}
.contact.thanks {
  padding-top: 160px;
}
.contact-header {
  display: block;
  margin-bottom: 40px;
  width: 100%;
  height: 240px;
}
.contact-header img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.contact-inner {
  margin: 0 auto;
  max-width: 1280px;
}
.contact-inner h1 {
  text-align: center;
  font-size: 24px;
  line-height: 1.8;
}
.contact-inner .announce {
  margin: 40px auto;
  padding: 24px;
  max-width: 900px;
  text-align: center;
  border: solid 2px #5a88c9;
}
.contact-inner .announce .tel {
  margin-top: 8px;
  color: #5a88c9;
  font-size: 21px;
  font-weight: bold;
}
.contact-inner .form {
  margin: 0 auto;
  max-width: 900px;
}
.contact-inner .form-table {
  border-collapse: separate;
  border-spacing: 8px 16px;
}
@media screen and (max-width: 600px) {
  .contact-inner .form-table {
    display: block;
  }
  .contact-inner .form-table tr {
    display: flex;
    flex-direction: column;
  }
}
.contact-inner .form-table th {
  padding: 4px 16px;
  text-align: left;
  background: #f1f1f1;
}
@media screen and (max-width: 600px) {
  .contact-inner .form-table td {
    padding: 8px 0 16px;
  }
}
.contact-inner .form-table td input[type=text],
.contact-inner .form-table td textarea {
  padding: 0.5em;
  border: solid 1px #bbc0cc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 100%;
}
.contact-inner .form-table td input[type=text]:focus-visible,
.contact-inner .form-table td textarea:focus-visible {
  border: solid 1px #166cd4;
  box-shadow: 0 0 0 3px rgba(22, 108, 212, 0.2);
}
.contact-inner .form-table td input[type=number] {
  padding: 0.5em;
  border: solid 1px #bbc0cc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 6rem;
}
.contact-inner .form-table td input[type=number]:focus-visible {
  border: solid 1px #166cd4;
  box-shadow: 0 0 0 3px rgba(22, 108, 212, 0.2);
}
.contact-inner .form-table td input[type=checkbox] {
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-inner .form-table td input[type=checkbox]:checked {
  box-shadow: 0 0 0 3px rgba(22, 108, 212, 0.2);
}
.contact-btns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.contact-btns input[type=submit],
.contact-btns input[type=reset],
.contact-btns input[type=button] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 48px;
  border: solid 1px #bbc0cc;
  border-radius: 8px;
  cursor: pointer;
}
.contact-btns input[type=submit]:hover,
.contact-btns input[type=reset]:hover,
.contact-btns input[type=button]:hover {
  opacity: 0.8;
}
.contact-btns input[type=submit] {
  color: #fff;
  background: #166cd4;
}

/* =========================
  Helpers
========================= */
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

.red {
  color: #e41818;
}/*# sourceMappingURL=style.css.map */