@charset "UTF-8";
/*
Theme Name: ぶらやま
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
html,
body {
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  scroll-behavior: smooth;
  max-width: 800px;
  color: #374a56;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

img {
  vertical-align: top;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding-inline-start: 0;
}
nav ul li {
  cursor: pointer;
}

.title-image {
  margin-left: 3px;
}
@media screen and (max-width: 800px) {
  .title-image {
    height: 2.5vw;
  }
  .title-image img {
    height: 100%;
  }
}

.title {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  .title {
    font-size: 5.625vw;
    margin-bottom: 1.875vw;
  }
}

.title-line-short {
  width: 43px;
  border-bottom: 3px solid #227baa;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .title-line-short {
    width: 5.375vw;
  }
}

.right-arrow {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #227baa;
}
@media screen and (max-width: 800px) {
  .right-arrow {
    width: 3.75vw;
    height: 3.75vw;
    border-radius: 1.875vw;
  }
}
.right-arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  top: 11px;
  left: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  color: #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 800px) {
  .right-arrow::after {
    width: 0.75vw;
    height: 0.75vw;
    top: 1.375vw;
    left: 1.25vw;
    border-top: 0.375vw solid #fff;
    border-right: 0.375vw solid #fff;
  }
}

.toggle {
  display: none;
}

.more-btn {
  display: flex;
  max-width: 350px;
  height: 55px;
  margin: 0 auto;
  border: 1px solid #227baa;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.more-btn .more-btn-img {
  width: 63px;
  height: 21px;
  background-image: url("./images/more.png");
  background-size: cover;
}
@media screen and (max-width: 800px) {
  .more-btn .more-btn-img {
    width: 7.875vw;
    height: 2.625vw;
  }
}
@media screen and (max-width: 800px) {
  .more-btn {
    width: 45%;
    height: 6.875vw;
  }
}

header {
  position: relative;
  display: flex;
  height: 145px;
  align-items: center;
  background-color: #f1f1f1;
  z-index: 100;
}
@media screen and (max-width: 800px) {
  header {
    height: auto;
    padding: 5vw 0;
  }
}
header .logo {
  width: 270px;
  margin-left: 40px;
  margin-right: auto;
}
header .logo img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  header .logo {
    width: 34%;
    margin-left: 5%;
  }
}
header .language {
  display: flex;
  background-color: #dae0e3;
  color: #227baa;
  width: 100px;
  height: 45px;
  line-height: 45px;
  margin: 0 30px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  header .language {
    width: 12.5%;
    height: 5.6vw;
    line-height: 5.6vw;
    min-height: 25px;
    margin: 0 4%;
    padding: 0 1%;
  }
}
header .language img {
  margin-top: 3px;
  width: 80%;
}
header .toggle {
  display: none;
}
header .toggle:checked + .menu-btn .line-wrap {
  width: 45px;
  height: 45px;
  border-radius: 22.5px;
  background-color: #dae0e3;
}
@media screen and (max-width: 800px) {
  header .toggle:checked + .menu-btn .line-wrap {
    width: 5.6vw;
    height: 5.6vw;
    border-radius: 2.8vw;
  }
}
header .toggle:checked + .menu-btn .line-wrap span {
  width: 60%;
  top: 50%;
  left: 20%;
}
header .toggle:checked + .menu-btn .line-wrap span:nth-child(1) {
  transform: rotate(45deg);
}
header .toggle:checked + .menu-btn .line-wrap span:nth-child(2) {
  transform: rotate(-45deg);
}
header .toggle:checked + .menu-btn .text {
  opacity: 0;
  user-select: none;
}
header .toggle:checked + .menu-btn + .menu-bar {
  max-height: 2000px;
}
header .menu-btn {
  display: flex;
  position: relative;
  width: 60px;
  height: 60px;
  font-size: 12px;
  font-weight: bold;
  color: #227baa;
  margin: 0 30px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  header .menu-btn {
    height: 7.5vw;
    min-height: 50px;
    margin: 0 3%;
  }
}
header .menu-btn .line-wrap {
  position: absolute;
  width: inherit;
  height: inherit;
  transition: 0.3s;
  cursor: pointer;
}
header .menu-btn .line-wrap span {
  display: inline-block;
  position: absolute;
  width: 58%;
  height: 3px;
  background-color: #227baa;
  left: 10px;
  transition: 0.3s;
}
header .menu-btn .line-wrap span:nth-child(1) {
  top: 10%;
}
header .menu-btn .line-wrap span:nth-child(2) {
  top: 40%;
}
header .menu-btn .text {
  align-self: end;
  overflow: hidden;
  transition: 0.3s;
}
header .menu-bar {
  width: 100%;
  max-height: 0;
  position: absolute;
  top: 100%;
  overflow: hidden;
  transition: 0.5s;
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  header .menu-bar {
    font-size: 3.5vw;
  }
}
header .menu-bar .menu-information {
  background-color: #384857;
  color: #fff;
  padding: 45px 35px;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  header .menu-bar .menu-information {
    padding: 5.625vw 25px;
  }
}
header .menu-bar a span {
  transition: 0.3s;
}
header .menu-bar a:hover {
  opacity: 1;
}
header .menu-bar a:hover span {
  opacity: 0.3;
}
header .menu-bar .item-main {
  display: block;
  position: relative;
  background-color: #e8edf0;
  color: #384857;
  padding: 30px 35px;
  border-bottom: 1px solid #bbc4c9;
}
@media screen and (max-width: 800px) {
  header .menu-bar .item-main {
    padding: 3.75vw 25px;
  }
}
header .menu-bar .item-main:last-child {
  border-bottom: none;
}
header .menu-bar .item-main::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  right: 30px;
  top: 50%;
  border-top: 1px solid #384857;
  border-right: 1px solid #384857;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 800px) {
  header .menu-bar .item-main::after {
    width: 1.875vw;
    height: 1.875vw;
  }
}
header .menu-bar .item-sub {
  display: block;
  font-weight: bold;
  background-color: #dbe0e4;
  color: #384857;
  padding: 35px 25px;
  border-bottom: 1px solid #909ba4;
}
@media screen and (max-width: 800px) {
  header .menu-bar .item-sub {
    padding: 4.375vw 25px;
  }
}

section[id^=front-page-] .title-line {
  border-bottom: 3px solid #cdcdcd;
}
section[id^=front-page-] .title-line::after {
  display: block;
  content: "";
  position: absolute;
  width: 43px;
  border-bottom: 3px solid #227baa;
}
@media screen and (max-width: 800px) {
  section[id^=front-page-] .title-line::after {
    width: 5.375vw;
  }
}

#front-page-top {
  padding: 50px 0;
  background-color: #f1f1f1;
}
@media screen and (max-width: 800px) {
  #front-page-top {
    padding: 6.25vw 0;
  }
}
#front-page-top img {
  width: 100%;
}

#front-page-information {
  display: flex;
  height: 55px;
  line-height: 55px;
  color: #fff;
  background-color: #227baa;
  font-size: 20px;
  align-items: center;
}
@media screen and (max-width: 800px) {
  #front-page-information img {
    width: 3.125vw;
  }
}
@media screen and (max-width: 800px) {
  #front-page-information {
    font-size: 2.5vw;
    height: 6.875vw;
    line-height: 6.875vw;
  }
}
#front-page-information .information {
  margin: 0 20px;
}
@media screen and (max-width: 800px) {
  #front-page-information .information {
    margin: 0 2.5vw;
  }
}

#front-page-top-menu {
  padding: 0 40px 50px;
  background-color: #f1f1f1;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu {
    padding: 0 5vw 50px;
  }
}
#front-page-top-menu nav:has(+ .toggle:checked) .items .item:nth-child(n+9) {
  max-height: 400px;
  margin-bottom: 50px;
}
#front-page-top-menu nav:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
  width: 69px;
  height: 20px;
  background-image: url("./images/close.png");
}
@media screen and (max-width: 800px) {
  #front-page-top-menu nav:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
    width: 8.625vw;
    height: 2.5vw;
  }
}
#front-page-top-menu nav .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#front-page-top-menu nav .items .item {
  width: 30%;
  margin-bottom: 50px;
  transition: 0.3s;
  overflow: hidden;
}
#front-page-top-menu nav .items .item:nth-child(4) {
  margin-left: 10%;
}
#front-page-top-menu nav .items .item:nth-child(5) {
  margin-right: 10%;
}
#front-page-top-menu nav .items .item:nth-child(n+9) {
  max-height: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu nav .items .item {
    margin-bottom: 6.25vw;
  }
}
#front-page-top-menu nav .items .item .image {
  display: flex;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 20%;
  padding: 15px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu nav .items .item .image {
    padding: 1.875vw;
  }
}
#front-page-top-menu nav .items .item .image img.bus {
  width: 100%;
}
#front-page-top-menu nav .items .item .image img.taxi {
  margin-top: -15px;
  width: 80%;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu nav .items .item .image img.taxi {
    margin-top: -1.875vw;
  }
}
#front-page-top-menu nav .items .item .image img.set-taxi {
  margin-top: -15px;
  width: 80%;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu nav .items .item .image img.set-taxi {
    margin-top: -1.875vw;
  }
}
#front-page-top-menu nav .items .item .image img.driving-agency {
  margin-top: -15px;
  width: 80%;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu nav .items .item .image img.driving-agency {
    margin-top: -1.875vw;
  }
}
#front-page-top-menu nav .items .item .image img.share-cycle {
  width: 100%;
}
#front-page-top-menu nav .items .item .image img.electric-bike {
  width: 100%;
}
#front-page-top-menu nav .items .item .image img.car-share {
  width: 90%;
}
#front-page-top-menu nav .items .item .image img.rental-car {
  width: 60%;
}
#front-page-top-menu nav .items .item .image img.railway {
  width: 60%;
}
#front-page-top-menu nav .items .item .text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  margin-top: 10px;
  font-weight: bold;
}
#front-page-top-menu nav .items .item .text span {
  margin-left: 10px;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu nav .items .item .text {
    font-size: 2.375vw;
  }
}
#front-page-top-menu nav .items .item .text::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 3px solid #a9c8d8;
  border-right: 3px solid #a9c8d8;
  transform: rotate(45deg);
}
@media screen and (max-width: 800px) {
  #front-page-top-menu nav .items .item .text::before {
    border-top: 2px solid #a9c8d8;
    border-right: 2px solid #a9c8d8;
  }
}
#front-page-top-menu .search-btn {
  display: flex;
  position: relative;
  height: 90px;
  border-radius: 45px;
  background-color: #f18b2d;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin: 100px 0;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu .search-btn {
    height: 11.25vw;
    border-radius: 5.625vw;
    font-size: 4vw;
    margin: 12.5vw 0;
  }
}
#front-page-top-menu .search-btn img {
  width: 35px;
  margin-right: 10px;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu .search-btn img {
    width: 4.375vw;
  }
}
#front-page-top-menu .search-btn::after {
  display: block;
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  right: 40px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 800px) {
  #front-page-top-menu .search-btn::after {
    width: 1.875vw;
    height: 1.875vw;
    right: 5vw;
  }
}
#front-page-top-menu .move {
  display: flex;
  justify-content: space-between;
}
#front-page-top-menu .move .item {
  display: block;
  position: relative;
  width: 47%;
  aspect-ratio: 5/6;
  color: #227baa;
  text-align: center;
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  font-weight: bold;
}
#front-page-top-menu .move .item img {
  width: 100%;
  aspect-ratio: 7/5;
  object-fit: cover;
}
#front-page-top-menu .move .item .text {
  margin-top: 10px;
  font-size: 26px;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu .move .item .text {
    font-size: 3.25vw;
  }
}
#front-page-top-menu .move .item .sub-text {
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  #front-page-top-menu .move .item .sub-text {
    font-size: 2.5vw;
  }
}
#front-page-top-menu .move .item .right-arrow {
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  #front-page-top-menu .move .item .right-arrow {
    bottom: 3.125vw;
  }
}

#front-page-news {
  background-color: #fff;
  padding: 0 30px;
  margin: 100px 0 120px;
}
@media screen and (max-width: 800px) {
  #front-page-news {
    margin: 12.5vw 0 15vw;
  }
}
#front-page-news .news-list {
  margin: 50px 0 100px;
}
@media screen and (max-width: 800px) {
  #front-page-news .news-list {
    margin: 6.25vw 0 12.5vw;
  }
}
#front-page-news .news-list:has(+ .toggle:checked) article:nth-child(n+2) {
  max-height: 300px;
}
#front-page-news .news-list:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
  width: 69px;
  height: 20px;
  background-image: url("./images/close.png");
}
@media screen and (max-width: 800px) {
  #front-page-news .news-list:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
    width: 8.625vw;
    height: 2.5vw;
  }
}
#front-page-news .news-list article {
  overflow: hidden;
  transition: 0.3s;
}
#front-page-news .news-list article:nth-child(n+3) {
  max-height: 0;
}
#front-page-news .news-list article .article-information {
  display: block;
  position: relative;
  border-bottom: 1px dotted #e5e5e5;
  font-size: 24px;
  padding: 20px 0;
}
@media screen and (max-width: 800px) {
  #front-page-news .news-list article .article-information {
    font-size: 3vw;
    padding: 2.5vw 0;
  }
}
#front-page-news .news-list article .article-information .article-date {
  color: #227baa;
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  #front-page-news .news-list article .article-information .article-date {
    margin-bottom: 1.25vw;
  }
}
#front-page-news .news-list article .article-information .article-title {
  width: 85%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  #front-page-news .news-list article .article-information .article-title {
    margin-bottom: 2.5vw;
  }
}
#front-page-news .news-list article .article-information .right-arrow {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

#front-page-station {
  background-color: #f1f1f1;
  padding: 100px 30px;
  margin: 100px 15px;
  border-radius: 30px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #front-page-station {
    margin: 12.5vw 15px;
    padding: 12.5vw 3.75vw;
  }
}
#front-page-station .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0;
}
@media screen and (max-width: 800px) {
  #front-page-station .items {
    margin: 6.25vw 0;
  }
}
#front-page-station .items:has(+ .toggle:checked) .item:nth-child(n+5) {
  max-height: 200px;
  padding: 20px 0;
  margin-bottom: 20px;
  border: 1px solid #d6d6d6;
}
@media screen and (max-width: 800px) {
  #front-page-station .items:has(+ .toggle:checked) .item:nth-child(n+5) {
    padding: 2.5vw 0;
    margin-bottom: 2.5vw;
  }
}
#front-page-station .items:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
  width: 69px;
  height: 20px;
  background-image: url("./images/close.png");
}
@media screen and (max-width: 800px) {
  #front-page-station .items:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
    width: 8.625vw;
    height: 2.5vw;
  }
}
#front-page-station .items .item {
  width: 48%;
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  overflow: hidden;
}
#front-page-station .items .item:nth-child(n+5) {
  max-height: 0;
  margin-bottom: 0;
  padding: 0;
  border: none;
}
@media screen and (max-width: 800px) {
  #front-page-station .items .item {
    padding: 2.5vw 0;
    margin-bottom: 2.5vw;
    font-size: 3.25vw;
  }
}

#front-page-facility {
  background-color: #f1f1f1;
  padding: 100px 30px;
  margin: 100px 15px;
  border-radius: 30px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #front-page-facility {
    margin: 12.5vw 15px;
    padding: 12.5vw 3.75vw;
  }
}
#front-page-facility .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0;
}
@media screen and (max-width: 800px) {
  #front-page-facility .items {
    margin: 6.25vw 0;
  }
}
#front-page-facility .items:has(+ .toggle:checked) .item:nth-child(n+5) {
  max-height: 200px;
  padding: 20px 0;
  margin-bottom: 20px;
  border: 1px solid #d6d6d6;
}
@media screen and (max-width: 800px) {
  #front-page-facility .items:has(+ .toggle:checked) .item:nth-child(n+5) {
    padding: 2.5vw 0;
    margin-bottom: 2.5vw;
  }
}
#front-page-facility .items:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
  width: 69px;
  height: 20px;
  background-image: url("./images/close.png");
}
@media screen and (max-width: 800px) {
  #front-page-facility .items:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
    width: 8.625vw;
    height: 2.5vw;
  }
}
#front-page-facility .items .item {
  width: 48%;
  background-color: #fff;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  overflow: hidden;
}
#front-page-facility .items .item:nth-child(n+5) {
  max-height: 0;
  margin-bottom: 0;
  padding: 0;
  border: none;
}
@media screen and (max-width: 800px) {
  #front-page-facility .items .item {
    padding: 2.5vw 0;
    margin-bottom: 2.5vw;
    font-size: 3.25vw;
  }
}

#front-page-value {
  padding: 0 20px;
  margin: 150px 0;
}
@media screen and (max-width: 800px) {
  #front-page-value {
    margin: 18.75vw 0 25vw;
  }
}
#front-page-value .service-list {
  margin: 80px 0;
}
@media screen and (max-width: 800px) {
  #front-page-value .service-list {
    margin: 10vw 0;
  }
}
#front-page-value .service-list:has(+ .toggle:checked) article:nth-child(n+2) {
  max-height: 400px;
}
#front-page-value .service-list:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
  width: 69px;
  height: 20px;
  background-image: url("./images/close.png");
}
@media screen and (max-width: 800px) {
  #front-page-value .service-list:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
    width: 8.625vw;
    height: 2.5vw;
  }
}
#front-page-value .service-list article {
  overflow-y: clip;
  transition: 0.3s;
}
#front-page-value .service-list article:nth-child(n+3) {
  max-height: 0;
}
#front-page-value .service-list article .article {
  display: flex;
  position: relative;
  justify-content: space-between;
  background-color: #f1f1f1;
  border-radius: 30px;
  padding: 30px 50px 30px 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
  #front-page-value .service-list article .article {
    padding: 3.75vw 6.25vw 3.75vw 3.75vw;
    margin-bottom: 6.25vw;
  }
}
#front-page-value .service-list article .article .article-image {
  width: 35%;
}
#front-page-value .service-list article .article .article-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 30px;
}
#front-page-value .service-list article .article .article-information {
  width: 60%;
}
#front-page-value .service-list article .article .article-information .article-title {
  color: #227baa;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  #front-page-value .service-list article .article .article-information .article-title {
    margin-bottom: 3.125vw;
    font-size: 3.5vw;
  }
}
#front-page-value .service-list article .article .article-information .article-overview {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 25px;
  font-size: 24px;
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  #front-page-value .service-list article .article .article-information .article-overview {
    margin-bottom: 3.125vw;
    margin-top: 5vw;
    font-size: 3vw;
  }
}
#front-page-value .service-list article .article .article-information .article-overview.first {
  -webkit-line-clamp: 1;
  margin-top: 0;
}
#front-page-value .service-list article .article .article-information .article-remarks {
  display: inline-block;
  font-size: 24px;
  padding: 0 5px;
  background-color: #fff;
  color: #227baa;
}
@media screen and (max-width: 800px) {
  #front-page-value .service-list article .article .article-information .article-remarks {
    font-size: 3vw;
  }
}
#front-page-value .service-list article .article .right-arrow {
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(50%);
}
#front-page-value .more-btn {
  margin-bottom: 150px;
}
@media screen and (max-width: 800px) {
  #front-page-value .more-btn {
    margin-bottom: 18.75vw;
  }
}
#front-page-value .information-btn {
  display: flex;
  position: relative;
  height: 90px;
  border-radius: 45px;
  background-color: #227baa;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}
@media screen and (max-width: 800px) {
  #front-page-value .information-btn {
    height: 11.25vw;
    border-radius: 5.625vw;
    font-size: 4vw;
    margin: 6.25vw 0;
  }
}
#front-page-value .information-btn img {
  position: absolute;
  width: 25px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  #front-page-value .information-btn img {
    width: 3.125vw;
  }
}

#front-page-find {
  padding: 0 20px;
  margin: 150px 0 200px;
}
@media screen and (max-width: 800px) {
  #front-page-find {
    margin: 18.75vw 0 25vw;
  }
}
#front-page-find .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0;
}
#front-page-find .items .item {
  display: block;
  position: relative;
  width: calc(46% - 60px);
  border-radius: 30px;
  color: #227baa;
  background-color: #f1f1f1;
  padding: 30px;
  margin-bottom: 50px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  #front-page-find .items .item {
    width: calc(46% - 7.5vw);
    padding: 3.75vw;
    font-size: 3.5vw;
    margin-bottom: 6.25vw;
  }
}
#front-page-find .items .item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 30px;
  margin-bottom: 10px;
}
#front-page-find .items .item .right-arrow {
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(50%);
}

#page-content {
  line-height: 1.8;
}
#page-content .page-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 800px) {
  #page-content .page-title {
    font-size: 4.75vw;
  }
}
#page-content .date {
  font-size: 24px;
  color: #227baa;
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  #page-content .date {
    font-size: 3vw;
    margin-bottom: 1.25vw;
  }
}
#page-content .title-line {
  border-bottom: 3px solid #cdcdcd;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  #page-content .title-line {
    margin-bottom: 5vw;
  }
}
#page-content .title-line::after {
  display: block;
  content: "";
  position: absolute;
  width: 43px;
  border-bottom: 3px solid #227baa;
}
#page-content a {
  color: #227baa;
  text-decoration: underline;
  text-underline-offset: 5px;
}
#page-content p {
  font-size: 26px;
}
@media screen and (max-width: 800px) {
  #page-content p {
    font-size: 3.25vw;
  }
}
#page-content .underline {
  text-decoration: underline;
}
#page-content .red {
  color: #f00;
}
#page-content aside {
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  #page-content aside {
    font-size: 2.5vw;
  }
}
#page-content .btn {
  display: flex;
  position: relative;
  height: 90px;
  border-radius: 45px;
  background-color: #227baa;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  #page-content .btn {
    height: 11.25vw;
    border-radius: 5.625vw;
    font-size: 4vw;
    margin: 6.25vw 0;
  }
}
#page-content .btn.arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 6%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 800px) {
  #page-content .btn.arrow::after {
    width: 1.875vw;
    height: 1.875vw;
  }
}
#page-content .btn.margin {
  margin-top: 150px;
}
@media screen and (max-width: 800px) {
  #page-content .btn.margin {
    margin-top: 18.75vw;
  }
}
#page-content .btn.gray {
  background-color: #8d8d8d;
}
#page-content .btn.black {
  background-color: #474747;
}
#page-content .btn.half {
  width: 48%;
}
#page-content .btn.half.arrow::after {
  right: 12%;
}
#page-content .page-header {
  display: flex;
  height: 255px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 44px;
  font-weight: bold;
  background-size: cover;
  background-position: center;
  padding: 0 30px;
}
#page-content .page-header.no-my-car {
  background-image: url("./images/page-header1.png");
}
@media screen and (max-width: 800px) {
  #page-content .page-header {
    height: 31.875vw;
    font-size: 5.5vw;
  }
}
#page-content .page-content-inner {
  margin: 50px 30px;
}
#page-content .page-content-inner section {
  margin-bottom: 150px;
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner section {
    margin-bottom: 18.75vw;
  }
}
#page-content .page-content-inner .sub-header {
  font-size: 36px;
  font-weight: 700;
  padding: 10px 25px;
  margin: 20px 0 40px;
  background-color: #f1f2f0;
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner .sub-header {
    font-size: 4.5vw;
    padding: 1.25vw 3.125vw;
    margin: 2.5vw 0 5vw;
  }
}
#page-content .page-content-inner .sub-title {
  border-left: 5px solid #227baa;
  font-size: 34px;
  font-weight: 700;
  padding-left: 15px;
  margin: 40px 0;
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner .sub-title {
    font-size: 4.25vw;
    padding-left: 1.875vw;
    margin: 5vw 0;
  }
}
#page-content .page-content-inner .item {
  display: inline-flex;
  font-size: 30px;
  font-weight: 700;
  margin-left: 10px;
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner .item {
    font-size: 3.75vw;
    margin-left: 1.25vw;
  }
}
#page-content .page-content-inner .item .item-before {
  display: inline-block;
  position: relative;
  min-width: 30px;
  min-height: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #227baa;
  margin-right: 15px;
  margin-top: 15px;
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner .item .item-before {
    min-width: 3.75vw;
    min-height: 3.75vw;
    height: 3.75vw;
    border-radius: 1.875vw;
    margin-right: 1.875vw;
    margin-top: 1.875vw;
  }
}
#page-content .page-content-inner .item .item-before::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  top: 11px;
  left: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  color: #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner .item .item-before::before {
    border-top: 0.375vw solid #fff;
    border-right: 0.375vw solid #fff;
    width: 0.75vw;
    height: 0.75vw;
    top: 1.375vw;
    left: 1.25vw;
  }
}
#page-content .page-content-inner .margin-img {
  width: calc(100% - 40px);
  margin: 20px;
}
#page-content .page-content-inner .number-img {
  width: 45px;
  margin: 20px 0;
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner .number-img {
    width: 3.75vw;
    margin: 2.5vw 0;
  }
}
#page-content .page-content-inner .single-top-back-btn {
  display: flex;
  position: relative;
  margin-bottom: 10px;
  color: #3c3c3c;
  text-decoration: none;
  align-items: center;
}
#page-content .page-content-inner .single-top-back-btn span {
  margin-left: 50px;
  font-size: 30px;
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner .single-top-back-btn span {
    font-size: 3.75vw;
    margin-left: 6.25vw;
  }
}
#page-content .page-content-inner .single-top-back-btn::before {
  display: block;
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 5px;
  border-top: 3px solid #7f7f7f;
  border-left: 3px solid #7f7f7f;
  margin-left: 10px;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner .single-top-back-btn::before {
    width: 1.875vw;
    height: 1.875vw;
    border-top: 0.375vw solid #7f7f7f;
    border-left: 0.375vw solid #7f7f7f;
    margin-left: 1.25vw;
  }
}
#page-content .page-content-inner .single {
  font-size: 24px;
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner .single {
    font-size: 3vw;
  }
}
#page-content .page-content-inner .single img {
  width: 100%;
  margin: 0 0 20px;
}
#page-content .page-content-inner .single .back-btn {
  display: block;
  width: 350px;
  height: 60px;
  line-height: 60px;
  margin: 300px auto 0;
  border: 1px solid #227baa;
  text-decoration: none;
  text-align: center;
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner .single .back-btn {
    width: 45%;
    height: 7.5vw;
    line-height: 7.5vw;
    font-size: 3.5vw;
    margin: 37.5vw auto 0;
  }
}
@media screen and (max-width: 800px) {
  #page-content .page-content-inner {
    margin: 6.25vw 30px;
  }
}
#page-content.recruitment {
  margin: 80px 0;
}
@media screen and (max-width: 800px) {
  #page-content.recruitment {
    margin: 10vw 0;
  }
}
#page-content.recruitment .sub-header {
  font-size: 28px;
  font-weight: bold;
  color: #227baa;
  background-color: #f1f1f1;
  padding: 10px;
}
@media screen and (max-width: 800px) {
  #page-content.recruitment .sub-header {
    font-size: 3.5vw;
  }
}
#page-content.recruitment .inner-text {
  margin: 10px;
}
#page-content.recruitment .inner-text .application-method {
  margin-bottom: 30px;
  font-size: 26px;
}
@media screen and (max-width: 800px) {
  #page-content.recruitment .inner-text .application-method {
    font-size: 3.25vw;
    margin-bottom: 3.75vw;
  }
}
#page-content.taxi .title-line {
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  #page-content.taxi .title-line {
    margin-bottom: 1.25vw;
  }
}
#page-content.taxi aside {
  text-align: right;
  font-size: 22px;
  margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
  #page-content.taxi aside {
    font-size: 2.75vw;
    margin-bottom: 6.25vw;
  }
}
#page-content.taxi .image {
  width: 100%;
  margin: 60px 0;
}
@media screen and (max-width: 800px) {
  #page-content.taxi .image {
    margin: 7.5vw 0;
  }
}
#page-content.taxi .taxi-list {
  margin: 30px 0;
}
@media screen and (max-width: 800px) {
  #page-content.taxi .taxi-list {
    margin: 3.75vw 0;
  }
}
#page-content.taxi .taxi-list .taxi-company {
  display: flex;
  height: 120px;
  line-height: 120px;
  padding: 0 10px 0 30px;
  border-bottom: 1px solid #bcc3ca;
  background-color: #e7ecf0;
  justify-content: space-between;
  font-size: 24px;
}
#page-content.taxi .taxi-list .taxi-company:last-child {
  border-bottom: none;
}
@media screen and (max-width: 800px) {
  #page-content.taxi .taxi-list .taxi-company {
    height: 15vw;
    line-height: 15vw;
    padding: 0 1.25vw 0 3.75vw;
    font-size: 3vw;
  }
}
#page-content.taxi .taxi-list .taxi-company .taxi-buttons {
  display: flex;
  align-items: center;
}
#page-content.taxi .taxi-list .taxi-company .taxi-buttons .taxi-btn {
  display: block;
  width: 100px;
  height: 70px;
  line-height: 70px;
  border-radius: 10px;
  margin: 0 10px;
  text-decoration: none;
  text-align: center;
}
#page-content.taxi .taxi-list .taxi-company .taxi-buttons .taxi-btn.tel {
  color: #fff;
  background-color: #374957;
}
#page-content.taxi .taxi-list .taxi-company .taxi-buttons .taxi-btn.more {
  color: #374957;
  background-color: #fff;
  border: 1px solid #374957;
}
@media screen and (max-width: 800px) {
  #page-content.taxi .taxi-list .taxi-company .taxi-buttons .taxi-btn {
    width: 12.5vw;
    height: 8.75vw;
    line-height: 8.75vw;
    border-radius: 1.25vw;
    margin: 0 1.25vw;
  }
}
#page-content.bus .modal-cover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6666666667);
}
#page-content.bus .modal {
  display: none;
  position: fixed;
  width: calc(80vw - 60px);
  background-color: #fff;
  padding: 30px;
  top: 50%;
  left: 10vw;
  transform: translateY(-50%);
  z-index: 200;
}
#page-content.bus a {
  text-decoration: none;
}
#page-content.bus .title-line {
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  #page-content.bus .title-line {
    margin-bottom: 1.25vw;
  }
}
#page-content.bus aside {
  text-align: right;
  font-size: 22px;
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  #page-content.bus aside {
    font-size: 2.75vw;
    margin-bottom: 7.5vw;
  }
}
#page-content.bus .bus-image {
  width: 40%;
  margin: 10px 0;
}
#page-content.bus .buttons {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}
@media screen and (max-width: 800px) {
  #page-content.bus .buttons {
    margin: 6.25vw 0;
  }
}
#page-content.bus .buttons .btn {
  margin: 0;
}
#page-content.bus .btn {
  font-weight: 400;
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  #page-content.bus .btn {
    font-size: 3.5vw;
  }
}
#page-content.bus .kome {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  #page-content.bus .kome {
    font-size: 2.25vw;
    margin-bottom: 1.25vw;
  }
}
#page-content.bus .modal-link {
  color: #227baa;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-align: center;
  font-size: 28px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  #page-content.bus .modal-link {
    font-size: 3.5vw;
  }
}
#page-content.bus .service-list {
  margin: 80px 0;
}
@media screen and (max-width: 800px) {
  #page-content.bus .service-list {
    margin: 10vw 0;
  }
}
#page-content.bus .service-list:has(+ .toggle:checked) article:nth-child(n+2) {
  max-height: 400px;
}
#page-content.bus .service-list:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
  width: 69px;
  height: 20px;
  background-image: url("./images/close.png");
}
@media screen and (max-width: 800px) {
  #page-content.bus .service-list:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
    width: 8.625vw;
    height: 2.5vw;
  }
}
#page-content.bus .service-list article {
  overflow-y: clip;
  transition: 0.3s;
}
#page-content.bus .service-list article .article {
  display: flex;
  position: relative;
  justify-content: space-between;
  background-color: #f1f1f1;
  border-radius: 30px;
  padding: 30px 50px 30px 30px;
  margin-bottom: 50px;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  #page-content.bus .service-list article .article {
    padding: 3.75vw 6.25vw 3.75vw 3.75vw;
    margin-bottom: 6.25vw;
  }
}
#page-content.bus .service-list article .article .article-image {
  width: 35%;
}
#page-content.bus .service-list article .article .article-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 30px;
}
#page-content.bus .service-list article .article .article-information {
  width: 60%;
}
#page-content.bus .service-list article .article .article-information .article-title {
  color: #227baa;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  #page-content.bus .service-list article .article .article-information .article-title {
    margin-bottom: 3.125vw;
    font-size: 3.5vw;
  }
}
#page-content.bus .service-list article .article .article-information .article-overview {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 25px;
  font-size: 24px;
  margin-top: 40px;
  color: #374a56;
}
@media screen and (max-width: 800px) {
  #page-content.bus .service-list article .article .article-information .article-overview {
    margin-bottom: 3.125vw;
    margin-top: 5vw;
    font-size: 3vw;
  }
}
#page-content.bus .service-list article .article .article-information .article-overview.first {
  -webkit-line-clamp: 1;
  margin-top: 0;
}
#page-content.bus .service-list article .article .article-information .article-remarks {
  display: inline-block;
  font-size: 24px;
  padding: 0 5px;
  background-color: #fff;
  color: #227baa;
}
@media screen and (max-width: 800px) {
  #page-content.bus .service-list article .article .article-information .article-remarks {
    font-size: 3vw;
  }
}
#page-content.bus .service-list article .article .right-arrow {
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(50%);
}
#page-content.bus .more-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  margin: 40px 0;
}
@media screen and (max-width: 800px) {
  #page-content.bus .more-content {
    margin: 5vw 0;
  }
}
#page-content.bus .more-content:has(+ .toggle:checked) {
  max-height: 500px;
}
#page-content.bus .more-content + .toggle:checked + .more-btn .more-btn-img {
  width: 69px;
  height: 20px;
  background-image: url("./images/close.png");
}
@media screen and (max-width: 800px) {
  #page-content.bus .more-content + .toggle:checked + .more-btn .more-btn-img {
    width: 8.625vw;
    height: 2.5vw;
  }
}
#page-content.bus .wrap {
  margin-bottom: 100px;
}
@media screen and (max-width: 800px) {
  #page-content.bus .wrap {
    margin-bottom: 12.5vw;
  }
}
#page-content.shared-cycle .modal-cover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6666666667);
}
#page-content.shared-cycle .modal-cover.active {
  display: block;
}
#page-content.shared-cycle .modals {
  display: none;
  position: fixed;
  width: 100vw;
  top: 10%;
  left: 0;
  z-index: 200;
}
#page-content.shared-cycle .modals.active {
  display: block;
}
#page-content.shared-cycle .modals .modal {
  display: none;
  position: relative;
  max-width: 800px;
  width: 80vw;
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
}
#page-content.shared-cycle .modals .modal.active {
  display: block;
}
#page-content.shared-cycle .modals .modal .title {
  font-size: 36px;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .modals .modal .title {
    font-size: 4.5vw;
  }
}
#page-content.shared-cycle .modals .modal img {
  width: 100%;
}
#page-content.shared-cycle .modals .modal .text {
  font-size: 28px;
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .modals .modal .text {
    font-size: 3.5vw;
    margin-top: 2.5vw;
  }
}
#page-content.shared-cycle .modals .modal .map {
  display: block;
  max-width: 266.6666666667px;
  width: 40%;
  margin: 0 auto;
  background-color: #fff;
  color: #00669d;
  border: 1px solid #00669d;
  text-align: center;
  font-size: 22px;
  text-decoration: none;
  margin-top: 50px;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .modals .modal .map {
    font-size: 2.75vw;
    margin-top: 6.25vw;
  }
}
#page-content.shared-cycle .modals .modal .map span {
  transition: 0.3s;
}
#page-content.shared-cycle .modals .modal .map:hover {
  opacity: 1;
}
#page-content.shared-cycle .modals .modal .map:hover span {
  opacity: 0.3;
}
#page-content.shared-cycle .modals .modal .close {
  position: absolute;
  right: 0;
  font-size: 48px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .modals .modal .close {
    font-size: 6vw;
  }
}
#page-content.shared-cycle .page-content-inner {
  position: relative;
}
#page-content.shared-cycle .page-content-inner .title-line {
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .title-line {
    margin-bottom: 1.25vw;
  }
}
#page-content.shared-cycle .page-content-inner aside {
  text-align: right;
  font-size: 22px;
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner aside {
    font-size: 2.75vw;
    margin-bottom: 7.5vw;
  }
}
#page-content.shared-cycle .page-content-inner .tabs {
  display: flex;
  position: relative;
  z-index: 10;
}
#page-content.shared-cycle .page-content-inner .tabs .tab {
  width: 32%;
  margin-right: auto;
  border: 1px solid #374957;
  border-radius: 15px 15px 0 0;
  color: #fff;
  background-color: #374957;
  text-align: center;
  font-size: 30px;
  padding: 20px 0;
  cursor: pointer;
}
#page-content.shared-cycle .page-content-inner .tabs .tab:last-child {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .tabs .tab {
    font-size: 3.75vw;
    padding: 2.5vw 0;
    border-radius: 1.875vw 1.875vw 0 0;
  }
}
#page-content.shared-cycle .page-content-inner .tabs .tab.active {
  color: #374957;
  background-color: #fff;
  border-bottom: #fff;
}
#page-content.shared-cycle .page-content-inner .tab-border {
  position: absolute;
  width: 100%;
  height: 1px;
  z-index: 5;
  margin-top: -1px;
  background-color: #374957;
}
#page-content.shared-cycle .page-content-inner .contents {
  margin-top: 50px;
  font-size: 23px;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .contents {
    margin-top: 6.25vw;
    font-size: 2.875vw;
  }
}
#page-content.shared-cycle .page-content-inner .contents .content {
  display: none;
}
#page-content.shared-cycle .page-content-inner .contents .content.active {
  display: block;
}
#page-content.shared-cycle .page-content-inner .contents .content.service img {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .contents .content.service img {
    margin-bottom: 6.25vw;
  }
}
#page-content.shared-cycle .page-content-inner .contents .content.service section {
  margin-bottom: 100px;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .contents .content.service section {
    margin-bottom: 12.5vw;
  }
}
#page-content.shared-cycle .page-content-inner .contents .content.service section .margin {
  height: 0.5em;
}
#page-content.shared-cycle .page-content-inner .contents .content.service section .btn {
  margin-top: 100px;
  background-color: #04a140;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .contents .content.service section .btn {
    margin-top: 12.5vw;
  }
}
#page-content.shared-cycle .page-content-inner .contents .content.service .sub-header {
  font-size: 36px;
  font-weight: 700;
  padding: 10px 25px;
  margin: 20px 0 40px;
  background-color: #f1f2f0;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .contents .content.service .sub-header {
    font-size: 4.5vw;
    padding: 1.25vw 3.125vw;
    margin: 2.5vw 0 5vw;
  }
}
#page-content.shared-cycle .page-content-inner .contents .content.port .items .item {
  position: relative;
  background-color: #e8edf0;
  border-bottom: 1px solid #bbc4cb;
  font-size: 30px;
  padding: 40px 40px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .contents .content.port .items .item {
    font-size: 3.75vw;
    padding: 5vw 5vw;
  }
}
#page-content.shared-cycle .page-content-inner .contents .content.port .items .item::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 2px solid #364857;
  border-right: 2px solid #364857;
  top: 50%;
  right: 6%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .contents .content.port .items .item::after {
    width: 1.875vw;
    height: 1.875vw;
  }
}
#page-content.shared-cycle .page-content-inner .contents .content.map .image {
  width: 100%;
}
#page-content.shared-cycle .page-content-inner .contents .content.map .cycles {
  margin: 50px 0;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .contents .content.map .cycles {
    margin: 6.25vw 0;
  }
}
#page-content.shared-cycle .page-content-inner .contents .content.map .cycles .cycle {
  position: relative;
  border-bottom: 1px solid #bbc4cb;
  font-size: 30px;
  padding: 40px 40px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .contents .content.map .cycles .cycle {
    font-size: 3.75vw;
    padding: 5vw 5vw;
  }
}
#page-content.shared-cycle .page-content-inner .contents .content.map .cycles .cycle::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 2px solid #364857;
  border-right: 2px solid #364857;
  top: 50%;
  right: 6%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner .contents .content.map .cycles .cycle::after {
    width: 1.875vw;
    height: 1.875vw;
  }
}
#page-content.shared-cycle .page-content-inner p {
  font-size: 23px;
}
@media screen and (max-width: 800px) {
  #page-content.shared-cycle .page-content-inner p {
    font-size: 2.875vw;
  }
}
#page-content.norutoku aside {
  text-align: right;
  font-size: 22px;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  #page-content.norutoku aside {
    font-size: 2.75vw;
    margin-bottom: 3.75vw;
  }
}
#page-content.norutoku img {
  width: 100%;
}
#page-content.norutoku .large {
  font-size: 36px;
  font-weight: 700;
  margin: 50px 0 30px;
}
@media screen and (max-width: 800px) {
  #page-content.norutoku .large {
    font-size: 4.5vw;
    margin: 6.25vw 0 3.75vw;
  }
}
#page-content.norutoku .text {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 80px;
}
#page-content.norutoku .text.inner {
  margin-left: 1em;
}
@media screen and (max-width: 800px) {
  #page-content.norutoku .text {
    font-size: 2.875vw;
    margin-bottom: 10vw;
  }
}
#page-content.norutoku .item {
  font-size: 30px;
  font-weight: 700;
  padding: 10px 25px;
  margin: 80px 0 20px;
  background-color: #f1f2f0;
}
@media screen and (max-width: 800px) {
  #page-content.norutoku .item {
    font-size: 3.75vw;
    padding: 1.25vw 3.125vw;
    margin: 10vw 0 2.5vw;
  }
}
#page-content.norutoku .sub-header {
  font-size: 36px;
  font-weight: 700;
  margin: 80px 0 40px;
  border-left: 5px solid #227baa;
  padding-left: 0.5em;
}
@media screen and (max-width: 800px) {
  #page-content.norutoku .sub-header {
    font-size: 4.5vw;
    margin: 10vw 0 5vw;
  }
}
#page-content.norutoku .information-btn {
  display: flex;
  position: relative;
  height: 120px;
  border-radius: 45px;
  background-color: #227baa;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin: 50px 0 100px;
  line-height: 1.4;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  #page-content.norutoku .information-btn {
    height: 15vw;
    border-radius: 5.625vw;
    font-size: 4vw;
    margin: 6.25vw 0 12.5vw;
  }
}
#page-content.norutoku .information-btn img {
  position: absolute;
  width: 25px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 800px) {
  #page-content.norutoku .information-btn img {
    width: 3.125vw;
  }
}
#page-content.outside aside {
  text-align: right;
  font-size: 22px;
  margin-bottom: 60px;
}
@media screen and (max-width: 800px) {
  #page-content.outside aside {
    font-size: 2.75vw;
    margin-bottom: 7.5vw;
  }
}
#page-content.outside .btn {
  cursor: auto;
}
#page-content.outside .service-list {
  margin: 40px 0 120px;
}
@media screen and (max-width: 800px) {
  #page-content.outside .service-list {
    margin: 5vw 0 15vw;
  }
}
#page-content.outside article {
  overflow-y: clip;
  transition: 0.3s;
}
#page-content.outside article .article {
  display: flex;
  position: relative;
  justify-content: space-between;
  background-color: #f1f1f1;
  border-radius: 30px;
  padding: 30px 50px 30px 30px;
  margin-bottom: 50px;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  #page-content.outside article .article {
    padding: 3.75vw 6.25vw 3.75vw 3.75vw;
    margin-bottom: 6.25vw;
  }
}
#page-content.outside article .article .article-image {
  width: 35%;
}
#page-content.outside article .article .article-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 30px;
}
#page-content.outside article .article .article-information {
  width: 60%;
}
#page-content.outside article .article .article-information .article-title {
  color: #227baa;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  #page-content.outside article .article .article-information .article-title {
    font-size: 3.5vw;
  }
}
#page-content.outside article .article .article-information .article-overview {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  font-size: 22px;
  margin: 10px 0;
  color: #374a56;
}
@media screen and (max-width: 800px) {
  #page-content.outside article .article .article-information .article-overview {
    margin: 1.25vw 0;
    font-size: 2.75vw;
  }
}
#page-content.outside article .article .article-information .article-overview.first {
  -webkit-line-clamp: 1;
  margin-top: 0;
}
#page-content.outside article .article .article-information .article-remarks {
  display: inline-block;
  font-size: 24px;
  padding: 0 5px;
  background-color: #fff;
  color: #227baa;
}
@media screen and (max-width: 800px) {
  #page-content.outside article .article .article-information .article-remarks {
    font-size: 3vw;
  }
}
#page-content.outside article .article .right-arrow {
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(50%);
}
#page-content.ishin .page-content-inner {
  position: relative;
}
#page-content.ishin .page-content-inner aside {
  text-align: right;
  font-size: 22px;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  #page-content.ishin .page-content-inner aside {
    font-size: 2.75vw;
    margin-bottom: 3.75vw;
  }
}
#page-content.ishin .page-content-inner .official {
  display: flex;
  position: absolute;
  background-color: #dae0e3;
  color: #227baa;
  width: 90px;
  height: 45px;
  line-height: 45px;
  right: 0;
  top: 90px;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 500;
  align-items: center;
}
#page-content.ishin .page-content-inner .official span {
  margin-left: 0.5em;
}
@media screen and (max-width: 800px) {
  #page-content.ishin .page-content-inner .official {
    width: 11.25vw;
    height: 5.625vw;
    line-height: 5.625vw;
    padding: 0 1.25vw;
    font-size: 2.5vw;
    top: 11.25vw;
  }
}
#page-content.ishin .page-content-inner .official::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2.5px solid #227baa;
  border-right: 2.5px solid #227baa;
  transform: rotate(45deg);
}
@media screen and (max-width: 800px) {
  #page-content.ishin .page-content-inner .official::before {
    width: 1vw;
    height: 1vw;
    border-top: 0.3125vw solid #227baa;
    border-right: 0.3125vw solid #227baa;
  }
}
#page-content.ishin .page-content-inner img {
  width: 100%;
}
#page-content.ishin .page-content-inner a {
  text-decoration: none;
}
#page-content.ishin .page-content-inner .search-btn {
  display: flex;
  position: relative;
  height: 90px;
  border-radius: 45px;
  background-color: #f18b2d;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
}
@media screen and (max-width: 800px) {
  #page-content.ishin .page-content-inner .search-btn {
    height: 11.25vw;
    border-radius: 5.625vw;
    font-size: 4vw;
    margin: 7.5vw 0;
  }
}
#page-content.ishin .page-content-inner .search-btn img {
  width: 35px;
  margin-right: 10px;
}
@media screen and (max-width: 800px) {
  #page-content.ishin .page-content-inner .search-btn img {
    width: 4.375vw;
  }
}
#page-content.ishin .page-content-inner .search-btn::after {
  display: block;
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  right: 40px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 800px) {
  #page-content.ishin .page-content-inner .search-btn::after {
    width: 1.875vw;
    height: 1.875vw;
    right: 5vw;
  }
}
#page-content.ishin .page-content-inner .sub-header {
  font-size: 36px;
  font-weight: 700;
  margin: 80px 0 40px;
  border-left: 5px solid #227baa;
  padding-left: 0.5em;
}
@media screen and (max-width: 800px) {
  #page-content.ishin .page-content-inner .sub-header {
    font-size: 4.5vw;
    margin: 10vw 0 5vw;
  }
}
#page-content.ishin .page-content-inner .route85 {
  width: 85%;
}
#page-content.ishin .page-content-inner .btn:not(.min-margin) {
  margin-bottom: 150px;
}
@media screen and (max-width: 800px) {
  #page-content.ishin .page-content-inner .btn:not(.min-margin) {
    margin-bottom: 18.75vw;
  }
}
#page-content.ishin .page-content-inner .map {
  width: 100%;
  aspect-ratio: 13/6;
}
#page-content #entry-form {
  background-color: #f1f1f1;
  padding: 30px;
  margin: 80px 0;
}
@media screen and (max-width: 800px) {
  #page-content #entry-form {
    padding: 3.75vw;
  }
}
#page-content #entry-form dt {
  color: #227baa;
  font-size: 28px;
  font-weight: bold;
  margin: 30px 0 10px;
}
@media screen and (max-width: 500px) {
  #page-content #entry-form dt {
    margin: 3.75vw 0 1.25vw;
    font-size: 16px;
  }
}
#page-content #entry-form dd {
  margin-inline-start: 0;
  margin: 10px 0 50px;
}
@media screen and (max-width: 800px) {
  #page-content #entry-form dd {
    margin: 10px 0 6.25vw;
  }
}
#page-content #entry-form dd input[type=text],
#page-content #entry-form dd input[type=email],
#page-content #entry-form dd input[type=tel],
#page-content #entry-form dd select {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 5px;
}
#page-content #entry-form .accept {
  text-align: center;
  margin: 60px 0;
}
@media screen and (max-width: 800px) {
  #page-content #entry-form .accept {
    margin: 7.5vw 0;
  }
}
#page-content #entry-form .wpcf7-list-item {
  margin: 0 1em 0 0;
}
#page-content #entry-form .sent-now {
  pointer-events: none;
}
#page-content #entry-form .wpcf7-form-control.wpcf7-submit.has-spinner {
  display: none;
}
#page-content #entry-form .wpcf7-form-control.wpcf7-submit.has-spinner:disabled + .wpcf7-spinner + .btn, #page-content #entry-form .wpcf7-form-control.wpcf7-submit.has-spinner.sent-now + .wpcf7-spinner + .btn {
  background-color: #ccc;
  cursor: auto;
}
#page-content .wpcf7-form.sent .wpcf7-response-output {
  display: none;
}
#page-content .wpcf7-form.invalid .wpcf7-response-output {
  border: none;
  color: #ff0000;
}

#news-archive {
  margin: 30px;
}
#news-archive .title {
  margin-bottom: 35px;
}
@media screen and (max-width: 800px) {
  #news-archive .title {
    margin-bottom: 4.375vw;
  }
}
#news-archive .title-line {
  border-bottom: 3px solid #cdcdcd;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  #news-archive .title-line {
    margin-bottom: 5vw;
  }
}
#news-archive .title-line::after {
  display: block;
  content: "";
  position: absolute;
  width: 43px;
  border-bottom: 3px solid #227baa;
}
#news-archive .pagination {
  text-align: center;
  margin: 30px 0;
}
@media screen and (max-width: 800px) {
  #news-archive .pagination {
    text-align: center;
    margin: 30px auto;
  }
}
#news-archive .pagination .page-numbers {
  display: inline-flex;
  width: 60px;
  height: 80px;
  justify-content: center;
  align-items: center;
  border: 1px solid #227baa;
  font-size: 32px;
  color: #227baa;
  margin: 0 10px;
}
@media screen and (max-width: 800px) {
  #news-archive .pagination .page-numbers {
    width: 7.5vw;
    height: 10vw;
    font-size: 4vw;
    margin: 0 1.25vw;
  }
}
#news-archive .pagination .page-numbers.current {
  background-color: #227baa;
  color: #fff;
}
#news-archive .news-list {
  margin: 40px 0 100px;
}
@media screen and (max-width: 800px) {
  #news-archive .news-list {
    margin: 5vw 0 12.5vw;
  }
}
#news-archive .news-list:has(+ .toggle:checked) article:nth-child(n+2) {
  max-height: 300px;
}
#news-archive .news-list:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
  width: 69px;
  height: 20px;
  background-image: url("./images/close.png");
}
@media screen and (max-width: 800px) {
  #news-archive .news-list:has(+ .toggle:checked) + .toggle + .more-btn .more-btn-img {
    width: 8.625vw;
    height: 2.5vw;
  }
}
#news-archive .news-list article {
  overflow: hidden;
  transition: 0.3s;
}
#news-archive .news-list article .article-information {
  display: block;
  position: relative;
  border-bottom: 1px dotted #e5e5e5;
  font-size: 24px;
  padding: 20px 0;
}
@media screen and (max-width: 800px) {
  #news-archive .news-list article .article-information {
    font-size: 3vw;
    padding: 2.5vw 0;
  }
}
#news-archive .news-list article .article-information .article-date {
  color: #227baa;
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  #news-archive .news-list article .article-information .article-date {
    margin-bottom: 1.25vw;
  }
}
#news-archive .news-list article .article-information .article-title {
  width: 85%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  #news-archive .news-list article .article-information .article-title {
    margin-bottom: 2.5vw;
  }
}
#news-archive .news-list article .article-information .right-arrow {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

#page-sightseeing {
  width: 800px;
  margin: 0 auto;
  font-weight: bold;
  color: #4d4c4c;
}
@media screen and (max-width: 800px) {
  #page-sightseeing {
    width: auto;
  }
}
#page-sightseeing h3 {
  border-left: 5px solid #00669d;
  padding-left: 0.5em;
  font-size: 35px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing h3 {
    font-size: 4.375vw;
  }
}
#page-sightseeing .inner {
  margin: 0 20px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing .inner {
    margin: 0 2.5vw;
  }
}
#page-sightseeing .yellow-btn {
  width: 80%;
  text-align: center;
  margin: 10px auto;
  background-color: #ffea00;
  font-size: 28px;
  padding: 10px 0;
  border-radius: 60px;
}
#page-sightseeing .yellow-btn.large {
  width: 85%;
}
@media screen and (max-width: 800px) {
  #page-sightseeing .yellow-btn {
    font-size: 3.5vw;
    margin: 1.25vw auto;
    padding: 1.25vw 0;
  }
}
#page-sightseeing .blue-box-btn {
  display: flex;
  position: relative;
  width: 90%;
  height: 80px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #00669d;
  color: #00669d;
  font-size: 23px;
  margin: 40px auto;
  padding-right: 1.8em;
}
@media screen and (max-width: 800px) {
  #page-sightseeing .blue-box-btn {
    height: 10vw;
    font-size: 2.875vw;
    margin: 5vw auto;
  }
}
#page-sightseeing .blue-box-btn::after {
  display: block;
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  right: 3%;
  background-image: url("./images/sightseeing-link-blue.png");
  background-size: cover;
}
#page-sightseeing .toggle {
  display: none;
}
#page-sightseeing .toggle:checked + .click-menu::after {
  margin-top: 15px;
  transform: rotate(-135deg);
}
#page-sightseeing .toggle:checked + .click-menu + .menu-inner {
  max-height: 500px;
}
#page-sightseeing .click-menu {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #464647;
  color: #fff;
  padding: 10px 2em 10px 1em;
  font-size: 28px;
  margin-top: 60px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  #page-sightseeing .click-menu {
    padding: 1.25vw 2em 1.25vw 1em;
    font-size: 3.5vw;
    margin-top: 7.5vw;
  }
}
#page-sightseeing .click-menu::after {
  display: block;
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  right: 5%;
  margin-top: -5px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 800px) {
  #page-sightseeing .click-menu::after {
    width: 2.25vw;
    height: 2.25vw;
  }
}
#page-sightseeing .menu-inner {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
#page-sightseeing .menu-inner.open {
  max-height: none;
}
#page-sightseeing .menu-inner .item {
  display: flex;
  position: relative;
  background-color: #e7ecf0;
  padding: 40px 2.2em 40px 1em;
  align-items: center;
  font-size: 24px;
  border-bottom: 1px solid #bec5cb;
}
@media screen and (max-width: 800px) {
  #page-sightseeing .menu-inner .item {
    font-size: 3vw;
    padding: 5vw 2.2em 5vw 1em;
  }
}
#page-sightseeing .menu-inner .item.small {
  padding: 20px 2.2em 20px 1em;
}
@media screen and (max-width: 800px) {
  #page-sightseeing .menu-inner .item.small {
    padding: 2.5vw 2.2em 2.5vw 1em;
  }
}
#page-sightseeing .menu-inner .item::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  right: 5%;
  background-image: url("./images/sightseeing-link-black.png");
  background-size: cover;
}
#page-sightseeing #overseas .head {
  background-color: #327e27;
  padding: 10px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #overseas .head {
    padding: 1.25vw 0;
  }
}
#page-sightseeing #overseas .head .text {
  font-size: 42px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #overseas .head .text {
    font-size: 5.25vw;
  }
}
#page-sightseeing #overseas .traffic-image img {
  width: 100%;
}
#page-sightseeing #plane .head {
  background-color: #00669d;
  padding: 10px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #plane .head {
    padding: 1.25vw 0;
  }
}
#page-sightseeing #plane .head .text {
  font-size: 36px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #plane .head .text {
    font-size: 4.5vw;
  }
}
#page-sightseeing #plane .inner img {
  display: block;
  width: 90%;
  margin: 30px auto;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #plane .inner img {
    margin: 3.75vw auto;
  }
}
#page-sightseeing #plane .inner .blue-box-btn {
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #plane .inner .blue-box-btn {
    margin-bottom: 10vw;
  }
}
#page-sightseeing #yuda .head {
  background-color: #00669d;
  padding: 10px;
  margin-top: 150px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yuda .head {
    padding: 1.25vw 0;
    margin-top: 18.75vw;
  }
}
#page-sightseeing #yuda .head .text {
  font-size: 32px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yuda .head .text {
    font-size: 4vw;
  }
}
#page-sightseeing #yuda .inner img {
  display: block;
  width: 80%;
  margin: 30px auto;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yuda .inner img {
    margin: 3.75vw auto;
  }
}
#page-sightseeing #yuda .inner .sightseeing .sightseeing-header {
  background-color: #464647;
  color: #fff;
  padding: 20px 0 20px 1em;
  font-size: 28px;
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yuda .inner .sightseeing .sightseeing-header {
    padding: 2.5vw 0 2.5vw 1em;
    font-size: 3.5vw;
    margin-top: 12.5vw;
  }
}
#page-sightseeing #yuda .inner .sightseeing img {
  width: 100%;
}
#page-sightseeing #yuda .inner .sightseeing .title {
  font-size: 30px;
  margin: 20px 0;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yuda .inner .sightseeing .title {
    font-size: 3.75vw;
    margin: 2.5vw 0;
  }
}
#page-sightseeing #yuda .inner .sightseeing .text {
  font-size: 22px;
  margin: 40px 0 60px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yuda .inner .sightseeing .text {
    font-size: 2.75vw;
    margin: 5vw 0 7.5vw;
  }
}
#page-sightseeing #yuda .inner .sightseeing .sub-header {
  background-color: #f1f2f0;
  padding: 10px 0 10px 1em;
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yuda .inner .sightseeing .sub-header {
    padding: 1.25vw 0 1.25vw 1em;
    font-size: 3.5vw;
  }
}
#page-sightseeing #yuda .inner .sightseeing .access {
  font-size: 22px;
  margin: 20px 0 90px 20px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yuda .inner .sightseeing .access {
    font-size: 2.75vw;
    margin: 2.5vw 0 11.25vw 2.5vw;
  }
}
#page-sightseeing #yuda .inner .sightseeing .access a {
  color: #00669d;
  text-decoration: underline;
  text-underline-offset: 5px;
}
#page-sightseeing #yuda .inner .near {
  background-color: #464647;
  color: #fff;
  padding: 20px 0 20px 1em;
  font-size: 30px;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yuda .inner .near {
    padding: 2.5vw 0 2.5vw 1em;
    font-size: 3.75vw;
    margin-top: 7.5vw;
  }
}
#page-sightseeing #yamaguchi .head {
  display: block;
  background-color: #00669d;
  padding: 10px;
  margin-top: 150px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .head {
    padding: 1.25vw 0;
    margin-top: 18.75vw;
  }
}
#page-sightseeing #yamaguchi .head.last {
  position: relative;
  background-color: #327e27;
  margin-top: 70px;
  padding-right: 32px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .head.last {
    margin-top: 8.75vw;
    padding-right: 4vw;
  }
}
#page-sightseeing #yamaguchi .head.last::after {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  right: 3%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .head.last::after {
    width: 2vw;
    height: 2vw;
    border-top: 0.375vw solid #fff;
    border-right: 0.375vw solid #fff;
  }
}
#page-sightseeing #yamaguchi .head .text {
  font-size: 32px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .head .text {
    font-size: 4vw;
  }
}
#page-sightseeing #yamaguchi .inner {
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e2e4;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .inner {
    padding-bottom: 3.75vw;
  }
}
#page-sightseeing #yamaguchi .inner img {
  display: block;
  width: 80%;
  margin: 30px auto;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .inner img {
    margin: 3.75vw auto;
  }
}
#page-sightseeing #yamaguchi .inner .sightseeing .sightseeing-header {
  background-color: #464647;
  color: #fff;
  padding: 20px 0 20px 1em;
  font-size: 28px;
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .inner .sightseeing .sightseeing-header {
    padding: 2.5vw 0 2.5vw 1em;
    font-size: 3.5vw;
    margin-top: 12.5vw;
  }
}
#page-sightseeing #yamaguchi .inner .sightseeing img {
  width: 100%;
}
#page-sightseeing #yamaguchi .inner .sightseeing .title {
  font-size: 30px;
  margin: 20px 0;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .inner .sightseeing .title {
    font-size: 3.75vw;
    margin: 2.5vw 0;
  }
}
#page-sightseeing #yamaguchi .inner .sightseeing .text {
  font-size: 22px;
  margin: 40px 0 60px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .inner .sightseeing .text {
    font-size: 2.75vw;
    margin: 5vw 0 7.5vw;
  }
}
#page-sightseeing #yamaguchi .inner .sightseeing .sub-header {
  background-color: #f1f2f0;
  padding: 10px 0 10px 1em;
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .inner .sightseeing .sub-header {
    padding: 1.25vw 0 1.25vw 1em;
    font-size: 3.5vw;
  }
}
#page-sightseeing #yamaguchi .inner .sightseeing .access {
  font-size: 22px;
  margin: 20px 0 90px 20px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .inner .sightseeing .access {
    font-size: 2.75vw;
    margin: 2.5vw 0 11.25vw 2.5vw;
  }
}
#page-sightseeing #yamaguchi .inner .sightseeing .access a {
  color: #00669d;
  text-decoration: underline;
  text-underline-offset: 5px;
}
#page-sightseeing #yamaguchi .inner .near {
  background-color: #464647;
  color: #fff;
  padding: 20px 0 20px 1em;
  font-size: 30px;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  #page-sightseeing #yamaguchi .inner .near {
    padding: 2.5vw 0 2.5vw 1em;
    font-size: 3.75vw;
    margin-top: 7.5vw;
  }
}

footer {
  text-align: center;
  margin: 100px 0 20px;
  font-size: 20px;
  font-weight: lighter;
}
@media screen and (max-width: 800px) {
  footer {
    font-size: 2.5vw;
  }
}
