@charset "utf-8";

/* noto-sans-jp-regular - japanese */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/montserrat-v30-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  html {
    font-size: 16px;
  }

  body {
    position: relative;
    margin: 0;
    line-height: 1.6;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3",
    "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", sans-serif;
    font-size: 16px;
    color: #000;
  }

  .font-mincho {
    font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro",
      "ヒラギノ明朝 ProN W3", "ヒラギノ明朝", "ＭＳ Ｐ明朝", "MS PMincho",
      serif;
  }

  .font-montserrat {
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

  img {
    display: block;
    width: 100%;
    height: auto;
  }

  .section {
    padding: 80px 0;
    overflow-x: hidden;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
  }


   /* Header Block */
   .header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.header__upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
}

.header__logo-img {
  max-width: 240px;
}

.header__tel-pc {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.header__tel-pc span {
  line-height: 1.2;
}

.header__tel-number {
  font-size: 32px;
  font-weight: 600;
  color: #a71527;
}

.header__tel-address {
  font-size: 12px;
}

.header__tel-sp {
  display: none;
}

.nav {
    display: flex;
    gap: 40px;
    justify-content: center;
    list-style: none;
}

.nav__link {
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
    color: #a71527;
    border-bottom-color: #a71527;
}

.header__menu-toggle {
    display: none !important;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1100;
  }

  .header__menu-bar {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .header__menu-toggle .bar {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .header__menu-toggle .bar:nth-child(1) {
    top: 30%;
    transform: translate(-50%,-50%);
  }

  .header__menu-toggle .bar:nth-child(2) {
    top: 50%;
    transform: translate(-50%,-50%);
  }

  .header__menu-toggle .bar:nth-child(3) {
    top: 70%;
    transform: translate(-50%,-50%);
  }

  /* クリック時の変形（バツ印に変化） */
  .header__menu-toggle.active .bar:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.header__menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.active .bar:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

  .mobile-menu {
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .mobile-menu.mobile-menu--active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

.mobile-menu__list {
    padding: 24px 40px;
    list-style: none;
}

.mobile-menu__item {
    padding: 16px 0;
    border-bottom: 1px dashed #000;
}

.mobile-menu__link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

/* fv Block */
.fv {
    background: #C20D23;
    background: linear-gradient(180deg, rgba(194, 13, 35, 1) 85%, rgba(100, 21, 23, 1) 100%);
    color: white;
    margin-top: 128px;
}

.fv__wrap {
    display: flex;
    height: 720px;
}

.fv__content {
    width: 50%;
    padding: 48px 48px 48px 0;
}

.fv__content-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fv__triangle {
    margin-right: 25%;
}

.fv__bg {
    position: relative;
    width: 50%;
}

.fv__bg::before {
    content: "";
    position: absolute;
    left: -144px;
    bottom: -144px;
    max-width: 100%;
    width: 720px;
    height: 720px;
    background-image: url("../img/fv-truck.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fv__bg-inner {
    height: 100%;
}

.fv__bg-img {
    height: 100%;
    object-fit: cover;
}

.fv__title {
    margin-bottom: 16px;
}

.fv__title span {
    display: block;
}

.fv__title-img {
    max-width: 100%;
    width: 440px;   /* ← max-width ではなく width を指定 */
    height: auto;
    display: block; /* 念のため余白防止 */
}

.fv__subtitle {
    margin: 16px 0 32px 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 2;
}

.fv__triangle-img {
    max-width: 320px;
}

/* Main Content */

/* Section Block */

/* .section--bg-light {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 0;
} */

.section__title {
    text-align: center;
    margin-bottom: 48px;
}

.section__title span {
    display: inline-block;
}

.section__title--en {
    font-size: 48px;
    font-weight: 600;
}

.section__title--ja {
    position: relative;
    padding: 0 8px 0 8px;
    font-weight: 600;
    color: #a71527;
    border-bottom: 2px solid #a71527;
}

.section__subtitle {
    margin-bottom: 16px;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
}

.section__content {
    text-align: center;
    font-size: 18px;
    line-height: 2;
}

.section__description {
    margin-bottom: 30px;
}


/* #business */
#business {
    padding-bottom: 0;
}

#business .container {
    padding-bottom: 80px;
    border-bottom: 1px solid #000;
}

.business__section--transport .business__section-inner {
    display: flex;
}

.business__section--transport .business__section-desc {
    width: 50%;
    padding-right: 32px;
}

.business__section--transport .business__section-visual {
    width: 50%;
}

.business__heading {
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 600;
}

.business__title {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.business__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 24px;
}

.business__list-item {
    position: relative;
    margin-bottom: 8px;
    padding: 0 8px 0 16px;
    font-size: 1.2em;
}

.business__list-item:nth-child(2),
.business__list-item:nth-child(3),
.business__list-item:nth-child(4),
.business__list-item:nth-child(5) {
    width: 35%;
    white-space: nowrap;
}

.business__list-sup {
    margin-left: 8px;
    font-size: 16px;
}

.business__list-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 100vw;
}

.business__section--aggregate .business__aggregate-list {
    display: flex;
    gap: 24px;
}

.business__section--aggregate .business__aggregate-figure {
    text-align: center;
}

/* #philosophy */
#philosophy {
    padding-bottom: 0;
}

.philosophy__container {
    position: relative;
    z-index: 1;
}

.philosophy__content {
    text-align: center;
}

.philosophy__logo {
    display: inline-block;
    margin-bottom: 16px;
}

.philosophy__logo-image {
    max-width: 200px;
}

.philosophy__visual {
    margin-top: -25%;
}

/* #cert */
.cert__list {
    display: flex;
    flex-wrap: wrap;
    margin-left: 12%;
}

.cert__item {
    width: 50%;
    padding: 16px;
}

.cert__title {
    margin-bottom: 8px;
    font-size: 1.2em;
    font-weight: 600;
}

.cert__desc {
    display: flex;
}

.cert__link {
    max-width: 160px;
    width: 100%;
    transition: all 0.3s ease;
}

.cert__link:hover {
    opacity: .5;
}

.cert__image {
    max-width: 160px;
    width: 100%;
}

.cert__text {
    padding-left: 16px;
}

.cert__modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }
  .cert__modal.is-active {
    display: flex;
  }
  .cert__modal-image {
    max-width: 45vh;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
  }
  .cert__modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
  }

