html {
    font-family: "Noto Sans JP", "Spartan", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  }

.mt-1 { margin-top:.5rem;}
.mt-2 { margin-top:1rem;}
.mt-3 { margin-top:1.5rem;}
.mt-4 { margin-top:2rem;}
.mt-5 { margin-top:2.5rem;}

.px-1 { padding-left:.5rem; padding-right:.5rem;}
.px-2 { padding-left:1rem; padding-right:1rem;}
.px-3 { padding-left:2rem; padding-right:2rem;}
.px-4 { padding-left:3rem; padding-right:3rem;}
.px-5 { padding-left:4rem; padding-right:4rem;}
.py-1 { padding-top:.5rem; padding-bottom:.5rem;}
.py-2 { padding-top:1rem; padding-bottom:1rem;}
.py-3 { padding-top:2rem; padding-bottom:2rem;}
.py-4 { padding-top:3rem; padding-bottom:3rem;}
.py-5 { padding-top:4rem; padding-bottom:4rem;}

.pt-1 { padding-top:.5rem;}
.pt-2 { padding-top:1rem;}
.pt-3 { padding-top:2rem;}
.pt-4 { padding-top:3rem;}
.pt-5 { padding-top:4em;}

.pb-1 { padding-bottom:.5rem;}
.pb-2 { padding-bottom:1rem;}
.pb-3 { padding-bottom:2rem;}
.pb-4 { padding-bottom:3rem;}
.pb-5 { padding-bottom:4em;}
  
.mx-1 { margin-left:.5rem; margin-right:.5rem;}
.mx-2 { margin-left:1rem; margin-right:1rem;}
.mx-3 { margin-left:2rem; margin-right:2rem;}
.mx-4 { margin-left:3rem; margin-right:3rem;}
.mx-5 { margin-left:4rem; margin-right:4rem;}
.my-1 { margin-top:.5rem; margin-bottom:.5rem;}
.my-2 { margin-top:1rem; margin-bottom:1rem;}
.my-3 { margin-top:2rem; margin-bottom:2rem;}
.my-4 { margin-top:3rem; margin-bottom:3rem;}
.my-5 { margin-top:4rem; margin-bottom:4rem;}
.m-auto { margin-left:auto; margin-right:auto;}
.mb-0 { margin-bottom:0;}

.text-link {
  text-decoration:underline;
  color:#007bff;
}

.js-scrollIn {
  transform: translateY(30px);
  opacity: 0;
  transition: all 1.2s ease;
}
.js-scrollIn.active {
  transform: translateY(0);
  opacity: 1;
}

.maxw-80 { max-width:80%;}
.maxw-1500 { max-width:1500px;}
.maxw-1200 { max-width:1200px;}
.text-center { text-align:center;}
.wb-autophrase { word-break:break-word; overflow-wrap:anywhere;}


h1 { font-size:1.4rem; line-height:1.5; margin-bottom:1.5rem;}
h2 { font-size:1.1rem; line-height:1.4;}
h2.border-b {
  position:relative;
  margin-bottom:2rem;
  font-size:1.8rem;
}

h2.border-b::before, h2.border-b::after {
  display: block;
  content: "";
  position: absolute;
  top: 39px;
}
h2.border-b::before {
  border: 2px solid #ccc;
  z-index: 5;
  width: 100%;
}
h2.border-b::after {
  border: 2px solid #06182f;
  z-index: 5;
  width: 90px;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: .5rem;
}

.breadcrumb {
  padding:4px 0;
  font-size:.85rem;
}
.breadcrumb::after {
  content: "";
  display: block;
  clear: both;
}
.breadcrumb ul li {
  float: left;
  padding: 4px;
}
.breadcrumb ul li:not(:last-of-type)::after {
  content: ">";
  padding-left: 8px;
}
.breadcrumb ul li:last-of-type a {
  pointer-events: none;
  color: inherit;
  opacity: 0.65;
}

body.noscroll {
  overflow:hidden;
}

header, footer {
  width:100%;
  background:#06182f;
}
main { 
  width:100%;
  margin:0 auto 50px;
}

section {
  margin-left:auto;
  margin-right:auto;
}

header {
  position:relative;
  z-index:20;
}

header .header-container {
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:fixed;
  background:#06182f;
  width:100%;
  top:0;
  left:0;
  transition: top 0.3s ease-in-out
}

header .header-container .header-logo {
  overflow:hidden;
  width:55px;
}

header .header-container .header-logo a {
  display:block;
  width:max-content;
}

header .header-container .header-logo img {
  width:auto;
  height:40px;
}

@media screen and (min-width: 670px) {
  header .header-container {
    height:100px;
  }
  header .header-container .header-logo {
    overflow:auto;
    width:unset;
  }
  header .header-container .header-logo img {
    width:220px;
    height:26.64px;
  }
}

header .global-nav { display:none;}
header .spn-hum {
  position:fixed;
  top:0;
  right:10px;
  width:50px;
  height:50px;
  z-index:60;
  background: none;
  border-radius: 6px;
}
@media screen and (min-width: 670px) {
  header .spn-hum {
  top:25px;
  right:25px;
  cursor:pointer;
  background: #fff;
  box-shadow: #06182f 0 0 6px;
  }
}

