@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
.service-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (width <= 520px) {
  .service-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 0;
  }
}
.service-content__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 96px;
  width: 75%;
}
@media (width <= 520px) {
  .service-content__left {
    gap: 64px;
    width: 100%;
  }
}
.service-content__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 20%;
  margin-top: 40px;
}
@media (width <= 520px) {
  .service-content__right {
    width: 100%;
    margin: 0 0 32px;
  }
}

.service-side-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em 0;
}
@media (width <= 520px) {
  .service-side-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.service-side-menu.is_scroll {
  position: fixed;
  top: 128px;
  z-index: 0;
}
@media (width <= 520px) {
  .service-side-menu.is_scroll {
    position: static;
  }
}
.service-side-menu__item {
  list-style-type: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.service-side-menu__nolink {
  display: block;
  margin: 0 0 0 1em;
  font-weight: 700;
  font-size: 18px;
}
@media (width <= 520px) {
  .service-side-menu__nolink {
    display: none;
  }
}
.service-side-menu__link {
  display: block;
  margin: 0 0 0 1em;
  text-decoration: none;
  color: #999;
  font-weight: 500;
  font-size: 16px;
}
@media (width <= 520px) {
  .service-side-menu__link {
    font-size: 12px;
    color: var(--main-font-c);
    border: 1px solid #ddd;
    padding: 6px 26px 6px 8px;
    margin: 0;
    font-weight: 700;
    position: relative;
  }
}
@media (width <= 520px) {
  .service-side-menu__link::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-color: transparent transparent var(--ac-font-c-1) var(--ac-font-c-1);
    position: absolute;
    top: 50%;
    right: 8px;
    -webkit-transform: translate(0, -50%) rotate(-45deg);
            transform: translate(0, -50%) rotate(-45deg);
  }
}
.service-side-menu__link.is_active {
  color: var(--ac-font-c-1) !important;
  position: relative;
}
.service-side-menu__link.is_active::before {
  content: "";
  color: var(--ac-font-c-1);
  position: absolute;
  top: 30%;
  left: -1em;
  background-color: var(--ac-font-c-1);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
@media (width <= 520px) {
  .service-side-menu__link.is_active::before {
    content: none;
  }
}

.service-content-side-link {
  text-decoration: none;
  color: #999;
  margin-bottom: 24px;
  font-size: 16px;
}

.active {
  color: var(--ac-font-c-1) !important;
  position: relative;
}

.active::before {
  content: "";
  color: var(--ac-font-c-1);
  position: absolute;
  top: 30%;
  left: -5%;
  background-color: var(--ac-font-c-1);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.service-section-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}

.service-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-weight: 700;
  font-size: 40px;
}
@media (width <= 520px) {
  .service-section-title {
    font-size: 32px;
  }
}
.service-section-title::before {
  content: "category";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25em 0.5em 0.3em;
  background: #00a2e9;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.service-title {
  color: var(--main-font-c);
  font-size: 30px;
  font-weight: 700;
  margin: 40px 0;
}

.service-explanation {
  font-size: 16px;
  color: var(--main-font-c);
}
.service-explanation--inline-flex {
  /* 2024/09/18 追記 */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-content-small {
  font-size: 14px;
  color: var(--main-font-c);
}

.service-content-more-small {
  font-size: 10px;
  color: var(--main-font-c);
}

.service-ooh-img {
  width: 100%;
}

.service-strong-list {
  padding: 0;
  margin: 64px 0;
}

.service-strong-list-item {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  background-color: #f7f7f7;
  padding: 26px 40px;
  margin-bottom: 20px;
  min-height: 164px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
}

.service-strong-list-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-strong-list-item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em 0;
  width: 100%;
}

.service-strong-list-item-title {
  font-size: 22px;
  margin: 0;
  color: var(--ac-font-c-1);
}

.service-strong-list-item-num {
  margin: 0;
  font-size: 48px;
  color: var(--ac-font-c-1);
  text-align: center;
}
.service-strong-list-item-num span {
  display: block;
  margin: 0 0 0.5em;
  font-size: 16px;
  text-align: center;
}

/* 修正 displayをflexからnone */
.service-ai {
  display: none !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 64px;
}

.service-ai-title {
  font-size: 32px;
  color: var(--main-font-c);
  margin: 0;
}

/* メリット */
.service-merit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

.service-merit-list-item {
  width: 30%;
  background-color: #f7f7f7;
  text-align: center;
  padding: 24px 8px;
  list-style: none;
  margin-bottom: 24px;
}

.service-top-title,
.service-merit-jp-title,
.service-merit-en-title {
  color: var(--ac-font-c-1);
}

.service-merit-en-title {
  font-size: 16px;
}

.service-merit-jp-title {
  font-size: 20px;
  margin-bottom: 20px;
}

.service-merit-num {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-merit-content {
  font-size: 14px;
  color: var(--main-font-c);
  padding: 0 20px;
}

/* 流れ */
.service-flow-content {
  margin-bottom: 32px;
  font-size: 16px;
  color: var(--main-font-c);
}

.service-two-content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service-two-content-list-item {
  width: 45%;
  position: relative;
}

.service-two-content-box {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.service-two-content-box-img {
  width: 100%;
}

.service-two-content-box-title-jp {
  color: var(--ac-font-c-1);
  font-size: 14px;
  margin: 0;
}

.service-two-content-box-title-en {
  color: #fff;
  font-size: 32px;
  margin-bottom: 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: capitalize;
  letter-spacing: -0.02em;
  line-height: 1;
}

.service-title-second {
  margin: 2em 0 0;
  color: #00a2e9;
}

.service-explanation-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  padding: 0;
}
.service-explanation-img-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 64px;
  background: url(https://we-truck.jp/wp-content/uploads/2024/04/icon_service_arrow_1.png) left 24px center no-repeat;
  background-size: contain;
}
.service-explanation-img-wrap .service-explanation-img {
  display: block;
  width: min(100%, 240px);
  margin: 0;
  list-style-type: none;
}
.service-explanation-img-wrap .service-explanation-img > span {
  display: block;
  padding: 0.5em 1em;
  margin: 0;
  background-color: var(--main-font-c);
  font-size: 0.8em;
  color: #fff;
  text-align: center;
}
.service-explanation-img-wrap .service-explanation-img > img {
  width: 100%;
  margin: 0;
}

.service-explanation-img-wrap-2 {
  display: grid;
  grid-template-columns: minmax(230px, 40%) minmax(280px, 50%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
}

.service-explanation-img {
  display: block;
  width: 100%;
  margin: 1em 0 0;
}
.service-explanation-img img {
  width: 100%;
}

.service-corporation-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 220px));
  grid-auto-rows: 1fr;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.service-corporation-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 16px 16px;
  background-color: #f7f7f7;
}
.service-corporation-list-item > * {
  margin: 0;
}