/* #sdgs */
.sdgs__container {
    padding: 40px 24px;
    background-color: #ecf6eb;
}

.sdgs__content {
    padding: 0 40px;
}

.sdgs__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    text-align: center;
    border-bottom: 1px solid #000;
}

.sdgs__heading-inner {
    display: inline-block;
}

.sdgs__heading-list {
    margin-top: 24px;
}

.sdgs__heading-img {
    max-width: 480px;
}

.sdgs__heading-point {
    position: relative;
    padding: 0 0 0 16px;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 2;
}

.sdgs__heading-point::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 100vw;
}

.sdgs__number {
    display: flex;
    flex-wrap: wrap;
}

.sdgs__number-item {
    display: flex;
    width: 50%;
    padding: 16px;
}

.sdgs__number-icon {
    max-width: 200px;
    width: 40%;
}

.sdgs__number-icon img {
    max-width: 200px;
}

.sdgs__number-desc {
    width: 60%;
    padding-left: 16px;
}

.sdgs__number-point {
    position: relative;
    padding: 0 0 0 16px;
    font-size: 1.2em;
}

.sdgs__number-point::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 4px;
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 100vw;
}


/* #spec */
#spec {
    background-image: url("../img/spec-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.spec__list {
    display: flex;
    flex-wrap: wrap;
}

.spec__item {
    width: 33.333%;
    padding: 16px;
}

