@charset "UTF-8";
/* =====================
　変数定義
======================= */
:root {
  /* カラー定義 */
  --c_text: #000;
  --c_white: #fff;
  --c_blue: #006ec8;
  --c_red: #c30078;
  --c_light_blue: #e6f1fa;
  --c_light_red: #f9e5f1;
  /* フォント定義 */
  --font_ja: "Noto Sans JP", sans-serif;
  --font_ja2: "Shippori Mincho", serif;
  --font_eng: "Cormorant Garamond", serif;
  /* transition定義 */
  --anim: all 0.3s ease-in-out;
}

/* =====================
　共通
======================= */
html {
  font-size: 100%;
}

body {
  font-family: var(--font_ja);
  font-optical-sizing: auto;
  font-size: 1.041666666vw;
  line-height: 1.3333;
  letter-spacing: 0.05em;
  color: var(--c_text);
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

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

a {
  color: var(--c_text);
  -webkit-transition: var(--anim);
  transition: var(--anim);
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.wrapper {
  width: 79.1667%;
  margin: 0 auto;
}

.wrapper-narrow {
  width: 63.9583%;
  margin: 0 auto;
}

/* セクションタイトル */
.sec-ttl {
  text-align: center;
  font-family: var(--font_eng);
  font-size: 500%;
  line-height: 1;
  margin-bottom: 0.5em;
}

.sec-ttl-ja {
  display: block;
  font-family: var(--font_ja2);
  font-size: 20%;
  line-height: 1.5;
}

.sec-ttl2 {
  font-size: 150%;
  color: var(--c_blue);
  margin-bottom: 8.1433%;
  position: relative;
}

.sec-ttl2::before {
  content: "";
  width: 0.3333em;
  height: 0.3333em;
  border-radius: 100%;
  background-color: var(--c_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1em;
  margin: auto 0;
}

.sec-ttl2::after {
  content: "";
  width: 100vw;
  height: 0.0667em;
  background-color: var(--c_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(100% + 1em);
  margin: auto 0;
}

.sec-ttl3 {
  font-size: 150%;
  text-align: center;
  color: var(--c_white);
  background-color: var(--c_blue);
  padding: 0.5263% 0;
  margin-bottom: 3.2895%;
}

/* ページトップに戻るボタン */
#page-top {
  font-size: 75%;
  position: fixed;
  right: 14.5833%;
  bottom: 5.95em;
  z-index: 10;
}

#page-top a {
  color: var(--c_red);
}

#page-top a:hover {
  opacity: 1;
}

#page-top a::before {
  content: "";
  width: 4em;
  height: 4em;
  background: var(--c_white);
  border-radius: 50%;
  border: 3px solid var(--c_red);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 127.027%;
  margin: auto 0;
  transition: var(--anim);
}

#page-top a:hover::before {
  background: var(--c_red);
}

#page-top a::after {
  content: "";
  width: 0.4714em;
  height: 0.4714em;
  border: 0;
  border-top: solid 2px var(--c_red);
  border-right: solid 2px var(--c_red);
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 160.8108%;
  margin: auto 0;
  transition: var(--anim);
}

#page-top a:hover::after {
  border-top: solid 2px var(--c_white);
  border-right: solid 2px var(--c_white);
}

/* 詳細ボタン */
.btn-wrapper {
  text-align: center;
}

.btn-see-more,
.btn-submit {
  text-align: center;
  display: inline-block;
  width: 15em;
  padding: 1em;
  font-weight: bold;
  line-height: 2;
  background-color: var(--c_white);
  color: var(--c_red);
  position: relative;
  border: 3px solid var(--c_red);
  border-radius: 111px;
  transition: var(--anim);
}

.btn-see-more::after,
.btn-submit::after {
  content: "";
  width: 0.3536em;
  height: 0.3536em;
  border-top: solid 2px var(--c_red);
  border-right: solid 2px var(--c_red);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.25em;
  margin: auto 0;
  transition: var(--anim);
}

.btn-see-more:hover,
.btn-submit:hover {
  opacity: 1;
  background-color: var(--c_red);
  color: var(--c_white);
}

.btn-see-more:hover::after,
.btn-submit:hover::after {
  border-top: solid 2px var(--c_white);
  border-right: solid 2px var(--c_white);
}

/* パンくずリスト */
.breadcrumb-list-wrapper {
  background-color: #e6e6e6;
}

#breadcrumb-list {
  line-height: 1.5;
  color: #969696;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.5em;
  padding: 0.5208% 0;
}

#breadcrumb-list a {
  color: #969696;
  position: relative;
}

#breadcrumb-list a::after {
  content: "";
  width: 0.4243em;
  height: 0.4243em;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.25em;
  margin: auto 0;
  transition: var(--anim);
}

/* 下層ページタイトル */
#page-header {
  position: relative;
}

#page-header .page-ttl-bg img {
  width: 100%;
}

#page-header .page-ttl {
  position: absolute;
  top: 18.1818%;
  right: 0;
  color: var(--c_blue);
  background-color: var(--c_white);
  padding: 0 10.4167% 0 2.6042%;
  white-space: nowrap;
}

#page-header .page-ttl-eng {
  font-family: var(--font_eng);
  font-size: 333.3333%;
  line-height: 1.5;
  margin-right: 1.5072%;
}

#page-header .page-ttl-ja {
  font-family: var(--font_ja2);
  font-size: 66.6667%;
  line-height: 1.5;
}

/* =====================
　ヘッダー
======================= */
#header {
  position: fixed;
  top: 0;
  background-color: #fff;
  width: 100%;
  padding: 0.86% 0;
  border-top: 10px solid var(--c_blue);
  -webkit-transition: var(--anim);
  transition: var(--anim);
  z-index: 100;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