.service-corporation-list-item-icon {
  width: 100%;
}

.service-corporation-list-item-content p {
  margin: 0.5em 0;
  text-align: center;
}
.service-corporation-list-item-content p:first-of-type {
  margin: 1em 0 0.5em;
  line-height: 1.25;
  font-size: 17px;
  font-weight: 700;
}
.service-corporation-list-item-content p:nth-of-type(2n) {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 520px) {
  .service-title {
    font-size: 25px;
  }
  .service-strong-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
  }
  .service-strong-list-item-left {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .service-strong-list-item-right {
    width: 100%;
  }
  .service-ai {
    display: block;
  }
  .service-ai-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .service-ai-img {
    width: 100%;
  }
  .service-merit-list {
    display: block;
  }
  .service-merit-list-item {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .service-content-right {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0 0.5em;
    margin-bottom: 60px;
  }
  .service-content-side-link {
    font-size: 12px;
    color: var(--main-font-c);
    border: 1px solid #ddd;
    padding: 6px 26px 6px 8px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
  }
  .service-content-side-link::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-color: transparent transparent var(--ac-font-c-1) var(--ac-font-c-1);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    top: 25%;
    right: 8px;
  }
  .active {
    color: #111 !important;
  }
  .active::before {
    content: none;
  }
  .service-corporation-list {
    grid-template-columns: repeat(auto-fit, minmax(auto, 230px));
  }
  .service-explanation-img-wrap-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* 2024/10/07 */
.service-broadcast {
  display: block;
  width: 100%;
}
.service-broadcast > :first-child {
  margin: 0;
}
.service-broadcast__heading {
  margin: 1em 0 0;
  font-weight: 500;
  font-size: clamp(30px, 5.16vw, 48px);
  color: var(--ac-font-c-1);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 2px;
}
@media screen and (max-width: 520px) {
  .service-broadcast__heading {
    font-size: 26px;
  }
}
.service-broadcast__description {
  margin: 1em 0 0;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
.service-broadcast__description--last {
  margin: 2.5em 0 0;
}

.service-broadcast-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  width: 100%;
  padding: 1.5em 1em;
  background: #f7f7f7;
  list-style: none;
}
.service-broadcast-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px 0;
  width: 100%;
}
.service-broadcast-list__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1em 0.5em;
  background: #dff2fc;
  font-weight: 600;
  font-size: 20px;
  background: var(--bg-white);
}
.service-broadcast-list__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1em;
  background: var(--bg-white);
}
.service-broadcast-list__img img {
  width: min(100%, 640px);
  height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-action-heading {
  margin: 0 0 1.5em;
}

.service-action-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
  width: 100%;
  line-height: 1.6;
  list-style: none;
}
.service-action-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}
.service-action-list__title {
  display: grid;
  grid-template-columns: 1em 1fr;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
  padding: 0.5em;
  background: #dff2fc;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
}
.service-action-list__title::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  background: var(--ac-font-c-1);
}
.service-action-list__description {
  padding: 0 0.5em 0 1.5em;
}

.service-background-title-2 {
  margin: 0 0 1em;
}

.service-background-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em 0;
  padding: 0;
}
.service-background-flow * {
  margin: 0;
}
.service-background-flow__description {
  font-weight: 400;
  line-height: 2;
}
.service-background-flow__img-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 1em;
  padding: 0;
}
.service-background-flow__img-group::after {
  content: "";
  display: block;
  width: 100%;
  height: 64px;
  background: url(https://we-truck.jp/wp-content/uploads/2024/04/icon_service_arrow_1.png) left 24px center no-repeat;
  background-size: contain;
}
.service-background-flow__img {
  display: block;
  width: min(100%, 240px);
  margin: 0;
  list-style-type: none;
}
.service-background-flow__img > span {
  display: block;
  padding: 0.5em 1em;
  margin: 0;
  background-color: var(--main-font-c);
  font-size: 0.8em;
  color: #fff;
  text-align: center;
}
.service-background-flow__img > img {
  width: 100%;
  margin: 0;
}
.service-background-flow__end-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em 0;
  width: min(100%, 752px);
  padding: 1.5em 1em;
  background: #f7f7f7;
}
.service-background-flow__end-title {
  font-size: 24px;
}
.service-background-flow__end-description {
  font-weight: 400;
  font-size: 17px;
  line-height: 2;
}
.service-background-flow__end-description span {
  display: inline;
  background: -webkit-gradient(linear, left top, right top, from(rgb(247, 93, 139)), to(rgb(254, 220, 64)));
  background: linear-gradient(90deg, rgb(247, 93, 139), rgb(254, 220, 64));
}