@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul, ol {
  list-style: none;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1, h2, h3, h4,
button, input, label {
  line-height: inherit;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input, button,
textarea, select {
  font: inherit;
}

/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
  min-height: 10em;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "BIZ UDPGothic", sans-serif;
}

::selection {
  background-color: #3ca4ee;
  color: #fff;
}

html,
body {
  position: relative;
  width: 100%;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
}

body {
  font-size: 1.4rem;
  line-height: 1.6875;
  text-align: justify;
  word-break: break-all;
}

:where(body, button, input, textarea, select) {
  color: #333333;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

a {
  color: #083e8e;
}
a:hover {
  text-decoration: none;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 25px;
}

.mb35 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 30px;
}

.mb45 {
  margin-bottom: 35px;
}

.mb50 {
  margin-bottom: 30px;
}

.mb55 {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 30px;
}

.mb65 {
  margin-bottom: 30px;
}

.mb70 {
  margin-bottom: 35px;
}

.mb75 {
  margin-bottom: 35px;
}

.mb80 {
  margin-bottom: 40px;
}

.mb85 {
  margin-bottom: 40px;
}

.mb90 {
  margin-bottom: 45px;
}

.mb95 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 50px;
}

.mb110 {
  margin-bottom: 55px;
}

.mb120 {
  margin-bottom: 60px;
}

.mb125 {
  margin-bottom: 65px;
}

.mb130 {
  margin-bottom: 60px;
}

.mb140 {
  margin-bottom: 60px;
}

.mb150 {
  margin-bottom: 60px;
}

.mb160 {
  margin-bottom: 70px;
}

.mb170 {
  margin-bottom: 70px;
}

.mb180 {
  margin-bottom: 70px;
}

.mb190 {
  margin-bottom: 70px;
}

.mb200 {
  margin-bottom: 70px;
}

.centerBox {
  max-width: 1230px;
  margin-inline: auto;
  padding-inline: 25px;
}

.pcBr {
  display: none;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #fff;
}

html::-webkit-scrollbar-thumb {
  background-color: #3fa9f5;
}
.body {
  margin: 86px 0 0;
}

.header {
  height: 86px;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: height 0.2s ease-in-out, margin 0.2s ease-in-out;
  gap: 20px;
}

.headerLogo {
  display: block;
  width: 217px;
  transition: width 0.2s ease-in-out;
  position: relative;
  z-index: 200;
}

.headerLogoLink {
  display: block;
}

.main {
  margin: 0 0 150px;
}