#header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .header-logo a {
  display: flex;
  align-items: center;
  column-gap: 0.75em;
}

#header .header-logo-img {
  width: 14.1089%;
}

#header .company-name {
  font-family: var(--font_ja2);
  font-size: 125%;
  line-height: 1.12;
}

#header .header-nav a:hover {
  opacity: 1;
  color: var(--c_blue);
}

#header .header-nav-list {
  display: flex;
  column-gap: 2.5em;
}

#header .header-nav-list li {
  text-indent: -1em;
  padding-left: 1em;
}

#header .header-nav-item-service {
  position: relative;
}

#header .header-nav-item-service > a {
  position: relative;
}

#header .header-nav-item-service > a::after {
  content: "";
  width: 0.4243em;
  height: 0.4243em;
  border-top: solid 1px var(--c_text);
  border-right: solid 1px var(--c_text);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -0.8em;
  margin: auto 0;
  transition: var(--anim);
}

#header .header-nav-item-service > a:hover::after {
  border-top: solid 1px var(--c_blue);
  border-right: solid 1px var(--c_blue);
}

#header .header-nav-item-service:hover .header-nav-sub-list {
  visibility: visible;
  opacity: 1;
}

#header .header-nav-sub-list {
  visibility: hidden;
  opacity: 0;
  width: max-content;
  background-color: var(--c_white);
  position: absolute;
  left: 0;
  transition: var(--anim);
  padding: 50%;
}

#header .header-nav-sub-list > li > a {
  position: relative;
}

#header .header-nav-sub-list > li > a::before {
  content: "";
  width: 0.8em;
  height: 0.1em;
  background-color: var(--c_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1em;
  margin: auto 0;
}

#header .header-nav-sub-list ul {
  line-height: 2;
}

/* =====================
　フッター
======================= */
#footer {
  line-height: 2;
  padding: 5.2083% 0 5.2083%;
}

#footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#footer .footer-left {
  flex: 0 1 45%;
}

#footer .footer-logo {
  margin-bottom: 7.0175%;
}

#footer .footer-logo a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  column-gap: 1em;
}

#footer .footer-logo-img {
  width: 13.7427%;
}

#footer .company-name {
  font-family: var(--font_ja2);
  font-weight: bold;
  font-size: 200%;
  line-height: 1.125;
}

#footer .google-map {
  font-size: 75%;
  color: var(--c_red);
}

#footer .google-map:hover {
  opacity: 1;
  text-decoration: underline;
}

#footer .g-map-icon {
  display: inline-block;
  width: 2.193%;
  vertical-align: text-top;
}

#footer .footer-nav {
  flex: 0 1 48%;
  display: flex;
  flex-wrap: nowrap;
  column-gap: 4.6em;
}

#footer .footer-nav li {
  position: relative;
}

#footer .footer-nav li a:hover {
  opacity: 1;
  color: var(--c_blue);
}

#footer .footer-nav-list-left > li a::before,
#footer .footer-nav-list-right > li a::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background-color: var(--c_blue);
  border-radius: 100%;
  position: absolute;
  /* topの計算
  line-height: 2;の半分から疑似要素の高さの半分を引いている */
  top: calc(2em / 2 - 0.5em / 2);
  left: -1em;
}

#footer .footer-nav-sub-list {
  padding-left: 1em;
}

#footer .footer-nav-sub-list > li a::before {
  content: "";
  width: 0.8em;
  height: 0.1em;
  background-color: var(--c_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1em;
  margin: auto 0;
}

#footer .footer-nav-sub-list > li:nth-child(2) a::before {
  content: none;
}

#footer .footer-nav-sub-list ul li {
  text-indent: -1em;
  padding-left: 1em;
}

.footer-copyright {
  font-size: 125%;
  line-height: 1.5;
  padding: 1.3158% 0;
}

/* =====================
　TOPページ
======================= */
.sec-txt {
  font-size: 150%;
  text-align: center;
  margin-bottom: 3.2895%;
}

/* mv
------------------------ */
#mv {
  position: relative;
}

#mv .mv-bg img {
  width: 100%;
}

#mv .mv-ttl {
  width: 25%;
  position: absolute;
  top: 15.2041%;
  right: 10.4688%;
}

#mv .mv-ttl-ja {
  display: inline-block;
  font-family: var(--font_ja2);
  font-size: 200%;
  color: var(--c_blue);
  background-color: var(--c_white);
  padding: 0 0 2% 8.4%;
}

#mv .mv-ttl-ja:first-of-type {
  margin-bottom: 4.1555%;
}

#mv .mv-ttl-ja:last-of-type {
  margin-bottom: 4.0084%;
}

#mv .mv-ttl-eng {
  display: block;
  font-family: var(--font_eng);
  color: var(--c_blue);
}

/* company
------------------------ */
#company-profile {
  padding: 6.5789% 0 7.4342%;
  background-color: var(--c_blue);
  position: relative;
}

#company-profile::after {
  content: "";
  width: 0.1em;
  height: 1.5em;
  background-color: var(--c_white);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#company-profile .company-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#company-profile .company-left {
  flex: 0 1 50%;
}

#company-profile .logo-img {
  display: inline;
  width: 17.9%;
  vertical-align: top;
}

#company-profile .company-name {
  display: inline;
  font-family: var(--font_eng);
  font-size: 650%;
  line-height: 1;
  color: var(--c_white);
}

#company-profile .company-name span {
  letter-spacing: 0.12em;
}

