@charset "UTF-8";
/* ======================================
    Base (SP)
====================================== */
html,
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html {
  background: #fff;
  overflow-x: hidden;
  font-size: 100%;
}

body {
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  color: #333;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
menu,
nav,
section,
picture {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

h1 {
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
}

p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

/* svgのIEバグ回避 */
img[src$=".svg"] {
  width: 100%;
  height: auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
a img {
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

strong {
  font-weight: 700;
  color: inherit;
}

address {
  font-style: normal;
}

/* リンク----------------------------- */
a {
  color: inherit;
  /* ブレ防止追加 */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  a:hover {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
  }
  a:hover img {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

/* =================================================
    .bl_header
=================================================== */
.bl_header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 66px;
  padding: 13px 10px;
  background: #fff;
  border-bottom: 1px solid #284d90;
  z-index: 100;
}
@media screen and (min-width: 1280px) {
  .bl_header {
    padding: 20px;
    height: 93px;
  }
}
.bl_header_logo {
  width: 69.5652173913%;
  max-width: 240px;
  height: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (min-width: 1280px) {
  .bl_header_logo {
    width: 320px;
    max-width: none;
  }
}
.bl_header_logo h1 {
  margin: 0;
}
.bl_header_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.bl_header .bl_ryobilogo {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_header .bl_ryobilogo {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 80px;
  }
}

/* =================================================
    .bl_header
=================================================== */
.bl_header-recruit {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 62px;
  background: transparent;
  z-index: 100;
}
@media screen and (min-width: 1025px) {
  .bl_header-recruit {
    height: 100px;
  }
}
.bl_header-recruit_inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 92%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .bl_header-recruit_inner {
    width: 94.0476190476%;
    max-width: 1680px;
  }
}
.bl_header-recruit_logo {
  width: clamp(193px, 95.3497688752px + 26.0400616333vw, 362px);
  max-width: 362px;
  height: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.bl_header-recruit_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.bl_header-recruit.is_scroll {
  background: rgba(255, 255, 255, 0.9);
}

.is_btnHamburger__on .bl_header,
.is_btnHamburger__on .bl_header-recruit {
  background: rgba(255, 255, 255, 0.9);
}

/* =================================================
    .bl_shortcut
=================================================== */
.bl_shortcut {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_shortcut {
    display: block;
    position: absolute;
    top: 10px;
    right: 120px;
  }
}
.bl_shortcut ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.bl_shortcut ul li a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90px;
  height: 70px;
  padding-top: 46px;
  margin-right: 2px;
  background: #284d90;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_shortcut ul li a:hover {
    opacity: 1;
    background: #67aeea;
  }
}
.bl_shortcut ul li a::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.bl_shortcut ul li:first-of-type a {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.bl_shortcut ul li:first-of-type a::before {
  width: 25px;
  height: 30px;
  background: url(../images/common/icon/icon_bus__white.svg) no-repeat center center/contain;
}
.bl_shortcut ul li:nth-of-type(2) a::before {
  width: 50px;
  height: 34px;
  background: url(../images/common/icon/icon_airportbus__white.svg) no-repeat center center/contain;
}
.bl_shortcut ul li:nth-of-type(3) a::before {
  width: 50px;
  height: 34px;
  background: url(../images/common/icon/icon_busvison__white.svg) no-repeat center center/contain;
}
.bl_shortcut ul li:nth-of-type(4) a::before {
  width: 50px;
  height: 34px;
  background: url(../images/common/icon/icon_pass__white.svg) no-repeat center center/contain;
}
.bl_shortcut ul li:nth-of-type(5) a::before {
  width: 40px;
  height: 34px;
  background: url(../images/common/icon/icon_news__white.svg) no-repeat center center/contain;
}
.bl_shortcut ul li:nth-of-type(6) a {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.bl_shortcut ul li:nth-of-type(6) a::before {
  width: 36px;
  height: 38px;
  background: url(../images/common/icon/icon_recruit__white.svg) no-repeat center center/contain;
}

/* ======================================
    el_btnHamburger
====================================== */
.el_btnHamburger {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 66px;
  height: 66px;
  margin: 0;
  overflow: hidden;
  background: #284d90;
  z-index: 11100;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1280px) {
  .el_btnHamburger {
    display: none;
  }
}
.el_btnHamburger__animation {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 35px;
  height: 16px;
  text-align: center;
  z-index: 11000;
}
.el_btnHamburger_line {
  background: #fff;
  width: 100%;
  height: 2px;
  border-radius: 100vh;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 10100;
}

.el_btnHamburger_line.el_btnHamburger_line__top {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

.el_btnHamburger_line.el_btnHamburger_line__bottom {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.is_btnHamburger__open .el_btnHamburger_line.el_btnHamburger_line__top {
  background: #fff;
  -webkit-transform: rotate(-45deg) translateY(0px);
          transform: rotate(-45deg) translateY(0px);
}

.is_btnHamburger__open .el_btnHamburger_line.el_btnHamburger_line__bottom {
  background: #fff;
  -webkit-transform: rotate(45deg) translateY(0px);
          transform: rotate(45deg) translateY(0px);
}

/* 背景 */
.bl_wrapBg {
  position: fixed;
  left: 0;
  top: 66px;
  width: 100vw;
  height: 100%;
  z-index: 10000;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .bl_wrapBg {
    top: 90px;
  }
}

/* 表示された時用のCSS */
.is_btnHamburger__on .bl_wrapBg {
  opacity: 0.8;
  visibility: visible;
}

/* ======================================
    .bl_headerNav
====================================== */
.bl_headerNav {
  position: fixed;
  top: 66px;
  /* 右から出す場合 */
  right: -380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 375px;
  height: calc(100% - 66px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9); /* 背景色 */
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 10010;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .bl_headerNav {
    right: -500px;
    max-width: 490px;
    padding: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .bl_headerNav {
    top: 93px;
  }
}
.bl_headerNav .bl_globalnavi {
  width: 100%;
  height: 100%;
  margin-bottom: 100px;
}

.bl_globalnavi {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 100px;
  border-top: 2px solid #284d90;
}
.bl_globalnavi .menu-item {
  position: relative;
  border-bottom: 2px solid #284d90;
}
.bl_globalnavi .menu-item::after {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #284d90;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bl_globalnavi .menu-item.js_toggleNavi::after {
  top: 32px;
  -webkit-transform: none;
          transform: none;
  content: "+";
  pointer-events: none;
}
.bl_globalnavi .menu-item.js_toggleNavi.is_open::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.bl_globalnavi .menu-item.current-menu-item {
  display: none;
}
.bl_globalnavi .menu-item.current-menu-item a {
  background: rgba(40, 77, 144, 0.1);
}
.bl_globalnavi .menu-item a {
  position: relative;
  display: block;
  padding: 30px 84px;
  padding-right: 42px;
  margin: 0;
  line-height: 1.6; /* 項目高さ */
  color: #284d90;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.bl_globalnavi .menu-item a br {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_globalnavi .menu-item a br {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .bl_globalnavi .menu-item a:hover {
    opacity: 1;
    background: rgba(103, 174, 234, 0.15);
  }
}
.bl_globalnavi .menu-item a::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 24px;
  left: 20px;
}
.bl_globalnavi .menu-item .sub-menu {
  display: none;
  padding-left: 0;
}
.bl_globalnavi .menu-item .sub-menu li {
  border-bottom: 1px dotted #284d90;
}
.bl_globalnavi .menu-item .sub-menu li:last-of-type {
  border-bottom: none;
}
.bl_globalnavi .menu-item .sub-menu li a {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(40, 77, 144, 0.2);
}
.bl_globalnavi .menu-item .sub-menu li a::before {
  content: none;
}
@media screen and (min-width: 1025px) {
  .bl_globalnavi .menu-item .sub-menu li a:hover {
    opacity: 1;
    background: rgba(103, 174, 234, 0.15);
  }
}
.bl_globalnavi .menu-item.el_icon_top {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.bl_globalnavi .menu-item.el_icon_top a::before {
  width: 42px;
  height: 35px;
  background: url(../images/common/icon/icon_top.svg) no-repeat center center/contain;
}
.bl_globalnavi .menu-item.el_icon_bus {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.bl_globalnavi .menu-item.el_icon_bus a::before {
  width: 37px;
  height: 47px;
  background: url(../images/common/icon/icon_bus.svg) no-repeat center center/contain;
  top: 18px;
  left: 24px;
}
.bl_globalnavi .menu-item.el_icon_airportbus {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
@media screen and (min-width: 1280px) {
  .bl_globalnavi .menu-item.el_icon_airportbus a {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.bl_globalnavi .menu-item.el_icon_airportbus a::before {
  width: 62px;
  height: 30px;
  background: url(../images/common/icon/icon_airportbus.svg) no-repeat center center/contain;
  top: 24px;
  left: 11px;
}
@media screen and (min-width: 1280px) {
  .bl_globalnavi .menu-item.el_icon_airportbus a::before {
    top: 30px;
  }
}
.bl_globalnavi .menu-item.el_icon_busvison a::before {
  width: 56px;
  height: 47px;
  background: url(../images/common/icon/icon_busvison.svg) no-repeat center center/contain;
  top: 16px;
  left: 14px;
}
.bl_globalnavi .menu-item.el_icon_root a::before {
  width: 45px;
  height: 45px;
  background: url(../images/common/icon/icon_root.svg) no-repeat center center/contain;
  top: 19px;
  left: 19px;
}
.bl_globalnavi .menu-item.el_icon_stop a::before {
  width: 26px;
  height: 47px;
  background: url(../images/common/icon/icon_stop.svg) no-repeat center center/contain;
  top: 19px;
  left: 27px;
}
.bl_globalnavi .menu-item.el_icon_guide a::before {
  width: 44px;
  height: 43px;
  background: url(../images/common/icon/icon_guide.svg) no-repeat center center/contain;
  top: 19px;
  left: 19px;
}
.bl_globalnavi .menu-item.el_icon_news a::before {
  width: 50px;
  height: 37px;
  background: url(../images/common/icon/icon_news.svg) no-repeat center center/contain;
  top: 25px;
  left: 22px;
}
.bl_globalnavi .menu-item.el_icon_lostitem a::before {
  width: 41px;
  height: 41px;
  background: url(../images/common/icon/icon_lostitem.svg) no-repeat center center/contain;
  top: 21px;
  left: 22px;
}
@media screen and (min-width: 1280px) {
  .bl_globalnavi .menu-item.el_icon_faq a {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.bl_globalnavi .menu-item.el_icon_faq a::before {
  width: 34px;
  height: 45px;
  background: url(../images/common/icon/icon_faq.svg) no-repeat center center/contain;
  top: 21px;
  left: 25px;
}
@media screen and (min-width: 1280px) {
  .bl_globalnavi .menu-item.el_icon_faq a::before {
    top: 20px;
  }
}
.bl_globalnavi .menu-item.el_icon_recruit a::before {
  width: 49px;
  height: 51px;
  background: url(../images/common/icon/icon_recruit.svg) no-repeat center center/contain;
  top: 16px;
  left: 17px;
}

.fadeLeft .bl_globalnavi .menu-item {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
.fadeLeft .bl_globalnavi .menu-item:nth-of-type(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.fadeLeft .bl_globalnavi .menu-item:nth-of-type(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.fadeLeft .bl_globalnavi .menu-item:nth-of-type(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.fadeLeft .bl_globalnavi .menu-item:nth-of-type(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.fadeLeft .bl_globalnavi .menu-item:nth-of-type(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.fadeLeft .bl_globalnavi .menu-item:nth-of-type(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.fadeLeft .bl_globalnavi .menu-item:nth-of-type(7) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.fadeLeft .bl_globalnavi .menu-item:nth-of-type(8) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.fadeLeft .bl_globalnavi .menu-item:nth-of-type(9) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.fadeLeft .bl_globalnavi .menu-item:nth-of-type(10) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.is_btnHamburger__on .bl_headerNav {
  right: 0; /* 右から出す場合 */
}

@media screen and (min-width: 1025px) {
  /*　for PC　*/
  .bl_headerNav_item:last-child .bl_headerNav_link::after {
    content: none;
  }
}
/* =================================================
    footer
=================================================== */
.bl_footer {
  background: #284d90;
  padding-top: 50px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .bl_footer {
    padding-top: 100px;
    padding-bottom: 20px;
  }
}
.bl_footer_inner {
  width: 92%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .bl_footer_inner {
    width: 920px;
  }
}
.bl_footer_logo {
  text-align: center;
}
.bl_footer_logo img {
  width: 100%;
  max-width: 315px;
  height: auto;
  margin: 0 auto 25px;
}
@media screen and (min-width: 768px) {
  .bl_footer_logo img {
    max-width: 472px;
    margin: 0 auto 10px;
  }
}
.bl_footer_info {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .bl_footer_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 530px;
    margin: 0 auto 20px;
  }
}
.bl_footer_info p {
  margin: 0;
  text-align: center;
}
.bl_footer_copyright {
  display: block;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_footer_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 10px;
  }
}
.bl_footer_nav .bl_footerNavi {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
  padding: 0;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .bl_footer_nav .bl_footerNavi {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media screen and (min-width: 1025px) {
  .bl_footer_nav .bl_footerNavi {
    width: calc(100% - 170px);
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
    margin-bottom: 100px;
  }
}
.bl_footer_nav .bl_footerNavi .menu-item {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  width: 100%;
  margin-bottom: 18px;
}
.bl_footer_nav .bl_footerNavi .menu-item:last-of-type {
  margin-bottom: 0;
}
.bl_footer_nav .bl_footerNavi .menu-item a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-left: 12px;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1025px) {
  .bl_footer_nav .bl_footerNavi .menu-item a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.bl_footer_nav .bl_footerNavi .menu-item a::before {
  content: "\f054";
  position: absolute;
  top: 7px;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  line-height: 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .bl_footer_nav .bl_footerNavi .menu-item a::before {
    top: 0.4em;
  }
}
.bl_footer_nav .bl_naviLink {
  padding: 0;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_footer_nav .bl_naviLink {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .bl_footer_nav .bl_naviLink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-preferred-size: 170px;
        flex-basis: 170px;
  }
}
.bl_footer_nav .bl_naviLink .menu-item {
  position: relative;
  width: 345px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .bl_footer_nav .bl_naviLink .menu-item {
    width: 32%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_footer_nav .bl_naviLink .menu-item {
    width: 100%;
  }
}
.bl_footer_nav .bl_naviLink .menu-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../images/common/icon/icon_link__white.svg) no-repeat center center/contain;
}
.bl_footer_nav .bl_naviLink .menu-item:last-of-type {
  margin-bottom: 0;
}
.bl_footer_nav .bl_naviLink .menu-item a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1280px) {
  .bl_footer_nav .bl_naviLink .menu-item a {
    font-size: 16px;
    font-size: 1rem;
    font-size: clamp(12.8px, 0.8333333333vw, 16px);
  }
}

/* =================================================
    layout section
=================================================== */
.ly_sec {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.ly_sec_inner {
  width: 92%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .ly_sec_inner {
    width: 100%;
    max-width: 800px;
  }
}

/* =================================================
    main
=================================================== */
main.bl_page_front {
  margin-top: 70px;
}
@media screen and (min-width: 1025px) {
  main.bl_page_front {
    margin-top: 90px;
  }
}

/* =================================================
    2カラムレイアウト 
=================================================== */
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
}

.page-id-15 .ly_side {
  display: none;
}
@media screen and (min-width: 1280px) {
  .page-id-15 .ly_side {
    display: block;
  }
}

/* =================================================
    2カラムレイアウト 「サイドバー固定バージョン」
=================================================== */
.ly_wrap {
  width: 100%;
  position: relative;
}
.ly_wrap .bl_sidemenuBtn {
  position: fixed;
  top: 123px;
  left: -100px;
  width: 60px;
  height: 80px;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ly_wrap .bl_sidemenuBtn button {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 20px 5px;
  border: 2px solid #207bbf;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #207bbf;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-family: "Raleway", sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
.ly_wrap .bl_sidemenuBtn button i {
  margin-top: 10px;
  -webkit-animation: 1.5s infinite slideRight;
          animation: 1.5s infinite slideRight;
}
@-webkit-keyframes slideRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.ly_wrap .bl_sidemenuBtn button:hover {
  opacity: 1;
  background: #fff;
  color: #284d90;
}
.ly_wrap .bl_sidemenuBtn button:hover i {
  opacity: 1;
  color: #284d90;
}
.ly_wrap .ly_main {
  margin: 66px auto 0;
}
@media screen and (min-width: 1280px) {
  .ly_wrap .ly_main {
    margin: 0;
    margin-top: 93px;
    padding-left: 320px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (min-width: 1280px) {
  .ly_wrap .ly_side {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
    padding: 0;
    padding: 20px;
    overflow: auto;
    position: absolute;
    width: 340px;
    top: 103px;
    left: 0;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.ly_wrap .ly_side {
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.ly_wrap .ly_side::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1280px) {
  .ly_wrap.js_sideClose .ly_main {
    padding-left: 0;
  }
}

@media screen and (min-width: 1280px) {
  .ly_side.is_close {
    left: -400px;
  }
  .bl_sidemenuBtn.is_open {
    left: 0;
  }
  .ly_side.is_fixed {
    position: fixed;
    left: 0;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
  }
  .ly_main.is_close {
    padding-left: 0;
  }
  .ly_main.is_open {
    padding-left: 320px;
  }
}
.el_arrow_r,
.block-editor-block-list__block.el_arrow_r {
  position: relative;
}
.el_arrow_r a::after,
.el_arrow_r div::after,
.block-editor-block-list__block.el_arrow_r a::after,
.block-editor-block-list__block.el_arrow_r div::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  display: inline-block;
  margin-left: 1em;
  color: inherit;
}

/* =================================================
    お知らせ一覧へ戻る ボタン
=================================================== */
.el_btnAll {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  max-width: 300px;
  padding: 16px;
  border: 1px solid #284d90;
  border-radius: 100vh;
  background: #284d90;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.el_btnAll::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  margin-left: 1em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .el_btnAll:hover {
    opacity: 1;
    background: #fff;
    color: #284d90;
  }
  .el_btnAll:hover::after {
    font-style: normal;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-variant: normal;
    text-rendering: auto;
    letter-spacing: 0;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: "\f054";
    color: #284d90;
  }
}

/* =================================================
    お問い合わせフォームはこちら ボタン
=================================================== */
.el_btnContactForm {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 340px;
  padding: 15px 2em;
  border: 1px solid #284d90;
  border-radius: 100vh;
}
@media screen and (min-width: 768px) {
  .el_btnContactForm {
    max-width: 600px;
    padding: 30px 2em;
  }
}
.el_btnContactForm span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 30px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.45;
  color: #284d90;
  text-align: left;
  background: url(../images/common/icon_arrow-r_pink.svg) no-repeat center right/15px 12px;
}
@media screen and (min-width: 768px) {
  .el_btnContactForm span br {
    display: none;
  }
  .el_btnContactForm span {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

/* =================================================
    nav icon　設定
=================================================== */
.el_campusNav {
  padding: 40px 6px 40px;
}
@media screen and (min-width: 768px) {
  .el_campusNav {
    width: 100%;
    padding: 40px 50px 40px;
  }
}
.el_campusNav li {
  display: inline-block;
  width: 49%;
  padding: 10px 0 10px 32px;
}
@media screen and (min-width: 1025px) {
  .el_campusNav li {
    width: 32%;
  }
}
@media screen and (min-width: 1280px) {
  .el_campusNav li {
    width: auto;
    margin-right: 2em;
  }
}
.el_campusNav li.el_icon__campus {
  background: url(../images/common/icon_01.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__nursingHome {
  background: url(../images/common/icon_02.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__inHomeCareOffice {
  background: url(../images/common/icon_03.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__groupHome {
  background: url(../images/common/icon_05.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__shortStay {
  background: url(../images/common/icon_06.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__homeCareCenter {
  background: url(../images/common/icon_07.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__helperStation {
  background: url(../images/common/icon_08.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon a {
  position: relative;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(10.4px, 3.4666666667vw, 13px);
}
@media screen and (min-width: 1025px) {
  .el_campusNav li.el_icon a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #207bbf;
    position: absolute;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    bottom: -3px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .el_campusNav li.el_icon a:hover {
    opacity: 1;
  }
  .el_campusNav li.el_icon a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

/* =================================================
    見出し設定
=================================================== */
/* 見出し_1 */
/* 見出し_2 */
.el_lv2Heading {
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #284d90;
  text-align: center;
}
.el_lv2Heading__en {
  font-family: "Raleway", sans-serif;
}
.el_lv2Heading__white {
  color: #fff;
}
.el_lv2Heading.el_sp_br br {
  display: block;
}
@media screen and (min-width: 768px) {
  .el_lv2Heading.el_sp_br br {
    display: none;
  }
}

/* トップ セクション見出し_2 */
/* 見出し_3 */
/* 見出し_4 */
/* 見出し_5 */
/* 見出し_6 */
/* =================================================
    各ページ設定
=================================================== */
@media screen and (min-width: 768px) {
  .blog .ly_main,
  .single .ly_main {
    min-height: 100vh;
  }
}

.page-id-65 .has-global-padding.js_fadeUpTrigger {
  padding-bottom: 40px;
}

/* =================================================
    固定ページ見出し
=================================================== */
.bl_pageTtl {
  padding-top: 20px;
  padding-bottom: 50px;
  text-align: center;
}
.bl_pageTtl_h1 {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin: 0 auto;
  border-top: 3px solid #284d90;
  border-bottom: 3px solid #284d90;
  font-size: 30px;
  font-size: 1.875rem;
  font-size: clamp(24px, 8vw, 30px);
  letter-spacing: 0.05em;
  color: #284d90;
}
@media screen and (min-width: 768px) {
  .bl_pageTtl_h1 {
    display: inline-block;
    width: 400px;
    max-width: none;
    font-size: 32px;
    font-size: 2rem;
  }
  .bl_pageTtl_h1 br {
    display: none;
  }
}
.bl_pageTtl_h1::before {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  margin-right: 0.5em;
}
.bl_pageTtl_h1_en {
  font-family: "Raleway", sans-serif;
}
.bl_pageTtl .el_lead {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.bl_pageTtl .el_lead a {
  color: #ff6200;
  text-decoration: underline;
}

.archive .bl_pageTtl_h1::before,
.blog .bl_pageTtl_h1::before,
.single .bl_pageTtl_h1::before {
  display: none;
}

.page-id-24 .bl_pageTtl_h1::before {
  width: 37px;
  height: 48px;
  background: url(../images/common/icon/icon_bus.svg) no-repeat center center/contain;
}

.page-id-61 .bl_pageTtl_h1::before {
  top: 0px;
  width: 35px;
  height: 45px;
  background: url(../images/common/icon/icon_faq.svg) no-repeat center center/contain;
}

.page-id-30 .bl_pageTtl_h1::before {
  top: -3px;
  width: 28px;
  height: 48px;
  background: url(../images/common/icon/icon_stop.svg) no-repeat center center/contain;
}

.page-id-18 .bl_pageTtl_h1::before {
  top: -8px;
  width: 50px;
  height: 52px;
  background: url(../images/common/icon/icon_recruit.svg) no-repeat center center/contain;
}

.page-id-43 .bl_pageTtl_h1::before {
  top: -8px;
  width: 50px;
  height: 52px;
  background: url(../images/common/icon/icon_noriba.svg) no-repeat center center/contain;
}

.page-id-50 .bl_pageTtl_h1::before {
  top: 0px;
  width: 42px;
  height: 42px;
  background: url(../images/common/icon/icon_lostitem.svg) no-repeat center center/contain;
}

.page-id-34 .bl_pageTtl_h1::before {
  top: 6px;
  width: 55px;
  height: 31px;
  background: url(../images/common/icon/icon_pass.svg) no-repeat center center/contain;
}

.page-id-27 .bl_pageTtl {
  position: relative;
  padding-top: 70px;
  padding-bottom: 5px;
  margin-left: 20px;
  margin-right: 20px;
  width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
  .page-id-27 .bl_pageTtl {
    padding-top: 100px;
    padding-bottom: 5px;
  }
}
.page-id-27 .bl_pageTtl::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 70px;
  background: #ff6200 url(../images/limousine/logo_limousine.png) no-repeat center center;
  background-size: 320px;
}
@media screen and (min-width: 768px) {
  .page-id-27 .bl_pageTtl::before {
    background-size: 400px;
  }
}
@media screen and (min-width: 1280px) {
  .page-id-27 .bl_pageTtl::before {
    width: 100%;
  }
}
.page-id-27 .bl_pageTtl_h1 {
  padding: 10px;
  color: #ff6200;
  border: none;
}
@media screen and (min-width: 768px) {
  .page-id-27 .bl_pageTtl_h1 {
    padding: 10px 80px;
  }
}
.page-id-27 .bl_pageTtl_h1::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 55px;
  height: 31px;
  background: url(../images/common/icon/icon_airportbus_orange.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .page-id-27 .bl_pageTtl_h1::before {
    left: 10px;
  }
}

/* =================================================
    .bl_pageheaderNavi
=================================================== */
.bl_pageheaderNavi {
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .bl_pageheaderNavi {
    margin: 0 auto 80px;
  }
}
.bl_pageheaderNavi li {
  width: 100%;
  margin-bottom: 1%;
}
@media screen and (min-width: 768px) {
  .bl_pageheaderNavi li {
    width: 49.5%;
  }
}
.bl_pageheaderNavi li a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 1em 20px;
  padding-right: 40px;
  border: 2px solid #284d90;
  border-radius: 10px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: left;
  color: #284d90;
}
.bl_pageheaderNavi li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f078";
  color: #284d90;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .bl_pageheaderNavi li a:hover {
    opacity: 1;
    background: #207bbf;
    border: 2px solid #207bbf;
    color: #fff;
  }
  .bl_pageheaderNavi li a:hover::after {
    color: #fff;
  }
}
.bl_pageheaderNavi li.is_active a {
  background: #207bbf;
  color: #fff;
  border: 2px solid #207bbf;
}

/* =================================================
    section radius
=================================================== */
@media screen and (min-width: 1280px) {
  .el_secRadius__pc10 {
    border-radius: 10px;
  }
}

/* =================================================
    ページ共通岡電マーク
=================================================== */
.bl_okadenMark {
  margin-top: 50px;
  border-top: 1px solid #284d90;
  padding-top: 50px;
  padding-bottom: 50px;
}
.bl_okadenMark img {
  display: block;
  width: 280px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .bl_okadenMark img {
    width: 418px;
  }
}

/* =================================================
    overwrite
=================================================== */
.swiper-slide {
  max-width: none !important;
}
.swiper .has-global-padding {
  padding: 0;
}

body .is-layout-constrained.swiper-wrapper > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  margin-right: 10px !important;
  margin-left: 0 !important;
}

/* =================================================
   重要なお知らせ
=================================================== */
@media screen and (min-width: 768px) {
  .bl_urgent_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.bl_urgent_ttl h2 {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
  background: #ce5a8b;
  padding: 16px 1em;
  border-radius: 5px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bl_urgent_ttl h2 {
    width: 180px;
    margin-bottom: 0;
  }
}
.bl_urgent_ttl h2::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background-color: #f0b9cf;
  -webkit-animation: shine 3s ease-in-out infinite;
          animation: shine 3s ease-in-out infinite;
}
@-webkit-keyframes shine {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes shine {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.bl_urgent_cont {
  padding-left: 1em;
}
.bl_urgent_cont.bl_post {
  margin-bottom: 0;
}
.bl_urgent_cont.bl_post a {
  font-weight: 700;
}

/* =================================================
   スライド
=================================================== */
.bl_topSlide {
  position: relative;
}
@media screen and (min-width: 1280px) {
  .bl_topSlide {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.bl_topSlide .swiper-pagination-fraction,
.bl_topSlide .swiper-pagination-custom,
.bl_topSlide .swiper-horizontal > .swiper-pagination-bullets,
.bl_topSlide .swiper-pagination-bullets.swiper-pagination-horizontal {
  margin-bottom: -40px;
}
.bl_topSlide .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.bl_topSlide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
}
.bl_topSlide .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.6);
}
.bl_topSlide .swiper-pagination-bullet-active {
  background: #fff;
}
.bl_topSlide .wp-block-image.swiper-slide a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.bl_topSlide .wp-block-image.swiper-slide a img {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: none;
  width: 100%;
  border-radius: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_topSlide .wp-block-image.swiper-slide a::before {
    content: "";
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .bl_topSlide .wp-block-image.swiper-slide a:hover {
    opacity: 1;
  }
  .bl_topSlide .wp-block-image.swiper-slide a:hover img {
    opacity: 1;
  }
  .bl_topSlide .wp-block-image.swiper-slide a:hover::before {
    opacity: 1;
  }
}

.js_topslide.swiper .swiper-button-prev,
.js_topslide.swiper .swiper-button-next {
  display: none;
}
@media screen and (min-width: 768px) {
  .js_topslide.swiper .swiper-button-prev,
  .js_topslide.swiper .swiper-button-next {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0;
  }
}
.js_topslide.swiper .swiper-button-prev {
  left: 9%;
}
@media screen and (min-width: 768px) {
  .js_topslide.swiper .swiper-button-prev {
    left: 13%;
  }
}
@media screen and (min-width: 1280px) {
  .js_topslide.swiper .swiper-button-prev {
    left: 18%;
  }
}
.js_topslide.swiper .swiper-button-next {
  right: 9%;
}
@media screen and (min-width: 768px) {
  .js_topslide.swiper .swiper-button-next {
    right: 13%;
  }
}
@media screen and (min-width: 1280px) {
  .js_topslide.swiper .swiper-button-next {
    right: 18%;
  }
}
.js_topslide.swiper .swiper-button-prev:after,
.js_topslide.swiper .swiper-button-next:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
}
.js_topslide.swiper .swiper-button-next:after {
  background: url(../images/common/icon/icon_slide_right.svg) no-repeat center center/contain;
}
.js_topslide.swiper .swiper-button-prev:after {
  background: url(../images/common/icon/icon_slide_left.svg) no-repeat center center/contain;
}

/* =================================================
    NEWS
=================================================== */
.bl_loop_topics {
  margin-top: -50px;
}
.bl_loop_topics .bl_shortcutSp {
  width: 89.8550724638%;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .bl_loop_topics .bl_shortcutSp {
    display: none;
  }
}
.bl_loop_topics .bl_shortcutSp li {
  width: 48.3870967742%;
  border: 1px solid #fff;
  border-radius: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .bl_loop_topics .bl_shortcutSp li {
    width: 24%;
  }
}
.bl_loop_topics .bl_shortcutSp li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 90px;
  padding-right: 10px;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.bl_loop_topics .bl_shortcutSp li a::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bl_loop_topics .bl_shortcutSp li:nth-of-type(1) a::before {
  width: 37px;
  height: 47px;
  background: url(../images/common/icon/icon_bus__white.svg) no-repeat center center/contain;
  left: 24px;
}
.bl_loop_topics .bl_shortcutSp li:nth-of-type(2) a::before {
  width: 62px;
  height: 29px;
  background: url(../images/common/icon/icon_airportbus__white.svg) no-repeat center center/contain;
  left: 11px;
}
.bl_loop_topics .bl_shortcutSp li:nth-of-type(3) a::before {
  width: 56px;
  height: 47px;
  background: url(../images/common/icon/icon_busvison__white.svg) no-repeat center center/contain;
  left: 14px;
}
.bl_loop_topics .bl_shortcutSp li:nth-of-type(4) a::before {
  width: 45px;
  height: 45px;
  background: url(../images/common/icon/icon_stop__white.svg) no-repeat center center/contain;
  left: 19px;
}
.bl_loop_topics .el_btnWrap {
  text-align: right;
}
.bl_loop_topics .el_btnWrap a {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
}
.bl_loop_topics .el_btnWrap a::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url(../images/common/icon/icon_arrow_r_circle__white.svg) no-repeat center center/contain;
  vertical-align: middle;
  margin-right: 4px;
}

/* =================================================
    バナー
=================================================== */
.bl_topBanner {
  width: 92%;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .bl_topBanner {
    width: 100%;
  }
}
.bl_topBanner figure > a {
  width: 100%;
}

h2.el_lv2no1 {
  position: relative;
  padding-left: 85px;
}
h2.el_lv2no1::before {
  content: "";
  display: block;
  width: 55px;
  height: 43px;
  background: url(../images/job-offer/list_no_01.svg) no-repeat center center/contain;
  position: absolute;
  bottom: 5px;
  left: 0;
}

h2.el_lv2no2 {
  position: relative;
  padding-left: 85px;
}
h2.el_lv2no2 span {
  display: block;
  font-size: 77%;
}
@media screen and (min-width: 768px) {
  h2.el_lv2no2 span {
    display: inline-block;
  }
}
h2.el_lv2no2::before {
  content: "";
  display: block;
  width: 55px;
  height: 43px;
  background: url(../images/job-offer/list_no_02.svg) no-repeat center center/contain;
  position: absolute;
  bottom: 5px;
  left: 0;
}

h2.el_lv2no3 {
  position: relative;
  padding-left: 85px;
}
h2.el_lv2no3::before {
  content: "";
  display: block;
  width: 55px;
  height: 43px;
  background: url(../images/job-offer/list_no_03.svg) no-repeat center center/contain;
  position: absolute;
  bottom: 5px;
  left: 0;
}

h2.el_lv2no4 {
  position: relative;
  padding-left: 85px;
}
h2.el_lv2no4::before {
  content: "";
  display: block;
  width: 55px;
  height: 43px;
  background: url(../images/job-offer/list_no_04.svg) no-repeat center center/contain;
  position: absolute;
  bottom: 5px;
  left: 0;
}

.js_toggleblock:not(.wp-block.js_toggleblock) {
  display: none;
}

/* =================================================
   スライド
=================================================== */
.bl_slideRecruit {
  position: relative;
  /* スライダーのwrapper */
}
.bl_slideRecruit .js_slideRecruit .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.bl_slideRecruit .is-layout-flex.swiper-wrapper {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.bl_slideRecruit .js_slideRecruit .wp-block-gallery.wp-block-gallery-1 {
  gap: 0;
}
.bl_slideRecruit_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.bl_slideRecruit_caption p {
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_slideRecruit_caption p br {
    display: none;
  }
}

/* =================================================
   bl_interview
=================================================== */
.bl_interview h2 {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_interview h2 {
    margin-bottom: 80px;
  }
}
.bl_interview_catch {
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.bl_interview_catch p {
  line-height: 1.5;
}
.bl_interview_schedule {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.bl_interview_schedule h3 {
  font-family: "Raleway", sans-serif;
}
.bl_interview_schedule p span {
  font-size: 16px;
  font-size: 1rem;
}
.bl_interview table {
  font-size: 16px;
  font-size: 1rem;
}
.bl_interview table th,
.bl_interview table td {
  padding-top: 4px;
  padding-bottom: 4px;
  pointer-events: none;
}
.bl_interview table th:focus,
.bl_interview table td:focus {
  outline: none;
}
.bl_interview_slide {
  position: relative;
  /* スライダーのwrapper */
}
.bl_interview_slide .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.bl_interview_slide .swiper-wrapper img {
  border-radius: 10px;
}
.bl_interview_slide .is-layout-flex.swiper-wrapper {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.bl_interview_slide .wp-block-gallery.wp-block-gallery-1 {
  gap: 0;
}
.bl_interview_slide .bl_imgSlide_main {
  margin-bottom: 10px;
}
.bl_interview_slide .bl_imgSlide_thum .swiper-slide {
  width: calc((100% - 15px) / 4);
  background: #000000;
  border-radius: 10px;
}
.bl_interview_slide .bl_imgSlide_thum .swiper-slide img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .bl_interview_slide .bl_imgSlide_thum .swiper-slide {
    cursor: pointer;
  }
  .bl_interview_slide .bl_imgSlide_thum .swiper-slide:hover img {
    opacity: 0.7;
  }
}
.bl_interview_slide .bl_imgSlide_thum .swiper-slide.swiper-slide-thumb-active img {
  opacity: 0.5;
}

/* =================================================
    .bl_topics
=================================================== */
.bl_topics {
  width: 92%;
  padding-top: 40px;
  padding-bottom: 100px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .bl_topics {
    display: grid;
    grid-template-columns: 1fr 200px;
    width: 80%;
    max-width: 840px;
  }
}
.bl_topics_itemHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
@media screen and (min-width: 1025px) {
  .bl_topics_itemHeader {
    margin-bottom: 0;
    margin-right: 1em;
  }
}
.bl_topics_itemHeader time {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .bl_topics_loop {
    grid-row: inherit;
    grid-column: 1/2;
    grid-row: 1/2;
    margin: 0;
    margin-right: 50px;
  }
}
@media screen and (min-width: 768px) {
  .bl_topics .bl_aside {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.bl_topics .bl_aside h2 {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 20px;
  background: #67aeea;
  border-radius: 6px;
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1em;
  text-align: left;
  color: #fff;
}
.bl_topics .bl_aside ul li {
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid #67aeea;
}
.bl_topics .bl_aside ul li a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 25px 10px;
}
.bl_topics .bl_aside ul li a::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #67aeea;
}
@media screen and (min-width: 1025px) {
  .bl_topics .bl_aside ul li a:hover {
    opacity: 1;
    background: rgba(103, 174, 234, 0.15);
  }
}
@media screen and (min-width: 768px) {
  .bl_topics .el_pagenation {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.bl_topics_item {
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px dotted #333333;
}
.bl_topics_item:first-of-type {
  border-top: 1px dotted #333333;
}
@media screen and (min-width: 1025px) {
  .bl_topics_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.bl_topics_item a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 35px 20px;
  padding-right: 40px;
  font-size: 16px;
  font-size: 1rem;
}
.bl_topics_item a::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #284d90;
}
@media screen and (min-width: 1025px) {
  .bl_topics_item a:hover {
    opacity: 1;
    background: rgba(103, 174, 234, 0.15);
  }
}

.bl_post {
  margin-bottom: 80px;
}
.bl_post_ttl {
  margin-top: 10px;
  margin-bottom: 48px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #333333;
}
.bl_post body {
  font-size: 16px;
  font-size: 1rem;
}
.bl_post h2:not(.bl_post_ttl) {
  padding: 4px 18px 5px;
  margin-bottom: 30px;
  background: #67aeea;
  border-radius: 6px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bl_post h2:not(.bl_post_ttl) {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.bl_post h3 {
  padding-bottom: 4px;
  font-size: 20px;
  font-size: 1.25rem;
  color: #207bbf;
  border-bottom: 2px solid #207bbf;
}
.bl_post h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #284d90;
  border-bottom: 1px dashed #284d90;
}
.bl_post h5 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: 1px dotted #333333;
}
.bl_post h6 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
.bl_post p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.bl_post strong {
  font-weight: bold;
  color: #ce5a8b;
}
.bl_post a:link,
.bl_post a:visited,
.bl_post a:active {
  color: #207bbf;
  text-decoration: underline;
}
.bl_post ul li {
  position: relative;
  padding-left: 0.6em;
  margin-bottom: 0.3em;
}
.bl_post ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100vh;
  background: #333333;
  position: absolute;
  top: 0.6em;
  left: 0;
}
.bl_post ol {
  counter-reset: count 0;
}
.bl_post ol li {
  margin-bottom: 0.3em;
}
.bl_post ol li::before {
  content: counter(count, decimal-leading-zero) ". ";
  counter-increment: count 1;
}

/* =================================================
    single page パーツ
=================================================== */
.bl_page_single .el_btnWrap {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}
.bl_page_single .bl_pagenavi {
  padding-top: 20px;
  padding-bottom: 40px;
  border-top: 1px solid #284d90;
}
.bl_page_single .bl_pagenavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.bl_page_single .bl_pagenavi ul li {
  width: 48%;
}
.bl_page_single .bl_pagenavi ul li a {
  width: 100%;
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bl_page_single .bl_pagenavi ul li a::before, .bl_page_single .bl_pagenavi ul li a::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bl_page_single .bl_pagenavi_before a {
  padding-left: 1em;
}
.bl_page_single .bl_pagenavi_before a::before {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f053";
  left: 0;
}
.bl_page_single .bl_pagenavi_after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.bl_page_single .bl_pagenavi_after a {
  padding-right: 1em;
}
.bl_page_single .bl_pagenavi_after a::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  right: 0;
}

/* =================================================
    .bl_busStop
=================================================== */
.bl_busStop {
  position: relative;
}
@media screen and (min-width: 768px) {
  .bl_busStop .js_tabarea {
    display: block;
    opacity: 1;
  }
}
.bl_busStop_gnav {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 32px;
}
.bl_busStop_gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  margin: 0;
}
.bl_busStop_gnav ul::after {
  content: "";
  display: block;
  width: 24%;
}
.bl_busStop_gnav ul::before {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  content: "";
  display: block;
  width: 24%;
}
.bl_busStop_gnav ul li {
  width: 24%;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .bl_busStop_gnav ul li {
    margin-bottom: 0;
    width: auto;
  }
}
.bl_busStop_gnav ul li.is_active a {
  background: #67aeea;
  color: #fff;
}
.bl_busStop_gnav ul li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  border: 2px solid #67aeea;
  border-radius: 5px;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #67aeea;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_busStop_gnav ul li a:hover {
    opacity: 1;
    background: #67aeea;
    color: #fff;
  }
}
.bl_busStop_gnav ul li a.is_active {
  background: #67aeea;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .bl_busStop_gnav.is_fixed {
    position: fixed;
    top: 66px;
    z-index: 10;
    top: 93px;
    width: 80%;
    max-width: 800px;
  }
}
.bl_busStop_gnav.is_hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.bl_busStop_sec {
  display: block;
  opacity: 1;
}
.bl_busStop_sec.is_active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bl_busStop_sec h2 {
  width: 100vw;
  padding: 10px;
  margin: 0 -20px;
  background: #67aeea;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_busStop_sec h2 {
    width: 100%;
    margin: 0 auto;
  }
}
.bl_busStop_sec .el_subnav {
  display: none;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30px;
  border-top: 2px solid #67aeea;
}
@media screen and (min-width: 768px) {
  .bl_busStop_sec .el_subnav {
    display: block;
  }
}
.bl_busStop_sec .el_subnav.is_active {
  display: block;
}
.bl_busStop_sec .el_subnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-column-gap: 1%;
     -moz-column-gap: 1%;
          column-gap: 1%;
  margin: 0;
}
.bl_busStop_sec .el_subnav ul li {
  width: 19%;
}
.bl_busStop_sec .el_subnav ul li.is_active a {
  background: #67aeea;
  color: #fff;
}
.bl_busStop_sec .el_subnav ul li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  border: 2px solid rgba(103, 174, 234, 0.1);
  border-radius: 5px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #67aeea;
  background: rgba(103, 174, 234, 0.1);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_busStop_sec .el_subnav ul li a:hover {
    opacity: 1;
    background: #207bbf;
    color: #fff;
  }
}
.bl_busStop_sec .el_subnav ul li a.is_active {
  background: #67aeea;
  color: #67aeea;
}
@media screen and (min-width: 768px) {
  .bl_busStop_listWrap {
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
.bl_busStop_listWrap .el_listItem {
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #67aeea;
}
.bl_busStop_listWrap .el_listItem:first-of-type {
  border-top: 1px solid #67aeea;
}
@media screen and (min-width: 768px) {
  .bl_busStop_listWrap .el_listItem {
    width: calc(50% - 25px);
  }
  .bl_busStop_listWrap .el_listItem:nth-of-type(2) {
    border-top: 1px solid #67aeea;
  }
}
.bl_busStop_listWrap .el_listItem a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 15px 7px;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}
.bl_busStop_listWrap .el_listItem a span {
  display: block;
  margin-right: 1em;
}
.bl_busStop_listWrap .el_listItem a span:first-of-type {
  -ms-flex-preferred-size: 35.8208955224%;
      flex-basis: 35.8208955224%;
}
.bl_busStop_listWrap .el_listItem a span:nth-of-type(2) {
  -ms-flex-preferred-size: 41.7910447761%;
      flex-basis: 41.7910447761%;
}
.bl_busStop_listWrap .el_listItem a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background: url(../images/common/icon/icon_pdf__busstop.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .bl_busStop_listWrap .el_listItem a:hover {
    opacity: 1;
    background: rgba(103, 174, 234, 0.2);
  }
}
.bl_busStop_search {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_busStop_search {
    display: block;
    padding-top: 0px;
    padding-bottom: 80px;
    text-align: center;
  }
  .bl_busStop_search input[type=text] {
    max-width: 300px;
    display: block;
    margin: 0 auto 30px;
  }
}

.highlight {
  display: inline-block !important;
  margin: 0 3px !important;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #ffff00));
  background: linear-gradient(transparent 50%, #ffff00 0%);
}

.highlight:focus {
  background-color: #ff0000;
}

/* =================================================
    .路線　運賃・時刻 タブセクション
=================================================== */
@media screen and (min-width: 768px) {
  .bl_areaList {
    width: 94.7916666667%;
    max-height: 420px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    border: 2px solid #284d90;
    border-radius: 10px;
    overflow: hidden;
  }
}
@media screen and (min-width: 1025px) {
  .bl_areaList {
    width: 100%;
    max-width: 800px;
  }
}
.bl_areaList ul {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .bl_areaList .el_tablist {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 37%;
            flex: 0 0 37%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    overflow: auto;
  }
}
.bl_areaList .el_tablist li.el_flatList a {
  background: #ffe800;
  padding: 10px 30px;
  color: #5d5d5d;
}
@media screen and (min-width: 1025px) {
  .bl_areaList .el_tablist li.el_flatList a:hover {
    opacity: 0.7;
    background: #ffe800;
  }
}
.bl_areaList .el_tablist li {
  border-bottom: 2px solid #fff;
}
@media screen and (min-width: 768px) {
  .bl_areaList .el_tablist li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.bl_areaList .el_tablist li:last-of-type {
  border-bottom: none;
}
.bl_areaList .el_tablist li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 30px;
  background: #284d90;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .bl_areaList .el_tablist li a {
    background: rgba(40, 77, 144, 0.7);
  }
}
@media screen and (min-width: 1025px) {
  .bl_areaList .el_tablist li a:hover {
    opacity: 1;
    background: #284d90;
  }
}
.bl_areaList .el_tablist li a .el_pNo {
  margin-right: 23px;
  font-size: 24px;
  font-size: 1.5rem;
}
.bl_areaList .el_tablist li a .el_pNo::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f078";
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}
.bl_areaList .el_tablist li a .el_pName {
  font-size: 18px;
  font-size: 1.125rem;
}
.bl_areaList .el_tablist li.is_active a {
  opacity: 1;
  background: #284d90 !important;
  border: none !important;
}
.bl_areaList .bl_areamap {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_areaList .bl_areamap {
    display: block;
  }
}
.bl_areaList .bl_areamap ul {
  height: 100%;
}
.bl_areaList .bl_areamap li {
  position: relative;
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.bl_areaList .bl_areamap li.is_active {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.bl_areaList .bl_areamap li::before {
  content: "路線図";
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: auto;
  padding: 3px 10px;
  border: 2px solid #333333;
  border-radius: 5px;
  background: rgba(103, 174, 234, 0.15) url(../images/common/icon/icon_pdf.svg) no-repeat right 10px center/42px 20px;
  color: #333333;
  pointer-events: none;
  z-index: 11;
}
.bl_areaList .bl_areamap li.el_noMap::before {
  display: none;
}
.bl_areaList .bl_areamap li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
}
.bl_areaList .bl_areamap li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}

/* =================================================
    .bl_area
=================================================== */
.bl_area_ttl {
  height: 82px;
  padding: 10px;
  border-top: 2px solid #284d90;
  border-bottom: 2px solid #284d90;
  margin-bottom: 10px;
  background: rgba(32, 123, 191, 0.2);
}
.bl_area_ttl h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(16px, 4.7058823529vw, 20px);
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #284d90;
}
@media screen and (min-width: 768px) {
  .bl_area_ttl h2 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.bl_area_ttlNo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bl_area_ttlNo p {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #284d90;
}
.bl_area_ttlName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bl_area_img a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
}
.bl_area_img a::before {
  content: "路線図";
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: auto;
  padding: 3px 10px;
  border: 2px solid #333333;
  border-radius: 5px;
  background: rgba(103, 174, 234, 0.15) url(../images/common/icon/icon_pdf.png) no-repeat right 10px center/42px 20px;
  color: #333333;
  pointer-events: none;
}
.bl_area_linename {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.bl_area_linename h3 {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.bl_area_linename .alignright {
  -webkit-margin-start: 0 !important;
          margin-inline-start: 0 !important;
}
.bl_area_no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.bl_area_no p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 26px;
  height: 26px;
  margin: 0 !important;
  background: #284d90;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
.bl_area .el_lead {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

/* =================================================
    運賃の支払いについて
=================================================== */
.is-root-container :where(.has-global-padding).bl_payment,
.bl_payment {
  padding: 30px 15px;
}
@media screen and (min-width: 768px) {
  .is-root-container :where(.has-global-padding).bl_payment,
  .bl_payment {
    padding: 30px 35px;
  }
}

.bl_payment_card h3 {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 5px;
  background: #284d90;
  border-radius: 100vh;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.bl_payment_img {
  width: 100%;
  text-align: center;
  -ms-flex-preferred-size: 190px;
      flex-basis: 190px;
}
.bl_payment_img .js_matchHeight_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 1em;
}
.bl_payment_img p {
  font-size: 16px;
  font-size: 1rem;
  color: #284d90;
  text-align: center;
  line-height: 1.5;
}
.bl_payment_img p strong {
  font-size: 20px;
  font-size: 1.25rem;
}
.bl_payment_explanation {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 12px;
  background: rgba(206, 90, 139, 0.1);
  color: #ce5a8b;
  text-align: center;
  letter-spacing: 0.05em;
}
.bl_payment_explanation .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  width: auto;
}

.bl_paymentExWrap {
  border-top: 2px dotted #284d90;
}

.bl_paymentEx .wp-block-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

/* =================================================
    .bl_flat_wrap
=================================================== */
/* =================================================
    .bl_faqNavi
=================================================== */
.bl_faqNavi {
  max-width: 530px;
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl_faqNavi::after {
  content: "";
  display: block;
  width: 49.5%;
}
@media screen and (min-width: 768px) {
  .bl_faqNavi::after {
    width: 33%;
  }
}
@media screen and (min-width: 768px) {
  .bl_faqNavi {
    margin: 0 auto 80px;
  }
}
.bl_faqNavi li {
  width: 49.5%;
  margin-bottom: 1%;
}
@media screen and (min-width: 768px) {
  .bl_faqNavi li {
    width: 33%;
  }
}
.bl_faqNavi li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 1em 0.5em;
  border: 2px solid #284d90;
  border-radius: 10px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  color: #284d90;
}
@media screen and (min-width: 1025px) {
  .bl_faqNavi li a:hover {
    opacity: 1;
    background: #207bbf;
    border: 2px solid #207bbf;
    color: #fff;
  }
}
.bl_faqNavi li.is_active a {
  background: #207bbf;
  color: #fff;
  border: 2px solid #207bbf;
}

/* =================================================
    .el_faqlist
=================================================== */
.el_faqlist dt {
  position: relative;
  padding: 15px 50px 15px;
  margin: 0;
  background: rgba(40, 77, 144, 0.1);
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.el_faqlist dt {
  margin-bottom: 1em;
}
.el_faqlist dt::before {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: #284d90;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 26px;
  font-size: 1.625rem;
  color: #fff;
}
.el_faqlist dt::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 26px;
  font-size: 1.625rem;
  color: #284d90;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.el_faqlist dt.is_open::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f068";
}
.el_faqlist dd {
  display: none;
  opacity: 0;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  margin: 0;
  padding: 20px;
  padding-left: 50px;
  border: 1px solid #284d90;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.el_faqlist dd::before {
  display: none;
  opacity: 0;
  content: "A";
  position: absolute;
  top: 25px;
  left: 15px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 26px;
  font-size: 1.625rem;
  color: #284d90;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.el_faqlist dd.block-editor-rich-text__editable {
  display: block;
}
.el_faqlist dd.block-editor-rich-text__editable::before {
  display: block;
  opacity: 1;
}
.el_faqlist dt.is_open + dd::before {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.el_faqlist a {
  color: #67aeea;
  text-decoration: underline;
}

/* =================================================
    定期券ページパーツ
=================================================== */
.bl_pagePass_headlineDecoration_purple, .bl_pagePass_headlineDecoration_pink, .bl_pagePass_headlineDecoration_green {
  position: relative;
}
@media screen and (min-width: 600px) {
  .bl_pagePass_headlineDecoration_purple br, .bl_pagePass_headlineDecoration_pink br, .bl_pagePass_headlineDecoration_green br {
    display: none;
  }
}
.bl_pagePass_headlineDecoration_purple::before, .bl_pagePass_headlineDecoration_pink::before, .bl_pagePass_headlineDecoration_green::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 26px;
  -webkit-transform: rotate(-30deg) translateY(20%);
          transform: rotate(-30deg) translateY(20%);
  margin-right: 1em;
  background: #83cea8;
  position: absolute;
  bottom: 0;
  left: 5%;
}
@media screen and (min-width: 600px) {
  .bl_pagePass_headlineDecoration_purple::before, .bl_pagePass_headlineDecoration_pink::before, .bl_pagePass_headlineDecoration_green::before {
    position: static;
  }
}
.bl_pagePass_headlineDecoration_purple::after, .bl_pagePass_headlineDecoration_pink::after, .bl_pagePass_headlineDecoration_green::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 26px;
  -webkit-transform: rotate(30deg) translateY(20%);
          transform: rotate(30deg) translateY(20%);
  margin-left: 1em;
  background: #83cea8;
  position: absolute;
  bottom: 0;
  right: 5%;
}
@media screen and (min-width: 600px) {
  .bl_pagePass_headlineDecoration_purple::after, .bl_pagePass_headlineDecoration_pink::after, .bl_pagePass_headlineDecoration_green::after {
    position: static;
  }
}

.bl_pagePass_headlineDecoration_pink::before {
  background: #e081a6;
}
.bl_pagePass_headlineDecoration_pink::after {
  background: #e081a6;
}
.bl_pagePass_headlineDecoration_purple::before {
  background: #c78ff0;
}
.bl_pagePass_headlineDecoration_purple::after {
  background: #c78ff0;
}
.bl_pagePass_studentPassTable {
  position: relative;
}
.bl_pagePass_studentPassTable h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
}
.bl_pagePass_studentPassTable .wp-block-table {
  position: relative;
  margin-top: 5px;
}
.bl_pagePass_studentPassTable .wp-block-table table {
  width: 610px;
  table-layout: fixed;
}
.bl_pagePass_studentPassTable .wp-block-table table thead {
  border: none;
}
.bl_pagePass_studentPassTable .wp-block-table table th,
.bl_pagePass_studentPassTable .wp-block-table table td {
  border-color: #777777;
  background: #fff;
  padding: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.bl_pagePass_studentPassTable .wp-block-table table th strong,
.bl_pagePass_studentPassTable .wp-block-table table td strong {
  color: #ce5a8b;
}
.bl_pagePass_studentPassTable .wp-block-table table th {
  background: #83cea8;
  color: #fff;
}
.bl_pagePass_discountTable .wp-block-table {
  position: relative;
}
.bl_pagePass_discountTable .wp-block-table table {
  width: 100%;
}
.bl_pagePass_discountTable .wp-block-table table thead {
  border: none;
}
.bl_pagePass_discountTable .wp-block-table table thead th {
  display: none;
  background: rgba(32, 123, 191, 0.5);
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .bl_pagePass_discountTable .wp-block-table table thead th {
    display: table-cell;
    width: 10em;
  }
}
.bl_pagePass_discountTable .wp-block-table table thead th:first-of-type {
  width: auto;
}
.bl_pagePass_discountTable .wp-block-table table th,
.bl_pagePass_discountTable .wp-block-table table td {
  display: block;
  border: none;
  background: #fff;
  padding: 10px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .bl_pagePass_discountTable .wp-block-table table th,
  .bl_pagePass_discountTable .wp-block-table table td {
    display: table-cell;
    border: 1px solid #707070;
  }
}
.bl_pagePass_discountTable .wp-block-table table th strong,
.bl_pagePass_discountTable .wp-block-table table td strong {
  color: #ce5a8b;
}
.bl_pagePass_discountTable .wp-block-table table th {
  background: rgba(32, 123, 191, 0.5);
  color: #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .bl_pagePass_discountTable .wp-block-table table th {
    margin-top: 0;
    background: rgba(32, 123, 191, 0.1);
    color: #333333;
    font-weight: normal;
    text-align: left;
  }
}
.bl_pagePass_discountTable .wp-block-table table td {
  text-align: center;
}
.bl_pagePass_discountTable .wp-block-table table td[data-title]::before {
  color: #333333;
  content: attr(data-title) " :";
  font-weight: bold;
  padding: 0 10px 0 0;
  display: inline;
}
@media screen and (min-width: 768px) {
  .bl_pagePass_discountTable .wp-block-table table td[data-title]::before {
    display: none;
  }
}
.bl_pagePass_discountTable .wp-block-table .wp-element-caption {
  margin-top: 5px;
  text-align: left;
}
.bl_pagePass_salesWindowTable .wp-block-table {
  position: relative;
  margin-top: 5px;
}
.bl_pagePass_salesWindowTable .wp-block-table table {
  width: 100%;
  max-width: 700px;
}
.bl_pagePass_salesWindowTable .wp-block-table table thead {
  border: none;
}
.bl_pagePass_salesWindowTable .wp-block-table table thead th {
  display: none;
  background: rgba(32, 123, 191, 0.5);
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .bl_pagePass_salesWindowTable .wp-block-table table thead th {
    display: table-cell;
  }
}
.bl_pagePass_salesWindowTable .wp-block-table table thead th:first-of-type {
  width: auto;
}
.bl_pagePass_salesWindowTable .wp-block-table table th,
.bl_pagePass_salesWindowTable .wp-block-table table td {
  display: block;
  border-color: #707070;
  background: #fff;
  padding: 10px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .bl_pagePass_salesWindowTable .wp-block-table table th,
  .bl_pagePass_salesWindowTable .wp-block-table table td {
    display: table-cell;
  }
}
.bl_pagePass_salesWindowTable .wp-block-table table th strong,
.bl_pagePass_salesWindowTable .wp-block-table table td strong {
  color: #ce5a8b;
}
.bl_pagePass_salesWindowTable .wp-block-table table th {
  background: rgba(32, 123, 191, 0.5);
  color: #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .bl_pagePass_salesWindowTable .wp-block-table table th {
    background: rgba(32, 123, 191, 0.1);
    color: #333333;
    font-weight: normal;
    text-align: left;
  }
}
.bl_pagePass_salesWindowTable .wp-block-table table td {
  text-align: center;
  margin-top: -1px;
}
@media screen and (min-width: 600px) {
  .bl_pagePass_salesWindowTable .wp-block-table table td {
    margin-top: 0;
  }
}
.bl_pagePass_salesWindowTable .wp-block-table table td[data-title]::before {
  color: #333333;
  content: attr(data-title) " :";
  font-weight: bold;
  padding: 0 10px 0 0;
  display: inline;
}
@media screen and (min-width: 600px) {
  .bl_pagePass_salesWindowTable .wp-block-table table td[data-title]::before {
    display: none;
  }
}
.bl_pagePass_salesWindowTable .wp-block-table .wp-element-caption {
  margin-top: 5px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .bl_cardifo .wp-element-caption {
    font-size: 10px;
    font-size: 0.625rem;
  }
}

/* =================================================
    .bl_platformNavi
=================================================== */
.bl_platformNavi {
  margin: 0 auto 50px;
  -webkit-margin-after: 50px;
          margin-block-end: 50px;
}
@media screen and (min-width: 768px) {
  .bl_platformNavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto 80px;
    -webkit-margin-after: 80px;
            margin-block-end: 80px;
  }
}
.bl_platformNavi li {
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .bl_platformNavi li {
    width: 32%;
    margin-bottom: 1%;
  }
}
.bl_platformNavi li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 1em 0.5em;
  border: 2px solid #284d90;
  border-radius: 10px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: #284d90;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_platformNavi li a:hover {
    opacity: 1;
    background: #207bbf;
    border: 2px solid #207bbf;
    color: #fff;
  }
}
.bl_platformNavi li.is_active a {
  background: #207bbf;
  color: #fff;
  border: 2px solid #207bbf;
}

/* =================================================
    .bl_platformLIst
=================================================== */
.bl_platformLIst {
  padding: 10px;
  padding-left: 20px;
  -webkit-margin-before: 0 !important;
          margin-block-start: 0 !important;
  -webkit-margin-after: 5px !important;
          margin-block-end: 5px !important;
  background: rgba(40, 77, 144, 0.1);
}
.bl_platformLIst_name h3 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.bl_platformLIst_name h3 strong {
  display: inline-block;
  margin-right: 1em;
  font-weight: 700;
}
.bl_platformLIst_no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bl_platformLIst_no p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28px;
  height: 28px;
  background: #284d90;
  border-radius: 5px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.el_shodoshima {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .el_shodoshima {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}
.el_shodoshima a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 345px;
  height: auto;
  box-sizing: border-box;
  position: relative;
  padding: 10px 20px;
  padding-right: 50px;
  border-radius: 10px;
  background: #67aeea;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: left;
}
.el_shodoshima a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../images/common/icon/icon_blank__white.svg) no-repeat center center/contain;
}

/* =================================================
    お得な制度
=================================================== */
.bl_pageGain_kamomeTable {
  position: relative;
}
.bl_pageGain_kamomeTable table {
  width: 90%;
}
.bl_pageGain_kamomeTable table th,
.bl_pageGain_kamomeTable table td {
  display: block;
  background: rgba(32, 123, 191, 0.1);
  border: 2px solid #fff;
  padding: 10px 1em;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .bl_pageGain_kamomeTable table th,
  .bl_pageGain_kamomeTable table td {
    display: table-cell;
  }
}
.bl_pageGain_kamomeTable table th {
  background: rgba(32, 123, 191, 0.8);
  color: #fff;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .bl_pageGain_kamomeTable table th {
    min-width: 8em;
  }
}
.bl_pageGain_gainpriceTable .wp-block-table {
  position: relative;
}
.bl_pageGain_gainpriceTable .wp-block-table table {
  width: 100%;
  max-width: 610px;
}
.bl_pageGain_gainpriceTable .wp-block-table table thead {
  border: none;
}
.bl_pageGain_gainpriceTable .wp-block-table table thead th {
  display: none;
  background: rgba(32, 123, 191, 0.5);
  text-align: center;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .bl_pageGain_gainpriceTable .wp-block-table table thead th {
    display: table-cell;
  }
}
.bl_pageGain_gainpriceTable .wp-block-table table thead th:first-of-type {
  background: #fff;
}
.bl_pageGain_gainpriceTable .wp-block-table table th,
.bl_pageGain_gainpriceTable .wp-block-table table td {
  display: block;
  border-color: #707070;
  background: #fff;
  padding: 10px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .bl_pageGain_gainpriceTable .wp-block-table table th,
  .bl_pageGain_gainpriceTable .wp-block-table table td {
    display: table-cell;
  }
}
.bl_pageGain_gainpriceTable .wp-block-table table th strong,
.bl_pageGain_gainpriceTable .wp-block-table table td strong {
  color: #ce5a8b;
}
.bl_pageGain_gainpriceTable .wp-block-table table th {
  background: rgba(32, 123, 191, 0.5);
  color: #fff;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .bl_pageGain_gainpriceTable .wp-block-table table th {
    background: rgba(32, 123, 191, 0.1);
    color: #333333;
    font-weight: normal;
    text-align: left;
  }
}
.bl_pageGain_gainpriceTable .wp-block-table table td {
  text-align: center;
  margin-top: -1px;
}
@media screen and (min-width: 600px) {
  .bl_pageGain_gainpriceTable .wp-block-table table td {
    margin-top: 0;
  }
}
.bl_pageGain_gainpriceTable .wp-block-table table td[data-title]::before {
  color: #333333;
  content: attr(data-title) " :";
  font-weight: bold;
  padding: 0 10px 0 0;
  display: inline;
}
@media screen and (min-width: 600px) {
  .bl_pageGain_gainpriceTable .wp-block-table table td[data-title]::before {
    display: none;
  }
}
.bl_pageGain_gainpriceTable .wp-block-table .wp-element-caption {
  margin-top: 5px;
  text-align: left;
}
.bl_pageGain_mirairoTable .scroll-hint-icon-wrap {
  margin-top: 0 !important;
}
.bl_pageGain_mirairoTable table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  table-layout: fixed;
}
.bl_pageGain_mirairoTable table th,
.bl_pageGain_mirairoTable table td {
  border: 1px solid #707070;
  background: #fff;
  padding: 9px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .bl_pageGain_mirairoTable table th,
  .bl_pageGain_mirairoTable table td {
    display: table-cell;
  }
}
.bl_pageGain_mirairoTable table th strong,
.bl_pageGain_mirairoTable table td strong {
  color: #ce5a8b;
}
.bl_pageGain_mirairoTable table .el_spnone {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_pageGain_mirairoTable table .el_spnone {
    display: table-row;
  }
}
.bl_pageGain_mirairoTable table .el_th_spnone {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_pageGain_mirairoTable table .el_th_spnone {
    display: table-cell;
  }
}
.bl_pageGain_mirairoTable table .el_pcnone {
  display: table-row;
}
@media screen and (min-width: 768px) {
  .bl_pageGain_mirairoTable table .el_pcnone {
    display: none;
  }
}
.bl_pageGain_mirairoTable table .el_th_pcnone {
  display: table-cell;
}
@media screen and (min-width: 768px) {
  .bl_pageGain_mirairoTable table .el_th_pcnone {
    display: none;
  }
}
.bl_pageGain_mirairoTable table th {
  background: rgba(32, 123, 191, 0.3);
  color: #333333;
  font-weight: normal;
  text-align: center;
}
.bl_pageGain_mirairoTable table td {
  text-align: center;
}
.bl_pageGain_mirairoTable .wp-element-caption {
  margin-top: 5px;
  text-align: left;
}

.el_iconBlank a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
}
.el_iconBlank a::before {
  content: "詳細";
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: auto;
  padding: 3px 10px;
  border: 2px solid #333333;
  border-radius: 5px;
  background: #fff url(../images/common/icon/icon_pdf.svg) no-repeat right 10px center/42px 20px;
  color: #333333;
  pointer-events: none;
  z-index: 11;
}

/* =================================================
    観光ページアコーディオン　
=================================================== */
.page-id-65 h2 {
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
}
.page-id-65 h2::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f13a";
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.page-id-65 h2.is_open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.page-id-65 h2 + div {
  display: none;
}

/* =================================================
    リムジンバスページ
=================================================== */
.bl_rimujin_pass .el_table-pass table {
  max-width: 340px;
  margin: 0;
}
.bl_rimujin_pass .bl_toggle_cont {
  display: none;
}
.bl_rimujin_pass .bl_toggle_cont .el_table-pass.wp-block-table table {
  border: 1px solid #333;
}
.bl_rimujin_pass .bl_toggle_cont .el_table-pass.wp-block-table table th {
  border: none;
}

.block-editor-block-list__layout .block-editor-block-list__block.el_table-pass table {
  max-width: 340px;
  margin: 0;
}
.block-editor-block-list__layout .block-editor-block-list__block.bl_toggle_cont {
  display: block;
}
.block-editor-block-list__layout .block-editor-block-list__block.bl_toggle_cont .el_table-pass.wp-block-table th {
  border-bottom: none;
}

/* =================================================
    gutenberg設定
=================================================== */
.underline {
  font-weight: bold;
  color: #284d90;
}

.block-editor-rich-text__editable.has-text-align-right {
  text-align: right !important;
}

.has-global-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 1280px) {
  .has-global-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.is-layout-flow.wp-block-group,
.bl_wrapsection {
  padding: 0;
}
@media screen and (min-width: 1280px) {
  .is-layout-flow.wp-block-group,
  .bl_wrapsection {
    padding: 0 22px;
  }
}
@media screen and (min-width: 1280px) {
  .is-layout-flow.wp-block-group.el_padding55,
  .bl_wrapsection.el_padding55 {
    padding: 0 55px;
  }
}

.wp-block-image.is-style-rounded img {
  border-radius: 16px;
}

/* =================================================
    関数で追加した書式のCSS
=================================================== */
.is-style-rm-margin-top {
  -webkit-margin-before: 0 !important;
          margin-block-start: 0 !important;
  margin-top: 0 !important;
}

.wp-block-image.is-style-round img {
  border-radius: 10px !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.is-style-round-line img {
  width: 100%;
  border: 2px solid #ccc;
}
@media screen and (min-width: 768px) {
  .is-style-round-line img {
    border: 1px solid #ccc;
  }
}

.is-style-button_jikoku_busstop {
  display: block;
}
.is-style-button_jikoku_busstop .wp-block-button {
  width: 100%;
  text-align: center;
}
.is-style-button_jikoku_busstop .wp-element-button {
  width: 100%;
  padding: 15px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #284d90;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #284d90;
}
@media screen and (min-width: 768px) {
  .is-style-button_jikoku_busstop .wp-element-button {
    width: 75%;
    max-width: 600px;
  }
}
@media screen and (min-width: 1025px) {
  .is-style-button_jikoku_busstop .wp-element-button:hover {
    opacity: 1;
    background: #eaedf4;
  }
}

.is-style-button_pdf_unchin .wp-element-button {
  width: 100%;
  padding: 18px;
  background: #67aeea;
  border-radius: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.wp-block-button.is-style-button_link-blank {
  display: block !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  position: relative;
  margin-top: 10px !important;
}
.wp-block-button.is-style-button_link-blank .wp-element-button {
  width: 100%;
  padding: 13px 20px;
  padding-right: 100px;
  border: 2px solid #333333;
  border-radius: 10px;
  background: #fff;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333333;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .wp-block-button.is-style-button_link-blank .wp-element-button {
    padding: 13px 40px;
  }
}
@media screen and (min-width: 1025px) {
  .wp-block-button.is-style-button_link-blank .wp-element-button:hover {
    opacity: 1;
    background: rgba(51, 51, 51, 0.1);
  }
}
.wp-block-button.is-style-button_link-blank .wp-element-button::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background: url(../images/common/icon/icon_blank__defult.svg) no-repeat center center/contain;
}

.is-style-button_pdf_jikoku .wp-element-button {
  width: 100%;
  padding: 18px;
  background: #c099dd;
  border-radius: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.is-style-block-file_pdf__defult {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin-top: 10px !important;
}
.is-style-block-file_pdf__defult a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 20px;
  padding-right: 100px;
  border: 2px solid #333333;
  border-radius: 10px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .is-style-block-file_pdf__defult a {
    padding: 13px 40px;
  }
}
@media screen and (min-width: 1025px) {
  .is-style-block-file_pdf__defult a:hover {
    opacity: 1;
    background: rgba(51, 51, 51, 0.1);
  }
}
.is-style-block-file_pdf__defult::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background: url(../images/common/icon/icon_pdf.svg) no-repeat center center/contain;
}

.is-style-block-file_pdf {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin-top: 10px !important;
}
.is-style-block-file_pdf a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 20px;
  padding-right: 100px;
  border: 2px solid #207bbf;
  border-radius: 10px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #207bbf;
}
@media screen and (min-width: 768px) {
  .is-style-block-file_pdf a {
    padding: 13px 40px;
  }
}
@media screen and (min-width: 1025px) {
  .is-style-block-file_pdf a:hover {
    opacity: 1;
    background: rgba(32, 123, 191, 0.1);
  }
}
.is-style-block-file_pdf::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background: url(../images/common/icon/icon_pdf__blue.svg) no-repeat center center/contain;
}

.is-style-block-file_pdf__limousine {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin-top: 10px !important;
}
.is-style-block-file_pdf__limousine a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 20px;
  padding-right: 100px;
  border: 2px solid #ff6200;
  border-radius: 10px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ff6200;
}
@media screen and (min-width: 768px) {
  .is-style-block-file_pdf__limousine a {
    padding: 13px 40px;
  }
}
@media screen and (min-width: 1025px) {
  .is-style-block-file_pdf__limousine a:hover {
    opacity: 1;
    background: rgba(255, 98, 0, 0.1);
  }
}
.is-style-block-file_pdf__limousine::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 42px;
  height: 20px;
  background: url(../images/common/icon/icon_pdf_orange.svg) no-repeat center center/contain;
}

.is-style-button_recruit_graduation1 {
  display: block;
}
.is-style-button_recruit_graduation1 .wp-block-button {
  width: 100%;
  text-align: center;
}
.is-style-button_recruit_graduation1 .wp-element-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 220px;
  height: 60px;
  padding: 0;
  margin: 0 auto;
  background-image: linear-gradient(#4a85e7, #4a85e7), linear-gradient(80deg, #4a85e7 0%, #67d1c4 65%, #f4ea97 100%);
  background-repeat: no-repeat;
  background-position: left center, center center;
  background-size: 0 100%, 100% 100%;
  border-radius: 100vh;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  -webkit-transition: background-size 0.35s ease-in-out, opacity 0.3s ease-in-out;
  transition: background-size 0.35s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 1;
  cursor: pointer;
}
.is-style-button_recruit_graduation1 .wp-element-button::after {
  content: "";
  width: 14px;
  height: 16px;
  background: url(../images/recruit/icon_btn-arrow.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .is-style-button_recruit_graduation1 .wp-element-button {
    width: 75%;
    max-width: 600px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .is-style-button_recruit_graduation1 .wp-element-button:hover {
    opacity: 1;
    background-size: 100% 100%, 100% 100%;
  }
}

.is-style-button_recruit_graduation-L {
  display: block;
}
.is-style-button_recruit_graduation-L .wp-block-button {
  width: clamp(320px, 215.9938366718px + 27.7349768875vw, 500px);
}
.is-style-button_recruit_graduation-L .wp-element-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 500px;
  height: 100px;
  padding: 0 clamp(60px, 36.8875192604px + 6.1633281972vw, 100px);
  margin: 0 auto;
  background-image: linear-gradient(#4a85e7, #4a85e7), linear-gradient(80deg, #4a85e7 0%, #67d1c4 65%, #f4ea97 100%);
  background-repeat: no-repeat;
  background-position: left center, center center;
  background-size: 0 100%, 100% 100%;
  border-radius: 100vh;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #fff;
  -webkit-transition: background-size 0.35s ease-in-out, opacity 0.3s ease-in-out;
  transition: background-size 0.35s ease-in-out, opacity 0.3s ease-in-out;
}
.is-style-button_recruit_graduation-L .wp-element-button::after {
  content: "";
  width: 14px;
  height: 16px;
  background: url(../images/recruit/icon_btn-arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: clamp(60px, 36.8875192604px + 6.1633281972vw, 100px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (hover: hover) and (pointer: fine) {
  .is-style-button_recruit_graduation-L .wp-element-button:hover {
    opacity: 1;
    background-size: 100% 100%, 100% 100%;
  }
}
.is-style-button_recruit_graduation-L .wp-element-button span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.03em;
  color: #fff;
}

.is-style-default li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.is-style-default li:before {
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: "・";
}

.is-style-liststyle-circle_defult {
  padding-left: 1em;
}
.is-style-liststyle-circle_defult li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  line-height: 1.875;
}
.is-style-liststyle-circle_defult li:before {
  border-radius: 100vh;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: #333333;
}

.is-style-liststyle-circle_bland li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.is-style-liststyle-circle_bland li:before {
  border-radius: 100vh;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: #284d90;
}

.is-style-liststyle-circle_bland2 li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.is-style-liststyle-circle_bland2 li:before {
  border-radius: 100vh;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: #207bbf;
}
.is-style-liststyle-circle_bland2 li > ol li {
  padding-left: 0;
  counter-increment: cnt;
}
.is-style-liststyle-circle_bland2 li > ol li:before {
  width: auto;
  height: 1em;
  margin-right: 0.3em;
  display: inline-block;
  position: static;
  content: "(" counter(cnt) ") ";
  background: transparent;
}

.is-style-liststyle-circle_bland4 li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.is-style-liststyle-circle_bland4 li:before {
  border-radius: 100vh;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: #ce5a8b;
}
.is-style-liststyle-circle_bland4 li > ul > li:before {
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: "・";
  background: transparent;
}

.is-style-liststyle-circle_blue li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.is-style-liststyle-circle_blue li:before {
  border-radius: 100vh;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: #64adec;
}

.is-style-listItem-color_bland4 {
  color: #ce5a8b;
}

.is-style-liststyle-kome_defult li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.is-style-liststyle-kome_defult li:before {
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: "※";
}

.is-style-liststyle-square_blue li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  line-height: 1.875;
}
.is-style-liststyle-square_blue li:before {
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: #64adec;
}

.is-style-liststyle-navi_limousine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #ff6200;
  width: 92%;
  gap: 5px;
  row-gap: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .is-style-liststyle-navi_limousine {
    gap: 15px;
  }
}
.is-style-liststyle-navi_limousine li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
.is-style-liststyle-navi_limousine li a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  padding: 11px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .is-style-liststyle-navi_limousine li a:hover {
    background: #ffe0cd;
    color: #ff6200;
  }
}
.is-style-liststyle-navi_limousine li a:after {
  position: absolute;
  top: 50%;
  right: -5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transform: translateY(-50%);
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f078";
  font-size: 14px;
  font-size: 0.875rem;
}

.is-style-liststyle-circle_limousine li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.is-style-liststyle-circle_limousine li:before {
  border-radius: 100vh;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  content: "";
  background: #ff6200;
}

.is-style-liststyle-dot_defult {
  list-style-type: disc;
  padding-left: 1em;
}
.is-style-liststyle-dot_defult li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.5em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.is-style-liststyle-dot_defult li:before {
  display: none;
}

.wp-block-table.is-style-no-border {
  overflow: visible;
}
.wp-block-table.is-style-no-border table,
.wp-block-table.is-style-no-border thead,
.wp-block-table.is-style-no-border th,
.wp-block-table.is-style-no-border td {
  border: none;
}

.wp-block-table.is-style-harecahalf-table {
  overflow: visible;
}
.wp-block-table.is-style-harecahalf-table th,
.wp-block-table.is-style-harecahalf-table td {
  padding: 0.6em;
  border: none;
  font-size: 16px;
  font-size: 1rem;
  color: #333333;
  text-align: left;
  font-weight: normal;
}
.wp-block-table.is-style-harecahalf-table th {
  white-space: nowrap;
  font-weight: normal;
  vertical-align: text-top;
}

.wp-block-table.is-style-teiki_kikan-table {
  overflow: visible;
}
.wp-block-table.is-style-teiki_kikan-table table,
.wp-block-table.is-style-teiki_kikan-table th,
.wp-block-table.is-style-teiki_kikan-table td {
  border: none;
  padding: 5px 0;
}
.wp-block-table.is-style-teiki_kikan-table th {
  width: 3em;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  vertical-align: text-top;
}
.wp-block-table.is-style-teiki_kikan-table td {
  font-size: 16px;
  font-size: 1rem;
}

.wp-block-table.is-style-kanko-table {
  overflow: visible;
}
.wp-block-table.is-style-kanko-table th,
.wp-block-table.is-style-kanko-table td {
  padding: 0.6em;
  border: 1px solid #284d90;
  font-size: 16px;
  font-size: 1rem;
  color: #333333;
  text-align: left;
}
.wp-block-table.is-style-kanko-table th {
  background: rgba(103, 174, 234, 0.15);
  white-space: nowrap;
  font-weight: normal;
}

.wp-block-table.is-style-horizontal-border {
  overflow: visible;
}
.wp-block-table.is-style-horizontal-border table,
.wp-block-table.is-style-horizontal-border th,
.wp-block-table.is-style-horizontal-border td {
  border: none;
}
.wp-block-table.is-style-horizontal-border table {
  width: auto;
}
.wp-block-table.is-style-horizontal-border th,
.wp-block-table.is-style-horizontal-border td {
  padding: 0.5em 1em;
  display: block;
}
@media screen and (min-width: 768px) {
  .wp-block-table.is-style-horizontal-border th,
  .wp-block-table.is-style-horizontal-border td {
    display: table-cell;
    padding: 1em;
  }
}
.wp-block-table.is-style-horizontal-border tr {
  border-bottom: 1px solid #333333;
}
.wp-block-table.is-style-horizontal-border tr:first-of-type {
  border-top: 1px solid #333333;
}

.is-style-decoration-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.is-style-decoration-sub_16_bold {
  font-size: 18px;
  font-size: 1.125rem;
  color: #284d90;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.is-style-decoration-round_h3_teiki {
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(103, 174, 234, 0.8);
  border-radius: 100vh;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.5;
}

.is-style-decoration-round_no_platform {
  width: 50px;
  height: 50px;
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #284d90;
  border-radius: 100vh;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.is-style-decoration-background_limousine2 {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 12px 20px;
  padding-left: 66px;
  border-bottom: 2px solid #ff6200;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ff6200;
}
.is-style-decoration-background_limousine2::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 36px;
  height: 36px;
  background: url(../images/limousine/icon_limousine2.svg) no-repeat center center/contain;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.is-style-decoration-background_limousine3 {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 260px;
  position: relative;
  padding: 3px 20px;
  background: rgba(255, 98, 0, 0.2);
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ff6200;
}

.is-style-decoration-background_bland,
h3.is-style-decoration-background_bland {
  padding: 8px;
  margin-bottom: 30px;
  background: #284d90;
  border-radius: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}

.is-style-decoration-background_bland2,
h3.is-style-decoration-background_bland {
  padding: 8px;
  margin-bottom: 30px;
  background: #207bbf;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
.is-style-decoration-background_bland2 span,
h3.is-style-decoration-background_bland span {
  font-size: 80%;
}
@media screen and (min-width: 768px) {
  .is-style-decoration-background_bland2 br,
  h3.is-style-decoration-background_bland br {
    display: none;
  }
}

.is-style-decoration-linebottom {
  padding-bottom: 4px;
  border-bottom: 2px solid #284d90;
}

.is-style-decoration-linebottom67aeea {
  padding-bottom: 4px;
  border-bottom: 2px solid #67aeea;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.is-style-decoration-linebottom__white {
  padding-bottom: 4px;
  border-bottom: 2px solid #fff;
}

.is-style-decoration-recruitTtl {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  color: #333333;
  font-weight: 700;
  text-align: center;
}
.is-style-decoration-recruitTtl span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.03em;
  font-family: "Montserrat", sans-serif;
  color: #333333;
  font-weight: 400;
  text-align: center;
}

.is-style-decoration-recruitTtl__white {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.3333333333;
  letter-spacing: 0em;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.is-style-decoration-recruitTtl__white span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.03em;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  text-align: center;
}

.is-style-decoration-recruitTtl_h2 {
  width: 100%;
  padding: 6px 20px;
  border-radius: 6px;
  background-color: #0a34a5;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0.03em;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.is-style-decoration-recruitTtl_h2 + * {
  margin-top: 20px;
}
* + .is-style-decoration-recruitTtl_h2 {
  margin-top: 55px;
}

.is-style-decoration-recruitTtl_h3 {
  width: 100%;
  padding: 6px 20px;
  border-radius: 6px;
  background-color: #6995db;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0.03em;
  color: #fff;
  font-weight: 700;
  text-align: left;
}
.is-style-decoration-recruitTtl_h3 + * {
  margin-top: 20px;
}
* + .is-style-decoration-recruitTtl_h3 {
  margin-top: 55px;
}

/* =================================================
    loop
=================================================== */
.wp_loop {
  color: #fff;
}
.wp_loop_itemHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
@media screen and (min-width: 1025px) {
  .wp_loop_itemHeader {
    margin-bottom: 0;
    margin-right: 1em;
  }
}
.wp_loop_itemHeader time {
  font-size: 16px;
  font-size: 1rem;
}
.wp_loop_item {
  padding: 20px;
  border-bottom: 1px dotted #fff;
}
.wp_loop_item:first-of-type {
  border-top: 1px dotted #fff;
}
@media screen and (min-width: 1025px) {
  .wp_loop_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.wp_loop_item a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-right: 2em;
  font-size: 16px;
  font-size: 1rem;
}
.wp_loop_item a::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  position: absolute;
  top: 4px;
  right: 0;
}

/* =================================================
    カテゴリー
=================================================== */
.el_cat {
  min-width: 120px;
  height: auto;
  padding: 1px;
  padding-top: 2px;
  margin-right: 10px;
  border: 1px solid #333333;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #333333;
}
.el_cat .el_cat__ {
  color: #333333;
  border: 1px solid #333333;
}
.el_cat__bus {
  border: 1px solid #67aeea;
  color: #67aeea;
}
.el_cat__important {
  border: 1px solid #e081a6;
  color: #e081a6;
}
.el_cat__airportbus {
  border: 1px solid #ef9d6a;
  color: #ef9d6a;
}
.el_cat__others {
  border: 1px solid #83cea8;
  color: #83cea8;
}
.el_cat__temporarybus {
  border: 1px solid #c78ff0;
  color: #c78ff0;
}
.el_cat__urgency {
  border: 1px solid #ce5a8b;
  color: #ce5a8b;
}
.el_cat__diagram {
  border: 1px solid #c6b43c;
  color: #c6b43c;
}

.wp_loop__top .el_cat__ {
  color: #fff;
  border: 1px solid #fff;
}

/* ======================================
    page 404
====================================== */
.bl_page404 {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.bl_page404 h2 {
  margin-bottom: 6rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
.bl_page404 .el_btnBacktoTop {
  position: relative;
  width: 220px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
}
.bl_page404 .el_btnBacktoTop a {
  position: absolute;
  width: 100%;
  height: 50px;
  background: #284d90;
  border-radius: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  line-height: 50px;
}
@media screen and (min-width: 1025px) {
  .bl_page404 .el_btnBacktoTop a {
    background: #fff;
    color: #284d90;
    border: 1px solid #284d90;
    opacity: 1;
  }
  .bl_page404 .el_btnBacktoTop a:hover {
    background: #284d90;
    color: #fff;
  }
}

/* プライバシーポリシーチェック 
-------------------------------------------------------*/
.mwform-checkbox-field-text {
  padding-left: 30px;
  position: relative;
}

.mwform-checkbox-field-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #c2c0b8;
  border-radius: 3px;
  background: #fff;
}

input:checked + .mwform-checkbox-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 5px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 3px solid #b91d2a;
  border-right: 3px solid #b91d2a;
}

/* ======================================
  .wp-pagenavi
======================================= */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  margin: 0 0.5em;
  padding: 0;
  border: none;
}

.wp-pagenavi .pages {
  display: block;
  width: 100%;
  margin-top: 20px;
  margin-right: 0;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.wp-pagenavi .page {
  line-height: 2em;
  width: 2em;
  height: 2em;
}

.wp-pagenavi a.page:hover {
  background: rgba(40, 77, 144, 0.3);
}

.wp-pagenavi span.current {
  font-weight: 400;
  line-height: 2.2em;
  width: 2.2em;
  height: 2.2em;
  color: #fff;
  background-color: #284d90;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .last,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first {
  font-size: 20px;
  font-size: 1.25rem;
  width: 0.7em;
  padding-bottom: 0.3em;
}

/* =================================================
    折り畳みアーカイブウィジェット
=================================================== */
.widget {
  margin-bottom: 10rem;
}
.widget .bl_cat_list li {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px dotted #284d90;
}
.widget_archive a.year {
  display: block;
  padding: 1.5em 0;
  cursor: pointer;
  border-bottom: 1px solid #284d90;
}
.widget_archive a.year.open .mark {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.widget_archive .widget-title {
  font-weight: 600;
  padding-bottom: 0.6em;
  margin-bottom: 2rem;
  color: #284d90;
  border-bottom: 2px solid #284d90;
}
.widget_archive .mark {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.4em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
  border-left: 0.4em solid black;
}
.widget_archive .month {
  display: none;
  padding-right: 1em;
  padding-left: 1em;
  border-bottom: 1px solid #284d90;
}
.widget_archive .month li:nth-of-type(n + 2) {
  border-top: 1px dotted #284d90;
}
.widget_archive .month li a {
  display: block;
  padding: 0.8em 0 0.9em 0.3em;
}

/* =================================================
    .bl_breadcrumb
=================================================== */
.bl_breadcrumb {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_breadcrumb {
    display: block;
    padding-top: 30px;
    padding-bottom: 10px;
  }
  .bl_breadcrumb ul {
    margin: 0 auto;
    padding-left: 20px;
    max-width: 1000px;
  }
  .bl_breadcrumb ul li {
    display: inline-block;
    color: #888888;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .bl_breadcrumb ul li::after {
    content: ">";
    font-size: inherit;
    margin-left: 0.3em;
  }
  .bl_breadcrumb ul li:last-of-type::after {
    content: "";
  }
  .bl_breadcrumb ul li a {
    color: inherit;
  }
  .bl_breadcrumb ul li br {
    display: none;
  }
}

/* =================================================
    functionで定義したパーツ
=================================================== */
/* テンプレートパーツ： 上マージン削除 */
.wp-block-template-part.is-style-rm-margin-top {
  margin-top: 0;
}

/* カラム：モバイル逆順 */
@media (max-width: 781px) {
  .wp-block-columns.is-style-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.hp_text_center {
  text-align: center !important;
}

/* 投稿エディターに左右の余白を入れる */
.is-root-container {
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
}

.is-root-container :where(.has-global-padding) {
  padding-right: 0;
  padding-left: 0;
}

.is-root-container > .alignfull {
  margin-right: calc(var(--wp--style--root--padding-right) * -1);
  margin-left: calc(var(--wp--style--root--padding-left) * -1);
}

.is-root-container :where(.has-global-padding) > .alignfull {
  margin-right: 0;
  margin-left: 0;
}

/* 間隔をカスタマイズする */
.wp-site-blocks > header + main {
  -webkit-margin-before: var(--wp--preset--spacing--70);
          margin-block-start: var(--wp--preset--spacing--70);
}

.wp-site-blocks > main + footer {
  -webkit-margin-before: var(--wp--preset--spacing--80);
          margin-block-start: var(--wp--preset--spacing--80);
}

.page .wp-site-blocks > main + footer {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

main > .mainTitle + .mainBody {
  -webkit-margin-before: var(--wp--preset--spacing--70);
          margin-block-start: var(--wp--preset--spacing--70);
}

.page-template-wp-custom-template-no-title-php .wp-site-blocks > header + main {
  margin-top: var(--wp--preset--spacing--50);
}/*# sourceMappingURL=style.css.map */