.pageTitleWrap {
  height: 100px;
  background-color: #f5f5f5;
  padding: 25px;
  display: flex;
  align-items: center;
  background-image: url(../images/page-title-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: calc(100% + 100px) center;
  margin: 0 0 4px;
}

.pageTitle {
  max-width: 1180px;
  margin-inline: auto;
  flex-grow: 1;
  font-size: 2rem;
  font-weight: bold;
}

.bread {
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
  max-width: 1230px;
  margin-inline: auto;
  padding: 0 25px;
  overflow-x: auto;
  white-space: nowrap;
}

.breadItem:not(:last-of-type) {
  display: flex;
  align-items: center;
}
.breadItem:not(:last-of-type)::after {
  content: "";
  width: 7px;
  aspect-ratio: 1/1;
  border-right: 2px solid #757575;
  border-bottom: 2px solid #757575;
  margin: 0 20px;
  rotate: -45deg;
}

.breadLink {
  text-decoration: none;
  color: #757575;
  font-size: 1.4rem;
  line-height: 1.821429;
  display: block;
}

.breadText {
  color: #757575;
  font-size: 1.4rem;
  line-height: 1.821429;
  display: block;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 0;
}

.paginationNumber {
  width: 45px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ebebeb;
  text-decoration: none;
  font-weight: bold;
  color: #888888;
}

.paginationNow {
  width: 45px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3fa9f5;
  color: #fff;
  font-weight: bold;
}

.paginationPrev {
  height: 45px;
  display: flex;
  align-items: center;
  width: 20px;
}
.paginationPrev::before {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  border-left: 4px solid #757575;
  border-top: 4px solid #757575;
  rotate: -45deg;
}

.paginationNext {
  height: 45px;
  display: flex;
  align-items: center;
  width: 20px;
}
.paginationNext::after {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  border-right: 4px solid #757575;
  border-top: 4px solid #757575;
  rotate: 45deg;
  flex-grow: 1;
}

.pageSubTitle {
  background-color: #f5f5f5;
  font-size: 1.8rem;
  position: relative;
  padding: 15px 30px;
  line-height: 1.2;
  margin: 0 0 25px;
  font-weight: bold;
  display: block;
}
.pageSubTitle::before {
  content: "";
  width: 3px;
  height: 56%;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3fa9f5;
}

.borderTitle {
  font-size: 1.6rem;
  border-bottom: 2px solid #ebebeb;
  line-height: 1.3043;
  padding: 0 0 6px;
  margin: 0 0 16px;
  position: relative;
}
.borderTitle::after {
  content: "";
  height: 2px;
  width: 40px;
  background-color: #3fa9f5;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.indexTitle {
  font-size: 2rem;
  line-height: 1.2;
  position: relative;
  padding: 0 0 12px;
  text-align: center;
  margin: 0 0 25px;
}
.indexTitle::after {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 10px;
  background-color: #3fa9f5;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}

.serviceBody {
  display: grid;
  gap: 20px;
  --route: #3fc448;
  --express: #3fa9f5;
  --charter: #b68ce0;
}

.serviceBodySingle {
  background-color: #fff;
  padding: 36px 23px 27px;
  border-radius: 15px;
  --route: #3fc448;
  --express: #3fa9f5;
  --charter: #b68ce0;
}

.serviceItem {
  background-color: #fff;
  padding: 36px 23px 27px;
  border-radius: 15px;
}

.serviceTitle {
  background-color: #f5f5f5;
  border-left: 4px solid;
  padding: 10px;
  display: flex;
  align-items: baseline;
  margin: 0 0 15px;
}
.serviceTitle[data-color=route] {
  border-color: var(--route);
}
.serviceTitle[data-color=express] {
  border-color: var(--express);
}
.serviceTitle[data-color=charter] {
  border-color: var(--charter);
}

.serviceTitleMain {
  font-size: 1.6rem;
  line-height: 1.25;
}

.serviceTitleSub {
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0 0 0 15px;
}

.serviceListItem {
  border-bottom: 1px solid #c8c8c8;
}

.serviceListLink {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 15px 0;
}

.serviceListHead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 4px;
}

.serviceListDate {
  font-size: 1.4rem;
}

.serviceListCat {
  border-radius: 3px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
  padding: 5px 13px 3px;
}
.serviceListCat[data-color=route] {
  background-color: var(--route);
}
.serviceListCat[data-color=express] {
  background-color: var(--express);
}
.serviceListCat[data-color=charter] {
  background-color: var(--charter);
}

.serviceListTitle {
  font-weight: normal;
  font-size: inherit;
}

.serviceMoreWrap {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0 0;
}

.serviceMore {
  border: 1px solid;
  border-radius: 100px;
  text-decoration: none;
  color: inherit;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  padding: 8px 32px;
}
.serviceMore::before {
  content: "";
  height: 2px;
  width: 15px;
  flex-shrink: 0;
  margin: 0 13px 0 0;
}
.serviceMore[data-color=route] {
  border-color: var(--route);
}
.serviceMore[data-color=route]::before {
  background-color: var(--route);
  box-shadow: 0 4px 0 var(--route), 0 -4px 0 var(--route);
}
.serviceMore[data-color=express] {
  border-color: var(--express);
}
.serviceMore[data-color=express]::before {
  background-color: var(--express);
  box-shadow: 0 4px 0 var(--express), 0 -4px 0 var(--express);
}
.serviceMore[data-color=charter] {
  border-color: var(--charter);
}
.serviceMore[data-color=charter]::before {
  background-color: var(--charter);
  box-shadow: 0 4px 0 var(--charter), 0 -4px 0 var(--charter);
}

.barTitle {
  border-left: 4px solid #3fa9f5;
  font-size: 1.6rem;
  padding: 1px 16px;
  line-height: 1.2;
  margin: 0 0 15px;
}

.dotListItem {
  display: flex;
  align-items: baseline;
}
.dotListItem::before {
  content: "・";
  flex-shrink: 0;
  margin: 0 5px 0 0;
}

.numberTitleReset {
  counter-reset: numberTitle;
}

.numberTitle {
  background-color: #dcf0ff;
  display: flex;
  align-items: center;
  padding: 12px;
  margin: 0 0 30px;
}
.numberTitle::before {
  content: counter(numberTitle);
  counter-increment: numberTitle;
  width: 30px;
  background-color: #3fa9f5;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px 0 0;
  flex-shrink: 0;
  align-self: stretch;
}

.numberTitleText {
  font-size: 1.6rem;
  display: block;
  line-height: 1.4;
}

.numberTitleSub {
  font-size: 1.6rem;
}

.pageHero {
  height: 150px;
  padding: 25px;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url(../images/index-hero-bg.svg);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  overflow-x: clip;
}
.pageHero[data-color="1"] {
  background-color: #3fc448;
}
.pageHero[data-color="2"] {
  background-color: #3fa9f5;
}
.pageHero[data-color="3"] {
  background-color: #b68ce0;
}

.pageHeroTitle {
  max-width: 1180px;
  margin-inline: auto;
  flex-grow: 1;
  position: relative;
}

.pageHeroTitleJp {
  font-size: 3rem;
  color: #fff;
  line-height: 1.2;
  display: block;
  margin: 0 0 10px;
}

.pageHeroTitleEn {
  color: #fff;
  line-height: 1.2;
  display: block;
  font-size: 1.6rem;
  text-transform: capitalize;
}

.pageHeroBus {
  position: absolute;
  right: 0;
  top: 50%;
  aspect-ratio: 1080/420;
  transform: translateY(-50%) translateX(100%);
  width: 200px;
  animation: slideIn 2s ease-out both;
}

@keyframes slideIn {
  0% {
    transform: translateY(-50%) translateX(100%);
  }
  100% {
    transform: translateY(-50%) translateX(30%);
  }
}
.footer {
  padding: 0 0 20px;
  overflow-x: clip;
}

.footerBus {
  margin: 0 0 20px;
  position: relative;
  height: 85px;
}
.footerBus > img {
  width: 100%;
  object-fit: cover;
  object-position: left;
  height: 100%;
}
.footerBus::before {
  content: "";
  position: absolute;
  width: 5px;
  aspect-ratio: 10/38;
  background-image: url(../images/footer-bus-stop.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 25%;
  bottom: -5%;
  z-index: 10;
}

.pagetop {
  position: absolute;
  right: 15px;
  bottom: 50px;
  width: 45px;
  z-index: 11;
}

.footerBusIcon {
  width: 60px;
  position: absolute;
  right: 21%;
  bottom: 10%;
  animation: bus 10s linear both infinite;
}

@keyframes bus {
  0% {
    right: -60px;
    animation-timing-function: ease-out;
  }
  30.76795% {
    right: 21svw;
  }
  45.3% {
    right: 21svw;
    animation-timing-function: ease-in;
  }
  60% {
    animation-timing-function: linear;
  }
  100% {
    right: 100svw;
  }
}
@keyframes busPc {
  0% {
    animation-timing-function: ease-out;
    right: -8.6685%;
  }
  30.76795% {
    right: 21svw;
  }
  45.3% {
    right: 21svw;
    animation-timing-function: ease-in;
  }
  60% {
    animation-timing-function: linear;
  }
  100% {
    right: 100svw;
  }
}
.footerBox {
  max-width: 1230px;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  padding: 0 25px;
}

.footerLogo {
  display: block;
  width: 80%;
  margin: 0 0 14px;
}

.footerAddress {
  font-size: 1.4rem;
  display: block;
  margin: 0 0 30px;
}

.copyright {
  color: #777777;
  font-size: 1.3rem;
  display: block;
}

.footerMenuWrap {
  display: none;
}

.footerMenuItem {
  border-bottom: 1px solid #c8c8c8;
}

.footerMenuLink {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 180px;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 10px 0;
}
.footerMenuLink::before {
  content: "";
  width: 7px;
  aspect-ratio: 1/1;
  background-color: #8acf72;
  flex-shrink: 0;
  border-radius: 50%;
  margin: 0 14px 0 0;
}
@media (min-width: 960px){
  body {
    font-size: 1.6rem;
  }
  .mb30 {
    margin-bottom: 30px;
  }
  .mb35 {
    margin-bottom: 35px;
  }
  .mb40 {
    margin-bottom: 40px;
  }
  .mb45 {
    margin-bottom: 45px;
  }
  .mb50 {
    margin-bottom: 50px;
  }
  .mb55 {
    margin-bottom: 55px;
  }
  .mb60 {
    margin-bottom: 60px;
  }
  .mb65 {
    margin-bottom: 65px;
  }
  .mb70 {
    margin-bottom: 70px;
  }
  .mb75 {
    margin-bottom: 75px;
  }
  .mb80 {
    margin-bottom: 80px;
  }
  .mb85 {
    margin-bottom: 85px;
  }
  .mb90 {
    margin-bottom: 90px;
  }
  .mb95 {
    margin-bottom: 95px;
  }
  .mb100 {
    margin-bottom: 100px;
  }
  .mb110 {
    margin-bottom: 110px;
  }
  .mb120 {
    margin-bottom: 120px;
  }
  .mb125 {
    margin-bottom: 125px;
  }
  .mb130 {
    margin-bottom: 130px;
  }
  .mb140 {
    margin-bottom: 140px;
  }
  .mb150 {
    margin-bottom: 150px;
  }
  .mb160 {
    margin-bottom: 160px;
  }
  .mb170 {
    margin-bottom: 170px;
  }
  .mb180 {
    margin-bottom: 180px;
  }
  .mb190 {
    margin-bottom: 190px;
  }
  .mb200 {
    margin-bottom: 200px;
  }
  .spBr {
    display: none;
  }
  .pcBr {
    display: inline;
  }
  .body {
    margin: 150px 0 0;
  }
  .header {
    height: 150px;
    padding: 0 55px;
  }
  [data-scroll=true] .header {
    height: 70px;
  }
  .headerLogo {
    width: 340px;
  }
  [data-scroll=true] .headerLogo {
    width: 200px;
  }
  .headerNav {
    align-self: stretch;
  }
  .pageTitleWrap {
    height: 300px;
    background-position: right center;
  }
  .pageTitle {
    font-size: 4rem;
  }
  .bread {
    margin: 0 auto 75px;
  }
  .pagination {
    margin: 130px 0 0;
  }
  .pageSubTitle {
    padding: 20px 40px;
    font-size: 2.8rem;
    margin: 0 0 40px;
  }
  .pageSubTitle::before {
    left: 19px;
    width: 5px;
  }
  .borderTitle {
    font-size: 2.3rem;
    padding: 0 0 11px;
    margin: 0 0 23px;
    border-bottom: 3px solid #ebebeb;
  }
  .borderTitle::after {
    height: 3px;
    bottom: -3px;
    width: 98px;
  }
  .indexTitle {
    padding: 0 0 24px;
    font-size: 3.6rem;
    margin: 0 0 60px;
  }
  .indexTitle::after {
    width: 64px;
    height: 6px;
  }
  .serviceBody {
    grid-template-columns: 1fr 1fr;
  }
  .serviceTitle {
    border-left: 9px solid;
    padding: 15px;
  }
  .serviceTitleMain {
    font-size: 2.4rem;
  }
  .serviceTitleSub {
    font-size: 1.6rem;
  }
  .barTitle {
    border-left: 8px solid #3fa9f5;
    font-size: 2rem;
  }
  .numberTitle::before {
    width: 46px;
    aspect-ratio: 1/1;
    font-size: 2.3rem;
  }
  .numberTitleText {
    font-size: 2rem;
  }
  .pageHero {
    height: 570px;
  }
  .pageHeroTitleJp {
    font-size: 7rem;
    margin: 0 0 20px;
  }
  .pageHeroTitleEn {
    font-size: 3rem;
  }
  .pageHeroBus {
    width: 1080px;
  }
  .footer {
    padding: 0 0 40px;
  }
  .footerBus {
    margin: 0 0 35px;
    height: auto;
  }
  .footerBus > img {
    height: auto;
    object-fit: fill;
  }
  .footerBus::before {
    width: 0.6657%;
  }
  .pagetop {
    width: 77px;
    right: 25px;
    bottom: -23px;
  }
  .footerBusIcon {
    width: 8.6685%;
    animation: busPc 16s linear both infinite;
  }
  .footerLogo {
    width: auto;
    max-width: 280px;
  }
  .footerAddress {
    margin: 0 0 19px;
  }
  .footerMenuWrap {
    display: flex;
    gap: 20px;
  }
}
@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=common.css.map*/