#company-profile .sec-txt {
  color: var(--c_white);
  text-align: left;
  margin-bottom: 6.5789%;
}

#company-profile .btn-wrapper {
  text-align: left;
}

#company-profile .company-right {
  flex: 0 1 46.7105%;
}

#company-profile .company-right img {
  margin-left: auto;
}

/* service
------------------------ */
#service {
  padding: 6.5104% 0 7.1875%;
  position: relative;
}

#service::before {
  content: "";
  width: 0.1em;
  height: 3.25em;
  background-color: var(--c_blue);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#service::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 100%;
  background-color: var(--c_blue);
  position: absolute;
  top: 3.25em;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#service .service-img-wrapper {
  position: relative;
  width: 65.5921%;
  margin: 0 auto;
}

#service .service-img-wrapper a:hover {
  opacity: 1;
}

#service .service-img-wrapper a:hover .multiply-color {
  opacity: 1;
}

#service .service-img {
  position: relative;
}

#service .service-img::before {
  content: "";
  width: 192.5777%;
  height: 68.2541%;
  background-color: var(--c_light_blue);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -46.339%;
  margin: auto 0;
  z-index: -10;
}

#service .service-img img {
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

#service .multiply-color {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 110, 200, 0.49);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: var(--anim);
}

#service .btn-wrapper {
  position: absolute;
  bottom: 4.7619%;
  right: 3.009%;
  z-index: 10;
}

#service .btn-see-more {
  transition: var(--anim);
}

#service .btn-see-more:hover {
  background-color: var(--c_white);
  color: var(--c_red);
}

#service .btn-see-more:hover::after {
  border-top: solid 2px var(--c_red);
  border-right: solid 2px var(--c_red);
}

#service .service-img-wrapper a:hover .btn-see-more {
  background-color: var(--c_red);
  color: var(--c_white);
}

#service .service-img-wrapper a:hover .btn-see-more::after {
  border-top: solid 2px var(--c_white);
  border-right: solid 2px var(--c_white);
}

/* recruit
------------------------ */
#recruit {
  padding-bottom: 8.3854%;
}

#recruit .recruit-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#recruit .recruit-left {
  flex: 0 1 50%;
}

#recruit .sec-ttl,
#recruit .sec-txt,
#recruit .btn-wrapper {
  text-align: left;
}

#recruit .sec-txt {
  margin-bottom: 7.8947%;
}

#recruit .recruit-right {
  flex: 0 1 46.7105%;
}

#recruit .recruit-right img {
  margin-left: auto;
}

/* contact
------------------------ */
#contact {
  padding: 4.8958% 0 7.8646%;
  background-color: var(--c_blue);
}

#contact .sec-ttl {
  color: var(--c_white);
}

#contact .sec-txt {
  color: var(--c_white);
}

#contact .contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: var(--c_white);
  text-align: center;
  color: var(--c_red);
}

#contact .contact-left {
  flex: 0 1 50%;
  padding: 6.5789% 0;
}

#contact .contact-txt {
  margin-bottom: 2.6316%;
}

#contact .contact-right {
  flex: 0 1 50%;
  padding: 6.5789% 0;
  border-left: 1px solid #c8c8c8;
}

#contact .phone-number {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.25em;
  font-family: var(--font_ja2);
  font-size: 205%;
  font-weight: bold;
  color: var(--c_red);
  margin-bottom: 2.6316%;
}

#contact .phone-icon {
  width: 1em;
  display: inline-block;
}

#contact .contact-txt2 {
  color: var(--c_text);
}

/* =====================
　会社案内ページ
======================= */

/* greeting
------------------------ */
#greeting {
  overflow: hidden;
  padding: 5.2083% 0 7.8125%;
}

#greeting .greeting-txt {
  font-family: var(--font_ja2);
  font-size: 150%;
  line-height: 2;
}

/* overview
------------------------ */
#overview {
  overflow: hidden;
  padding-bottom: 7.8125%;
}

#overview .overview-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
}

#overview .overview-list dt {
  font-weight: bold;
  flex: 0 1 25%;
  border-bottom: 1px solid var(--c_blue);
  padding: 1em 1em 1em 0;
}

#overview .overview-list dd {
  flex: 0 1 75%;
  border-bottom: 1px solid var(--c_blue);
  padding: 1em 1em 1em 0;
}

#overview .overview-list dt:first-of-type,
#overview .overview-list dd:first-of-type {
  padding-top: 0;
}

#overview .overview-list dt:last-of-type,
#overview .overview-list dd:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

#overview .service-list {
  padding-left: 1em;
}

#overview .ninsho-img {
  width: 40%;
}

/* access
------------------------ */
#access {
  overflow: hidden;
  padding-bottom: 7.8125%;
}

#access .access-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.443%;
}

#access .access-left {
  flex: 0 1 37.0521%;
}

#access .access-right {
  flex: 0 1 58.8762%;
}

#access .company-name {
  font-size: 150%;
  font-weight: normal;
  margin-bottom: 6.5007%;
}

#access .company-info {
  line-height: 1.5;
}

/* =====================
　事業内容ページ
======================= */

/* transportation
------------------------ */
#transportation {
  padding: 5.2083% 0 7.8125%;
}

#transportation .wrapper-narrow {
  width: 80.7895%;
}

#transportation .transportation-img {
  margin-bottom: 12.215%;
}

#transportation .transportation-img img {
  margin: 0 auto;
}

#transportation #shipping-container,
#transportation #freight-general,
#transportation #freight-route {
  padding-bottom: 8.1433%;
}

#transportation #shipping-container .shipping-container-container,
#transportation #freight-general .freight-general-container,
#transportation #freight-route .freight-route-container,
#transportation #vanning .vanning-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 50px;
}