.spec__caption {
    margin-top: 8px;
    text-align: center;
}

/* #company */
.company__profile {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.company__row {
    display: flex;
    gap: 32px;
}

.company__term {
    width: 30%;
    padding: 16px;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid #000;
}

.company__desc {
    width: 70%;
    padding: 16px 16px 16px 10%;
    border-bottom: 1px solid #000;
}

.company__desc-link {
    transition: all 0.3s ease;
}

.company__desc-link:hover {
    color: #a71527;
}

.company__row:last-child .company__term,
.company__row:last-child .company__desc {
    border-bottom: none;
}

/* #contact */
#contact {
    background-color: #a71527;
}

#contact .section__title--en,
#contact .section__title--ja {
    color: #fff;
}

#contact .section__title--ja {
    border-color: #fff;
}

.contact__list {
    display: flex;
    gap: 24px;
}

.contact__item {
    width: 20%;
}

.contact__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 200px;
    height: 200px;
    padding: 40px;
    text-align: center;
    background-color: #fff;
    border-radius: 100vw;
    transition: all 0.3s ease;
}

.contact__link:hover {
    color: #fff;
    background-color: #000;
}

.contact__link-svg {
    transition: all 0.3s ease;
}

.contact__link:hover .contact__link-svg {
    fill: #fff;
}

.contact__link-name {
    font-weight: 600;
}

.contact__link-img,
.contact__link-svg {
    max-width: 80px;
}

 /* Footer Block */
.footer {
    padding: 24px 0;
    color: #fff;
    background-color: #000;
}

.footer__upper {
    display: flex;
}

.footer__logo {
    width: 30%;
}

.footer__logo-link {
    display: block;
    margin-bottom: 8px;
}

.footer__logo-img {
    max-width: 200px;
}

.footer__logo-address {
    font-size: 12px;
}

.footer .nav {
    align-items: center;
    gap: 24px;
}

.footer .nav__link {
    font-size: 12px;
    font-weight: normal;
}

.footer__bottom {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 24px;
}

.footer__copyright {
    font-size: 12px;
}

.footer .nav__link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.footer__bottom-link {
    padding-right: 16px;
    font-size: 12px;
    border-right: 1px solid #fff;
}

/* CSS */
.pagetop {
    position: fixed;
    z-index: 9997;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .pagetop__arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid #000;
    border-top: 2px solid #000;
    transform: rotate(45deg);
    margin-bottom: 4px;
  }

  .pagetop__text {
    line-height: 1;
    color: #000;
  }


/* contact.html */
.grecaptcha-badge {
    visibility: hidden;
 }
/* .fv__contact */
.fv__contact {
    margin-top: 128px;
}

.fv__contact-wrap {
    position: relative;
    z-index: 0;
}

.fv__contact-title {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fv__contact-bg {
    position: relative;
    z-index: 0;
}

.fv__contact .section__title span {
    color: #fff;
    border-color: #fff;
}

.fv__contact-text {
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
    line-height: 2;
}

.fv__contact-text:last-child {
    margin-bottom: 0;
}

/* #guidelines */
.guidelines__profile {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.guidelines__row {
    display: flex;
    gap: 32px;
}

.guidelines__term {
    width: 30%;
    padding: 16px;
    text-align: center;
    border-bottom: 2px solid #000;
}

.guidelines__desc {
    width: 70%;
    padding: 16px 16px 16px 10%;
    border-bottom: 1px solid #000;
}

.guidelines__desc-link {
    transition: all 0.3s ease;
}

.guidelines__desc-link:hover {
    color: #a71527;
}

.guidelines__row:last-child .guidelines__term,
.guidelines__row:last-child .guidelines__desc {
    border-bottom: none;
}

.guidelines__desc-title {
    margin-bottom: 8px;
    font-weight: 700;
}

.guidelines__desc-text {
    margin-bottom: 32px;
}

.guidelines__title-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 8px 16px;
    text-align: center;
    background-color: #a71527;
}

.guidelines__title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.guidelines__desc-item {
    position: relative;
    padding: 0 0 0 16px;
}

.guidelines__desc-item::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 4px;
    width: 4px;
    height: 4px;
    background-color: #000;
    border-radius: 100vw;
}

