@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
}
header {
  width: 100%;
  padding: 20px 4% 10px;
  background-color: whitesmoke;
  top: 0;
  display: flex;
  align-items: center;
}
header h1 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}
header h1 span {
  font-size: 15px;
}
header a {
  text-decoration: none;
  color: #696969;
}
header ul {
  list-style: none;
  margin: 0;
  display: flex;
}
header li {
  margin: 0 0 0 20px;
  font-size: 16px;
}
nav {
  margin: 0 0 0 auto;
}

.btn-hover {
  position: relative;
  display: inline-block;
  -webkit-transition: .8s;
  transition: .8s;
}

.btn-hover:hover {
  cursor: pointer;
  text-decoration: none;
}

.btn-hover::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #800000;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}

.btn-hover:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.breadcrumb {
  margin: 5px 0 0 15px;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: normal;
}

.breadcrumb li:after {
  content: '>';
  padding: 0 0.2em;
  color: #555;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #696969;
  font-size: 12px;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}
.icon {
  text-align: center;
}
.fa-bus {
  margin-top: 20px;
  color: #001e43;
}
main h2{
  border-bottom:1px solid #999999;
  color: #333;
  font-size: 32px;
  margin: 10px 0 0;
  padding: 0 0 8px;
  text-align: center;
}
.sub-title {
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
}
.bus {
  text-align: center;
  margin-top: 70px;
  background-color: #3a3a3a;
}
.bus p,h3{
  color: #f1f1f1;
  margin: 5px;
}
.isuzu {
  padding-top: 50px;
  margin-bottom: 60px;
}
.fuso {
  margin-bottom: 60px;
}
.toyota {
  padding-bottom: 60px;
}
.isuzu1,.isuzu2 {
  object-fit: cover;
  width: 300px;
  height: 200px;
  background-color: #ccc;
  border: 1px solid #ccc;
  margin: 15px;
}
.fuso1,.fuso2 {
  object-fit: cover;
  width: 300px;
  height: 200px;
  background-color: #ccc;
  border: 1px solid #ccc;
  margin: 15px;
}
.toyota1,.toyota2 {
  object-fit: cover;
  width: 300px;
  height: 200px;
  background-color: #ccc;
  border: 1px solid #ccc;
  margin: 15px;
}
footer {
  width: 100%;
  padding: 20px 4% 5px;
  background-color: whitesmoke;
}
.footer-div {
  display: flex;
  align-items: center;
}
.footer-logo {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1;
  color: #696969;
}
.footer-logo span {
  font-size: 14px;
  margin-right: 5px;
}
.footer-list a {
  text-decoration: none;
  color: #696969;
}
.footer-div ul {
  list-style: none;
  margin: 0;
  display: flex;
  margin: 0 0 0 auto;
}
.footer-div li {
  margin: 0 0 0 18px;
  font-size: 16px;
}
.last{
  background-color: whitesmoke;
  text-align: center;
  font-size: 14px;
  margin: 0;
  padding-bottom: 10px;
}
.sp-list {
  display: none;
}