#transportation #shipping-container .shipping-container-left,
#transportation #freight-general .freight-general-left,
#transportation #freight-route .freight-route-left,
#transportation #vanning .vanning-left {
  flex: 0 1 47.9642%;
  line-height: 1.5;
}

#transportation #shipping-container .shipping-container-txt:first-child,
#transportation #freight-general .freight-general-txt:first-child,
#transportation #freight-route .freight-route-txt:first-child,
#transportation #vanning .vanning-txt:first-child {
  margin-bottom: 1.5em;
}

#transportation #shipping-container .shipping-container-right,
#transportation #freight-general .freight-general-right,
#transportation #freight-route .freight-route-right,
#transportation #vanning .vanning-right {
  flex: 0 1 37.0521%;
}

#transportation #shipping-container .shipping-container-right img,
#transportation #freight-general .freight-general-right img,
#transportation #freight-route .freight-route-right img,
#transportation #vanning .vanning-right img {
  margin-left: auto;
}

/* facilities
------------------------ */
#facilities {
  padding-bottom: 7.8125%;
}

#facilities .wrapper-narrow {
  width: 80.7895%;
}

#facilities #vehicle-info {
  padding-bottom: 5.2083%;
}

#facilities #vehicle-info .vehicle-info-txt {
  margin-bottom: 4.0717%;
  line-height: 1.5;
}

#facilities #vehicle-info .vehicle-info-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em;
}

#facilities #vehicle-info .vehicle-info-ttl {
  text-align: center;
  margin-bottom: 2.6596%;
}

#facilities #vehicle-info .vehicle-info-img {
  margin: 0 auto 2.6596%;
}

#facilities #vehicle-info .vehicle-count {
  text-align: center;
}

#facilities #vehicle-info .vehicle-count span {
  letter-spacing: 0.02em;
}

#facilities #warehouse .warehouse-txt {
  line-height: 1.5;
  margin-bottom: 4.0717%;
}

#facilities #warehouse .warehouse-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5em;
}

#facilities #warehouse .warehouse-left,
#facilities #warehouse .warehouse-right {
  flex: 0 1 37.0521%;
}

#facilities #warehouse .warehouse-left img,
#facilities #warehouse .warehouse-right img {
  margin: 0 auto;
}

/* =====================
　採用情報ページ
======================= */

/* recruit-lead
------------------------ */
#recruit-lead {
  padding: 8.8542% 0;
  text-align: center;
  background-color: var(--c_blue);
  position: relative;
}

#recruit-lead::after {
  content: "";
  width: 0.1em;
  height: 1.5em;
  background-color: var(--c_white);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#recruit-lead .recruit-lead-txt {
  font-family: var(--font_ja2);
  font-size: 250%;
  line-height: 1.6;
  color: var(--c_white);
}

#recruit-lead .recruit-lead-img01 {
  width: 22.7604%;
  position: absolute;
  bottom: 0;
  left: 0;
}

#recruit-lead .recruit-lead-img02 {
  width: 23.9583%;
  position: absolute;
  top: 0;
  right: 0;
}

#recruit-lead .recruit-lead-img02 img {
  margin-left: auto;
}

/* message
------------------------ */
#message {
  padding: 6.5104% 0 5.1948%;
  position: relative;
}

#message::before {
  content: "";
  width: 0.1em;
  height: 3.25em;
  background-color: var(--c_blue);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#message::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 100%;
  background-color: var(--c_blue);
  position: absolute;
  top: 3.25em;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#message .message-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#message .message-left {
  flex: 0 1 24.43%;
}

#message .message-img img {
  margin: 0 auto;
}

#message .ceo-name {
  line-height: 1.5;
  text-align: center;
  margin-top: 3.3333%;
}

#message .message-right {
  flex: 0 1 71.4984%;
}

#message .message-txt {
  font-family: var(--font_ja2);
  font-size: 125%;
  line-height: 2;
}

/* interview
------------------------ */
#interview {
  padding: 7.8125% 0;
  background-color: var(--c_light_blue);
}

#interview .sec-ttl {
  margin-bottom: 1em;
}

#interview .wrapper-narrow {
  width: 80.7895%;
}

#interview .interview-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#interview .interview-left {
  flex: 0 1 24.43%;
}

#interview .interview-img {
  border-radius: 100%;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 3.3333%;
}

#interview .employee-info {
  line-height: 1.5;
  text-align: center;
}

#interview .interview-right {
  flex: 0 1 71.4984%;
}

#interview .interview-qa-list {
  line-height: 1.5;
}

#interview .interview-qa-list:nth-child(n + 2) {
  margin-top: 4.2141%;
}

#interview .interview-qa-list dt,
#interview .interview-qa-list dd {
  text-indent: -3em;
  padding-left: 3em;
}

#interview .interview-qa-list:last-child dt,
#interview .interview-qa-list:last-child dd {
  text-indent: unset;
  padding: 0;
}

#interview .interview-qa-list dt {
  font-weight: bold;
  margin-bottom: 1.4806%;
}

#interview .interview-qa-list dt::before {
  content: "Q";
  font-family: var(--font_eng);
  font-size: 150%;
  line-height: 1;
  color: var(--c_blue);
  margin-right: 1em;
}

#interview .interview-qa-list dd::before {
  content: "A";
  font-family: var(--font_eng);
  font-size: 150%;
  line-height: 1;
  font-weight: bold;
  color: var(--c_red);
  margin-right: 1em;
}

#interview .interview-qa-list:last-child dt::before,
#interview .interview-qa-list:last-child dd::before {
  content: none;
}