.guidelines__seminar {
    display: flex;
    gap: 32px;
}

.guidelines__seminar-item {
    width: 50%;
}

/* #workflow */
#workflow {
    position: relative;
    background-image: url("../img/workflow-bg.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

#workflow::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.8;
}

.workflow__container {
    position: relative;
    z-index: 1;
}

.workflow__description {
    margin-bottom: 16px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
  }

  .workflow__content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 5%;
    background-color: #fff;
  }

  /* 出勤・退勤の見出し */
  .workflow__heading {
    text-align: center;
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: 1.5rem 0;
    color: #333;
  }

  /* ステップ共通スタイル */
  .workflow__step {
    position: relative;
    background: #a71527;
    background: linear-gradient(180deg,rgba(167, 21, 39, 1) 0%, rgba(125, 21, 29, 1) 100%);
    color: #fff;
    padding: 32px 32px 32px 80px;
    margin-bottom: 2rem;
    position: relative;
  }

  .workflow__step::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    width: 56px;
    height: 56px;
    background-repeat: no-repeat;
  }

  .workflow__step--04 {
    margin-bottom: 0;
  }

  .workflow__step--04::after {
    display: none;
  }

  .workflow__step--01::before {
    background-image: url("../img/workflow-number01.svg");
  }

  .workflow__step--02::before {
    background-image: url("../img/workflow-number02.svg");
  }

  .workflow__step--03::before {
    background-image: url("../img/workflow-number03.svg");
  }

  .workflow__step--04::before {
    background-image: url("../img/workflow-number04.svg");
  }

  .workflow__step-content {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .workflow__step--01 .workflow__step-content,
  .workflow__step--04 .workflow__step-content {
    justify-content: center;
  }

  .workflow__step--02 .workflow__step-content,
  .workflow__step--03 .workflow__step-content {
    justify-content: space-between;
  }

  .workflow__step-text {
    font-size: 1.2em;
    line-height: 1.8;
    margin: 0;
    text-align: center;
    font-weight: bold;
  }

  .workflow__step-label {
    font-size: 1.125rem;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
  }

  .workflow__step-desc {
    width: 50%;
    padding-right: 24px;
  }

  .workflow__step-image {
    flex-shrink: 0;
    width: 50%;
    height: auto;
  }

  .workflow__step-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
  }

  /* 休憩 */
  .workflow__break {
    text-align: center;
    font-size: 1.125rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 400px;
    border: 2px solid #7d151d;
    background-color: #fff;
    position: relative;
  }

  .workflow__step::after,
  .workflow__break::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -32px;
    border-top: 32px solid #7d151d;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
  }


/* #gallery */
.gallery__wrap {
    display: flex;
    gap: 16px;
}

.gallery__wrap--large .gallery__item {
    width: 50%;
}

.gallery__item {
    margin-bottom: 24px;
}

.gallery__caption {
    margin-top: 8px;
    text-align: center;
}


/* #message */
#message {
    background-image: url("../img/message-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#message .section__title span {
    color: #fff;
    border-color: #fff;
}

.message__list {
    display: flex;
    gap: 24px;
}

.message__item {
    width: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
}

.message__item-inner {
    display: flex;
    gap: 24px;
    padding: 32px;
}

.message__item-person {
    width: 30%;
}

.message__item-desc {
    width: 70%;
}

.message__item-text {
    margin-bottom: 16px;
    padding-bottom: 16px;
    text-indent: 1em;
    border-bottom: 1px dashed #000;
}

.message__item-text:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* #contact-form */
#contact-form {
    margin-top: -80px;
    padding: 160px 0 80px 0;
}