.spn-hum span:nth-of-type(1), .spn-hum span:nth-of-type(2), .spn-hum span:nth-of-type(3) {
  display:block;
  width:32px;
  height:2px;
  background:#fff;
  position:absolute;
  border-radius:10px;
  transition:.5s ease-in-out;
  box-shadow: 1px 3px 0 #06182f;
}
.spn-hum span:nth-of-type(1) { top:12px; left:9px;}
.spn-hum span:nth-of-type(2) { top:24px; left:9px;}
.spn-hum span:nth-of-type(3) { top:36px; left:9px;}
.spn-hum.active span:nth-of-type(1) { top:25px; transform:rotate(45deg); background:#000; box-shadow:none;}
.spn-hum.active span:nth-of-type(2) { height:0;opacity:0; background:#000; box-shadow:none;}
.spn-hum.active span:nth-of-type(3) { top:25px; transform:rotate(-45deg); background:#000; box-shadow:none;}

@media screen and (min-width:670px) {
  .spn-hum span:nth-of-type(1), .spn-hum span:nth-of-type(2), .spn-hum span:nth-of-type(3) {
    background:#000;
    box-shadow: none;
  }
}

.spn-header-nav {
  position:fixed;
  display:block;
  padding:1rem .8rem;
  background:#fff;
  width:0;
  max-width:600px;
  position:fixed;
  top:0;
  bottom:0;
  right:-600px;
  z-index:50;
  overflow:auto;
  height:100%;
  transition:.2s ease-in-out;
}

.header-nav-clear {
  position:fixed;
  display:block;
  padding:1rem .8rem;
  background:#fff;
  width:0;
  position:fixed;
  top:0;
  bottom:0;
  right:-600px;
  z-index:50;
  overflow:auto;
  height:100%;
  transition:.2s ease-in-out;
}

.spn-header-nav.active {
  width:calc(100% - 70px);
  right:0;
}

.spn-header-nav .spn-nav-container {
  padding-top:80px;
}

.spn-header-nav p {
  font-weight:700;
  font-size:1.1rem;
  position:relative;
  margin-bottom:1.2rem;	
}
.spn-header-nav p::before, .spn-header-nav p::after {
  display: block;
  content: "";
  position: absolute;
  top: 28px;
}
.spn-header-nav p::before {
  border: 2px solid #222;
  z-index: 5;
  width: 100%;
}
.spn-header-nav p::after {
  border: 2px solid #ff7600;
  z-index: 5;
  width: 50px;
}
.spn-header-nav .spn-nav-tel{
  text-align:center;
  background:#eee;
  margin-bottom:.5rem;
}
.spn-header-nav .spn-nav-tel a {
  font-family:oswald;
  font-size:2.2rem;
  font-weight:700;
  display:block;
  margin-bottom:5px;
}

.spn-header-nav .spn-nav-tel a::before {
  content:"";
  display: inline-block;
  background: url(../images/icon/icon-tel.png) no-repeat;
  width: 50px;
  height: 50px;
  background-size: 100%;
  vertical-align: middle;
  background-position: center;
  border-radius: 3px;
  margin-right: 3px;
  margin-top: -8px;
}
.spn-header-nav .spn-nav-tel span {
  display:block;
  line-height:1.3;
  font-size:.9rem;
}
.spn-header-nav .spn-nav-category div {
  font-weight:700;
  font-size:1rem;
  margin-left:.5em;
  padding-bottom:.5rem;
  border-bottom:1px dashed #000;
}
.spn-header-nav .spn-nav-category ul {
  display:flex;
  flex-flow:row wrap;
  margin-bottom:.5rem;
}

.spn-header-nav .spn-nav-category ul li {
  width: calc((100% - 10px) / 3);
  padding:3px;
  text-align:center;
  font-size:.8rem;
}
.spn-header-nav .spn-nav-category ul li:not(:nth-of-type(3n-2)) { margin-left:5px;}
.spn-header-nav .spn-nav-category ul li img {
  width:100%;
  margin-bottom:3px;
}

.spn-header-nav ul.nav-details {
  margin:1rem 0;
  display:flex;
  flex-flow:row wrap;
}
.spn-header-nav ul.nav-details li {
  display:block;
  width:calc((100% - 10px) / 2);
  margin-bottom:6px;
}

.spn-header-nav ul.nav-details li:nth-of-type(2n) {
  margin-left:10px;
}
.spn-header-nav ul.nav-details li a {
  border:1px solid #ccc;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #ffffff), color-stop(100%, #f6f6f6));
    background-color: #ffffff;
    -webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
    box-shadow: inset 1px 1px 0px 0px #ffffff;
  text-align:center;
  font-size:.8rem;
  line-height:1.2;
  padding:6px;
  display:block;
}
.spn-header-nav ul.nav-details li i {
  display:block;
  width:40px;
  height:40px;
  margin:0 auto 3px;
}
.spn-header-nav ul.nav-details li i.icon-spn-nav-howto {
  background:url(../images/icon/spn-howto.png) no-repeat;
  background-size:100%;
}
.spn-header-nav ul.nav-details li i.icon-spn-nav-document {
  background:url(../images/icon/spn-document.png) no-repeat;
  background-size:100%;
}
.spn-header-nav ul.nav-details li i.icon-spn-nav-faq {
  background:url(../images/icon/spn-faq.png) no-repeat;
  background-size:100%;
}
.spn-header-nav ul.nav-details li i.icon-spn-nav-announce {
  background:url(../images/icon/spn-announce.png) no-repeat;
  background-size:100%;
}

.spn-header-nav .nav-list {
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px dashed #cec7c7;
  padding: .5rem 0;
}

.header-nav-clear.active {
  display:block;
  position:fixed;
  top:0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  background:#000000b5;
  z-index:20;
}

.spn-mt50 { margin-top:50px;}
.spn-pt50 { padding-top:100px;}
@media screen and (min-width:670px) {
  .spn-mt50 { margin-top:100px;}
  .spn-pt50 { padding-top:140px;}

}
.spn-mb75 { margin-bottom:75px;}

section.title { text-align:center;}

.truck-gallery_container {
  display:flex;
  flex-flow:row wrap;
}
.truck-gallery_container .gallery-box {
  max-width:calc(100% / 2);
  display:flex;
  flex-direction:column;
  padding:16px;
  text-align:center;
  align-items:center;
}
.truck-gallery_container .gallery-box img {
  width:100%;
  max-width:90%;
  margin-bottom:6px;
}
.truck-gallery_container .gallery-box h3 {
  margin-bottom:3px;
}
.truck-gallery_container .gallery-box p {
  font-size:1.3rem;
  font-weight:700;
  color:#ff0000;
  margin-bottom:6px;
}
.truck-gallery_container .gallery-box p span {
  font-size:.8rem;
  color:#000;
}
.truck-gallery_container .gallery-box a {
  display:block;
  background:#0D367A;
  text-align:center;
  font-size:1rem;
  font-weight:700;
  color:#fff;
  padding:8px;
  width:100%;
  margin:4px auto 0;
  max-width:200px;
}

.inquiry-btn.fixed {
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  height:70px;
  z-index:15;
  display:flex;
  justify-content:center;
  background:#00000099;
  padding:7px;
}

.inquiry-btn.fixed a {
  display:flex;
  width:100%;
  max-width:300px;
  font-size:1.2rem;
  font-weight:700;
  color:#fff;
  text-align:center;
  line-height:1.7;
  align-items:center;
  justify-content:center;
}
.inquiry-btn.fixed a.inquiry-form {
  background: rgb(255,54,54);
  background: linear-gradient(110deg, rgba(255, 54, 54, 1) 85%, rgb(255 122 122) 85%);
}
.inquiry-btn.fixed a.inquiry-call {
  background: rgb(255,54,54);
  background: linear-gradient(110deg, #009688 85%, rgb(0 184 167) 85%);
  margin-left:8px;
}

.inquiry-btn.fixed i.icon-inquiry-btn, .inquiry-btn.fixed i.icon-call-btn {
  display:block;
  width:35px;
  height:35px;
  margin-right:3px;
}
.inquiry-btn.fixed i.icon-inquiry-btn {
  background:url(../images/icon/inquiry-icon.png) no-repeat;
  background-size:100%;
}
.inquiry-btn.fixed i.icon-call-btn {
  background:url(../images/icon/icon-call.png) no-repeat;
  background-size:100%;
}
.inquiry-form .inquiry-announce {
  text-align:center;
  font-size:1.2rem;
}
.inquiry-tel_container, .inquiry-form_container {
  max-width:800px;
  margin:2rem auto;
}
.inquiry-tel_container {
  text-align:center;
}
.inquiry-tel_container a {
  font-family:arial;
  font-size:2.7rem;
  font-weight:700;
  margin-bottom:.5rem;
  display:block;
}
.inquiry-tel_container a::before {
  content:"";
  display: inline-block;
  background: url(../images/icon/icon-call.png) no-repeat;
  width: 50px;
  height: 50px;
  background-size: 90%;
  background-color: #009688;
  vertical-align: middle;
  background-position: center;
  border-radius: 3px;
  margin-right: 3px;
  margin-top: -5px;
}

.inquiry-tel_container span {
  display:block;
  font-size:1rem;
  line-height:1.6;
  font-weight:700;
}
.inquiry-tel_container span:nth-of-type(2) {
  text-decoration:underline;
  font-size:1.2rem;
}
.inquiry-form_container {
  border:1px solid #666;
}
.inquiry-form_container h3 {
  font-size:1.4rem;
  text-align:center;
  text-decoration:underline;
  margin-bottom:1rem;
}
.inquiry-form .form-control {
  margin-bottom:16px;
}
.inquiry-form .form-control label {
  display:inline-block;
  margin-bottom:5px;
  font-size:.8rem;
}
.inquiry-form .form-control label.required span {
  display:inline-block;
  margin-left:8px;
  color:#ff0000;
}

.inquiry-form .form-control input, .inquiry-form .form-control select {
  display: inline-block;
  width: 100%;
  height:40px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #6a6a6a;
  border-radius: 0.1rem;
  transition: border-colorease-in-out 0.15s, box-shadowease-in-out 0.15s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


form .selectarrow {
  position:relative;
}
form .selectarrow::after {
  content: "";
  border: 7px solid #000;
  border-color: transparent transparent #000;
  display: inline-block;
  position: absolute;
  right: 12px;
  top: 18px;
  vertical-align: middle;
  transform: rotate(180deg);
}

form .submitbox {
  text-align:center;
}
form .submitbox input.agree {
  margin-right:8px;
  margin-bottom: 4px;
  width: 16px;
  height: 16px;
}
form .submitbox button {
  display:block;
  width:100%;
  max-width:400px;
  margin:auto;
  background:#ff5722;
  padding:1rem;
  font-size:1.2rem;
  font-weight:700;
  color:#fff;
}
@media screen and (min-width: 749px) {
  header .header-container {
    justify-content:space-between;
    padding:0 100px 0 40px;
  }
  header ul.global-nav {
    display:flex;
    font-size:.9rem;
    align-items:center;
  }
  header ul.global-nav li {
    padding:0 1rem;
  }
  header ul.global-nav li.global-nav-tel {
    display:flex;
    flex-direction:column;
  }
  header ul.global-nav li.global-nav-tel a {
    font-size:2.2rem;
    font-weight:700;
    color:#fff;
    font-family:oswald;
  }
  header ul.global-nav li.global-nav-tel a::before {
    content: "";
    display: inline-block;
    background: url(../images/icon/icon-tel_fff.png) no-repeat;
    width: 50px;
    height: 50px;
    background-size: 100%;
    vertical-align: middle;
    background-position: center;
    margin-right: 3px;
    margin-top: -8px;
  }
  header ul.global-nav li:not(.global-nav-tel) a:hover {
    text-decoration:underline;
    transition:.3s;
  }
  header ul.global-nav li.global-nav-tel div {
    text-align:center;
    font-size:.8rem;
    font-weight:700;
    align-self:end;
    color:#fff;
  }
  header ul.global-nav li.global-nav-tel div span{
    line-height:1.2;
    font-weight:normal;
  }
  .truck-gallery_container .gallery-box img {
    width:100%;
    max-width:80%;
  }
  .inquiry-btn.fixed a.inquiry-form {
    max-width:600px;
  }
  .inquiry-btn.fixed a.inquiry-call {
    display:none;
  }
  .inquiry-tel_container a {
    font-size:4rem;
  }
}
@media screen and (min-width: 849px) {
  header ul.global-nav li.global-nav-tel a {
    font-size:2.2rem;
  }
}
.gototop {
  position:relative;
  z-index:10;
}
a#topButton {
  display: none;
  position: fixed;
  bottom: 110px;
  right: 20px;
  background-color:#787878b8;
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: .8rem;
  line-height:1;
  font-weight:700;
}
a#topButton i{
  display:block;
  width:30px;
  height:30px;
  background:url(../images/icon/icon-gototop.png) no-repeat;
  background-size:100%;
  margin:0 auto 2px;
}
footer {
  width:100%;
  background:#eee;
  padding-top:1rem;
}
footer .footer-sns {
  display:flex;
  justify-content:center;
  padding:6px 0;
}
footer .footer-sns a {
  display:block;
  margin:2px 4px;
}
footer .footer-sns i {
  display:block;
  width:25px;
  height:25px;
}
footer .footer-sns i.footer-icon-x { background:url(../images/icon/icon-x.png) no-repeat; background-size:100%;}
footer .footer-sns i.footer-icon-instagram { background:url(../images/icon/icon-instagram.png) no-repeat; background-size:100%;}
footer .footer-sns i.footer-icon-facebook { background:url(../images/icon/icon-facebook.png) no-repeat; background-size:100%;}
footer .footer-sns i.footer-icon-youtube { background:url(../images/icon/icon-youtube.png) no-repeat; background-size:100%;}
footer .footer-sns i.footer-icon-line { background:url(../images/icon/icon-line.png) no-repeat; background-size:100%;}
footer .footer-bottom {
  font-size:.8rem;
  line-height:1.3;
}
footer .footer-bottom ul {
  display:flex;
  flex-flow:row wrap;
  justify-content:center;
}
footer .footer-bottom ul li {
  padding:4px 10px;
}
footer .footer-bottom p {
  font-size:.8rem;
  margin-top:4px;
  text-align:center;
}

section {
  padding:2rem 1rem;
}

section:has(+ section) {
  margin-bottom:2rem;
}

section.main-banner {
  background:#06182f;
  padding-left:1rem;
  padding-right:1rem;
  padding-bottom:4rem;
  text-align:center;
  position:relative;
}

@media screen and (min-width:749px) {
  section.main-banner {
    padding-left:0rem;
    padding-right:0rem;
    padding-bottom:4rem;
  }
}
@media screen and (min-width:1200px) {
  section.main-banner {
    padding-left:4rem;
    padding-right:4rem;
    padding-bottom:4rem;
  }
}
section.main-banner::after {
  content:"";
  display:block;
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:30px;
  background-image:url(../images/banner_tri_bottom.svg);
  background-repeat: repeat-x;
  background-position-y: bottom;
}

section.main-banner img,
section.main-banner source {
  max-width:1400px;
  width:100%;
  margin:auto;
}

.service-banner {
  position:relative;
  width:100%;
  height:calc(100vw * 2.3 / 2);
  clip-path:inset(0);
}
.service-banner::before {
  content:"";
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  height:100vh;
  width:100%;
  background:url(../images/bg-service02.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  filter: brightness(0.5);
}
.service-banner div {
  position:absolute;
  transform:translate(-50%, -50%);
  top:50%;
  left:50%;
  color:#fff;
  text-align:center;
  width:max-content;
  max-width:1200px;
}
.service-banner div h1 {
   text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.service-banner div h1 span:nth-of-type(1) {
  font-size:1.8rem;
  margin-bottom:1rem;
  line-height:1.1;
}
.service-banner div h1 span:nth-of-type(2) {
  font-size:3rem;
  line-height:1.6;
}

.service-banner div p {
  max-width:100vw;
  padding:0 8px;
}

.service-banner div h2 {
  font-size:1.5rem;
  display;flex;
  flex-flow:row wrap;
}
.service-message h2 {
  font-size:1.4rem;
  margin-bottom:1rem;
  text-align:center;
  color:#0D367A;
}
.service-feature ul {
  display:flex;
  flex-flow:row wrap;
  justify-content:center;
}
.service-feature ul li {
  width:100%;
  padding:1.4rem;
  border:1px solid #666;
  background-color: #06182f;
  -webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
  box-shadow: inset 1px 1px 0px 0px #ffffff;
  display:flex;
  flex-flow:column wrap;
  margin-bottom:5px;
}
.service-feature ul li img {
  display:block;
  margin:0 auto 1rem;
  max-width:fit-content;
} 
.service-feature ul li h3 {
  font-size:1.4rem;
  margin-bottom:.5rem;
  text-align:center;
  color:#fff;
}
.service-feature ul li strong {
  color:#ff0000;
}
.service-howto ol { counter-reset:number; padding-left:.5rem;}
.service-howto ol li {
  position:relative;
  padding: 1.5rem 1rem 1.5rem 0rem;
  display:flex;
  flex-flow: row wrap;
}

.service-howto ol li + li {
  border-top:1px dashed #0D367A;
}
.service-howto ol li:before {
  counter-increment: number;
  content: counter(number);
  color: #adb0b569;
  display: inline-block;
  font-size: 8.5rem;
  position: absolute;
  top: 0px;
  right: 0;
  font-weight: 700;
  font-family:"Oswald";
}

.service-howto ol li i {
  display:block;
  width:70px;
  height:63.75px;
  flex:none;
  margin:0 auto 3px;
}
.service-howto ol li i.icon-flow01 {  background:url(../images/icon/flow-inquiry.png) no-repeat; background-size:100%;}
.service-howto ol li i.icon-flow02 {  background:url(../images/icon/flow-proforma.png) no-repeat; background-size:100%;}
.service-howto ol li i.icon-flow03 {  background:url(../images/icon/flow-check.png) no-repeat; background-size:100%;}
.service-howto ol li i.icon-flow04 {  background:url(../images/icon/flow-contract.png) no-repeat; background-size:100%;}
.service-howto ol li i.icon-flow05 {  background:url(../images/icon/flow-document.png) no-repeat; background-size:100%;}
.service-howto ol li i.icon-flow06 {  background:url(../images/icon/flow-deliver.png) no-repeat; background-size:100%;}
.service-howto ol li i.icon-flow07 {  background:url(../images/icon/flow-cycle.png) no-repeat; background-size:100%;}

.service-howto ol li div {
  width:100%;
}
.service-howto ol li div h3 {
  font-size:1.3rem;
  margin-bottom:.5rem;
  line-height:1.3;
  text-align:center;
}

@media screen and (min-width: 400px) {
  .service-howto ol li {
    padding:1.5rem 1rem 1.5rem 3.8rem;
  }
  .service-howto ol li:before {
    color: #0D367A;
    font-size:5.5rem;
    top:8px;
    left:0;
    right:noset;
  }
  .service-howto ol li div {
    margin-left:1rem;
    width:calc(100% - 100px);
  }
  .service-howto ol li div h3 {
    text-align:left;
  }
}

.service-document table {
  border:6px solid #06182f;
  width:100%;
  max-width:600px;
  border-radius:10px;
  overflow:hidden;
  border-collapse:separate;
}
.service-document table th, .service-document table td {
  padding: .5rem;
  text-align:center;
  font-size:1rem;
  line-height:1.5;
}
.service-document table th {
  color: #e0c632;
  font-size: 1.4rem;
  font-size: 1.2rem;
  background:#06182f;
  border-bottom:6px solid #06182f;
  }
.service-document table td {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #ffffff), color-stop(100%, #f6f6f6));
  background-color: #ffffff;
  -webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
  box-shadow: inset 1px 1px 0px 0px #ffffff;
  color:#000;
  font-size:1rem;
}
.service-document table + table { margin-top:1rem;}
.service-faq dl {
  font-size:1rem;
  line-height:1.6;
}
.service-faq dl dt {
  font-weight:700;
  margin-bottom:.5rem;
  display:flex;
  align-items:center;
}
.service-faq dl dt::before, .service-faq dl dd::before  {
  display:block;
  width:30px;
  height:30px;
  margin-right:10px;
  text-align:center;
  line-height:30px;
  font-weight:700;
  flex:none;
}
.service-faq dl dt::before {
  content:"Q";
  background:#06182f;
  color:#e0c632;
  
}
.service-faq dl dd::before  {
  content:"A";
  background:#e0c632;
  color:#06182f;
}

.service-faq dl dd {
  margin-bottom:1rem;
  display:flex;
}

.service-announce ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display:flex;
  align-items: flex-start;
}
.service-announce ul li::before {
  content: "";
  width: 26px;
  height: 14px;
  border-bottom: 6px solid #8BC34A;
  border-left: 6px solid #8BC34A;
  display: block;
  transform: rotate(-45deg);
  margin-right: 8px;
  flex: none;
  margin-top:3px;
}


@media screen and (min-width: 769px) {
  .service-banner {
    height:600px;
  }
  .service-banner h2 br {
    display:none;
  }
  .service-banner div h1 span:nth-of-type(1) { font-size:3.4rem;}
  .service-banner div h1 span:nth-of-type(2) { font-size:4.5rem;}
  .service-banner div h2 {
    font-size:1.6rem;
  }
  .service-message h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    display:flex;
    flex-direction:column;
    color:#06182f;
  }
  .service-message h2 img {
    max-width:800px;
    margin:auto;
  }
  .service-feature ul {
    max-width:800px;
    margin:auto;
  }
  .service-feature ul li {
    width:calc((100% - 10px) / 2);
  }
  .service-feature ul li:nth-of-type(2n) {margin-left:10px;}
  .service-document table { width:calc((100% - 16px) / 2); float:left;}
  .service-document table + table { margin-top:0; margin-left:16px;}
  .service-document::after {
    content:"";
    display:block;
    clear:both;
  }
}

.truck-img {position:relative; text-align:center;}
.truck-img .tag-list {
  float;left;
  padding:4px 0;
}
.truck-img .tag-list::after {
  content;"";
  display:block;
  clear:both;
}
.truck-img .tag-list span {
  display:inline-block;
  text-align:center;
  font-weight:700;
  padding:0.6rem;
  background:#0D367A;
  color:#fff;
  font-size:.7rem;
  border-radius:4px;
}
.truck-img .tag-list span::before {
  content:"";
  width:60px;
  height:37.2px;
  display:block;
  margin:0 auto 4px;
}
.truck-img .tag-list span.speed-tag::before {
  background:url(../images/icon/speed-w-tag.png) no-repeat;
  background-size:100%;
}
.truck-img .tag-list span.monthly-tag::before {
  background:url(../images/icon/monthly-w-tag.png) no-repeat;
  background-size:100%;
}
.truck-img .tag-list span.new-tag::before {
  background:url(../images/icon/newtruck-w-tag.png) no-repeat;
  background-size:100%;
}

.truck-img .tag-list span + span {
  margin-left:6px;
}
.truck-img_container {
  display:flex;
  flex-flow:column wrap;
  justify-content:center;
}
.truck-img img {
  width:100%;
  max-width:600px;
}
.truck-img .truck-price {
  display:flex;
  flex-flow:row wrap;
  justify-content:center;
  align-items:center;
  font-weight:700;
  padding: .5rem;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  background: #eee;
  width:100%;
  max-width:600px;
  margin:auto;
}
.truck-img .truck-price span {
  font-weight:700;
  display:block;
}
.truck-img .truck-price span:nth-of-type(1) {
  font-size:1rem;
  width:100%;
  border-bottom:2px dashed #000;
  padding:.2rem;
  margin-right:3px;
  align-self:flex-start;
}
.truck-img .truck-price span:nth-of-type(2) {
  font-family:arial;
  font-size:4.5rem;
  color:#e91e63;
}
.truck-img .truck-price span:nth-of-type(3) {
  font-size:1.1rem;
  line-height:1.1;
  margin: 0 0 -1rem .5rem;
}

.truck-option .flexbox {
  display:flex;
  flex-flow:row wrap;
  justify-content:center;
}
.truck-option table { border:3px solid #0D367A; width:100%; max-width:420px;}
.truck-option table th, .truck-option table td {
  padding: .5rem;
  border:3px solid #0D367A;
  text-align:center;
  font-size:1rem;
  line-height:1.5;
}
.truck-option table th {
  color: #000000;
  font-size: 1.4rem;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #f9f9f9), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #f9f9f9), color-stop(0.75, #f9f9f9), color-stop(0.75, transparent), to(transparent));
  -webkit-background-size: 7px 7px;
  background-color: #dde5ff;color: #000000;
  font-size: 1.2rem;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #f9f9f9), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #f9f9f9), color-stop(0.75, #f9f9f9), color-stop(0.75, transparent), to(transparent));
  -webkit-background-size: 7px 7px;
  background-color: #dde5ff;
  }
.truck-option table td {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #ffffff), color-stop(100%, #f6f6f6));
  background-color: #ffffff;
  -webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
  box-shadow: inset 1px 1px 0px 0px #ffffff;
  color:#000;
  font-size:1rem;
}
.truck-option table + table { margin-top:1rem;}
.truck-option .option-announce {
  margin:1rem auto;
  width:fit-content;
}

@media screen and (min-width: 769px) {
  .truck-img_container {
    display:flex;
    flex-flow:row wrap;
  }
  .truck-img .truck-price {
    padding: 1rem;
    width:300px;
    border:2px solid #000;
    margin:unset;
    align-self:center;
    position:relative;
  }
  .truck-img .truck-price span:nth-of-type(1) {
    padding:.5rem;
  }
  .truck-img .truck-price span:nth-of-type(2) {
    font-size:6rem;
  }
  .truck-img .truck-price span:nth-of-type(3) {
    font-size:1.3rem;
  }
  .truck-img .truck-price::before {
    content:"";
    display:block;
    background:#eee;
    border-top:2px solid #000;
    border-left:2px solid #000;
    position:absolute;
    left:-8.5px;
    transform:translateY(-50%) rotate(-45deg);
    top:50%;
    width:15px;
    height:15px;
  }
  .truck-option table { width:calc((100% - 16px) / 2);}
  .truck-option table + table { margin-top:0; margin-left:16px;}
}

.inquiry-form iframe {
  height:1500px;
}
  @media screen and (min-width: 500px) {
  .inquiry-form iframe {
    height:1350px;
  }
}

footer .icon-corporate::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 10px;
  border: 0.5px solid #1a73e8;
  box-shadow: -2px -2px 0 0px rgb(32, 33, 36);
  margin-right: 3px;
  border-radius: 2px;
}

/*とりあえずリースでCSS*/
section h2.tori-subtitle {
  padding:.5rem 3rem;
  background:#231815;
  margin-bottom:.7rem;
  mask: conic-gradient(from -45deg at bottom,#0000,#000 1deg 89deg,#0000 90deg) 50%/20px 100%;
}

section#media {
  background:#06182f;
  padding-top:4rem;
}

section#media .pc-img {
  background:#fff;
  padding:3rem 2rem;
  margin:auto;
  max-width:1000px;
  mask: repeating-conic-gradient(from 135deg at 50% 20px,#0000 0,#000 1deg 89deg,#0000 90deg 180deg) 50% -20px/40px;
}

section#media .pc-img img {
  display:block;
  margin:auto;
  border: 5px solid #fff;
}

.tri-btn {
  margin:1rem 0 2rem;
  display:flex;
  justify-content:center;
}
.tri-btn a {
  background-color: #fff000;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 1em;
  letter-spacing: 0px;
  fill: #FFFFFF;
  color: #000000;
  border-style: solid;
  border-width: 3px;
  border-color: #000000;
  border-radius: 50px 50px 50px 50px;
  padding: 24px 42px 24px 42px;
  transition: all .9s ease;
}
.tri-btn a:hover, .tri-btn a:focus {
  background-color: #06182f;
  color: #ffffff;
}

@media screen and (min-width:767px) {
  .tri-btn {
    margin:3rem 0;
    display:flex;
    justify-content:center;
  }
}

.spn-nav-container .tri-btn a {
  background-color: #fff000;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
  text-decoration: none;
  line-height: 1em;
  letter-spacing: 0px;
  fill: #FFFFFF;
  color: #000000;
  border-style: solid;
  border-width: 2px;
  border-color: #000000;
  border-radius: 50px 50px 50px 50px;
  padding: 24px 42px 24px 42px;
  transition: all .9s ease;
}
.spn-nav-container .tri-btn a:hover, .spn-nav-container .tri-btn a:focus {
  background-color: #e3db54;
  color:#000000;
}

.spacer {
  width:12px;
  height:12px;
  background:#e0c632;
  border-radius:100%;
  margin:6rem auto;
  box-shadow:-60px 0 0 #e0c632, -30px 0 0 #e0c632, 30px 0 0 #e0c632, 60px 0 0 #e0c632;
}

.manga-tab-display:has(+ .manga-tab-display) {
  margin-bottom:2rem;
}

.manga-tab-display input {
  display:none;
}

.manga-tab-display .tab-list {
  display:flex;
  justify-content:center;
  gap:8px;
}

.manga-tab-display .tab-list label {
  font-size:16px;
  padding:10px 14px;
  background:#494949;
  color:#fff;
  letter-spacing:1px;
  border:2px solid #000;
  text-align:center;
  width:50%;
  align-self:flex-end;
  border-top-left-radius:12px;
  border-top-right-radius:12px;
}

.manga-tab-display .manga-detail div[class*="pattern"] {
  display:none;
/*  padding:1rem 0;*/
  max-width:800px;
  width:100%;
  margin:auto;
  border:2px solid #000;
  margin-top:-2px;
  background:#f9f3e7;
}

.manga-tab-display .manga-detail div[class*="pattern"] img {
  width:100%;
  margin:auto;
}

.manga-tab-display #pattern1:checked ~ .tab-list label[for=pattern1],
.manga-tab-display #pattern2:checked ~ .tab-list label[for=pattern2],
.manga-tab-display #pattern3:checked ~ .tab-list label[for=pattern3],
.manga-tab-display #pattern4:checked ~ .tab-list label[for=pattern4] {
  background:#d9c03b;
  border-bottom:0;
  padding:18px 14px;
  color:#000;
  font-weight:700;
}

.manga-tab-display #pattern1:checked ~ .manga-detail .pattern1-detail,
.manga-tab-display #pattern2:checked ~ .manga-detail .pattern2-detail,
.manga-tab-display #pattern3:checked ~ .manga-detail .pattern3-detail,
.manga-tab-display #pattern4:checked ~ .manga-detail .pattern4-detail {
  display:flex;
  flex-direction:column;
}