#interview .interview01,
#interview .interview02 {
  border-bottom: 1px solid var(--c_blue);
}

#interview .interview01 {
  padding-bottom: 6.5789%;
}

#interview .interview02 {
  padding: 6.5789% 0;
}

#interview .interview02 .interview-container {
  flex-direction: row-reverse;
}

#interview .interview03 {
  padding-top: 6.5789%;
}

/* internal-system
------------------------ */
#internal-system {
  padding: 7.8125% 0 5.2083%;
}

#internal-system .manual,
#internal-system .on-site {
  margin-bottom: 6.5789%;
}

#internal-system .wrapper-narrow {
  width: 80.7895%;
}

#internal-system .manual-container,
#internal-system .license-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#internal-system .manual-left,
#internal-system .license-left {
  flex: 0 1 47.9642%;
}

#internal-system .manual-txt:first-child,
#internal-system .license-txt:first-child {
  margin-bottom: 1.5em;
}

#internal-system .manual-right,
#internal-system .license-right {
  flex: 0 1 37.0521%;
}

#internal-system .manual-right img,
#internal-system .license-right img {
  margin: 0 auto;
}

#internal-system .on-site-txt {
  margin-bottom: 4.0717%;
}

#internal-system .on-site-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5em;
}

#internal-system .on-site-left,
#internal-system .on-site-right {
  flex: 0 1 37.0521%;
}

#internal-system .on-site-left img,
#internal-system .on-site-right img {
  margin: 0 auto;
}

/* welfare-benefits
------------------------ */
#welfare-benefits {
  padding-bottom: 7.8125%;
}

#welfare-benefits .sec-ttl {
  margin-bottom: 1em;
}

#welfare-benefits .welfare-benefits-container {
  width: 81.4332%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em 11.1111%;
  text-align: center;
}

#welfare-benefits .welfare-benefits-icon {
  width: 80%;
  margin: 0 auto;
}

#welfare-benefits .welfare-benefits-ttl {
  font-size: 150%;
  line-height: 1.6667;
  margin: 5.3191% 0;
}

#welfare-benefits .social-insurance-list {
  display: flex;
  justify-content: center;
  column-gap: 1em;
}

/* requirements
------------------------ */
#requirements {
  padding: 5.2083% 0 7.8125%;
  background-color: var(--c_light_red);
}

#requirements .sec-ttl {
  margin-bottom: 1em;
}

#requirements .requirements-item {
  padding: 8.1433% 0;
  background-color: var(--c_white);
}

#requirements .requirements-item:nth-of-type(n + 2) {
  margin-top: 6.5789%;
}

#requirements .wrapper-narrow {
  width: 80.7895%;
}

#requirements .requirements-list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
  margin-bottom: 8.1433%;
}

#requirements .requirements-list dt {
  font-weight: bold;
  flex: 0 1 25%;
  border-bottom: 1px solid var(--c_red);
  padding: 1em 1em 1em 0;
}

#requirements .requirements-list dd {
  flex: 0 1 75%;
  border-bottom: 1px solid var(--c_red);
  padding: 1em 0 1em 0;
}

#requirements .requirements-list dt:first-of-type,
#requirements .requirements-list dd:first-of-type {
  padding-top: 0;
}

#requirements .requirements-list dt:last-of-type,
#requirements .requirements-list dd:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

#requirements .requirements-list dd span {
  color: var(--c_red);
}

/* =====================
　プライバシーポリシーページ
======================= */

/* privacy-policy
------------------------ */
#privacy-policy {
  padding: 5.2083% 0 7.8125%;
  line-height: 1.5;
}

#privacy-policy .privacy-policy-ttl {
  font-size: 100%;
}

#privacy-policy .privacy-policy-txt {
  margin-bottom: 1.5em;
}

/* =====================
　お問い合わせページ／エントリーページ
======================= */

/* contact-form
------------------------ */
#contact-form {
  padding: 5.2083% 0 7.8125%;
  line-height: 1.5;
}

#contact-form .contact-form-txt {
  text-align: center;
  margin-bottom: 8.1433%;
}

#contact-form .contact-form-txt span {
  color: var(--c_blue);
}

#contact-form form#mailformpro {
  padding: 0;
}

#contact-form .contact-form-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 2.5em;
  margin-bottom: 8.1433%;
}

#contact-form form#mailformpro dl label {
  cursor: pointer;
  white-space: normal;
}

#contact-form form#mailformpro dl dt {
  flex: 0 1 30%;
  width: auto;
  font-size: 100%;
  padding: 0 1em 0 0;
  text-align: initial;
  border-top: none;
}

#contact-form form#mailformpro dl dt label {
  border-radius: 0;
  margin: 0;
  display: flex;
  column-gap: 1.5em;
}

#contact-form form#mailformpro dl .dt-inquiry-details,
#contact-form form#mailformpro dl .dt-privacy-policy,
#contact-form form#mailformpro dl .dt-gender,
#contact-form form#mailformpro dl .dt-job-title {
  display: flex;
  column-gap: 1.5em;
}

#contact-form form#mailformpro dl .dt-remarks {
  align-self: flex-start;
}

#contact-form form#mailformpro dl .dt-privacy-policy {
  flex: 0 1 100%;
}

#contact-form form#mailformpro dl .dt-privacy-policy a {
  color: var(--c_blue);
  text-decoration: underline;
}

#contact-form .req {
  font-weight: bold;
  color: var(--c_white);
  background-color: var(--c_red);
  padding: 0 0.75em 0.05em;
  border-radius: 56px;
  height: fit-content;
  white-space: nowrap;
}