#contact-form .contact__container {
    max-width: 1000px;
    padding: 40px;
    background-color: #f4f4f4;
    border-radius: 32px;
}

.contact__heading {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
  }

  .contact__text {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #333;
  }

  .contact__field {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #000;
  }

  .contact__field:nth-child(6) {
    align-items: flex-start;
  }

  .contact__field:nth-child(6) .contact__label {
    margin-top: 4px;
  }

  .contact__field:nth-child(1) .contact__label,
  .contact__field:nth-child(2) .contact__label,
  .contact__field:nth-child(3) .contact__label {
    letter-spacing: 2px;
  }

  .contact__field:nth-child(4),
  .contact__field:nth-child(6) {
    border-bottom: none;
  }

  .contact__label {
    position: relative;
    width: 20%;
    padding-right: 40px;
    font-weight: normal;
    cursor: default !important;
  }

  .contact__subtext {
    display: block;
    font-size: 12px;
  }

  .contact__required {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    background: #b30000;
    color: #fff;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 8px;
    margin-left: 5px;
    letter-spacing: 0;
  }

  .contact__input,
  .contact__textarea {
    width: 80%;
    border: 1px solid #000;
    padding: 8px 10px;
    font-size: 1rem;
    background-color: #fff;
  }

  .contact__input--small {
    max-width: 200px;
  }

  .contact__textarea {
    min-height: 150px;
    resize: vertical;
  }

  .contact__actions {
    text-align: center;
    margin-top: 30px;
  }

  .contact__button {
    background: #a60000;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    padding: 12px 50px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact__button:hover {
    background: #000;
  }

  /* thanks.html */
  .thanks {
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  .thanks__container {
    text-align: center;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 560px;
    width: 100%;
  }

  .thanks__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
  }

  .thanks__message {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
  }

  .thanks__btn {
    display: inline-block;
    background-color: #a71527;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

  .thanks__btn:hover {
    background-color: #000;
  }

  /* privacy.html */
  .fv__privacy .section__title {
    margin-bottom: 0;
  }

  .fv__privacy .fv__contact-wrap {
    height: 240px;
  }

  .fv__privacy .section__title span {
    color: #000;
  }

  #privacy {
    padding-top: 0;
  }

  .privacy__intro {
    margin-bottom: 32px;
  }

  .privacy__block {
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 24px;
  }

  .privacy__heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
  }

  .privacy__list {
    list-style: disc inside;
    margin-left: 1em;
  }

  .privacy__item {
    margin-bottom: 6px;
  }

  .privacy__text {
    margin-bottom: 0;
  }

  .privacy__contact {
    margin-top: 40px;
  }

  .privacy__address {
    font-style: normal;
    line-height: 1.8;
  }

  .privacy__address a {
    color: #0073aa;
    text-decoration: underline;
  }




/* Responsive Design */
@media (min-width: 1025px) {
    .only-pc {
        display: block;
    }

    .only-sp {
        display: none;
    }
}