.icon-chumoku {
  display:block;
  width:100px;
  height:41px;
  background:url(../images/icon-chumoku.png);
  background-size:100%;
  background-repeat:no-repeat;
  margin: 0 auto 1rem;
}

.manga-tab-display .manga-detail p {
  background-image: repeating-linear-gradient(
  to bottom,
  transparent 0,
  transparent calc(1.6rem - 1px),
  #999 calc(1.6rem - 1px),
  #999 1.6em);
}

.service-used-lease ul {
  display:flex;
  flex-flow:row wrap;
  justify-content:center;
}
.service-used-lease ul li {
  width:100%;
  padding:1.4rem;
  border:1px solid #666;
  background-color: #eee;
  -webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
  box-shadow: inset 1px 1px 0px 0px #ffffff;
  display:flex;
  flex-flow:column wrap;
  margin-bottom:5px;
}
.service-used-lease ul li img {
  display:block;
  margin:0 auto 1rem;
  max-width:fit-content;
} 
.service-used-lease ul li h3 {
  font-size:1.4rem;
  margin-bottom:.5rem;
  text-align:center;
  color:#06182f;
}

@media screen and (min-width: 769px) {
  .service-used-lease ul {
    max-width:800px;
    margin:auto;
  }
  .service-used-lease ul li {
    width:calc((100% - 10px) / 2);
  }
  .service-used-lease ul li:nth-of-type(2n) {margin-left:10px;}
  .service-document table { width:calc((100% - 16px) / 2); float:left;}
  .service-document table + table { margin-top:0; margin-left:16px;}
  .service-document::after {
    content:"";
    display:block;
    clear:both;
  }
}


/*リース部分*/

.lease-truck-container {
  display:flex;
  flex-flow:row wrap;
}
.lease-truck-box {
  display:flex;
  flex-direction:column;
  width:100%;
  padding:.5rem;
  border:1px solid #ccc;
  margin-bottom:10px;
}
.lease-truck-box .box-header {
  width:100%;
  margin-bottom:3px;
}
.lease-truck-box .box-header span {
  display:inline-block;
  border:1px solid #0D367A;
  font-size:.8rem;
  padding:3px;
}
.lease-truck-box .box-header h2 {
  font-size:1rem;
  margin-bottom:0;
}
.lease-truck-box .box-body {
  display:flex;
  flex-flow:column wrap;
}
.lease-truck-box .box-body .box-img {
  margin:0 auto;
}
.lease-truck-box .box-body .box-feature {
  width:100%;
}
.lease-truck-box .box-body .box-feature .box-equipment dl {
  display:flex;
  flex-flow:row wrap;
  border:1px solid #ccc;
  font-size:.9rem;
}
.lease-truck-box .box-body .box-feature .box-equipment dl dt {
  width:100px;
  border-bottom:1px solid #ccc;
  background:#eee;
  padding:.4rem;
}
.lease-truck-box .box-body .box-feature .box-equipment dl dd {
  width:calc(100% - 100px);
  border-bottom:1px solid #ccc;
  padding:.4rem;
}
.lease-truck-box .box-body .box-feature .box-equipment dl dt:last-of-type, 
.lease-truck-box .box-body .box-feature .box-equipment dl dd:last-of-type {
  border:0;
}
.lease-truck-box .box-body .box-feature .box-price {
  font-size:.9rem;
  text-align:center;
  padding:.5rem;
}
.lease-truck-box .box-body .box-feature .box-price span:nth-of-type(1) {
  font-family:oswald;
  font-size:1.5rem;
  font-weight:700;
  color:#f44336;
  padding:0 .5rem;
}
.lease-truck-box .box-body .box-feature .box-price span:nth-of-type(2) {
  font-weight:700;
}
.lease-truck-box .box-body .box-feature .box-message {
  width:100%;
  margin-top:.5rem;
  padding:.5rem;
  border:1px solid #000;
  border-radius:.5rem;
  background:#ffc107;
  text-align:center;
  font-size:.9rem;
  font-weight:700;
  display:block;
}
.lease-truck-box .box-detail {
  margin-top:.5rem;
  font-size:.9rem;
  line-height:1.4;
}
@media screen and (min-width: 500px) {
  .lease-truck-box .box-body {
    display:flex;
    flex-flow:row wrap;
  }
  .lease-truck-box .box-body .box-feature {
    width:calc(100% - 240px);
    padding-left:5px;
  }
}
@media screen and (min-width: 1000px) {
  .lease-truck-box {
    width:calc((100% - 10px) / 2);
  }
  .lease-truck-box:nth-of-type(2n) {
    margin-left:10px;
  }
}