#contact-form .opt {
  font-weight: bold;
  color: #969696;
  background-color: #e6e6e6;
  padding: 0 0.75em 0.05em;
  border-radius: 56px;
  height: fit-content;
  white-space: nowrap;
}

#contact-form form#mailformpro dl dd {
  flex: 0 1 70%;
  border-top: none;
  padding: 0;
  font-size: 100%;
  text-align: initial;
}

#contact-form input,
#contact-form textarea {
  border: 1px solid #969696;
  width: 100%;
  padding: 0.75em 2.5em;
}

#contact-form textarea {
  width: 100% !important;
  height: 16.6em !important;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: #e6e6e6;
}

#contact-form form#mailformpro dl .dd-privacy-policy {
  flex: 0 1 100%;
  border: 1px solid #969696;
  padding: 1.75em 1em;
  text-align: center;
}

#contact-form form#mailformpro dl .dd-privacy-policy label {
  text-align: left;
  text-indent: -3em;
  padding-left: 3em;
}

#contact-form form#mailformpro dl .dd-privacy-policy .mfp_err {
  text-indent: initial;
}

#contact-form form#mailformpro dl dd label {
  margin: 0;
}

#contact-form form#mailformpro dl .dd-postal-code {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#contact-form form#mailformpro dl .dd-postal-code input {
  width: 15em;
  margin: 0 1.5em 0 1em;
}

#contact-form form#mailformpro dl .dd-inquiry-details,
#contact-form form#mailformpro dl .dd-gender,
#contact-form form#mailformpro dl .dd-job-title {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.5em;
  row-gap: 0.5em;
}

#contact-form input[type="radio"] {
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #000;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 0.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#contact-form input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #000;
  content: "";
}

#contact-form input[type="checkbox"] {
  cursor: pointer;
  padding: 0;
  position: relative;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #000;
  vertical-align: bottom;
  margin-right: 1.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#contact-form input[type="checkbox"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84.9333%;
  height: 65.7%;
  content: "";
  background-image: url("../images/common/checkmark.svg");
  background-size: cover;
  background-position: center;
}

/* =====================
　お問い合わせ完了ページ／エントリー完了ページ
======================= */

/* thanks
------------------------ */
#thanks {
  padding: 5.2083% 0;
  text-align: center;
}

#thanks .thanks-ttl {
  margin-bottom: 1em;
}

#thanks .thanks-txt {
  margin-bottom: 3em;
}

