@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;
}
#wrapper {
  width: 100%;
  overflow: hidden;
}
header {
  width: 100%;
  padding: 20px 4% 10px;
  background-color: transparent;
  position: fixed;
  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: #fffafa;
}
header ul {
  list-style: none;
  margin: 0;
  display: flex;
}
header li {
  margin: 0 0 0 20px;
  font-size: 16px;
  font-weight: normal;
}
nav {
  margin: 0 0 0 auto;
}
.slide-bottom {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.3s 0s ease-out;
}


.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);
}

.main-image {
  height: 100vh;
  width: 100%;
  background-image: url("./picture/DSC_0202.JPG");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}


.breadcrumb {
  margin: 5px 0 0 15px;
  padding: 0;
  list-style: none;
  display: 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;
}


.sub-title {
  font-size: 30px;
  text-align: center;
}
.fa-bus,.fa-map-marked-alt,.fa-yen-sign{
  color: #001e43;
}
.colum {
  display: flex;
  justify-content: center;
  text-align: center;
}
.bus,.support,.price{
  width: 350px;
  margin: 20px;
}
.covid-19 {
  background-color:orangered;
  width: 100%;
  height: 100%;
}
.covid-19 h3 {
  text-align: center;
  margin: 0 auto;
  padding: 20px 0 0 0;
  font-size: 20px;
  color: #f0f8ff;
}
.covid-list {
  display: flex;
  justify-content: center;
}
.covid-list li {
  width: 100%;
  font-size: 16px;
  margin: 0 0 10px 0;
  padding: 10px 10px;
  color: #f0f8ff;
}
footer {
  width: 100%;
  padding: 30px 4% 10px;
  background-color: whitesmoke;
}
.footer-div {
  display: flex;
  align-items: center;
}
.footer-logo {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1;
  color: #808080;
}
.footer-logo span {
  font-size: 14px;
  margin-right: 5px;
}
.footer-list a {
  text-decoration: none;
  color: #808080;
}
.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 {
  text-align: center;
  font-size: 14px;
  margin: 0;
  padding: 10px 0;
  background-color: whitesmoke;
}

.sp-list {
  display: none;
}
.sp-main-image {
  display: none;
}