@media (max-width: 1024px) {
    .only-pc {
        display: none;
    }

    /* Header Block */
    .header .nav {
        display: none;
      }

      .header__menu-toggle {
        display: flex !important;
    }

    .header__container {
        position: relative;
    }

    .header__upper {
        gap: 24px;
        margin: 0;
        padding-right: 80px;
    }

    .header__menu-toggle {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 80px;
        height: 100%;
        text-align: center;
        background-color: #000;
    }

    .header__menu-toggle .fas {
        color: #fff;
    }


    .header__tel-sp {
        display: block;
    }

    .header__tel-pc {
        display: none;
    }

    .header .nav {
        display: none;
    }

    .header__menu-toggle {
        display: block;
    }

    /* fv Block */
    .fv {
        margin-top: 72px;
    }

    .fv__title {
        font-size: 32px;
    }

    .fv__subtitle {
        font-size: 20px;
    }

    .fv__bg-inner {
        display: none;
    }

    .fv__wrap {
        position: relative;
        flex-wrap: wrap;
        height: auto;
        padding-bottom: 240px;
    }

    .fv__content {
        width: 100%;
        padding: 24px;
    }

    .fv__content-inner {
        position: relative;
        flex-direction: row;
        justify-content: center;
    }

    .fv__triangle {
        position: absolute;
        bottom: -8vw;
        right: 5%;
        margin-right: 0;
    }

    .fv__triangle-img {
        max-width: 50vw;
    }

    .fv__bg {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .fv__bg::before {
        bottom: -56px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 320px;
    }

    /* Business Section */
    .business__section--aggregate {
        margin-top: 40px
    }

    /* #contact */
    .contact__list {
        flex-wrap: wrap;
        gap: 0;
        justify-content: center;
    }

    .contact__item {
        width: 33.333%;
    }

    .contact__item:nth-child(1) {
        order: 1;
    }

    .contact__item:nth-child(2) {
        order: 2;
    }

    .contact__item:nth-child(3) {
        order: 4;
    }

    .contact__item:nth-child(4) {
        order: 3;
    }

    .contact__item:nth-child(5) {
        order: 5;
    }

    .contact__item:nth-child(3) .contact__link,
    .contact__item:nth-child(5) .contact__link {
        background-color: transparent;
    }

    .contact__item:nth-child(3) .contact__link-name,
    .contact__item:nth-child(5) .contact__link-name {
        display: none;
    }

    .contact__item:nth-child(3) .contact__link-img,
    .contact__item:nth-child(5) .contact__link-svg {
        max-height: 72px;
    }

    .contact__item:nth-child(5) .contact__link-svg  {
        fill: #fff;
    }

    /* contact.html */
    .fv__contact {
        margin-top: 72px;
    }

    .fv__contact .container {
        padding: 0;
    }

    .fv__contact-desc {
        padding: 0 16px;
    }

    /* Footer Block */
    .footer .nav {
        display: none;
    }

    .footer__logo {
        width: 100%;
        text-align: center;
    }

    .footer__logo-link {
        display: inline-block;
    }

    .footer__logo-img {
        max-width: 240px;
    }

    .footer__logo-address {
        font-size: 16px;
    }

    .footer__bottom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__bottom-link {
        padding-right: 0;
        padding-bottom: 8px;
        border-right: none;
        border-bottom: 1px solid #fff;
    }

    .footer__copyright {
        width: 100%;
        text-align: center;
    }

}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .section__title--en {
        font-size: 32px;
    }

    .section__title--ja {
        font-size: 1.4em;
    }

    .section__subtitle {
        font-size: 1.8em;
    }

    /* Business Section */
    .business__section--transport .business__section-inner {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .business__section--transport .business__section-visual {
        width: 100%;
        margin-bottom: 24px;
    }

    .business__container {
        padding: 0;
    }

    .business__section-desc {
        width: 100%;
    }

    .business__container .section__title,
    .business__container .section__subtitle,
    .business__section-desc  {
        padding: 0 16px;
    }

    .business__section--transport .business__section-desc {
        width: 100%;
    }

    .business__heading {
        font-size: 1.8em;
    }

    .business__list-item:nth-child(2), .business__list-item:nth-child(3), .business__list-item:nth-child(4), .business__list-item:nth-child(5) {
        width: 100%;
        white-space: initial;
    }

    .business__section--aggregate .business__aggregate-list {
        flex-wrap: wrap;
        gap: 0;
    }

    .business__aggregate-item {
        width: 33.333%;
        padding: 8px;
    }

    /* #cert */
    .cert__list {
        margin-left: 0;
    }

    .cert__desc {
        flex-wrap: wrap;
    }

    .cert__text {
        margin-top: 8px;
        padding-left: 0;
    }

    /* #sdgs */
    .sdgs__container {
        padding: 40px 16px;
    }

    .sdgs__content {
        padding: 0;
    }

    .sdgs__number {
        flex-wrap: wrap;
    }

    .sdgs__number-item {
        width: 100%;
    }

    .sdgs__number-point {
        font-size: 1em;
    }

    /* #spec */
    .spec__item {
        width: 50%;
        padding: 8px;
    }

    /* #company */
    .company__row {
        flex-wrap: wrap;
        gap: 0;
    }

    .company__term {
        width: 100%;
        padding: 16px 16px 0 16px;
        text-align: left;
        border-bottom: none;
    }

    .company__desc {
        width: 100%;
        padding: 8px 16px 16px 16px;
        text-align: left;
    }

    /* #contact */
    .contact__link {
        justify-content: center;
        gap: 8px;
        width: 104px;
        height: 104px;
        padding: 8px;
    }

    .contact__link-img, .contact__link-svg {
        max-width: 100%;
        max-height: 40px;
    }

    .contact__link-name {
        line-height: 1.2;
        font-size: 12px;
    }

    /* contact.html */
    /* .fv__contact */
    .fv__contact-title {
        width: 100%;
    }

    /* #guidelines */
    .guidelines__row {
        flex-wrap: wrap;
        gap: 0;
    }

    .guidelines__term {
        width: 100%;
        padding: 16px 16px 0 16px;
        text-align: left;
        border-bottom: none;
    }

    .guidelines__desc {
        width: 100%;
        padding: 8px 16px 16px 16px;
        text-align: left;
    }

    /* #workflow */
    #workflow {
        background-image: none;
        background-color: #f4f4f4;
    }

    #workflow::before {
        display: none;
    }

    .workflow__content {
        max-width: 100%;
        padding: 0;
        background-color: transparent;
    }

    .workflow__description,
    .workflow__heading,
    .workflow__step-text,
    .workflow__break {
        font-size: 1.4em;
    }

    .workflow__step-content {
        flex-wrap: wrap;
    }

    .workflow__step-desc {
        width: 100%;
    }

    .workflow__step-image {
        width: 100%;
    }

    .workflow__step-image img {
        width: calc(100% + 56px);
        margin-left: -56px;
    }

    /* #gallery */
    .gallery__wrap {
        flex-wrap: wrap;
        gap: 0;
    }

    .gallery__wrap--large .gallery__item {
        width: 100%;
    }

    .gallery__item {
        width: 100%;
    }

    .gallery__wrap--small .gallery__item:last-child,
    .gallery__wrap--small .gallery__item:nth-last-child(2) {
        width: 50%;
    }

    .gallery__wrap--small .gallery__item:last-child {
        padding-left: 8px;
    }

    .gallery__wrap--small .gallery__item:nth-last-child(2) {
        padding-right: 8px;
    }

    .gallery__wrap--small .gallery__item:last-child .gallery__image,
    .gallery__wrap--small .gallery__item:nth-last-child(2) .gallery__image {
        height: 280px;
        object-fit: cover;
    }

    /* #message */
    .message__container {
        padding: 0 16px 24px 16px;
    }

    .message__list {
        flex-wrap: wrap;
    }

    .message__item {
        width: 100%;
    }

    .message__item-inner {
        flex-wrap: wrap;
    }

    .message__item-person {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        gap: 24px;
        width: 100%;
    }

    .message__item-icon {
        width: 40%;
    }

    .message__item-desc {
        width: 100%;
    }

    /* #contact-form */
    #contact-form {
        padding: 0;
    }

    #contact-form .contact__container {
        padding: 80px 16px;
        border-radius: 0;
    }

    .contact__field {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: none;
    }

    .contact__subtext {
        display: inline-block;
        font-size: 1em;
    }

    .contact__label {
        width: auto;
        margin-bottom: 8px;
        padding-right: 72px;
    }

    .contact__input, .contact__textarea {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}