/* =====================
　SP
======================= */
@media screen and (max-width: 799px) {
  /* =====================
  　共通
  ======================= */
  body {
    font-size: 16px;
  }

  .wrapper,
  .wrapper-narrow {
    width: 90%;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  /* セクションタイトル */
  .sec-ttl {
    font-size: 55px;
    margin-bottom: 50px;
  }

  .sec-ttl2 {
    width: fit-content;
    margin: 0 auto 50px;
  }

  .sec-ttl-ja {
    font-size: 14px;
  }

  .sec-ttl3 {
    margin-bottom: 50px;
  }

  /* ページトップに戻るボタン */
  #page-top {
    font-size: 10px;
    right: 20%;
  }

  /* パンくずリスト */
  #breadcrumb-list {
    font-size: 12px;
  }

  /* 下層ページタイトル */
  #page-header {
    height: 200px;
  }

  #page-header .page-ttl-bg {
    height: 100%;
  }

  #page-header .page-ttl-bg img {
    height: 100%;
    object-fit: cover;
  }

  #page-header .page-ttl {
    text-align: right;
    line-height: 0;
    padding: 0 15px 10px 10px;
  }

  #page-header .page-ttl-eng {
    font-size: 30px;
  }

  #page-header .page-ttl-ja {
    font-size: 12px;
  }

  /* =====================
  　ヘッダー
  ======================= */
  #header {
    padding: 10px 0;
  }

  #header .header-logo-img {
    width: 40px;
  }

  #header .company-name {
    font-size: 16px;
  }

  #header .header-nav-list > li {
    position: relative;
  }

  #header .header-nav-list > li > a::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    background-color: var(--c_blue);
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -1em;
    border-radius: 100%;
    margin: auto 0px;
  }

  #header .header-nav-item-service > a::after {
    content: none;
  }

  #header .header-nav.open .header-nav-sub-list {
    opacity: 1;
    visibility: visible;
    position: static;
    padding: 0 0 0 2em;
    width: auto;
  }

  /* ハンバーガーメニューボタン */
  #hamburger-btn {
    width: 25px;
    height: 10px;
    z-index: 10;
  }

  .hamburger-btn-line {
    display: block;
    position: relative;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--c_text);
    transition: var(--anim);
    transform: translateX(-50%);
  }

  .hamburger-btn-line::before,
  .hamburger-btn-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--c_text);
    transition: 0.5s;
  }

  .hamburger-btn-line::before {
    transform: translate(-50%, -5px);
  }

  .hamburger-btn-line::after {
    transform: translate(-50%, 5px);
  }

  .hamburger-btn-line.open {
    background-color: transparent;
  }

  .hamburger-btn-line.open::before {
    transform: translateX(-50%) rotate(30deg);
  }

  .hamburger-btn-line.open::after {
    transform: translateX(-50%) rotate(-30deg);
  }

  #header .header-nav {
    font-size: 16px;
    line-height: 2;
    padding: 50px;
    width: 100%;
    height: auto;
    position: fixed;
    z-index: 1000;
    top: 70px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    transition: var(--anim);
  }

  #header .header-nav-list {
    width: fit-content;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: inherit;
  }

  #header .header-nav.open {
    opacity: 1;
    visibility: visible;
  }

  /* =====================
  　フッター
  ======================= */
  #footer {
    font-size: 12px;
    padding: 50px 0;
  }

  #footer .footer-container {
    row-gap: 50px;
  }

  #footer .footer-left {
    flex: 0 1 100%;
    text-align: center;
  }

  #footer .footer-logo a {
    justify-content: center;
    text-align: left;
  }

  #footer .footer-logo-img {
    width: 55px;
  }

  #footer .company-name {
    font-size: 22px;
  }

  #footer .footer-company-info {
    display: inline-block;
    text-align: left;
  }

  #footer .g-map-icon {
    width: 7px;
  }

  #footer .footer-nav {
    flex: 0 1 100%;
    justify-content: center;
    padding-left: 2em;
  }

  .footer-copyright {
    font-size: 12px;
    text-align: center;
  }

  /* =====================
  　TOPページ
  ======================= */

  .sec-txt {
    font-size: 16px;
    margin-bottom: 15px;
  }

  /* mv
  ------------------------ */
  #mv .mv-ttl {
    width: auto;
    top: 11.6129%;
    left: 3.9063%;
    margin: auto 0;
  }

  #mv .mv-ttl-ja {
    font-size: 27px;
    padding: 0 0 3px 23px;
  }

  #mv .mv-ttl-ja:first-of-type,
  #mv .mv-ttl-ja:last-of-type {
    margin-bottom: 10px;
  }

  #mv .mv-ttl-eng {
    font-size: 14px;
  }

  /* company-profile
  ------------------------ */
  #company-profile {
    padding: 50px 0;
  }

  #company-profile .company-container {
    justify-content: center;
  }

  #company-profile .company-left {
    flex: 0 1 100%;
    text-align: center;
  }

  #company-profile .logo-img {
    width: 65px;
  }

  #company-profile .company-name {
    font-size: 60px;
  }

  #company-profile .company-name span {
    letter-spacing: 0.08em;
  }

  #company-profile .sec-txt {
    text-align: center;
    margin-top: 50px;
  }

  #company-profile .btn-wrapper {
    text-align: center;
    margin-bottom: 50px;
  }

  #company-profile .company-right {
    flex: 0 1 80%;
  }

  /* service
  ------------------------ */
  #service {
    padding: 50px 0 100px;
  }

  #service::before {
    height: 1.5em;
  }

  #service::after {
    width: 0.3em;
    height: 0.3em;
    top: 1.5em;
  }

  #service .service-img-wrapper {
    width: 80%;
  }

  #service .service-img::before {
    width: 138.89%;
    left: -19.4444%;
  }

  #service .btn-wrapper {
    margin-bottom: 50px;
    position: static;
  }

  #service .btn-see-more:hover {
    background-color: var(--c_red);
    color: var(--c_white);
  }

  #service .btn-see-more:hover::after {
    border-top: solid 2px var(--c_white);
    border-right: solid 2px var(--c_white);
  }

  /* recruit
  ------------------------ */
  #recruit {
    padding-bottom: 50px;
  }
  #recruit .recruit-container {
    justify-content: center;
  }

  #recruit .recruit-left {
    flex: 0 1 100%;
  }

  #recruit .sec-ttl {
    margin-bottom: 50px;
    text-align: center;
  }

  #recruit .sec-txt {
    margin-bottom: 15px;
    text-align: center;
  }

  #recruit .btn-wrapper {
    margin-bottom: 50px;
    text-align: center;
  }

  #recruit .recruit-right {
    flex: 0 1 80%;
  }

  /* contact
  ------------------------ */
  #contact {
    padding: 50px 0;
  }

  #contact .contact-left {
    flex: 0 1 100%;
  }

  #contact .contact-right {
    flex: 0 1 100%;
    border-left: none;
    border-top: 1px solid #c8c8c8;
  }

  #contact .phone-number {
    font-size: 30px;
  }

  /* =====================
  　会社案内ページ
  ======================= */

  /* greeting
  ------------------------ */
  #greeting {
    padding: 50px 0 100px;
  }

  #greeting .greeting-txt {
    font-size: 16px;
  }

  /* overview
  ------------------------ */
  #overview {
    padding-bottom: 100px;
  }

  #overview .overview-list {
    font-size: 12px;
  }

  #overview .ninsho-img {
    width: 300px;
  }

  /* access
  ------------------------ */
  #access {
    padding-bottom: 50px;
  }

  #access .access-container {
    row-gap: 20px;
    margin-bottom: 50px;
  }

  #access .access-left,
  #access .access-right {
    flex: 0 1 100%;
  }

  #access .company-name {
    margin-bottom: 10px;
  }

  #access .company-info {
    font-size: 12px;
  }

  /* =====================
  　事業内容ページ
  ======================= */

  /* transportation
  ------------------------ */
  #transportation {
    padding: 50px 0 100px;
  }

  #transportation .wrapper-narrow {
    width: 100%;
  }

  #transportation .transportation-img {
    margin-bottom: 100px;
  }

  #transportation #shipping-container,
  #transportation #freight-general,
  #transportation #freight-route {
    padding-bottom: 100px;
  }

  #transportation #shipping-container .shipping-container-left,
  #transportation #shipping-container .shipping-container-right,
  #transportation #freight-general .freight-general-left,
  #transportation #freight-general .freight-general-right,
  #transportation #freight-route .freight-route-left,
  #transportation #freight-route .freight-route-right,
  #transportation #vanning .vanning-left,
  #transportation #vanning .vanning-right {
    flex: 0 1 100%;
  }

  /* facilities
  ------------------------ */
  #facilities {
    padding-bottom: 50px;
  }

  #facilities .wrapper-narrow {
    width: 100%;
  }

  #facilities #vehicle-info {
    padding-bottom: 50px;
  }

  #facilities #vehicle-info .vehicle-info-txt {
    margin-bottom: 50px;
  }

  #facilities #vehicle-info .vehicle-info-container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1em;
    row-gap: 5em;
    font-size: 12px;
  }

  #facilities #vehicle-info .vehicle-info-item01 {
    align-self: flex-end;
  }

  #facilities #warehouse .warehouse-txt {
    margin-bottom: 50px;
  }

  #facilities #warehouse .warehouse-left,
  #facilities #warehouse .warehouse-right {
    flex: 0 1 100%;
  }

  /* =====================
  　採用情報ページ
  ======================= */

  /* recruit-lead
  ------------------------ */
  #recruit-lead {
    padding: 70px 0 80px;
  }

  #recruit-lead .recruit-lead-txt {
    font-size: 24px;
  }

  /* message
  ------------------------ */
  #message {
    padding: 50px 0;
  }

  #message::before {
    height: 1.5em;
  }

  #message::after {
    top: 1.5em;
    width: 0.3em;
    height: 0.3em;
  }

  #message .message-container {
    justify-content: center;
    row-gap: 50px;
  }

  #message .message-left {
    flex: 0 1 60%;
  }

  #message .ceo-name {
    font-size: 14px;
  }

  #message .message-right {
    flex: 0 1 100%;
  }

  #message .message-txt {
    font-size: 16px;
  }

  /* interview
  ------------------------ */
  #interview {
    padding: 50px 0;
  }

  #interview .wrapper-narrow {
    width: 100%;
  }

  #interview .interview-container {
    justify-content: center;
    row-gap: 50px;
  }

  #interview .interview-left {
    flex: 0 1 60%;
  }

  #interview .employee-info {
    font-size: 14px;
  }

  #interview .interview-right {
    flex: 0 1 100%;
  }

  #interview .interview-qa-list:nth-child(n + 2) {
    margin-top: 30px;
  }

  #interview .interview01 {
    padding-bottom: 50px;
  }

  #interview .interview02 {
    padding: 50px 0;
  }

  #interview .interview03 {
    padding-top: 50px;
  }

  /* internal-system
  ------------------------ */
  #internal-system {
    padding: 50px 0 100px;
  }

  #internal-system .wrapper-narrow {
    width: 100%;
  }

  #internal-system .manual,
  #internal-system .on-site {
    margin-bottom: 100px;
  }

  #internal-system .manual-container,
  #internal-system .license-container {
    justify-content: center;
    row-gap: 50px;
  }

  #internal-system .manual-left,
  #internal-system .license-left {
    flex: 0 1 100%;
  }

  #internal-system .manual-right,
  #internal-system .license-right {
    flex: 0 1 100%;
  }

  #internal-system .on-site-txt {
    margin-bottom: 50px;
  }

  #internal-system .on-site-left,
  #internal-system .on-site-right {
    flex: 0 1 100%;
  }

  /* welfare-benefits
  ------------------------ */
  #welfare-benefits {
    padding-bottom: 50px;
  }

  #welfare-benefits .welfare-benefits-container {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5em 11.1111%;
    text-align: center;
  }

  #welfare-benefits .welfare-benefits-ttl {
    font-size: 16px;
    line-height: 1.6667;
    margin: 5.3191% 0;
  }

  #welfare-benefits .welfare-benefits-details {
    font-size: 12px;
  }

  /* requirements
  ------------------------ */
  #requirements {
    padding: 50px 0 50px;
  }

  #requirements .requirements-item {
    padding: 50px 0;
  }

  #requirements .wrapper-narrow {
    width: 90%;
  }

  #requirements .sec-ttl {
    font-size: 42px;
  }

  #requirements .requirements-list {
    font-size: 12px;
    margin-bottom: 50px;
  }

  #requirements .requirements-list dt {
    flex: 0 1 30%;
  }

  #requirements .requirements-list dd {
    flex: 0 1 70%;
  }

  /* =====================
  　プライバシーポリシーページ
  ======================= */

  /* privacy-policy
  ------------------------ */
  #privacy-policy {
    padding: 50px 0;
  }

  /* =====================
  　お問い合わせページ／エントリーページ
  ======================= */

  /* contact-form
  ------------------------ */
  #contact-form {
    padding: 50px 0;
    line-height: 1.5;
  }

  #contact-form .contact-form-txt {
    margin-bottom: 50px;
  }

  #contact-form .contact-form-list {
    row-gap: 1em;
    margin-bottom: 50px;
  }

  #contact-form form#mailformpro dl dt {
    flex: 0 1 100%;
    padding: 0;
  }

  #contact-form form#mailformpro dl dd {
    flex: 0 1 100%;
    margin-bottom: 50px;
  }

  #contact-form input,
  #contact-form textarea {
    padding: 0.75em 1em;
  }

  #contact-form form#mailformpro dl .dd-postal-code span {
    text-indent: -1em;
    padding-left: 1em;
  }

  #contact-form form#mailformpro dl .dd-privacy-policy {
    margin-bottom: 0;
  }

  /* =====================
  　お問い合わせ完了ページ／エントリー完了ページ
  ======================= */

  /* thanks
  ------------------------ */
  #thanks {
    padding: 50px 0;
    text-align: center;
  }

  #thanks .thanks-txt {
    text-align: left;
  }
}

/* =====================
　2025年7月　追加
======================= */

.dt-address {
  border: none !important;
}

.dd-address {
  border: none !important;
}
