@charset "UTF-8";
/* import */
/* 共通 */
/* カラー */
/* ドロップシャドウ */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 62.5%;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  font-weight: 300;
  font-size: 1.6rem;
}
body.open {
  overflow: hidden;
}
body.hidden {
  overflow: hidden;
}

.wrap {
  overflow: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #1a1a1a;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* パンくずリスト */
.bread {
  width: 100%;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 599px) {
  .bread ul li a {
    font-size: 1.4rem;
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.menu_inner {
  width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .menu_inner {
    width: 90%;
  }
}

.inner {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

@media (max-width: 1200px) {
  .lg_dn {
    display: none;
  }
}

.lg_db {
  display: none;
}
@media (max-width: 1200px) {
  .lg_db {
    display: block;
  }
}

section {
  padding: 50px 0;
}

.ttl {
  text-align: center;
  font-size: 50px;
  position: relative;
  margin-bottom: 100px;
  font-weight: 100;
}
.ttl::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  background-color: #d30b2a;
  width: 80px;
  height: 4px;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .ttl::after {
    bottom: -10px;
    width: 50px;
  }
}
@media (max-width: 768px) {
  .ttl {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }
}

.ttl2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: 100;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .ttl2 {
    font-size: 2.8rem;
  }
}
.ttl2 span {
  color: #d30b2a;
  font-size: 1.8rem;
  display: block;
  font-weight: 100;
}

.ttl_bottom {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

.ttl3 {
  border-left: 3px solid #d30b2a;
  padding-left: 20px;
  font-size: 36px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .ttl3 {
    font-size: 2.4rem;
  }
}

.ttl4 {
  padding-left: 10px;
  font-size: 2rem;
  margin-bottom: 20px;
  border-left: 8px solid #c60022;
  font-weight: 500;
}
@media (max-width: 599px) {
  .ttl4 {
    font-size: 1.8rem;
  }
}

.common_btn {
  border: 1px solid #d30b2a;
  text-align: center;
  padding: 20px 0;
  width: 80%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  color: #d30b2a;
  border-radius: 5px;
  background-color: #fff;
}
.common_btn:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .common_btn {
    padding: 15px 0;
    font-size: 1.4rem;
  }
}
@media (max-width: 599px) {
  .common_btn {
    width: 85%;
  }
}

.shadow_btn {
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.shadow_btn:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.top_btn {
  position: absolute;
  top: -50px;
  right: 5%;
  width: 80px;
}
@media (max-width: 768px) {
  .top_btn {
    right: 0;
    top: -40px;
    z-index: -1;
    width: 70px;
  }
}
.top_btn a:hover {
  opacity: 1;
}

.cta_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  display: none;
}
@media (max-width: 599px) {
  .cta_btn {
    display: block;
  }
}
.cta_btn .cta_btn_item {
  background-color: #fff;
  width: 48%;
  text-align: center;
  font-size: 2.4rem;
  padding: 10px 0;
  border-radius: 20px;
}
.cta_btn .cta_btn_item.line_bg {
  background-color: #06c755;
  font-size: 2.4rem;
  padding-top: 7px;
}
.cta_btn .cta_btn_item.line_bg img {
  width: 24px;
}
.cta_btn .cta_btn_item img {
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.commmon_mv {
  position: relative;
}
.commmon_mv h2 {
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
}
.commmon_mv.page_point h2 {
  background-color: #fff;
}
@media (max-width: 768px) {
  .commmon_mv.page_point h2 {
    width: 75%;
  }
}
@media (max-width: 599px) {
  .commmon_mv.page_point h2 {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .common_btn_row .common_btn {
    width: 47%;
  }
}

.bus_info_list {
  margin-bottom: 50px;
}
.bus_info_list li {
  width: 30%;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.bus_info_list li:hover {
  box-shadow: none;
}
@media (max-width: 768px) {
  .bus_info_list li {
    padding: 10px;
    width: 32%;
    box-shadow: 0px 3px 10px -3px rgba(129, 129, 129, 0.6);
  }
}
.bus_info_list li img {
  width: 80%;
  margin: 0 auto 30px;
  display: block;
}
@media (max-width: 768px) {
  .bus_info_list li img {
    margin-bottom: 10px;
  }
}
.bus_info_list li h3 {
  font-size: 2.4rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .bus_info_list li h3 {
    font-size: 1.8rem;
  }
}
.bus_info_list li p {
  font-size: 1.2rem;
  color: #d30b2a;
}

.common_nav {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .common_nav {
    padding: 50px 0;
  }
}
.common_nav.common_nav_nagara .bus_info_list li:last-child {
  background-color: #d30b2a;
  border-radius: 10px;
}
.common_nav.common_nav_nagara .bus_info_list li:last-child h3,
.common_nav.common_nav_nagara .bus_info_list li:last-child p {
  color: #fff;
}
.common_nav.common_nav_nagara .bus_info_list li:last-child img {
  margin-bottom: 7px;
}
@media (max-width: 599px) {
  .common_nav.common_nav_nagara .bus_info_list li:last-child img {
    margin-bottom: 11px;
  }
}
.common_nav.common_nav_nagara .bus_info_list li h3 span {
  display: block;
  font-size: 1.6rem;
}
.common_nav.common_nav_nagara .bus_info_list li p {
  color: #d30b2a;
}
.common_nav.common_nav_bg {
  background: url(../images/businfo_bg.jpg) center/cover no-repeat;
}
.common_nav.common_nav_3 .bus_info_list {
  justify-content: center;
}
@media (max-width: 599px) {
  .common_nav.common_nav_3 .bus_info_list {
    justify-content: space-between;
  }
}
.common_nav.common_nav_3 .bus_info_list li {
  margin-right: 40px;
  width: 23%;
}
.common_nav.common_nav_3 .bus_info_list li:last-child {
  margin-right: 0;
}
@media (max-width: 599px) {
  .common_nav.common_nav_3 .bus_info_list li {
    width: 48%;
    margin-right: 0;
  }
}
.common_nav.common_nav_4 .bus_info_list li {
  width: 21.5%;
}
@media (max-width: 599px) {
  .common_nav.common_nav_4 .bus_info_list li {
    width: 48%;
  }
}
.common_nav .bus_info_list {
  margin-bottom: 0;
}
.common_nav .bus_info_list li {
  padding: 30px 20px;
}
@media (max-width: 599px) {
  .common_nav .bus_info_list li {
    padding: 20px 10px;
    margin-bottom: 20px;
  }
}
.common_nav .bus_info_list li img {
  width: 70%;
}
.common_nav .bus_info_list li p {
  font-size: 1.8rem;
  color: #1a1a1a;
}
@media (max-width: 599px) {
  .common_nav .bus_info_list li p {
    font-size: 1.4rem;
  }
}

.common_mv_wrap {
  min-width: 1000px;
  position: relative;
  margin-top: 125px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .common_mv_wrap {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .common_mv_wrap {
    min-width: 100%;
  }
}
.common_mv_wrap::after {
  content: url(../images/common_mv_right.png);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .common_mv_wrap::after {
    right: -300px;
    top: -27px;
  }
}

.common_mv {
  background-color: #d30b2a;
  padding: 75px 0;
  border-bottom: 60px solid #880000;
  overflow: hidden;
}
@media (max-width: 768px) {
  .common_mv {
    padding: 50px 0;
    border-bottom: 40px solid #880000;
  }
}
.common_mv .inner {
  overflow: hidden;
}
.common_mv .common_mv_icon {
  margin-right: 20px;
  width: 70px;
}
@media (max-width: 768px) {
  .common_mv .common_mv_icon {
    width: 50px;
    margin-right: 10px;
  }
}
.common_mv .common_mv_icon img {
  vertical-align: baseline;
}
.common_mv .common_mv_ttl h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 100;
}
@media (max-width: 768px) {
  .common_mv .common_mv_ttl h2 {
    font-size: 36px;
  }
}
.common_mv .common_mv_ttl h2 span {
  font-size: 18px;
  margin-top: -10px;
  display: block;
}

.information {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .information {
    padding: 50px 0;
  }
}
.information .information_btn {
  margin-bottom: 30px;
}
.information .information_btn li {
  width: 49%;
  background-color: #dfdfdf;
  color: #000;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.4rem;
  cursor: pointer;
}
.information .information_btn li.active {
  background-color: #d30b2a;
  color: #Fff;
}
.information .information_bus,
.information .information_tour,
.information .information_recruit,
.information .information_news {
  width: 48%;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .information .information_bus,
  .information .information_tour,
  .information .information_recruit,
  .information .information_news {
    display: none;
    width: 100%;
  }
  .information .information_bus.active,
  .information .information_tour.active,
  .information .information_recruit.active,
  .information .information_news.active {
    display: block;
  }
}
.information .information_common {
  width: 100%;
}
.information .information_common .information_list {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .information .information_common .information_list {
    width: 100%;
  }
}
.information .information_common .information_list li {
  font-weight: 400;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.information .information_common .information_list li::after {
  top: 25%;
  right: -50px;
}
@media (max-width: 768px) {
  .information .information_common .information_list li::after {
    right: -20px;
  }
}
@media (max-width: 599px) {
  .information .information_common .information_list li::after {
    top: 40%;
  }
}
.information .information_common .information_list li .information_date {
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 60px;
}
@media (max-width: 599px) {
  .information .information_common .information_list li .information_date {
    display: block;
    font-size: 1.2rem;
  }
}
.information .information_common .information_list li a {
  display: block;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .information .information_bus {
    margin-bottom: 50px;
  }
}
.information .information_list {
  margin-bottom: 50px;
}
.information .information_list li {
  border-left: 3px solid #d30b2a;
  padding: 20px;
  padding-right: 0;
  margin-bottom: 20px;
  position: relative;
  width: 95%;
}
@media (max-width: 768px) {
  .information .information_list li {
    padding: 15px;
  }
}
.information .information_list li::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  top: 50%;
  right: -40px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .information .information_list li::after {
    transform: scale(0.4) translateY(-70%);
  }
}
.information .information_list li a {
  font-size: 1.8rem;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 10px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.information .information_list li a:hover {
  color: #d30b2a;
}
@media (max-width: 768px) {
  .information .information_list li a {
    font-size: 1.4rem;
  }
}
.information .information_list li a .information_date {
  font-size: 1.2rem;
  display: block;
}

.common_bg_blue {
  background: url(../images/bg_blue_common.jpg) center/cover no-repeat;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .common_bg_blue {
    padding: 50px 0;
  }
}

@media (max-width: 599px) {
  .common_table_wrap {
    overflow-y: scroll;
  }
  .common_table_wrap p {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .common_table {
    width: 690px;
  }
}

@media (max-width: 768px) {
  .common_table2 {
    width: 690px;
  }
}
.common_table2.common_table2_mutual .table_item:first-child {
  text-align: left;
}
.common_table2.common_table2_mutual .table_item:first-child .table_left {
  justify-content: flex-start;
}
.common_table2 .table_item {
  border: 1px solid #a9a9a9;
  border-bottom: none;
}
.common_table2 .table_item:first-child {
  background-color: #f5f5f5;
  text-align: center;
}
.common_table2 .table_item:first-child .table_left {
  justify-content: center;
}
.common_table2 .table_item:first-child .table_right {
  font-weight: 500;
}
.common_table2 .table_item:last-child {
  border-bottom: 1px solid #a9a9a9;
}
.common_table2 .table_item .table_left {
  width: 25%;
  border-right: 1px solid #a9a9a9;
  padding: 10px;
  display: flex;
  align-items: center;
}
.common_table2 .table_item .table_left p {
  font-weight: 500;
}
.common_table2 .table_item .table_right {
  width: 75%;
  padding: 10px;
}

@media (max-width: 768px) {
  .common_table4 {
    width: 690px;
  }
}
.common_table4.ayuca_kousya .table_item:nth-child(5) li, .common_table4.ayuca_kousya .table_item:nth-child(6) li {
  border-bottom: 1px solid #a9a9a9;
  border-left: 1px solid #a9a9a9;
  padding: 10px;
  font-weight: bold;
}
.common_table4.ayuca_kousya .table_item:nth-child(5) li:last-child, .common_table4.ayuca_kousya .table_item:nth-child(6) li:last-child {
  border-bottom: none;
}
@media (max-width: 599px) {
  .common_table4.ayuca_kousya .table_item li {
    font-size: 1.4rem;
  }
}
.common_table4.ayuca_kousya .table_item .table_column {
  padding: 0;
  display: grid;
  align-items: center;
}
@media (max-width: 599px) {
  .common_table4.ayuca_kousya .table_item .table_column {
    align-items: normal;
  }
}
.common_table4.ayuca_kousya .table_item .table_column p {
  border-bottom: 1px solid #a9a9a9;
}
.common_table4.ayuca_kousya .table_item .table_column p:last-child {
  border-bottom: none;
}
@media (max-width: 599px) {
  .common_table4.ayuca_kousya .table_item .table_column p {
    display: grid;
    align-items: center;
  }
}
.common_table4.ayuca_kousya .table_item .table_column.table_column1 p {
  border-bottom: none;
}
.common_table4.ayuca_kousya .table_item .table_column.table_column3 {
  display: grid;
  align-items: center;
}
@media (max-width: 599px) {
  .common_table4.ayuca_kousya .table_item .table_column.table_column3 {
    align-items: normal;
  }
}
.common_table4.ayuca_kousya .table_item .table_column.table_column3 p {
  padding-bottom: 11px;
}
@media (max-width: 599px) {
  .common_table4.ayuca_kousya .table_item .table_column.table_column3 p {
    display: grid;
    align-items: center;
  }
}
.common_table4.ayuca_kousya .table_item .table_column p {
  padding: 10px;
}
.common_table4.ayuca_kousya .table_item .table_column .row .table_column_left {
  width: 65%;
  display: flex;
  align-items: center;
}
.common_table4.ayuca_kousya .table_item .table_column .row .table_column_left p {
  padding: 10px;
}
.common_table4.ayuca_kousya .table_item .table_column .row .table_column_right {
  width: 35%;
}
.common_table4 .table_item {
  border: 1px solid #a9a9a9;
  border-bottom: none;
}
.common_table4 .table_item:first-child {
  background-color: #f5f5f5;
}
.common_table4 .table_item:first-child .table_column {
  text-align: center;
}
.common_table4 .table_item:first-child .table_column p {
  font-weight: 500;
}
.common_table4 .table_item:last-child {
  border-bottom: 1px solid #a9a9a9;
}
.common_table4 .table_item .table_column p {
  font-weight: 500;
}
.common_table4 .table_item .table_column1,
.common_table4 .table_item .table_column4 {
  width: 38%;
}
.common_table4 .table_item .table_column2 {
  width: 16%;
}
.common_table4 .table_item .table_column3 {
  width: 8%;
}
.common_table4 .table_item .table_column2 p,
.common_table4 .table_item .table_column3 p,
.common_table4 .table_item .table_column4 p {
  font-weight: 300;
}
.common_table4 .table_item .table_column {
  padding: 10px;
  border-left: 1px solid #a9a9a9;
}
.common_table4 .table_item .table_column:first-child {
  border-left: none;
}
.common_table4 .table_item .table_column_green,
.common_table4 .table_item .table_column_red {
  display: block;
  width: 100%;
  height: 23px;
  border-radius: 5px;
}
.common_table4 .table_item .table_column_green {
  background-color: #39a887;
}
.common_table4 .table_item .table_column_red {
  background-color: #ff2d1e;
}

.common_table4_evenly.ayuca_kinds .table_item:first-child .table_column p {
  text-align: center;
}
.common_table4_evenly.ayuca_kinds .table_item .table_column {
  display: grid;
  align-items: center;
}
@media (max-width: 599px) {
  .common_table4_evenly.ayuca_kinds .table_item .table_column {
    align-items: normal;
  }
}
.common_table4_evenly.ayuca_kinds .table_item .table_column.table_column1 {
  width: 20%;
}
.common_table4_evenly.ayuca_kinds .table_item .table_column.table_column1 p {
  font-weight: 500;
}
.common_table4_evenly.ayuca_kinds .table_item .table_column.table_column2 {
  width: 10%;
}
.common_table4_evenly.ayuca_kinds .table_item .table_column.table_column3 {
  width: 40%;
}
.common_table4_evenly.ayuca_kinds .table_item .table_column.table_column4 {
  width: 30%;
}
.common_table4_evenly.ayuca_kinds .table_item .table_column p {
  text-align: left;
}
.common_table4_evenly .table_item {
  border: 1px solid #a9a9a9;
  border-bottom: none;
}
.common_table4_evenly .table_item:first-child {
  background-color: #f5f5f5;
}
.common_table4_evenly .table_item:first-child p {
  font-weight: bold;
}
.common_table4_evenly .table_item:last-child {
  border-bottom: 1px solid #a9a9a9;
}
.common_table4_evenly .table_item .table_column {
  width: 25%;
  border-left: 1px solid #a9a9a9;
}
.common_table4_evenly .table_item .table_column:first-child {
  border-left: none;
}
.common_table4_evenly .table_item .table_column p {
  padding: 10px;
  text-align: center;
}

.common_table5 .table_item {
  border: 1px solid #a9a9a9;
  border-bottom: none;
}
.common_table5 .table_item:first-child {
  background-color: #f5f5f5;
}
.common_table5 .table_item:first-child p {
  font-weight: 500;
  text-align: center;
}
.common_table5 .table_item:last-child {
  border-bottom: 1px solid #a9a9a9;
}
.common_table5 .table_item:last-child .table_column4 p {
  font-size: 1.4rem;
}
.common_table5 .table_item:last-child .table_column4 p a {
  color: #009ee5;
  text-decoration: underline;
}
.common_table5 .table_item .table_column1 {
  width: 30%;
}
.common_table5 .table_item .table_column1 p {
  font-weight: 500;
}
.common_table5 .table_item .table_column2,
.common_table5 .table_item .table_column3 {
  width: 10%;
  text-align: center;
}
.common_table5 .table_item .table_column2 img,
.common_table5 .table_item .table_column3 img {
  width: 25px;
}
.common_table5 .table_item .table_column4 {
  width: 35%;
}
.common_table5 .table_item .table_column5 {
  width: 15%;
}
.common_table5 .table_item .table_column {
  border-left: 1px solid #a9a9a9;
  display: grid;
  align-items: center;
}
@media (max-width: 599px) {
  .common_table5 .table_item .table_column {
    align-items: normal;
  }
}
.common_table5 .table_item .table_column:first-child {
  border-left: none;
}
.common_table5 .table_item .table_column p {
  padding: 10px;
}

.common_table3 .table_item {
  border: 1px solid #a9a9a9;
  border-bottom: none;
}
.common_table3 .table_item:first-child {
  background-color: #f5f5f5;
}
.common_table3 .table_item:first-child p {
  font-weight: bold;
  text-align: center;
}
.common_table3 .table_item:last-child {
  border-bottom: 1px solid #a9a9a9;
}
.common_table3 .table_item:last-child .table_column4 p {
  font-size: 1.4rem;
}
.common_table3 .table_item:last-child .table_column4 p a {
  color: #009ee5;
  text-decoration: underline;
}
.common_table3 .table_item .table_column {
  border-left: 1px solid #a9a9a9;
  display: grid;
  align-items: center;
  text-align: center;
}
@media (max-width: 599px) {
  .common_table3 .table_item .table_column {
    align-items: normal;
  }
}
.common_table3 .table_item .table_column:first-child {
  border-left: none;
}
.common_table3 .table_item .table_column p {
  padding: 10px;
}
.common_table3 .table_item .table_column1 {
  width: 38%;
}
.common_table3 .table_item .table_column2,
.common_table3 .table_item .table_column3 {
  width: 31%;
}

.common_accordion {
  margin-bottom: 50px;
}
.common_accordion .accordion_ttl {
  background-color: #d30b2a;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.common_accordion .accordion_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background-color: #fff;
  width: 20px;
  height: 4px;
}
.common_accordion .accordion_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  background-color: #fff;
  width: 20px;
  height: 4px;
  transform: rotate(90deg);
  transition: 0.3s;
}
.common_accordion .accordion_ttl:hover {
  opacity: 0.7;
}
.common_accordion .accordion_ttl.active::after {
  transform: rotate(0);
}
@media (max-width: 599px) {
  .common_accordion .accordion_ttl {
    padding: 25px 20px 25px 10px;
  }
  .common_accordion .accordion_ttl::after, .common_accordion .accordion_ttl::before {
    right: 10px;
  }
}
.common_accordion .accordion_ttl p {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 599px) {
  .common_accordion .accordion_ttl p {
    font-size: 1.7rem;
  }
}

.gray_box {
  background-color: #f5f5f5;
  padding: 20px;
}
.gray_box li {
  font-size: 1.4rem;
  text-indent: -0.8rem;
  padding-left: 0.8rem;
}

.mb_0 {
  margin-bottom: 0 !important;
}

/*文字間,行間*/
.ls {
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.text_red {
  color: #d30b2a;
}

.text_blue {
  color: #0170c1;
}

body .common_pdf_btn {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 48%;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  background-color: #fff;
}
@media (max-width: 599px) {
  body .common_pdf_btn {
    width: 100%;
    padding: 20px 0;
  }
}

.link_text {
  color: #009ee5;
  text-decoration: underline;
}

.txt_bg_pink {
  background-color: #f4d9dc;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 5px;
}

.form .tour_inquiry a.link_text,
.form .route_inquiry_box .common_table4 a.link_text {
  display: inline-block;
  box-shadow: none;
  border-bottom: none;
  font-weight: normal;
}

#hennou_anker,
#wasuremono_anker,
#ofuku {
  margin-top: -125px;
  padding-top: 125px;
}
@media (max-width: 1200px) {
  #hennou_anker,
  #wasuremono_anker,
  #ofuku {
    margin-top: -60px;
    padding-top: 60px;
  }
}

.banda_10m {
  position: absolute;
  top: -2%;
  right: 14%;
}
@media (max-width: 599px) {
  .banda_10m {
    position: relative;
    top: 0%;
    right: 0%;
  }
}
.banda_10m a {
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #d30b2a;
  border: 2px solid #d30b2a;
  padding: 12px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 599px) {
  .banda_10m a {
    width: 90%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto 0;
  }
}
.banda_10m a:hover {
  background-color: #fff;
  color: #d30b2a;
  opacity: 1;
}

.highway_shirakawago .btn_pdf.btn_pdf_row a {
  width: 48%;
}
@media (max-width: 768px) {
  .highway_shirakawago .btn_pdf.btn_pdf_row a {
    width: 100%;
  }
  .highway_shirakawago .btn_pdf.btn_pdf_row a::after {
    right: 0;
  }
}

.text_bold {
  font-weight: bold;
}

.discounted_ticket a {
  color: #007ac7;
}

/* header */
header {
  padding: 20px 0;
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
header.common_header {
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
}
header.common_header::before {
  content: none;
}
header.common_header .nav_sp::before {
  content: none;
}
header.common_header::before {
  content: none;
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background-color: #d30b2a;
}
@media (max-width: 1200px) {
  header::before {
    width: 8px;
  }
}
@media (max-width: 1200px) {
  header {
    padding: 10px 0;
    padding-left: 10px;
  }
}
@media (max-width: 1200px) {
  header .inner {
    width: 95%;
  }
}
header .header_logo {
  width: 180px;
}
@media (max-width: 599px) {
  header .header_logo {
    width: 120px;
  }
}
header .header_row {
  flex-wrap: nowrap;
}
@media (max-width: 1200px) {
  header .nav_pc {
    display: none;
  }
}
header .nav_pc li {
  margin-right: 15px;
}
header .nav_pc li:last-child {
  margin-right: 0;
}
header .nav_pc li a:hover {
  color: #d30b2a;
}
@media (max-width: 1200px) {
  header .header_right {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  header .header_right .header_size_btn {
    display: none;
  }
}
header .header_right .header_size_btn .size_btn_ttl {
  font-weight: bold;
  margin-right: 20px;
  font-size: 1.4rem;
}
@media (max-width: 599px) {
  header .header_right .header_size_btn .size_btn_ttl {
    margin-right: 0;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    width: 90%;
    font-size: 1.2rem;
  }
}
header .header_right .header_size_btn .size_btns {
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  header .header_right .header_size_btn .size_btns {
    flex-wrap: nowrap;
    width: 90%;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
header .header_right .header_size_btn .size_btns .size_btn {
  background-color: #808080;
  width: 80px;
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  margin-right: 20px;
  transition: 0.3s;
  cursor: pointer;
}
header .header_right .header_size_btn .size_btns .size_btn.active {
  background-color: #d30b2a;
}
header .header_right .header_size_btn .size_btns .size_btn:hover {
  background-color: #d30b2a;
}
@media (max-width: 1200px) {
  header .header_right .header_size_btn .size_btns .size_btn {
    width: 48%;
    margin-right: 0;
    padding: 5px 0;
  }
}
header .header_right .header_size_btn .size_btns .size_btn p {
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
}
@media (max-width: 1200px) {
  header .header_right .header_size_btn .size_btns .size_btn p {
    font-size: 1.2rem;
  }
}
@media (max-width: 1200px) {
  header .header_right .header_right_right {
    display: flex;
  }
}

.menu_btn {
  display: none;
}
@media (max-width: 1200px) {
  .menu_btn {
    display: block;
    width: 35px;
    height: 30px;
    position: relative;
    margin-top: 10px;
    z-index: 4000;
  }
  .menu_btn span {
    display: inline-block;
    height: 4px;
    width: 35px;
    background-color: #d30b2a;
    border-radius: 10px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .menu_btn span:nth-child(1) {
    top: 5px;
  }
  .menu_btn span:nth-child(2) {
    top: 16px;
  }
  .menu_btn span:nth-child(3) {
    top: 27px;
  }
}
@media (max-width: 1200px) and (max-width: 1200px) {
  .menu_btn span {
    height: 5px;
  }
}

.nav_sp {
  left: 100%;
  top: 60px;
  opacity: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 500;
  transition: 500ms ease-out;
  text-align: center;
  padding: 30px 20px 0;
  padding-right: 10px;
  overflow: scroll;
}
.nav_sp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #d30b2a;
}
.nav_sp .nav_sp_inner {
  height: 90%;
  overflow: scroll;
}
.nav_sp li {
  margin-bottom: 20px;
}
.nav_sp li a {
  color: #000;
  font-size: 1.8rem;
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .nav_sp {
  opacity: 1 !important;
  left: 0 !important;
}

.global_btn {
  border: 2px solid #d30b2a;
  border-radius: 3px;
  text-align: center;
  padding: 10px 30px;
  margin-right: 20px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .global_btn {
    width: 40%;
    margin-right: 0;
    background-color: #d30b2a;
    padding: 10px 0;
  }
}
.global_btn p {
  color: #d30b2a;
  font-weight: bold;
  font-size: 1.4rem;
}
@media (max-width: 1200px) {
  .global_btn p {
    color: #fff;
  }
}

.header_search {
  width: 100%;
  position: relative;
}
@media (max-width: 1200px) {
  .header_search {
    width: 56%;
  }
}
.header_search input[type=text] {
  width: 100%;
  background-color: #e2e2e2;
  border: none;
  color: #808080;
  padding: 10px;
}
@media (max-width: 1200px) {
  .header_search input[type=text] {
    padding: 15px 10px;
  }
}
.header_search .sa {
  background: url(../images/icon_search.png), transparent;
  position: absolute;
  top: 0;
  right: -20px;
  transform: scale(0.4) translate(-50%, -50%);
  width: 61px;
  height: 61px;
  border: none;
  -moz-appearance: none;
       appearance: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
@media (max-width: 768px) {
  .header_search .sa {
    top: 4px;
  }
}

.nav_sp_row1,
.nav_sp_row2,
.nav_sp_row3 {
  margin-bottom: 30px;
}

.nav_sp_row3.bus_info_list li {
  padding: 0;
  box-shadow: none;
}

.nav_sp_row4 li {
  width: 48%;
  position: relative;
  padding-left: 15px;
  text-align: left;
}
.nav_sp_row4 li::before {
  content: url(../images/icon_arrow_red2.webp);
  position: absolute;
  top: -1px;
  left: 0;
  transform: scale(0.5);
}

.common_btn_nagara {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  padding-left: 32px;
}
.common_btn_nagara::before {
  content: url(../images/nagara_logo.webp);
  position: absolute;
  left: 22px;
  top: -5px;
  transform: scale(0.4);
}
.common_btn_nagara::after {
  content: url(../images/icon_arrow_right.webp);
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0.4);
}

.nav_sp_ttl {
  border-left: 2px solid #d30b2a;
  border-bottom: 2px solid #d30b2a;
  padding-left: 5px;
  padding-bottom: 5px;
  text-align: left;
  margin-bottom: 10px;
}
.nav_sp_ttl p {
  font-size: 1.8rem;
  color: #d30b2a;
  font-weight: bold;
}

.nav_sp_sns .nav_sp_row4 li::before {
  content: url(../images/icon_arrow_gray.webp);
}
.nav_sp_sns .nav_sp_row4 li a {
  font-size: 1.4rem;
}

.nav_sp_line {
  margin-bottom: 20px;
}
.nav_sp_line .nav_sp_row4 li::before {
  content: url(../images/icon_arrow_green.webp);
}
.nav_sp_line .nav_sp_row4 li a {
  font-size: 1.4rem;
}
.nav_sp_line .nav_sp_ttl {
  border: none;
  padding: 0;
  margin-bottom: 0;
}
.nav_sp_line .nav_sp_ttl p {
  color: #63ae3c;
}

.connect_ttl {
  margin-bottom: 10px;
}
.connect_ttl p {
  text-align: left;
  position: relative;
  padding-left: 25px;
  color: #d30b2a;
  font-weight: bold;
}
.connect_ttl p::before {
  content: url(../images/icon_arrow_right.webp);
  position: absolute;
  left: -15px;
  top: -15px;
  transform: scale(0.4);
}

.connect_list li {
  width: 33%;
  border-left: 1px solid #b3b3b3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.connect_list li:nth-child(3), .connect_list li:nth-child(6), .connect_list li:last-child {
  border-right: 1px solid #b3b3b3;
}
.connect_list li a {
  font-size: 1.4rem;
}

/* footer */
footer {
  padding: 50px 0 0;
  background-color: #d30b2a;
}
@media (max-width: 599px) {
  footer {
    padding-top: 30px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1000;
  }
}
footer .footer_row {
  flex-wrap: nowrap;
  padding-bottom: 20px;
}
@media (max-width: 599px) {
  footer .footer_row {
    flex-wrap: wrap;
  }
}
footer .footer_logo {
  width: 300px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer .footer_logo {
    width: 45%;
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  footer .footer_nav {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  footer .footer_nav .row {
    justify-content: space-between;
  }
}
footer .footer_nav li {
  margin-right: 40px;
}
@media (max-width: 1200px) {
  footer .footer_nav li {
    margin-right: 20px;
  }
}
@media (max-width: 599px) {
  footer .footer_nav li {
    margin-right: 0;
    margin-bottom: 10px;
    width: 50%;
  }
}
footer .footer_nav li a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 1200px) {
  footer .footer_nav li a {
    font-size: 1.6rem;
  }
}
@media (max-width: 599px) {
  footer .footer_nav li a {
    font-size: 1.4rem;
  }
}
footer .footer_nav .sub_nav {
  margin-top: 20px;
}
footer .footer_nav .sub_nav li {
  width: 30%;
  margin-right: 0;
  text-align: center;
  border-left: 1px solid #fff;
}
footer .footer_nav .sub_nav li:last-child {
  border-right: 1px solid #fff;
}
footer .footer_nav .sub_nav li a {
  font-size: 1.4rem;
  font-weight: normal;
  padding-left: 0;
}
footer .footer_search {
  width: 350px;
}
@media (max-width: 768px) {
  footer .footer_search {
    display: block;
    width: 52%;
  }
}
footer .footer_search input[type=text] {
  background-color: #fff;
}
footer .copyright {
  background-color: #fff;
  text-align: center;
  padding: 20px 0;
}
@media (max-width: 599px) {
  footer .copyright {
    padding: 10px 0;
  }
}
footer .copyright p {
  font-weight: normal;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  footer .copyright p {
    font-size: 1.2rem;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(3%);
  animation: 0.8s forwards fadein;
}
.fadein.active {
  animation: 0.8s forwards fadein;
}

.ticker {
  backface-visibility: hidden;
  animation: 30s linear infinite ticker;
  transform: translate(0);
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ticker {
  0% {
    transform: translate(0%);
  }
  100% {
    transform: translate(-100%);
  }
}
/* その他 */
/* top */
.fv_bg {
  background-color: #d30b2a;
  padding-left: 20px;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 150px;
  position: relative;
}
.fv_bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: -280px;
  bottom: auto;
  width: 20px;
  height: 100%;
  background-color: #d30b2a;
}
@media (max-width: 1200px) {
  .fv_bg::before {
    width: 8px;
  }
}
@media (max-width: 1200px) {
  .fv_bg {
    padding-left: 8px;
    padding-bottom: 10px;
    margin-bottom: 60px;
  }
}

.mv {
  position: relative;
  overflow: hidden;
  margin-top: 129px;
}
@media (max-width: 1200px) {
  .mv {
    min-width: 100%;
    margin-top: 60px;
  }
}
.mv .mv_slide_pc {
  background-color: #fff;
  border-radius: 0 0 0 3em;
}
.mv .mv_slide_sp {
  background-color: #fff;
}
.mv ul {
  min-width: 1200px;
}
@media (max-width: 768px) {
  .mv ul {
    min-width: 100%;
  }
}
.mv .mv_text {
  position: absolute;
  top: 40%;
  left: 30px;
  width: 60%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .mv .mv_text {
    top: 30%;
  }
}

.news {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 95%;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  border-radius: 50px 0 0 50px;
}
@media (max-width: 768px) {
  .news {
    width: 97%;
    bottom: -22px;
  }
}
.news .left {
  text-align: center;
  width: 20%;
  background-color: #d30b2a;
  padding: 20px;
  border-radius: 50px 0 0 50px;
  background-color: #fff;
  background: #fff url(../images/news_item_bg.png) right/cover no-repeat;
}
@media (max-width: 599px) {
  .news .left {
    padding: 10px;
    width: 40%;
  }
}
.news .left p {
  color: #fff;
  font-size: 1.8rem;
  white-space: nowrap;
  font-weight: bold;
}
@media (max-width: 768px) {
  .news .left p {
    font-size: 1.4rem;
  }
}
.news .right {
  width: 80%;
  background-color: #fff;
  padding: 20px;
  position: relative;
}
@media (max-width: 599px) {
  .news .right {
    width: 60%;
    padding: 10px;
  }
}
.news .right .news_slide li {
  width: 380px;
}
.news .right .news_slide a {
  position: relative;
}
@media (max-width: 599px) {
  .news .right .news_slide a {
    display: block;
    padding-right: 20px;
  }
}
.news .right .news_slide a::after {
  content: url(../images/icon_arrow_right.webp);
  position: absolute;
  right: -45px;
  top: -15px;
  transform: scale(0.4);
}
@media (max-width: 599px) {
  .news .right .news_slide a::after {
    right: -35px;
    top: -5px;
    padding-left: 0;
    transform: translateX(-50%) scale(0.4);
  }
}
.news .right .news_slide a:hover {
  color: #d30b2a;
}
@media (max-width: 599px) {
  .news .right .news_slide a {
    font-size: 1.4rem;
  }
}

.timetable {
  padding-bottom: 100px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .timetable {
    padding-bottom: 50px;
  }
}
.timetable .timetable_inner {
  width: 1125px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .timetable .timetable_inner {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .timetable .timetable_tabs {
    margin-bottom: 10px;
  }
}
.timetable .timetable_tabs li {
  width: 24.8%;
  background-color: #e2e2e2;
  color: #1a1a1a;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  padding: 20px 0;
}
.timetable .timetable_tabs li.active {
  background-color: #d30b2a;
  color: #fff;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .timetable .timetable_tabs li.active {
    font-size: 1.8rem;
  }
}
.timetable .timetable_tabs li:first-child {
  border-radius: 10px 0 0 0;
}
@media (max-width: 599px) {
  .timetable .timetable_tabs li:first-child {
    border-radius: 0 0 0 0;
  }
}
.timetable .timetable_tabs li:last-child {
  border-radius: 0 10px 0 0;
}
@media (max-width: 599px) {
  .timetable .timetable_tabs li:last-child {
    border-radius: 0 0 0 0;
  }
}
@media (max-width: 768px) {
  .timetable .timetable_tabs li {
    width: 49%;
    font-size: 1.6rem;
    margin-bottom: 8px;
    padding: 10px 0;
  }
}
.timetable .timetable_box {
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  padding: 30px;
  margin-bottom: 30px;
  position: relative;
}
.timetable .timetable_box::before {
  content: url(../images/timedate_left.png);
  position: absolute;
  left: -87px;
  top: 0;
  transform: scale(0.433) translate(-50%, -65.4%);
}
@media (max-width: 768px) {
  .timetable .timetable_box::before {
    content: none;
  }
}
@media (max-width: 768px) {
  .timetable .timetable_box {
    padding: 20px 10px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 3px 10px -3px rgba(129, 129, 129, 0.6);
  }
}
.timetable .timetable_box .start_goal {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .start_goal {
    margin-bottom: 30px;
  }
}
.timetable .timetable_box .start_goal .output_area,
.timetable .timetable_box .start_goal .input_area {
  width: 46%;
}
@media (max-width: 599px) {
  .timetable .timetable_box .start_goal .output_area,
  .timetable .timetable_box .start_goal .input_area {
    width: 100%;
  }
}
.timetable .timetable_box .start_goal .output_area {
  position: relative;
}
.timetable .timetable_box .start_goal .output_area::after {
  content: url(../images/arrow_red_left.png);
  position: absolute;
  top: 50%;
  right: -50px;
  transform: scale(0.5);
}
@media (max-width: 768px) {
  .timetable .timetable_box .start_goal .output_area {
    margin-bottom: 30px;
  }
}
.timetable .timetable_box .start_goal .output_area p {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .start_goal .output_area p {
    font-size: 1.6rem;
  }
}
.timetable .timetable_box .start_goal .output_area .timetable_box_input {
  position: relative;
  padding-left: 10px;
}
.timetable .timetable_box .start_goal .output_area .timetable_box_input::before {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d30b2a;
}
@media (max-width: 768px) {
  .timetable .timetable_box .start_goal .output_area .timetable_box_input::before {
    left: 3px;
  }
}
.timetable .timetable_box .start_goal .output_area .timetable_box_input input {
  border: none;
  border-bottom: 1px solid #e2e2e2;
  padding: 10px;
  width: 100%;
}
.timetable .timetable_box .start_goal .input_area p {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .start_goal .input_area p {
    font-size: 1.6rem;
  }
}
.timetable .timetable_box .start_goal .input_area p span {
  font-size: 1.6rem;
  font-weight: normal;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .start_goal .input_area p span {
    font-size: 1.4rem;
  }
}
.timetable .timetable_box .start_goal .input_area li {
  width: 32%;
  background-color: #e2e2e2;
  padding: 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
}
@media (max-width: 768px) {
  .timetable .timetable_box .start_goal .input_area li {
    font-size: 1.4rem;
    padding: 10px 0;
    border-radius: 5px;
  }
}
.timetable .timetable_box .start_goal .input_area li span {
  font-size: 1.4rem;
  display: block;
  font-weight: normal;
}
@media (max-width: 768px) {
  .timetable .timetable_box .start_goal .input_area li span {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .timetable .timetable_box .start {
    margin-bottom: 30px;
  }
}
.timetable .timetable_box .change_btn {
  border: 1px solid #d30b2a;
  width: 370px;
  margin-left: 20px;
  padding: 15px 0;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .timetable .timetable_box .change_btn {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.timetable .timetable_box .change_btn p {
  font-size: 1.4rem;
  color: #d30b2a;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.timetable .timetable_box .change_btn p::before, .timetable .timetable_box .change_btn p::after {
  position: absolute;
  top: 25%;
  transform: scale(0.5) translateY(-50%);
}
.timetable .timetable_box .change_btn p::before {
  content: url(../images/arrow_slim_top.png);
  left: -45px;
}
.timetable .timetable_box .change_btn p::after {
  content: url(../images/arrow_slim_bottom.png);
  right: -40px;
}
.timetable .timetable_box .timetable_box_date .select_month {
  width: 80px;
}
.timetable .timetable_box .timetable_box_date .select_month,
.timetable .timetable_box .timetable_box_date .select_day,
.timetable .timetable_box .timetable_box_date .select_hour,
.timetable .timetable_box .timetable_box_date .select_minutes {
  margin-right: 15px;
  position: relative;
}
.timetable .timetable_box .timetable_box_date .select_month::after,
.timetable .timetable_box .timetable_box_date .select_day::after,
.timetable .timetable_box .timetable_box_date .select_hour::after,
.timetable .timetable_box .timetable_box_date .select_minutes::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 35%;
  right: 0px;
  transform: scale(0.4) translateY(-50%);
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .select_month,
  .timetable .timetable_box .timetable_box_date .select_day {
    margin-bottom: 10px;
  }
}
.timetable .timetable_box .timetable_box_date .select_hour,
.timetable .timetable_box .timetable_box_date .select_minutes {
  width: 60px;
}
.timetable .timetable_box .timetable_box_date .select_hour::after,
.timetable .timetable_box .timetable_box_date .select_minutes::after {
  right: -5px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .select_hour,
  .timetable .timetable_box .timetable_box_date .select_minutes {
    margin-bottom: 10px;
    margin-right: 5px;
  }
}
.timetable .timetable_box .timetable_box_date select {
  padding: 15px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* 標準のスタイルを無効にする */
  font-weight: bold;
  width: 100%;
}
.timetable .timetable_box .timetable_box_date .select_day {
  width: 100px;
}
@media (max-width: 599px) {
  .timetable .timetable_box .timetable_box_date .select_day {
    margin-right: 50px;
  }
}
.timetable .timetable_box .timetable_box_date .date_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .date_ttl {
    font-size: 1.6rem;
  }
}
.timetable .timetable_box .timetable_box_date .radio_btns {
  margin-left: 20px;
  display: inline-flex;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .radio_btns {
    margin-bottom: 10px;
    margin-left: 0;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .radio_btns .radio_btn {
    width: 48%;
    display: flex;
  }
}
.timetable .timetable_box .timetable_box_date .radio_btns .radio_btn input {
  appearance: none;
  -webkit-appearance: none;
  /* Safari用のプレフィックス */
  -moz-appearance: none;
  /* Firefox用のプレフィックス */
  -ms-appearance: none;
  /* IE用のプレフィックス */
}
.timetable .timetable_box .timetable_box_date .radio_btns .radio_btn input:checked + label::after {
  opacity: 1;
}
.timetable .timetable_box .timetable_box_date .radio_btns .radio_btn label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
.timetable .timetable_box .timetable_box_date .radio_btns .radio_btn label::before, .timetable .timetable_box .timetable_box_date .radio_btns .radio_btn label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.timetable .timetable_box .timetable_box_date .radio_btns .radio_btn label::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  left: 5px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .radio_btns .radio_btn label::before {
    width: 15px;
    height: 15px;
  }
}
.timetable .timetable_box .timetable_box_date .radio_btns .radio_btn label::after {
  background-color: #d30b2a;
  border-radius: 50%;
  opacity: 0;
  width: 16px;
  height: 16px;
  left: 8px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .radio_btns .radio_btn label::after {
    width: 11px;
    height: 11px;
  }
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .radio_btns .radio_btn label {
    font-size: 1.4rem;
    padding-left: 25px;
    white-space: nowrap;
  }
}
.timetable .timetable_box .timetable_box_date .radio_btn:last-child {
  margin-left: 20px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .radio_btn:last-child {
    margin-left: 0;
  }
}
.timetable .timetable_box .timetable_box_date .timetable_text {
  margin-right: 10px;
  display: inline;
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .timetable_text {
    font-size: 1.4rem;
    white-space: nowrap;
  }
}
.timetable .timetable_box .timetable_box_date .submit_btn {
  background-color: #d30b2a;
  padding: 15px 0;
  width: 200px;
  text-align: center;
  text-align: center;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .submit_btn {
    width: 180px;
    margin: 0 auto;
  }
}
.timetable .timetable_box .timetable_box_date .submit_btn p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
.timetable .timetable_box .timetable_box_date .submit_btn {
  position: relative;
  cursor: pointer;
}
.timetable .timetable_box .timetable_box_date .submit_btn::after {
  content: url(../images/icon_search.png);
  position: absolute;
  right: 0;
  top: 25%;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .select_row {
    flex-wrap: nowrap;
  }
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .select_row .select_row_left {
    flex-wrap: nowrap;
  }
}
@media (max-width: 768px) {
  .timetable .timetable_box .timetable_box_date .timetable_box_right {
    width: 100%;
    margin-top: 30px;
  }
}
.timetable .timetable_txt p {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .timetable .timetable_txt p {
    font-size: 1.4rem;
  }
}
.timetable .timetable_txt p span {
  font-weight: bold;
}

.bus_info {
  padding: 100px 0;
  background: url(../images/businfo_bg.jpg) center/cover no-repeat;
}
@media (max-width: 768px) {
  .bus_info {
    padding: 50px 0;
  }
}
.bus_info .bus_info_list {
  margin-bottom: 50px;
  justify-content: space-between;
}
.bus_info .bus_info_list li {
  width: 30%;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  margin-right: 0;
}
.bus_info .bus_info_list li:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.bus_info .bus_info_list li a:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .bus_info .bus_info_list li {
    padding: 10px;
    width: 32%;
    box-shadow: 0px 3px 10px -3px rgba(129, 129, 129, 0.6);
  }
}
.bus_info .bus_info_list li img {
  width: 80%;
  margin: 0 auto 30px;
  display: block;
}
@media (max-width: 768px) {
  .bus_info .bus_info_list li img {
    margin-bottom: 10px;
  }
}
.bus_info .bus_info_list li h3 {
  font-size: 2.4rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .bus_info .bus_info_list li h3 {
    font-size: 1.8rem;
  }
}
.bus_info .bus_info_list li p {
  font-size: 1.2rem;
  color: #d30b2a;
}
.bus_info .bus_info_btn a:hover {
  opacity: 1;
}
.bus_info .bus_info_btn a:hover img {
  transform: translateY(5px);
  box-shadow: none;
}
.bus_info .bus_info_btn img {
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .bus_info .bus_info_btn img {
    box-shadow: 0px 3px 10px -3px rgba(129, 129, 129, 0.6);
  }
}

.event {
  background: url(../images/bg_blue_common.jpg) center/cover no-repeat;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .event {
    padding: 50px 0;
  }
}
.event .ttl {
  margin-bottom: 50px;
}
.event .event_list {
  width: 80%;
  margin: 0 auto 70px;
}
@media (max-width: 768px) {
  .event .event_list {
    width: 100%;
    margin-bottom: 20px;
  }
}
.event .event_list li {
  margin: 0 10px;
}
@media (max-width: 768px) {
  .event .event_list li {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .event .event_list li:nth-of-type(4), .event .event_list li:nth-of-type(5), .event .event_list li:nth-of-type(6), .event .event_list li:nth-of-type(7) {
    display: none;
  }
}
.event .event_list li a {
  box-shadow: 1px 1px 5px -1px rgba(129, 129, 129, 0.6);
  margin-bottom: 20px;
  background-color: #fff;
  display: block;
}
.event .event_list li a:hover {
  box-shadow: none;
  opacity: 1;
  transform: translateY(2px);
}
@media (max-width: 768px) {
  .event .event_list li a {
    width: 49%;
    background-color: #fff;
  }
}
.event .event_list li .event_textarea {
  background-color: #fff;
  height: 206px;
  padding: 20px;
}
@media (max-width: 768px) {
  .event .event_list li .event_textarea {
    height: auto;
    padding: 10px;
  }
}
.event .event_list li .event_textarea .cate {
  background-color: #d30b2a;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}
@media (max-width: 768px) {
  .event .event_list li .event_textarea .cate {
    font-size: 1.2rem;
  }
}
.event .event_list li .event_textarea h3 {
  color: #d30b2a;
  font-size: 1.8rem;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 52px;
}
@media (max-width: 768px) {
  .event .event_list li .event_textarea h3 {
    font-size: 1.2rem;
  }
}
.event .event_list li .event_textarea .event_text {
  font-weight: bold;
  font-size: 1.4rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: 62px;
}
@media (max-width: 768px) {
  .event .event_list li .event_textarea .event_text {
    font-size: 10px;
  }
}
.event .event_list .slick-dots {
  bottom: -25px;
}
.event .event_list .slide-arrow {
  width: 60px;
  position: absolute;
  top: 50%;
  z-index: 1000;
  transform: translateY(-50%);
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  border-radius: 50%;
}
.event .event_list .prev-arrow {
  left: -65px;
}
.event .event_list .next-arrow {
  right: -65px;
}
.event .common_btn {
  width: 500px;
}
@media (max-width: 599px) {
  .event .common_btn {
    width: 80%;
  }
}

.banner_area {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .banner_area {
    padding: 50px 0;
  }
}
.banner_area .banner_online {
  margin-bottom: 50px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .banner_area .banner_online {
    margin-bottom: 0;
  }
}
.banner_area .banner_online a:hover {
  opacity: 1;
}
.banner_area .banner_online:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.banner_area .banner_area_list li {
  width: 32%;
  background-color: #d30b2a;
  padding: 20px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  text-align: center;
  color: #fff;
  transition: 0.3s;
}
.banner_area .banner_area_list li:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.banner_area .banner_area_list li:hover a {
  opacity: 1;
}
.banner_area .banner_area_list li a {
  color: #fff;
}
.banner_area .banner_area_list li img {
  margin-bottom: 10px;
  display: block;
}
.banner_area .banner_area_list li .banner_area_ttl {
  font-size: 2.4rem;
  position: relative;
  margin-bottom: 30px;
}
.banner_area .banner_area_list li .banner_area_ttl::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 50px;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}
.banner_area .banner_area_list li .banner_area_ttl span {
  font-size: 1.2rem;
  display: block;
}
.banner_area .banner_area_list_sp {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .banner_area .banner_area_list_sp {
    margin-bottom: 20px;
  }
}
.banner_area .banner_area_list_sp li {
  margin-bottom: 20px;
}
.banner_area .banner_area_list_sp li:last-child {
  margin-bottom: 0;
}
.banner_area .banner_area_list_sp li img {
  box-shadow: 0px 3px 10px -3px rgba(129, 129, 129, 0.6);
}
.banner_area .banner_area_list {
  margin-bottom: 50px;
}

.sns {
  background: url(../images/bg_blue_common.jpg) center/cover no-repeat;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .sns {
    padding: 50px 0;
  }
}
.sns .sns_item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .sns .sns_item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .sns .sns_item {
    width: 100%;
    margin-bottom: 50px;
    padding: 20px;
    box-shadow: 0px 3px 10px -3px rgba(129, 129, 129, 0.6);
  }
}
.sns .sns_item .sns_item_ttl {
  font-size: 36px;
  border-left: 4px solid #d30b2a;
  padding-left: 20px;
  margin: 30px;
  margin-left: 0;
  line-height: 1;
  font-weight: 100;
}
@media (max-width: 768px) {
  .sns .sns_item .sns_item_ttl {
    font-size: 2.4rem;
    margin: 0;
    margin-bottom: 20px;
  }
}
.sns .sns_item .insta_list {
  margin-bottom: 20px;
}
.sns .sns_item .insta_list li {
  width: 49%;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .sns .sns_item .insta_list li {
    width: 32%;
  }
}
.sns .sns_item .iframe {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .sns .sns_item .iframe .twitter-timeline iframe {
    width: 100% !important;
  }
}

.connection {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .connection {
    padding: 50px 0 70px;
  }
}
.connection .connection_list {
  width: 90%;
  margin: 0 auto;
}
.connection .connection_list li {
  margin: 0 10px;
}
.connection .connection_list li img {
  height: 100%;
}

.slick-dots {
  bottom: -40px;
}
.slick-dots li:hover button::before {
  opacity: 0.75;
  color: #d30b2a;
}
.slick-dots li.slick-active button::before {
  font-size: 36px;
  opacity: 1;
  color: #d30b2a;
}
.slick-dots li button::before {
  font-size: 36px;
}

.slick-prev::before,
.slick-next::before {
  content: "";
}

.slide-arrow {
  width: 30px;
  position: absolute;
  top: 50%;
  z-index: 1000;
  transform: translateY(-50%);
}
@media (max-width: 599px) {
  .slide-arrow {
    width: 20px;
  }
}

.prev-arrow {
  left: -30px;
}
@media (max-width: 768px) {
  .prev-arrow {
    left: -35px;
  }
}
@media (max-width: 320px) {
  .prev-arrow {
    left: -30px;
  }
}

.next-arrow {
  right: -30px;
}
@media (max-width: 768px) {
  .next-arrow {
    right: -35px;
  }
}
@media (max-width: 320px) {
  .next-arrow {
    right: -30px;
  }
}

.unkou {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .unkou {
    margin-bottom: 30px;
  }
}
.unkou .unkou_text {
  text-align: center;
}
.unkou .unkou_text a {
  color: #d30b2a;
  font-weight: bold;
}
.unkou .unkou_text p {
  position: relative;
  display: inline;
}
.unkou .unkou_text p::after {
  content: url(../images/icon_arrow_right.webp);
  position: absolute;
  right: -45px;
  top: -13px;
  transform: scale(0.4);
}

.line {
  padding: 50px 0 0;
}
@media (max-width: 599px) {
  .line {
    padding: 30px 0 0;
  }
}
.line .sns_item_ttl {
  font-size: 36px;
  border-left: 4px solid #d30b2a;
  padding-left: 20px;
  margin: 30px;
  margin-left: 0;
  line-height: 1;
  font-weight: 100;
}
.line .banner {
  width: 48%;
}
@media (max-width: 599px) {
  .line .banner {
    width: 100%;
    margin-bottom: 30px;
  }
}

.untin_banner {
  padding-bottom: 150px;
}
@media (max-width: 599px) {
  .untin_banner {
    padding-bottom: 50px;
  }
}

.fix_news {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  background-color: #fff;
  border: 2px solid #d30b2a;
  border-radius: 10px;
  color: #d30b2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 10000;
  padding-right: 10px;
}
.fix_news:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.fix_news:hover::after {
  content: url(../images/arrow_white_right.png);
}
.fix_news::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  top: 41%;
  right: 3px;
  transform: scale(0.4) translateY(-50%);
}
@media (max-width: 599px) {
  .fix_news {
    width: 100%;
    height: auto;
    padding: 15px 20px;
    padding-right: 25px;
    bottom: 0;
    right: 0;
    border: none;
    border-top: 2px solid #d30b2a;
    border-radius: 0;
  }
  .fix_news::after {
    top: 32%;
    right: 0px;
  }
}

.global_btn {
  position: relative;
}
.global_btn ul {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 100%;
  padding: 20px 0;
  background-color: #d30b2a;
  transform: translateX(-50%);
  border-radius: 3px;
  z-index: 10;
}
.global_btn ul li {
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 14px;
}

/*information一覧*/
.info_ttl span {
  padding-left: 5px;
}

.notice_ttl span {
  padding-left: 2px;
}

.info_m {
  margin-top: -100px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .info_m {
    margin-top: -10px;
    margin-bottom: 0px;
  }
}
.info_m .ttl2 {
  margin-top: 0px;
}

.information .information_all_btns {
  margin-bottom: 30px;
}
.information .information_all_btns li {
  width: calc(12.5% - 10px);
  background-color: #dfdfdf;
  color: #000;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.4rem;
  cursor: pointer;
  margin-inline: 5px;
}
.information .information_all_btns li.active {
  background-color: #d30b2a;
  color: #Fff;
}
@media (max-width: 1200px) {
  .information .information_all_btns li {
    width: calc(25% - 10px);
  }
}
@media (max-width: 599px) {
  .information .information_all_btns li {
    width: calc(50% - 10px);
  }
}
.information .information_all,
.information .information_all_rosenbus,
.information .information_all_kousokubus,
.information .information_all_kashikiribus,
.information .information_all_tour,
.information .information_all_recruit,
.information .information_all_news {
  display: none;
  width: 100%;
}
.information .information_all.active,
.information .information_all_rosenbus.active,
.information .information_all_kousokubus.active,
.information .information_all_kashikiribus.active,
.information .information_all_tour.active,
.information .information_all_recruit.active,
.information .information_all_news.active {
  display: block;
}
.information .pn_btn {
  width: 100%;
  align-items: center;
}
.information .pn_btn .prev_btn,
.information .pn_btn .next_btn {
  border: 1px solid #d30b2a;
  text-align: center;
  padding: 17px 0;
  width: 100%;
  max-width: 200px;
  height: 60px;
  display: block;
  margin: 0 10px;
  color: #d30b2a;
  border-radius: 5px;
  background-color: #fff;
}
.information .pn_btn .prev_btn:hover,
.information .pn_btn .next_btn:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
@media (max-width: 900px) {
  .information .pn_btn .prev_btn,
  .information .pn_btn .next_btn {
    max-width: 160px;
  }
}
@media (max-width: 768px) {
  .information .pn_btn .prev_btn,
  .information .pn_btn .next_btn {
    padding: 14px 0;
    font-size: 1.4rem;
    max-width: 100px;
    line-height: 30px;
  }
}
@media (max-width: 599px) {
  .information .pn_btn .prev_btn,
  .information .pn_btn .next_btn {
    margin: 0 5px;
  }
}
@media (max-width: 320px) {
  .information .pn_btn .prev_btn,
  .information .pn_btn .next_btn {
    max-width: 84px;
  }
}
.information .pn_btn .prev_btn {
  position: relative;
}
@media (max-width: 768px) {
  .information .pn_btn .prev_btn {
    padding-left: 14px;
  }
}
.information .pn_btn .prev_btn::after {
  content: url(../images/arrow_red_left.png);
  position: absolute;
  left: 5px;
  top: 35%;
  transform: scale(0.5) translateY(-50%);
}
.information .pn_btn .prev_btn:hover::after {
  content: url(../images/arrow_white_right.png);
  transform: scale(0.5) translateY(-50%) rotate(180deg);
  top: 30%;
}
.information .pn_btn .next_btn {
  position: relative;
}
@media (max-width: 768px) {
  .information .pn_btn .next_btn {
    padding-right: 14px;
  }
}
.information .pn_btn .next_btn::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  right: 5px;
  top: 35%;
  transform: scale(0.5) translateY(-50%);
}
.information .pn_btn .next_btn:hover::after {
  content: url(../images/arrow_white_right.png);
}

hr {
  border: 0;
}

/*information詳細*/
.information_detail {
  flex-basis: 70%;
}
@media (max-width: 768px) {
  .information_detail {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
.information_detail hr {
  border-top: 1px solid #e2e2e2;
  margin-bottom: 30px;
}
.information_detail .information_return_btn a {
  border: 1px solid #d30b2a;
  text-align: center;
  padding: 17px 0;
  width: 90px;
  height: 59px;
  display: block;
  margin: 0 10px;
  border-radius: 5px;
  background-color: #d30b2a;
  color: #fff;
}
.information_detail .information_return_btn a:hover {
  background-color: #fff;
  color: #d30b2a;
}
@media (max-width: 599px) {
  .information_detail .information_return_btn a {
    width: 80px;
  }
}
@media (max-width: 320px) {
  .information_detail .information_return_btn a {
    width: 72px;
  }
}
.information_detail .information_category_ttl {
  border-bottom: 1px solid #d30b2a;
  margin-bottom: 20px;
}
.information_detail .information_category_ttl .category_active {
  background-color: #d30b2a;
  padding: 5px 10px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.information_detail .information_category_ttl .category_active p {
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
}
.information_detail .information_date {
  font-size: 1.4rem;
  font-weight: 300;
  padding-left: 10px;
}
.information_detail .infotmation_ttl {
  font-size: 32px;
  font-weight: 100;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .information_detail .infotmation_ttl {
    font-size: 2.4rem;
  }
}
.information_detail .infotmation_ttl p {
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

.information_img {
  max-width: 830px;
}
.information_img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.information_desc {
  margin-top: 10px;
  margin-bottom: 30px;
}

.sidebar {
  flex-basis: 25%;
}
@media (max-width: 768px) {
  .sidebar {
    flex-basis: 100%;
  }
}
.sidebar .sidebar_ttl {
  background-color: #d30b2a;
  width: 100%;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}
.sidebar .year {
  position: relative;
}
.sidebar .year .arrow {
  padding: 10px 30px;
  border: 1px solid #d30b2a;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  margin-bottom: 5px;
}
.sidebar .year::after {
  content: url(../images/arrow_red_bottom.png);
  display: inline-block;
  margin-right: 5px;
  position: absolute;
  right: 10px;
  top: 45%;
  transform: scale(0.5) translateY(-50%);
  transition: 0.3s;
}
.sidebar .year.active::after {
  transform: scale(0.5) translateY(-50%) rotate(180deg);
  top: 35%;
  right: 10px;
}
@media (max-width: 599px) {
  .sidebar .year.active::after {
    right: 15px;
  }
}
.sidebar .dates a {
  display: block;
  width: 90%;
  padding: 10px 15px;
  border-bottom: 1px dashed;
  margin: 0 auto;
}
.sidebar .dates a:last-child {
  border-bottom: none;
}
.sidebar .dates a:hover {
  color: #d30b2a;
}
@media (max-width: 768px) {
  .sidebar .dates a {
    width: 93%;
  }
}

/*関連リンク*/
.link_ttl span {
  padding-left: 3px;
}
@media (max-width: 599px) {
  .link_ttl span {
    padding-left: 2px;
  }
}

.link {
  padding: 0 0 90px;
}
@media (max-width: 768px) {
  .link {
    padding: 30px 0 50px;
  }
}
.link ul {
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
}
.link ul li {
  width: calc(50% - 20px);
  margin-bottom: 40px;
}
.link ul li:nth-child(odd) {
  margin-right: 40px;
}
@media (max-width: 599px) {
  .link ul li:nth-child(odd) {
    margin-right: 0;
  }
}
.link ul li a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  max-width: 580px;
  display: block;
  color: #d30b2a;
  font-weight: 500;
}
.link ul li a::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 16px;
  /*画像の幅*/
  height: 16px;
  /*画像の高さ*/
  background-image: url(../images/link/icon_newwindow_r.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 2px;
}
.link ul li a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.link ul li a:hover::after {
  background-image: url(../images/link/icon_newwindow_w.png);
}
@media (max-width: 768px) {
  .link ul li {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .link ul li:last-child {
    margin-bottom: 0;
  }
}
.link ul li span {
  padding-left: 10px;
  font-size: 1.4rem;
}
@media (max-width: 599px) {
  .link ul li span {
    padding-left: 0;
    margin-top: 10px;
    display: block;
  }
}
.link ul li img {
  width: 100%;
  max-width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  margin-bottom: 2px;
  margin-left: 3px;
}

/*よくある質問*/
.ttl_lh i {
  font-style: normal;
  margin-left: -2px;
}

.faq_subcopy {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2rem;
  font-weight: 100;
}

.faq_ttl span {
  padding-left: 3px;
}

.faq {
  padding: 0 0 100px;
}
@media (max-width: 768px) {
  .faq {
    padding: 30px 0 20px;
  }
}
.faq a {
  color: #007ac7;
  text-decoration: underline;
}
.faq .faq_rosen,
.faq .faq_ayuca,
.faq .faq_teiki,
.faq .faq_kashikiri,
.faq .faq_tour {
  margin-bottom: 60px;
}
.faq .faq_teiki img {
  width: 100%;
  max-width: 625px;
  height: auto;
  aspect-ratio: 625/48;
}
@media (max-width: 599px) {
  .faq .faq_teiki img {
    aspect-ratio: 9/1;
  }
}
.faq .faq_tour img {
  width: 100%;
  max-width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  margin-bottom: 2px;
}
.faq .faq_bg {
  background: url(../images/businfo_bg.jpg) center/cover no-repeat;
  padding: 60px 0;
}
.faq .recruit_mt {
  margin-top: 20px;
}
.faq .faq_item {
  margin-bottom: 30px;
}
.faq .faq_item .question {
  background-color: #fff;
  padding: 25px 40px;
  border: 1px solid #d30b2a;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.faq .faq_item .question::after, .faq .faq_item .question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background-color: #d30b2a;
  width: 20px;
  height: 3px;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .faq .faq_item .question::after, .faq .faq_item .question::before {
    right: 5px;
  }
}
.faq .faq_item .question::after {
  transform: rotate(90deg);
  right: 20px;
  top: 48%;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .faq .faq_item .question::after {
    right: 15px;
  }
}
.faq .faq_item .question.active::after {
  transform: rotate(0);
  top: 49%;
  right: 20px;
}
@media (max-width: 599px) {
  .faq .faq_item .question.active::after {
    right: 15px;
  }
}
.faq .faq_item .question:hover {
  opacity: 0.7;
}
@media (max-width: 599px) {
  .faq .faq_item .question {
    padding: 15px;
  }
}
.faq .faq_item .question p {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 599px) {
  .faq .faq_item .question p {
    font-size: 1.6rem;
    padding-right: 30px;
  }
}
.faq .faq_item .answer {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-top: 10px;
}
@media (max-width: 599px) {
  .faq .faq_item .answer {
    font-size: 1.4rem;
  }
}

#faq_teiki {
  margin-top: -125px;
  padding-top: 125px;
}
@media (max-width: 1200px) {
  #faq_teiki {
    margin-top: -70px;
    padding-top: 70px;
  }
}

/*運行情報*/
.traffic {
  padding: 0 0 130px;
}
@media (max-width: 768px) {
  .traffic {
    padding: 0 0 50px;
  }
}
.traffic .ttl2 {
  text-align: left;
  margin-top: 0;
}
@media (max-width: 768px) {
  .traffic .ttl2 {
    text-align: center;
  }
}
@media (max-width: 599px) {
  .traffic .ttl2 {
    margin-top: 30px;
  }
}
.traffic .traffic_list {
  flex-basis: 70%;
}
@media (max-width: 768px) {
  .traffic .traffic_list {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
.traffic .traffic_list .traffic_detail {
  background-color: #fff;
  padding: 40px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
  margin-bottom: 40px;
  border-radius: 20px;
}
@media (max-width: 599px) {
  .traffic .traffic_list .traffic_detail {
    padding: 20px;
  }
}
.traffic .traffic_list .traffic_detail .traffic_ttl {
  border-left: 8px solid #d30b2a;
}
.traffic .traffic_list .traffic_detail .traffic_date {
  font-size: 1.4rem;
  margin-bottom: 10px;
  padding-left: 18px;
}
.traffic .traffic_list .traffic_detail .traffic_desc p {
  padding-left: 8px;
}
.traffic .traffic_list .traffic_detail .infotmation_ttl {
  font-size: 32px;
  font-weight: 100;
  line-height: 1.3;
  margin-bottom: 15px;
  font-feature-settings: "palt";
  padding-bottom: 15px;
  padding-left: 15px;
  border-bottom: 1px solid #d30b2a;
  letter-spacing: 1px;
}
@media (max-width: 599px) {
  .traffic .traffic_list .traffic_detail .infotmation_ttl {
    font-size: 2.4rem;
  }
}
.traffic .pn_btn {
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 599px) {
  .traffic .pn_btn {
    margin-top: 40px;
  }
}
.traffic .pn_btn .prev_btn,
.traffic .pn_btn .next_btn {
  border: 1px solid #d30b2a;
  text-align: center;
  padding: 17px 0;
  width: 80%;
  max-width: 230px;
  height: 60px;
  display: block;
  margin: 0 10px;
  color: #d30b2a;
  border-radius: 5px;
  background-color: #fff;
}
.traffic .pn_btn .prev_btn:hover,
.traffic .pn_btn .next_btn:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .traffic .pn_btn .prev_btn,
  .traffic .pn_btn .next_btn {
    padding: 19px 0;
    font-size: 1.4rem;
    max-width: 140px;
  }
}
.traffic .pn_btn .prev_btn {
  position: relative;
}
.traffic .pn_btn .prev_btn::after {
  content: url(../images/arrow_red_left.png);
  position: absolute;
  left: 5px;
  top: 35%;
  transform: scale(0.5) translateY(-50%);
}
.traffic .pn_btn .prev_btn:hover::after {
  content: url(../images/arrow_white_right.png);
  transform: scale(0.5) translateY(-50%) rotate(180deg);
  top: 30%;
}
.traffic .pn_btn .next_btn {
  position: relative;
}
.traffic .pn_btn .next_btn::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  right: 5px;
  top: 35%;
  transform: scale(0.5) translateY(-50%);
}
.traffic .pn_btn .next_btn:hover::after {
  content: url(../images/arrow_white_right.png);
}

/*サイトのご利用に当たって*/
.sitepolicy_ttl span {
  padding-left: 3px;
}

.sitepolicy {
  padding: 0 0 130px;
}
@media (max-width: 768px) {
  .sitepolicy {
    padding: 0 0 50px;
  }
}
.sitepolicy .inner ol {
  padding-left: 20px;
}
.sitepolicy .inner ol li {
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 0 10px;
}

/*サイトマップ*/
.sitemap_ttl span {
  padding-left: 3px;
}

.sitemap {
  padding: 0 0 130px;
}
@media (max-width: 599px) {
  .sitemap {
    padding: 30px 0 50px;
  }
}
.sitemap .sitemap_kosoku,
.sitemap .sitemap_kashikiri,
.sitemap .sitemap_tour,
.sitemap .sitemap_recruit,
.sitemap .sitemap_info {
  margin-top: 60px;
}
@media (max-width: 599px) {
  .sitemap .sitemap_kosoku,
  .sitemap .sitemap_kashikiri,
  .sitemap .sitemap_tour,
  .sitemap .sitemap_recruit,
  .sitemap .sitemap_info {
    margin-top: 30px;
  }
}
.sitemap h2 {
  border-left: 8px solid #d30b2a !important;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 100;
  line-height: 2.5;
  margin-bottom: 0;
  border: 1px solid #d30b2a;
  padding-bottom: 2px;
}
@media (max-width: 599px) {
  .sitemap h2 {
    font-size: 2.4rem;
  }
}
.sitemap hr {
  border-top: 1px solid #e2e2e2;
  margin-bottom: 20px;
}
.sitemap ul {
  margin-top: 15px;
  margin-inline: auto;
  align-items: center;
  margin-left: 7px;
}
.sitemap ul li {
  position: relative;
  padding: 10px 0 10px 12px;
  width: 25%;
}
@media (max-width: 1200px) {
  .sitemap ul li {
    width: 33.3333333333%;
  }
}
@media (max-width: 950px) {
  .sitemap ul li {
    width: 50%;
    line-height: 1.2;
    padding: 15px 0 15px 12px;
  }
}
@media (max-width: 599px) {
  .sitemap ul li {
    width: 100%;
  }
}
.sitemap ul li::before {
  content: "";
  background-image: url(../images/icon_arrow_red.png);
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  vertical-align: middle;
}
@media (max-width: 599px) {
  .sitemap ul li::before {
    top: 52%;
  }
}
.sitemap ul li a {
  color: #1a1a1a;
}
.sitemap ul li a:hover {
  color: #d30b2a;
}
.sitemap ul li a img {
  width: 100%;
  max-width: 16px;
  height: auto;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .sitemap ul .twolines::before {
    content: "";
    background-image: url(../images/icon_arrow_red.png);
    position: absolute;
    top: 38%;
    left: -6px;
    transform: translateY(-50%);
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    vertical-align: middle;
  }
}
.sitemap ul .new_tab a::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 16px;
  /*画像の幅*/
  height: 16px;
  /*画像の高さ*/
  background-image: url(../images/link/icon_newwindow_b.png);
  background-size: contain;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 2px;
}
.sitemap ul .new_tab a:hover::after {
  background-image: url(../images/link/icon_newwindow_r.png);
}

/*プライバシーポリシー*/
.common_mv2 {
  background-color: #d30b2a;
  padding: 75px 0;
  border-bottom: 60px solid #880000;
  overflow: hidden;
}
@media (max-width: 768px) {
  .common_mv2 {
    padding: 36px 0 28px;
    border-bottom: 40px solid #880000;
  }
}
.common_mv2 .inner {
  overflow: hidden;
}
.common_mv2 .common_mv_icon {
  margin-right: 20px;
  width: 70px;
}
@media (max-width: 768px) {
  .common_mv2 .common_mv_icon {
    width: 50px;
    margin-right: 10px;
  }
}
.common_mv2 .common_mv_icon img {
  vertical-align: baseline;
}
.common_mv2 .common_mv_ttl h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 100;
}
@media (max-width: 768px) {
  .common_mv2 .common_mv_ttl h2 {
    font-size: 36px;
    line-height: 1.1;
  }
}
.common_mv2 .common_mv_ttl h2 span {
  font-size: 1.8rem;
  margin-top: -10px;
  display: block;
}
@media (max-width: 768px) {
  .common_mv2 .common_mv_ttl h2 span {
    margin-top: 0;
    padding-top: 6px;
  }
}

.privacy_ttl span {
  padding-left: 6px;
}
@media (max-width: 599px) {
  .privacy_ttl span {
    padding-left: 2px;
  }
}

.common_mv_subttl {
  display: block;
  font-size: 1.4rem;
}

.privacy {
  padding: 0 0 130px;
}
@media (max-width: 768px) {
  .privacy {
    padding: 0 0 50px;
  }
}
.privacy .ttl2 {
  font-feature-settings: "palt";
}
.privacy .inner ol {
  margin-top: 50px;
  padding-left: 20px;
}
.privacy .inner ol li {
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px 0;
}

/*関連リンク*/
.link_ttl span {
  padding-left: 3px;
}
@media (max-width: 599px) {
  .link_ttl span {
    padding-left: 2px;
  }
}

.link {
  padding: 0 0 90px;
}
@media (max-width: 768px) {
  .link {
    padding: 30px 0 50px;
  }
}
.link ul {
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
}
.link ul li {
  width: calc(50% - 20px);
  margin-bottom: 40px;
}
.link ul li:nth-child(odd) {
  margin-right: 40px;
}
@media (max-width: 599px) {
  .link ul li:nth-child(odd) {
    margin-right: 0;
  }
}
.link ul li a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  max-width: 580px;
  display: block;
  color: #d30b2a;
  font-weight: 500;
}
.link ul li a::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 16px;
  /*画像の幅*/
  height: 16px;
  /*画像の高さ*/
  background-image: url(../images/link/icon_newwindow_r.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 2px;
}
.link ul li a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.link ul li a:hover::after {
  background-image: url(../images/link/icon_newwindow_w.png);
}
@media (max-width: 768px) {
  .link ul li {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .link ul li:last-child {
    margin-bottom: 0;
  }
}
.link ul li span {
  padding-left: 10px;
  font-size: 1.4rem;
}
@media (max-width: 599px) {
  .link ul li span {
    padding-left: 0;
    margin-top: 10px;
    display: block;
  }
}
.link ul li img {
  width: 100%;
  max-width: 16px;
  height: auto;
  aspect-ratio: 1/1;
  margin-bottom: 2px;
  margin-left: 3px;
}

@media (max-width: 599px) {
  .company_menu .common_accordion {
    margin-top: 30px;
  }
}
.company_menu .inner {
  width: 1300px;
}
@media (max-width: 1200px) {
  .company_menu .inner {
    width: 90%;
  }
}
.company_menu .company_nav {
  padding: 0;
}
.company_menu .company_nav .bus_info_list {
  justify-content: space-between;
}
.company_menu .company_nav .bus_info_list li:nth-child(4), .company_menu .company_nav .bus_info_list li:last-child {
  margin-right: 0;
}
.company_menu .company_nav .bus_info_list li.active {
  background-color: #d30b2a;
  pointer-events: none;
}
.company_menu .company_nav .bus_info_list li.active a {
  opacity: 1;
}
.company_menu .company_nav .bus_info_list li.active p {
  color: #fff;
  transition: 0.3;
}
.company_menu .company_nav .bus_info_list li:hover {
  background-color: #d30b2a;
}
.company_menu .company_nav .bus_info_list li:hover a {
  opacity: 1;
}
.company_menu .company_nav .bus_info_list li:hover p {
  color: #fff;
  transition: 0.3;
}
.company_menu .company_nav .bus_info_list li img {
  transition: 0.3s;
}

.company_outline {
  padding: 60px 0px 100px;
}
@media (max-width: 599px) {
  .company_outline {
    padding-bottom: 50px;
  }
}
@media (max-width: 599px) {
  .company_outline {
    padding-top: 30px;
  }
}
.company_outline .company_now {
  text-align: right;
  margin-bottom: 10px;
}
.company_outline .company_outline_table .company_outline_row {
  border: 1px solid #a9a9a9;
  border-bottom: none;
}
.company_outline .company_outline_table .company_outline_row:last-child {
  border-bottom: 1px solid #a9a9a9;
}
.company_outline .company_outline_table .company_outline_row .company_outline_left,
.company_outline .company_outline_table .company_outline_row .company_outline_right {
  padding: 10px;
  display: flex;
  align-items: center;
}
.company_outline .company_outline_table .company_outline_row .company_outline_left {
  width: 25%;
  background-color: #f5f5f5;
  border-right: 1px solid #a9a9a9;
}
@media (max-width: 599px) {
  .company_outline .company_outline_table .company_outline_row .company_outline_left {
    width: 30%;
  }
}
.company_outline .company_outline_table .company_outline_row .company_outline_left p {
  font-weight: 500;
}
.company_outline .company_outline_table .company_outline_row .company_outline_right {
  width: 75%;
  background-color: #fff;
}
@media (max-width: 599px) {
  .company_outline .company_outline_table .company_outline_row .company_outline_right {
    width: 70%;
  }
}

.company_map {
  padding: 60px 0 100px;
}
@media (max-width: 599px) {
  .company_map {
    padding-top: 20px;
    padding-bottom: 50px;
  }
}
.company_map .company_map_content {
  margin-bottom: 30px;
}
.company_map .company_map_iframe iframe {
  height: 450px;
}

.conditions .common_pdf_btn {
  width: 100%;
}
.conditions .general_conditions,
.conditions .chartered_conditions {
  flex-basis: 48%;
}
@media (max-width: 599px) {
  .conditions .general_conditions,
  .conditions .chartered_conditions {
    flex-basis: 100%;
  }
}

.company_info_list {
  gap: 12px;
  justify-content: center;
}
@media (max-width: 599px) {
  .company_info_list {
    gap: 6px;
  }
}
.company_info_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(20% - 12px);
  background-color: #fff;
  padding: 30px;
  text-align: center;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
  line-height: 1.2;
}
@media (max-width: 599px) {
  .company_info_list li {
    width: calc(33.3333333333% - 6px);
    padding: 12px 0;
    font-size: 1.2rem;
    box-shadow: 0px 3px 10px -3px rgba(129, 129, 129, 0.6);
  }
}
.company_info_list li.active {
  background-color: #d30b2a;
  pointer-events: none;
}
.company_info_list li.active a {
  opacity: 1;
}
.company_info_list li.active p {
  color: #fff;
  transition: 0.3;
}
.company_info_list li:hover {
  background-color: #d30b2a;
  box-shadow: none;
  transform: translateY(5px);
}
.company_info_list li:hover a {
  opacity: 1;
}
.company_info_list li:hover p {
  color: #fff;
  transition: 0.3;
}
.company_info_list li img {
  transition: 0.3s;
}

/*お問い合わせフォーム*/
.form_bread ul li:after {
  margin-right: 0;
}

.contact_ttl span {
  padding-left: 4px;
}

.form {
  padding: 0 0 130px;
}
@media (max-width: 768px) {
  .form {
    padding: 30px 0 50px;
  }
}
@media (max-width: 599px) {
  .form .ttl_bottom {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.form h4 {
  padding-left: 10px;
  font-size: 2rem;
  margin-bottom: 20px;
  border-left: 8px solid #c60022;
}
@media (max-width: 768px) {
  .form h4 {
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
.form .guidance_faq {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .form .guidance_faq {
    font-size: 1.6rem;
  }
}
.form .guidance_faq a {
  text-decoration: underline;
  color: #d30b2a;
}
.form .route_inquiry_box {
  margin-bottom: 40px;
}
.form .route_inquiry_box .contact_table {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .form .route_inquiry_box .contact_table {
    width: 1000px;
  }
}
.form .route_inquiry_box .common_table4 {
  margin-bottom: 30px;
}
.form .route_inquiry_box .common_table4 a {
  display: block;
  border-bottom: 3px solid #e2e2e2;
  font-weight: bold;
  margin-top: 10px;
}
.form .route_inquiry_box .common_table4 .table_item:first-child .table_column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.form .route_inquiry_box .common_table4 .table_item:first-child .table_column4 {
  display: block;
}
.form .route_inquiry_box .common_table4 .table_item:first-child .table_column4 p {
  padding: 10px 0;
}
.form .route_inquiry_box .common_table4 .table_item:first-child .table_column4 ul {
  border-top: 1px solid #a9a9a9;
}
.form .route_inquiry_box .common_table4 .table_item:first-child .table_column4 ul li {
  border-right: 1px solid #a9a9a9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.form .route_inquiry_box .common_table4 .table_item:first-child .table_column4 ul li:last-child {
  border-right: none;
}
@media (max-width: 599px) {
  .form .route_inquiry_box .common_table4 .table_item:first-child .table_column4 ul li {
    font-size: 1.4rem;
  }
}
.form .route_inquiry_box .common_table4 .table_column4 {
  padding: 0;
  display: flex;
}
.form .route_inquiry_box .common_table4 .table_column1 {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.form .route_inquiry_box .common_table4 .table_column1 {
  width: 10%;
}
.form .route_inquiry_box .common_table4 .table_column2 {
  width: 34%;
}
.form .route_inquiry_box .common_table4 .table_column3 {
  width: 56%;
  display: flex;
  align-items: center;
}
.form .route_inquiry_box .common_table4 .table_column4 ul {
  width: 100%;
}
.form .route_inquiry_box .common_table4 .table_column4 ul li {
  width: 25%;
  text-align: center;
  border-right: 1px solid #a9a9a9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.form .route_inquiry_box .common_table4 .table_column4 ul li:last-child {
  border-right: none;
}
.form .route_inquiry_box .common_table4 .table_column4 ul li img {
  width: 25px;
}
@media (max-width: 599px) {
  .form .route_inquiry_box .common_table4 .table_column4 ul li img {
    width: 25px;
  }
}
.form .btn_gifubus_link {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .form .btn_gifubus_link {
    margin-bottom: 0;
  }
}
.form .btn_gifubus_nav {
  width: calc(50% - 20px);
  max-width: 580px;
}
@media (max-width: 768px) {
  .form .btn_gifubus_nav {
    width: 100%;
    margin-bottom: 20px;
  }
}
.form .btn_gifubus_nav a {
  border: 1px solid #971c30;
  border-left: 5px solid #d30b2a;
  padding: 15px 90px 20px 20px;
  color: #fff;
  position: relative;
  background-color: #971c30;
  font-size: 36px;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 599px) {
  .form .btn_gifubus_nav a {
    font-size: 2.4rem;
  }
}
.form .btn_gifubus_nav a::after {
  content: url(../images/icon_arrow_burgundy.png);
  position: absolute;
  top: 28%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .form .btn_gifubus_nav a::after {
    right: 0;
  }
}
@media (max-width: 599px) {
  .form .btn_gifubus_nav a::after {
    top: 15%;
    right: -10px;
    transform: scale(0.25) translateY(-50%);
  }
}
.form .btn_gifubus_nav a:hover {
  background-color: #fff;
  color: #971c30;
  opacity: 1;
}
.form .btn_gifubus_nav a:hover::after {
  content: url(../images/icon_arrow_white.png);
}
@media (max-width: 960px) {
  .form .btn_gifubus_nav a {
    padding: 20px 30px 20px 20px;
  }
}
@media (max-width: 768px) {
  .form .btn_gifubus_nav a {
    padding: 10px 80px 20px 20px;
  }
}
@media (max-width: 599px) {
  .form .btn_gifubus_nav a {
    width: 100%;
    padding: 10px 70px 20px 10px;
  }
  .form .btn_gifubus_nav a:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 320px) {
  .form .btn_gifubus_nav a {
    padding: 10px 20px 20px 20px;
  }
}
.form .btn_gifubus_nav a span {
  font-size: 1.4rem;
  border-bottom: 1px solid #fff;
}
.form .btn_pdf a {
  border: 1px solid #971c30;
  border-left: 5px solid #971c30;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 580px;
  display: block;
  position: relative;
  font-weight: 500;
  margin-bottom: 20px;
}
.form .btn_pdf a::after {
  content: url(../images/icon_arrow_white.png);
  position: absolute;
  top: 28%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 599px) {
  .form .btn_pdf a::after {
    top: -10%;
    right: -10px;
    transform: scale(0.25) translateY(-50%);
  }
}
.form .btn_pdf a:hover {
  background-color: #971c30;
  color: #fff;
  opacity: 1;
}
.form .btn_pdf a:hover::after {
  content: url(../images/icon_arrow_burgundy.png);
}
@media (max-width: 599px) {
  .form .btn_pdf a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
  .form .btn_pdf a:last-child {
    margin-bottom: 0;
  }
}
.form .highway_inquiry,
.form .recruit_inquiry {
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  .form .highway_inquiry,
  .form .recruit_inquiry {
    margin-bottom: 50px;
  }
}
.form .form_link a {
  display: block;
  margin: 0 auto;
}
.form .form_link img {
  width: 100%;
  height: auto;
  max-width: 1000px;
}
.form .tour_inquiry {
  margin-bottom: 60px;
}
.form .tour_inquiry a {
  display: block;
  margin-bottom: 20px;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.form .tour_inquiry a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.form .tour_inquiry a img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 2395/259;
}
@media (max-width: 599px) {
  .form .tour_inquiry a img {
    aspect-ratio: 901/258;
  }
}
.form .form_attention .ttl2 {
  margin-bottom: 20px;
}
.form .form_attention .ttl_bottom {
  font-weight: 300;
}
@media (max-width: 599px) {
  .form .form_attention .ttl_bottom {
    margin-bottom: 30px;
  }
}
.form .form_attention .form_attention_desc {
  padding-bottom: 30px;
}
.form .form_attention .form_attention_desc ul li {
  position: relative;
  margin: 0 0 5px;
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}
.form .form_attention .form_attention_desc p {
  margin-top: 30px;
  font-size: 1.4rem;
}
.form .form_attention .form_attention_desc a {
  border-bottom: 3px solid #e2e2e2;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
.form .form_attention .agreement_chk {
  background-color: #fff;
  padding: 20px 30px;
}
@media (max-width: 599px) {
  .form .form_attention .agreement_chk {
    padding: 10px;
  }
}
.form .form_attention .agreement_chk .must {
  background-color: #d30b2a;
  color: #fff;
  width: 65px;
  height: 30px;
  display: inline-block;
  text-align: center;
  line-height: 29px;
  border-radius: 3px;
  font-weight: 500;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .form .form_attention .agreement_chk .must {
    font-size: 1.4rem;
    width: 55px;
    height: 25px;
    line-height: 24px;
  }
}
@media (max-width: 599px) {
  .form .form_attention .agreement_chk .must {
    display: inline-block;
  }
}
.form .form_attention .agreement_chk input[type=radio] {
  display: none;
}
.form .form_attention .agreement_chk label {
  position: relative;
  padding: 0 0 0 30px;
  display: inline-block;
  font-weight: 500;
}
.form .form_attention .agreement_chk label:after,
.form .form_attention .agreement_chk label:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}
.form .form_attention .agreement_chk label:after {
  left: 0;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
}
.form .form_attention .agreement_chk label:before {
  left: 5px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: #d30b2a;
  border-radius: 50%;
  opacity: 0;
}
.form .form_attention .agreement_chk input[type=radio]:checked + label:before {
  opacity: 1;
}
.form .form_attention .agreement_chk label:hover:after {
  border-color: #d30b2a;
}
.form .form_fill {
  padding-top: 50px;
}
.form .form_fill dl {
  border-bottom: 1px solid #a9a9a9;
  display: flex;
  flex-wrap: wrap;
  padding-block: 30px;
}
.form .form_fill dl:nth-of-type(n+5) {
  border-bottom: 3px solid #a9a9a9;
}
.form .form_fill dl dt {
  width: 21%;
  display: inline-block;
  padding-right: 20px;
  padding-top: 28px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .form .form_fill dl dt {
    width: 30%;
  }
}
@media (max-width: 960px) {
  .form .form_fill dl dt {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .form .form_fill dl dt {
    width: 32%;
  }
}
@media (max-width: 599px) {
  .form .form_fill dl dt {
    width: 100%;
    padding-top: 10px;
  }
}
.form .form_fill dl dt .must {
  background-color: #d30b2a;
  color: #fff;
  width: 65px;
  height: 30px;
  display: block;
  text-align: center;
  line-height: 29px;
  float: right;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .form .form_fill dl dt .must {
    font-size: 1.4rem;
    width: 55px;
    height: 25px;
    line-height: 24px;
  }
}
@media (max-width: 599px) {
  .form .form_fill dl dt .must {
    float: none;
    display: inline-block;
    margin-left: 10px;
  }
}
.form .form_fill dl dd {
  width: 79%;
  display: inline-block;
  padding-block: 20px;
  font-weight: 500;
  position: relative;
}
@media (max-width: 1200px) {
  .form .form_fill dl dd {
    width: 70%;
  }
}
@media (max-width: 960px) {
  .form .form_fill dl dd {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .form .form_fill dl dd {
    width: 68%;
  }
}
@media (max-width: 599px) {
  .form .form_fill dl dd {
    width: 100%;
    padding-block: 5px;
  }
}
.form .form_fill dl select {
  height: 45px;
  width: 100%;
  padding: 5px 10px;
  border-color: #acacac;
  border-radius: 3px;
}
.form .form_fill dl p {
  font-weight: 300;
  font-size: 1.4rem;
}
.form .form_fill dl input[type=text],
.form .form_fill dl input[type=email] {
  height: 45px;
  font-size: 1.2rem;
  padding: 5px;
  border: 1px solid #acacac;
  border-radius: 3px;
}
.form .form_fill dl input[type=radio] {
  display: none;
}
.form .form_fill dl label {
  position: relative;
  padding: 0 0 0 30px;
  display: inline-block;
}
.form .form_fill dl label:after,
.form .form_fill dl label:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}
.form .form_fill dl label:after {
  left: 0;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
}
.form .form_fill dl label:before {
  left: 5px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: #d30b2a;
  border-radius: 50%;
  opacity: 0;
}
.form .form_fill dl input[type=radio]:checked + label:before {
  opacity: 1;
}
.form .form_fill dl label:hover:after {
  border-color: #d30b2a;
}
.form .form_fill dl .fill_w {
  width: 100%;
}
.form .form_fill dl .fill_ws {
  width: 28.5%;
}
@media (max-width: 1200px) {
  .form .form_fill dl .fill_ws {
    width: 24%;
  }
}
@media (max-width: 960px) {
  .form .form_fill dl .fill_ws {
    width: 21%;
  }
}
@media (max-width: 599px) {
  .form .form_fill dl .fill_ws {
    width: 20%;
  }
}
.form .form_fill dl .fill_ws_2 {
  width: 28.5%;
}
@media (max-width: 1200px) {
  .form .form_fill dl .fill_ws_2 {
    width: 40%;
  }
}
.form .form_fill dl textarea {
  width: 100%;
  max-height: 110px;
  font-size: 1.2rem;
  padding: 5px;
  border-color: #acacac;
  border-radius: 3px;
}
.form .form_fill dl ul {
  margin-top: 11px;
}
@media (max-width: 599px) {
  .form .form_fill dl ul {
    margin-top: 0;
  }
}
.form .form_fill dl ul li {
  padding-bottom: 5px;
}
.form .form_fill dl .chk_mt {
  margin-top: 12px;
}
.form .form_fill dl .down_arrow {
  padding: 10px 0;
  width: 100%;
  text-align: center;
}
.form .form_fill dl .down_arrow img {
  width: 100%;
  max-width: 80px;
  height: auto;
  aspect-ratio: 129/124;
}
@media (max-width: 599px) {
  .form .form_fill dl .down_arrow {
    padding: 20px 0 8px;
  }
}
.form .form_fill .pb_none {
  padding: 0;
  padding-top: 30px;
  padding-bottom: 10px;
  margin-bottom: 35px;
}
@media (max-width: 599px) {
  .form .form_fill .pb_none {
    padding-bottom: 30px;
  }
}
.form .form_fill .bb3 {
  border-bottom: 3px solid #a9a9a9;
}
.form .form_fill button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: #ccc;
}
.form .form_fill button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 20px;
  background: #d30b2a;
  color: #fff;
  padding: 20px 56px;
  font-size: 50px;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  margin: 0 auto;
  display: block;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  max-width: 350px;
  font-weight: 300;
}
.form .form_fill button[type=submit]:hover {
  box-shadow: none;
  transform: translateY(5px);
}
@media (max-width: 599px) {
  .form .form_fill button[type=submit] {
    width: 70%;
    font-size: 40px;
  }
}
.form .form_fill button[type=reset] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 15px;
  background: #d2d2d2;
  padding: 10px 76px;
  margin: 30px auto 0;
  display: block;
  cursor: pointer;
}

.form_chk {
  padding: 0 0 130px;
}
@media (max-width: 768px) {
  .form_chk {
    padding: 30px 0 50px;
  }
}
.form_chk .ttl2 {
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .form_chk .ttl_bottom {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.form_chk .form_fill dl {
  border-bottom: 1px solid #a9a9a9;
  display: flex;
  flex-wrap: wrap;
  padding-block: 30px;
}
.form_chk .form_fill dl:nth-of-type(n+5) {
  border-bottom: 3px solid #a9a9a9;
}
.form_chk .form_fill dl:last-of-type {
  border-bottom: none;
  padding: 0 0 30px;
}
.form_chk .form_fill dl dt {
  width: 21%;
  display: inline-block;
  padding-right: 20px;
  padding-top: 28px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .form_chk .form_fill dl dt {
    width: 30%;
  }
}
@media (max-width: 960px) {
  .form_chk .form_fill dl dt {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .form_chk .form_fill dl dt {
    width: 32%;
  }
}
@media (max-width: 599px) {
  .form_chk .form_fill dl dt {
    width: 100%;
    padding-top: 10px;
  }
}
.form_chk .form_fill dl dt .must {
  background-color: #d30b2a;
  color: #fff;
  width: 65px;
  height: 30px;
  display: block;
  text-align: center;
  line-height: 29px;
  float: right;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .form_chk .form_fill dl dt .must {
    font-size: 1.4rem;
    width: 55px;
    height: 25px;
    line-height: 24px;
  }
}
@media (max-width: 599px) {
  .form_chk .form_fill dl dt .must {
    float: none;
    display: inline-block;
    margin-left: 10px;
  }
}
.form_chk .form_fill dl dd {
  width: 79%;
  display: inline-block;
  padding-block: 20px;
  font-weight: 500;
  position: relative;
}
@media (max-width: 1200px) {
  .form_chk .form_fill dl dd {
    width: 70%;
  }
}
@media (max-width: 960px) {
  .form_chk .form_fill dl dd {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .form_chk .form_fill dl dd {
    width: 68%;
  }
}
@media (max-width: 599px) {
  .form_chk .form_fill dl dd {
    width: 100%;
    padding-block: 5px;
  }
}
.form_chk .form_fill dl select {
  height: 45px;
  width: 100%;
  padding: 5px 10px;
  border-color: #acacac;
  border-radius: 3px;
}
.form_chk .form_fill dl p {
  font-weight: 300;
  font-size: 1.4rem;
}
.form_chk .form_fill dl input[type=text],
.form_chk .form_fill dl input[type=email] {
  height: 45px;
  font-size: 1.2rem;
  padding: 5px;
  border: 1px solid #acacac;
  border-radius: 3px;
}
.form_chk .form_fill dl input[type=radio] {
  display: none;
}
.form_chk .form_fill dl label {
  position: relative;
  padding: 0 0 0 30px;
  display: inline-block;
}
.form_chk .form_fill dl label:after,
.form_chk .form_fill dl label:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}
.form_chk .form_fill dl label:after {
  left: 0;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
}
.form_chk .form_fill dl label:before {
  left: 5px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: #d30b2a;
  border-radius: 50%;
  opacity: 0;
}
.form_chk .form_fill dl input[type=radio]:checked + label:before {
  opacity: 1;
}
.form_chk .form_fill dl label:hover:after {
  border-color: #d30b2a;
}
.form_chk .form_fill dl .fill_w {
  width: 100%;
}
.form_chk .form_fill dl .fill_ws {
  width: 28.5%;
}
@media (max-width: 1200px) {
  .form_chk .form_fill dl .fill_ws {
    width: 24%;
  }
}
@media (max-width: 960px) {
  .form_chk .form_fill dl .fill_ws {
    width: 21%;
  }
}
@media (max-width: 599px) {
  .form_chk .form_fill dl .fill_ws {
    width: 20%;
  }
}
.form_chk .form_fill dl textarea {
  width: 100%;
  max-height: 110px;
  font-size: 1.2rem;
  padding: 5px;
  border-color: #acacac;
  border-radius: 3px;
}
.form_chk .form_fill dl ul {
  margin-top: 11px;
}
.form_chk .form_fill dl ul li {
  padding-bottom: 5px;
}
.form_chk .form_fill dl .chk_mt {
  margin-top: 12px;
}
.form_chk .form_fill dl .down_arrow {
  padding: 50px 0;
}
.form_chk .form_fill dl img {
  position: absolute;
  width: 100%;
  max-width: 80px;
  height: auto;
  aspect-ratio: 161/141;
  top: 10%;
  left: 30%;
}
@media (max-width: 1200px) {
  .form_chk .form_fill dl img {
    left: 25%;
  }
}
.form_chk .form_fill button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: #ccc;
}
.form_chk .form_fill button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 20px;
  background: #d30b2a;
  color: #fff;
  padding: 20px 56px;
  font-size: 50px;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  margin: 0 auto;
  display: block;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  max-width: 350px;
  font-weight: 300;
}
.form_chk .form_fill button[type=submit]:hover {
  box-shadow: none;
  transform: translateY(5px);
}
@media (max-width: 599px) {
  .form_chk .form_fill button[type=submit] {
    width: 70%;
    font-size: 40px;
  }
}
.form_chk .form_fill button[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 15px;
  background: #d2d2d2;
  padding: 10px 76px;
  margin: 30px auto 0;
  display: block;
  cursor: pointer;
}
.form_chk .form_fill .contact_chk_desc {
  margin-top: 10px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .form_chk .form_fill .contact_chk_desc {
    margin-top: 0;
  }
}

.form_thx {
  padding: 0 0 130px;
}
@media (max-width: 768px) {
  .form_thx {
    padding: 0 0 50px;
  }
}
.form_thx button[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 15px;
  background: #d2d2d2;
  padding: 10px 76px;
  margin: 30px auto 0;
  display: block;
  cursor: pointer;
}
.form_thx h3 {
  font-size: 2.4rem;
  font-weight: 100;
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto;
}
@media (max-width: 599px) {
  .form_thx h3 {
    text-align: center;
    font-size: 1.8rem;
  }
}
.form_thx .contact_num {
  border-left: 8px solid #d30b2a !important;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 100;
  line-height: 2.5;
  margin: 0 auto;
  border: 1px solid #d30b2a;
  padding-bottom: 2px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 599px) {
  .form_thx .contact_num {
    font-size: 2.4rem;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.5;
  }
}
.form_thx .contact_num span {
  font-weight: 500;
  color: #d30b2a;
}

/*採用ページ*/
.recruit .ttl2 {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .recruit_menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.recruit_menu li {
  flex-basis: 50%;
  padding: 0 10px 30px 10px;
}
.recruit_menu li:last-child {
  padding: 0 10px 0 10px;
}
@media (max-width: 599px) {
  .recruit_menu li:last-child {
    padding: 0;
  }
}
@media (max-width: 599px) {
  .recruit_menu li {
    flex-basis: 100%;
    padding: 0 0 30px 0;
  }
}
.recruit_menu p {
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 599px) {
  .recruit_menu p {
    margin-top: 8px;
    text-align: left;
  }
}
.recruit_menu img {
  width: 100%;
  max-width: 577px;
  height: auto;
  aspect-ratio: 577/360;
}

.recruit_kayo {
  text-align: center;
  margin-bottom: 130px;
}
@media (max-width: 599px) {
  .recruit_kayo {
    margin-bottom: 50px;
  }
}
.recruit_kayo img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  aspect-ratio: 5/1;
}

@media (max-width: 599px) {
  .recruit_info span {
    margin-bottom: 10px;
  }
}
.recruit_info span i {
  font-style: normal;
  background-color: #d30b2a;
  color: #fff;
  padding: 3px 10px;
  margin-left: 5px;
}

/*バス運行情報提供サービス*/
.qr_ttl span {
  padding-left: 2px;
}
@media (max-width: 599px) {
  .qr_ttl span {
    font-size: 17px !important;
    padding-left: 0;
  }
}

.qr {
  padding-bottom: 80px;
}
@media (max-width: 599px) {
  .qr {
    padding-top: 30px;
    padding-bottom: 0;
  }
}
.qr .ttl3,
.qr .ttl4 {
  margin-bottom: 10px;
}
.qr .qr_scan {
  margin-bottom: 30px;
}
.qr .qr_scan p {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .qr .qr_scan .qr_scan_img {
    width: 700px;
  }
}
.qr .qr_scan .qr_scan_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 200/67;
  display: block;
  margin: 0 auto;
}
.qr .target_route {
  margin-bottom: 30px;
}
.qr .target_route .common_caption_wrap {
  margin-top: 30px;
}
.qr .qr_list {
  margin-bottom: 50px;
}
.qr .qr_list .japanese_syllabary {
  position: relative;
  margin-bottom: 40px;
}
.qr .qr_list .japanese_syllabary p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 599px) {
  .qr .qr_list .japanese_syllabary #order {
    width: 800px;
  }
}
.qr .qr_list .japanese_syllabary .std {
  width: 100%;
  margin: 0 0 15px;
  background: #DDD;
  border-collapse: separate;
  border-spacing: 1px;
}
.qr .qr_list .japanese_syllabary .std td {
  font-size: 140%;
  font-weight: bold;
  padding: 16px;
  text-align: center;
  width: 10%;
  background: none repeat scroll 0 0 #e1eff7;
}
.qr .qr_list .japanese_syllabary .std td a {
  text-decoration: none;
  color: #007ac7;
}
.qr .qr_list .japanese_syllabary .std td.emp {
  background: none repeat scroll 0 0 #fff;
}
.qr .qr_list .pdf_btn a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 48%;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  margin-bottom: 30px;
}
.qr .qr_list .pdf_btn a::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 45%;
  right: 20px;
  transform: scale(0.5) translateY(-50%) rotate(-90deg);
}
@media (max-width: 768px) {
  .qr .qr_list .pdf_btn a::after {
    right: 0;
  }
}
.qr .qr_list .pdf_btn a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.qr .qr_list .pdf_btn a:hover::after {
  content: url(../images/arrow_white_bottom.png);
}
@media (max-width: 599px) {
  .qr .qr_list .pdf_btn a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
}
.qr .btn_qr_noriba {
  margin-bottom: 10px;
}
.qr .btn_qr_noriba li {
  width: calc(50% - 20px);
  max-width: 580px;
}
@media (max-width: 599px) {
  .qr .btn_qr_noriba li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.qr .btn_qr_noriba li a {
  display: block;
  border: 1px solid #971c30;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  color: #fff;
  position: relative;
  background-color: #971c30;
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  width: 100%;
  height: 100%;
}
.qr .btn_qr_noriba li a::after {
  content: url(../images/icon_arrow_burgundy.png);
  position: absolute;
  top: 28%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .qr .btn_qr_noriba li a::after {
    right: 0;
  }
}
@media (max-width: 768px) {
  .qr .btn_qr_noriba li a::after {
    top: 6%;
    right: -10px;
    transform: scale(0.25) translateY(-50%);
  }
}
.qr .btn_qr_noriba li a:hover {
  background-color: #fff;
  color: #971c30;
  opacity: 1;
}
.qr .btn_qr_noriba li a:hover::after {
  content: url(../images/icon_arrow_white.png);
}
@media (max-width: 768px) {
  .qr .btn_qr_noriba li a {
    padding: 20px 80px 20px 20px;
  }
}
@media (max-width: 599px) {
  .qr .btn_qr_noriba li a {
    width: 100%;
    padding: 20px 40px 20px 10px;
  }
  .qr .btn_qr_noriba li a:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 320px) {
  .qr .btn_qr_noriba li a {
    padding: 10px 20px 20px 20px;
  }
}
.qr .btn_gifubus_link {
  margin-top: 10px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .qr .btn_gifubus_link {
    margin-bottom: 0;
  }
}
.qr .btn_gifubus_nav {
  width: calc(50% - 20px);
  max-width: 580px;
}
@media (max-width: 768px) {
  .qr .btn_gifubus_nav {
    width: 100%;
    margin-bottom: 20px;
  }
}
.qr .btn_gifubus_nav a {
  border: 1px solid #971c30;
  border-left: 5px solid #d30b2a;
  padding: 15px 90px 20px 20px;
  color: #fff;
  position: relative;
  background-color: #971c30;
  font-size: 36px;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 599px) {
  .qr .btn_gifubus_nav a {
    font-size: 2.4rem;
  }
}
.qr .btn_gifubus_nav a::after {
  content: url(../images/icon_arrow_burgundy.png);
  position: absolute;
  top: 28%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .qr .btn_gifubus_nav a::after {
    right: 0;
  }
}
@media (max-width: 599px) {
  .qr .btn_gifubus_nav a::after {
    top: 15%;
    right: -10px;
    transform: scale(0.25) translateY(-50%);
  }
}
.qr .btn_gifubus_nav a:hover {
  background-color: #fff;
  color: #971c30;
  opacity: 1;
}
.qr .btn_gifubus_nav a:hover::after {
  content: url(../images/icon_arrow_white.png);
}
@media (max-width: 960px) {
  .qr .btn_gifubus_nav a {
    padding: 20px 30px 20px 20px;
  }
}
@media (max-width: 768px) {
  .qr .btn_gifubus_nav a {
    padding: 10px 80px 20px 20px;
  }
}
@media (max-width: 599px) {
  .qr .btn_gifubus_nav a {
    width: 100%;
    padding: 10px 70px 20px 10px;
  }
  .qr .btn_gifubus_nav a:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 320px) {
  .qr .btn_gifubus_nav a {
    padding: 10px 20px 20px 20px;
  }
}
.qr .btn_gifubus_nav a span {
  font-size: 1.4rem;
  border-bottom: 1px solid #fff;
}
.qr .qr_code {
  text-align: center;
}
.qr .qr_code h5 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.qr .qr_code img {
  width: 100%;
  max-width: 97px;
  height: auto;
  aspect-ratio: 1/1;
}
.qr .qr_code a {
  display: block;
  margin: 20px auto;
  border-bottom: 3px solid #e2e2e2;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  position: relative;
}
.qr .qr_signboard {
  margin-bottom: 40px;
  flex-wrap: nowrap;
}
@media (max-width: 599px) {
  .qr .qr_signboard {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}
.qr .qr_signboard div {
  width: 48%;
}
@media (max-width: 599px) {
  .qr .qr_signboard div {
    width: 100%;
  }
}
.qr .qr_signboard div img {
  width: 100%;
  max-width: 580px;
  height: auto;
  aspect-ratio: 4/3;
}
@media (max-width: 599px) {
  .qr .qr_signboard div img {
    margin-bottom: 20px;
  }
}

.company_outline {
  padding: 60px 0px 130px;
}
@media (max-width: 599px) {
  .company_outline {
    padding-bottom: 50px;
  }
}
@media (max-width: 599px) {
  .company_outline {
    padding-top: 30px;
  }
}
.company_outline .sdgs_desc {
  background-color: #fff;
  padding: 32px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  margin-top: 30px;
}
@media (max-width: 599px) {
  .company_outline .sdgs_desc {
    padding: 30px;
  }
}
.company_outline .sdgs_desc .sdgs_box {
  flex-basis: 74%;
  padding-right: 20px;
}
@media (max-width: 599px) {
  .company_outline .sdgs_desc .sdgs_box {
    flex-basis: 100%;
    padding-right: 0;
  }
}
.company_outline .sdgs_desc .sdgs_box ul {
  padding-left: 18px;
}
.company_outline .sdgs_desc .sdgs_box ul li {
  font-weight: 300;
  position: relative;
}
.company_outline .sdgs_desc .sdgs_box ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.company_outline .sdgs_desc .sdgs_box2 {
  flex-basis: 60%;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .company_outline .sdgs_desc .sdgs_box2 {
    padding-right: 0;
    flex-basis: 100%;
  }
}
.company_outline .sdgs_desc .img_goal {
  flex-basis: 20%;
}
@media (max-width: 599px) {
  .company_outline .sdgs_desc .img_goal {
    flex-basis: 100%;
    margin-top: 20px;
    margin-inline: auto;
    text-align: center;
  }
}
.company_outline .sdgs_desc .img_goal img {
  width: 100%;
  height: auto;
  aspect-ratio: 563/667;
}
.company_outline .sdgs_desc .img_goals {
  flex-basis: 40%;
}
@media (max-width: 768px) {
  .company_outline .sdgs_desc .img_goals {
    flex-basis: 100%;
    margin-top: 20px;
    margin-inline: auto;
  }
}
.company_outline .sdgs_desc .img_goals img {
  width: 100%;
  height: auto;
  aspect-ratio: 475/282;
}
@media (max-width: 599px) {
  .company_outline .sdgs_desc .img_goals img {
    aspect-ratio: 466/1055;
  }
}

.barrierfree .barrierfree_content .barrierfree_item {
  margin-bottom: 50px;
}
.barrierfree .barrierfree_content .barrierfree_item:last-child {
  margin-bottom: 0;
}
.barrierfree .barrierfree_content .barrierfree_item p {
  font-weight: 500;
  font-size: 2rem;
}
.barrierfree .barrierfree_content .common_pdf_btn {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.barrierfree .barrierfree_content .common_pdf_btn::after {
  top: 41%;
}
@media (max-width: 599px) {
  .barrierfree .barrierfree_content .common_pdf_btn {
    margin-bottom: 20px;
  }
}

.common_mv_company .inner {
  width: 1300px;
}
@media (max-width: 1200px) {
  .common_mv_company .inner {
    width: 90%;
  }
}

.company_outline {
  padding: 60px 0px 130px;
}
@media (max-width: 599px) {
  .company_outline {
    padding-bottom: 50px;
  }
}
@media (max-width: 599px) {
  .company_outline {
    padding-top: 30px;
  }
}
.company_outline .iden_action {
  background-image: url(../images/bg_identity.jpg);
  background-repeat: no-repeat;
}
@media (max-width: 599px) {
  .company_outline .iden_action {
    background-image: url(../images/bg_identity_sp.jpg);
  }
}
.company_outline .iden_action h3 {
  font-size: 50px;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .company_outline .iden_action h3 {
    font-size: 2.8rem;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
}
.company_outline .iden_action h3 span {
  font-size: 1.8rem;
  margin-left: 20px;
}
@media (max-width: 599px) {
  .company_outline .iden_action h3 span {
    font-size: 1.4rem;
  }
}
.company_outline .iden_action .corporate_philosophy,
.company_outline .iden_action .guidelines {
  padding: 25px 40px 40px;
}
@media (max-width: 599px) {
  .company_outline .iden_action .corporate_philosophy,
  .company_outline .iden_action .guidelines {
    padding: 24px;
  }
}
.company_outline .iden_action .corporate_philosophy img,
.company_outline .iden_action .guidelines img {
  width: 100%;
  height: auto;
}
.company_outline .ethics {
  margin-top: 100px;
}
.company_outline .ethics .ttl_bottom {
  font-weight: 300;
  margin-bottom: 50px;
  word-break: break-word;
  overflow-wrap: break-word;
  word-wrap: break-word;
  letter-spacing: 1px;
  text-align: left;
  padding-inline: 40px;
}
@media (max-width: 599px) {
  .company_outline .ethics .ttl_bottom {
    text-align: left;
    padding-inline: 0;
  }
}
.company_outline .ethics .principle {
  background-color: #fff;
  padding: 36px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  margin-top: -10px;
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  .company_outline .ethics .principle {
    padding: 20px;
  }
}
.company_outline .ethics .principle ol {
  list-style: none;
}
.company_outline .ethics .principle ol li {
  padding: 0 0 30px;
}
.company_outline .ethics .principle ol li span {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 1.8rem;
}
@media (max-width: 599px) {
  .company_outline .ethics .principle ol li span {
    font-size: 1.6rem;
  }
}
.company_outline .ethics .principle p {
  margin-top: 10px;
}
.company_outline .ethics .ethics_desc {
  background-color: #fff;
  padding: 36px 36px 40px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  margin-top: -10px;
}
@media (max-width: 599px) {
  .company_outline .ethics .ethics_desc {
    padding: 20px;
  }
}
.company_outline .ethics .ethics_desc .ttl4 {
  margin-bottom: 20px;
}
.company_outline .ethics .ethics_desc ol {
  list-style: none;
  margin-bottom: 30px;
}
.company_outline .ethics .ethics_desc ol li {
  padding: 0 0 16px;
}
.company_outline .ethics .ethics_desc ol li span {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 1.8rem;
}
@media (max-width: 599px) {
  .company_outline .ethics .ethics_desc ol li span {
    font-size: 1.6rem;
  }
}

.company_outline {
  padding: 60px 0px 130px;
}
@media (max-width: 599px) {
  .company_outline {
    padding-bottom: 50px;
  }
}
@media (max-width: 599px) {
  .company_outline {
    padding-top: 30px;
  }
}
.company_outline .health_desc {
  background-color: #fff;
  padding: 40px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  margin-top: 30px;
  word-break: auto-phrase;
  font-feature-settings: "palt";
}
@media (max-width: 599px) {
  .company_outline .health_desc {
    padding: 20px;
  }
}
.company_outline .health_desc h3 {
  margin-left: -4px;
}
.company_outline .health_desc .president_name {
  margin-top: 30px;
  text-align: right;
}
.company_outline .health_desc ol {
  list-style: none;
  text-indent: -1em;
  padding-left: 0.9em;
  font-weight: 300;
}
.company_outline .health_desc ol li {
  padding: 2px 0;
}
.company_outline .health_desc ul {
  padding-left: 18px;
}
.company_outline .health_desc ul li {
  font-weight: 300;
  position: relative;
  padding: 2px 0;
}
.company_outline .health_desc ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.company_outline .health_desc .health_promotion {
  flex-basis: 70%;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .company_outline .health_desc .health_promotion {
    flex-basis: 100%;
    padding-right: 0;
  }
}
.company_outline .health_desc .health_box_red {
  border: 1px solid #d30b2a;
  padding: 10px;
}
.company_outline .health_desc .health_box_red ol {
  margin-left: 8px;
}
.company_outline .health_desc .health_img_01,
.company_outline .health_desc .health_img_02,
.company_outline .health_desc .health_img_03,
.company_outline .health_desc .health_img_04,
.company_outline .health_desc .health_img_05,
.company_outline .health_desc .health_img_06,
.company_outline .health_desc .health_img_07,
.company_outline .health_desc .health_img_08,
.company_outline .health_desc .health_img_09,
.company_outline .health_desc .health_img_10 {
  display: inline-block;
}
.company_outline .health_desc .health_img_01 img,
.company_outline .health_desc .health_img_02 img,
.company_outline .health_desc .health_img_03 img,
.company_outline .health_desc .health_img_04 img,
.company_outline .health_desc .health_img_05 img,
.company_outline .health_desc .health_img_06 img,
.company_outline .health_desc .health_img_07 img,
.company_outline .health_desc .health_img_08 img,
.company_outline .health_desc .health_img_09 img,
.company_outline .health_desc .health_img_10 img {
  width: 100%;
  height: auto;
}
.company_outline .health_desc .health_img_01 {
  flex-basis: 30%;
}
@media (max-width: 768px) {
  .company_outline .health_desc .health_img_01 {
    flex-basis: 100%;
    margin: 20px auto;
    text-align: center;
  }
}
.company_outline .health_desc .health_img_01 img {
  max-width: 303px;
}
@media (max-width: 599px) {
  .company_outline .health_desc .health_img_01 img {
    max-width: 200px;
  }
}
.company_outline .health_desc .health_img_02_mt {
  margin-top: -70px;
}
@media (max-width: 1100px) {
  .company_outline .health_desc .health_img_02_mt {
    margin-top: -40px;
  }
}
@media (max-width: 970px) {
  .company_outline .health_desc .health_img_02_mt {
    margin-top: 0;
  }
}
.company_outline .health_desc .health_img_02 {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .company_outline .health_desc .health_img_02 {
    width: 600px;
  }
}
.company_outline .health_desc .health_img_02 img {
  max-width: 991px;
}
.company_outline .health_desc .health_img_03 {
  margin-right: 10px;
  flex-basis: 48%;
}
.company_outline .health_desc .health_img_03 img {
  border: 1px solid #AFABAB;
}
.company_outline .health_desc .health_img_04 {
  flex-basis: 48.5%;
}
@media (max-width: 599px) {
  .company_outline .health_desc .health_img_04 {
    flex-basis: 48.5%;
  }
}
.company_outline .health_desc .health_img_04 img {
  border: 1px solid #AFABAB;
}
.company_outline .health_desc .health_img_05 {
  flex-basis: 50%;
}
.company_outline .health_desc .health_img_05 img {
  border: 1px solid #AFABAB;
}
.company_outline .health_desc .health_img_06 {
  flex-basis: 49.4%;
}
.company_outline .health_desc .health_img_06 img {
  border: 1px solid #AFABAB;
}
.company_outline .health_desc .health_img_07 {
  margin-right: 10px;
  flex-basis: 51.6%;
}
@media (max-width: 599px) {
  .company_outline .health_desc .health_img_07 {
    flex-basis: 50%;
  }
}
.company_outline .health_desc .health_img_07 img {
  border: 1px solid #AFABAB;
}
.company_outline .health_desc .health_img_08 {
  flex-basis: 46%;
}
.company_outline .health_desc .health_img_08 img {
  max-width: 240px;
}
.company_outline .health_desc .health_img_09 {
  flex-basis: 48%;
  margin-right: 10px;
}
.company_outline .health_desc .health_img_09 img {
  border: 1px solid #AFABAB;
}
.company_outline .health_desc .health_img_10 {
  flex-basis: 48%;
}
.company_outline .health_desc .health_img_10 img {
  max-width: 240px;
}
.company_outline .health_desc .health_box {
  margin-top: 30px;
}
.company_outline .health_desc .health_box h3 {
  font-size: 1.6rem;
}
.company_outline .health_desc .health_box .certificate_flex {
  align-items: center;
}
.company_outline .health_desc .health_box .certificate {
  flex-basis: 48%;
  margin-top: 20px;
}
@media (max-width: 1000px) {
  .company_outline .health_desc .health_box .certificate {
    flex-basis: 100%;
  }
}
.company_outline .health_desc .health_box .certificate p span {
  font-size: 1.4rem;
}
.company_outline .tow_stars_com {
  margin-top: 100px;
}
.company_outline .tow_stars_com .flex_stars {
  align-items: center;
}
.company_outline .tow_stars_com .flex_stars div {
  flex-basis: 28%;
}
.company_outline .tow_stars_com .flex_stars div img {
  width: 100%;
  height: auto;
  max-width: 300px;
}
@media (max-width: 599px) {
  .company_outline .tow_stars_com .flex_stars div img {
    max-width: 200px;
  }
}
@media (max-width: 768px) {
  .company_outline .tow_stars_com .flex_stars div {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.company_outline .tow_stars_com .flex_stars p {
  flex-basis: 70%;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .company_outline .tow_stars_com .flex_stars p {
    flex-basis: 100%;
    padding-left: 0;
  }
}
.company_outline .action_plan {
  margin-top: 100px;
}
.company_outline .action_plan .action_plan_desc {
  background-color: #fff;
  padding: 40px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  margin-top: 30px;
}
@media (max-width: 599px) {
  .company_outline .action_plan .action_plan_desc {
    padding: 20px;
  }
}
.company_outline .action_plan ul {
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
}
.company_outline .action_plan ul li {
  width: calc(50% - 20px);
}
.company_outline .action_plan ul li:nth-child(odd) {
  margin-right: 40px;
}
@media (max-width: 599px) {
  .company_outline .action_plan ul li:nth-child(odd) {
    margin-right: 0;
  }
}
.company_outline .action_plan ul li a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  max-width: 580px;
  display: block;
  color: #d30b2a;
  font-weight: 500;
}
.company_outline .action_plan ul li a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
@media (max-width: 1100px) {
  .company_outline .action_plan ul li {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .company_outline .action_plan ul li:last-child {
    margin-bottom: 0;
  }
}

/* 路線バス */
.rosen_page .common_nav.common_nav_bg_pt0 {
  padding-top: 0;
}

.common_navayuca .bus_info_list2 li:nth-child(6) {
  margin-right: 3.5% !important;
}

.ayuca_about {
  padding: 0 0 100px;
}
@media (max-width: 599px) {
  .ayuca_about {
    padding: 0 0 50px;
  }
}
.ayuca_about .ayuca_about_list li {
  width: 48%;
  background-color: #fff;
  padding: 30px 20px;
  margin-bottom: 40px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  min-height: 250px;
}
@media (max-width: 768px) {
  .ayuca_about .ayuca_about_list li {
    width: 100%;
    padding: 18px 15px;
    min-height: auto;
  }
}
.ayuca_about .ayuca_about_list li h4 {
  padding-left: 10px;
  font-size: 2rem;
  margin-bottom: 20px;
  border-left: 8px solid #c60022;
}
@media (max-width: 768px) {
  .ayuca_about .ayuca_about_list li h4 {
    font-size: 1.8rem;
  }
}
.ayuca_about .ayuca_about_list li span {
  font-size: 1.4rem;
}
@media (max-width: 599px) {
  .ayuca_about .ayuca_about_list li span {
    font-size: 1.2rem;
  }
}
@media (max-width: 599px) {
  .ayuca_about .ayuca_about_list li p {
    font-size: 1.4rem;
  }
}

.ayuca_card {
  padding: 100px 0 0;
}
@media (max-width: 768px) {
  .ayuca_card {
    padding: 50px 0 0;
  }
}
@media (max-width: 599px) {
  .ayuca_card .card_img {
    margin-bottom: 20px;
  }
}
.ayuca_card .card_img,
.ayuca_card .card_text {
  width: 50%;
}
@media (max-width: 768px) {
  .ayuca_card .card_img,
  .ayuca_card .card_text {
    width: 100%;
  }
}
.ayuca_card .card_text .ttl2 {
  text-align: left;
}
.ayuca_card .mark h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.ayuca_card .mark h3::before {
  content: url(../images/rosen/mark_number1.png);
  position: absolute;
  top: 0;
  left: -3px;
  transform: scale(0.45) translate(-50%, -50%);
}
.ayuca_card .mark .mark_row li {
  width: 50%;
  display: flex;
  margin-bottom: 20px;
}
.ayuca_card .mark .mark_row li .mark_icon {
  margin-right: 5px;
}
@media (max-width: 599px) {
  .ayuca_card .mark .mark_row li .mark_icon {
    display: flex;
    align-items: flex-start;
  }
}
.ayuca_card .mark .mark_row li .mark_icon img {
  width: 28px;
}
@media (max-width: 599px) {
  .ayuca_card .mark .mark_row li .mark_icon img {
    width: 25px;
    margin-right: 5px;
  }
}
@media (max-width: 599px) {
  .ayuca_card .mark .mark_row li p {
    text-indent: -1rem;
    padding-left: 1rem;
    font-size: 1.4rem;
  }
}

.ayuca_term {
  padding: 0 0 50px;
}
.ayuca_term .common_table {
  margin-bottom: 10px;
}
.ayuca_term .common_caption_wrap .common_caption::before {
  top: -3px;
}
@media (max-width: 599px) {
  .ayuca_term .common_caption_wrap .common_caption::before {
    top: 5px;
  }
}

.ayuca_guide {
  padding: 50px 0;
}
@media (max-width: 599px) {
  .ayuca_guide {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.ayuca_guide .guide_item {
  margin-bottom: 50px;
}
.ayuca_guide .common_caption_wrap .common_caption::before {
  top: -3px;
}
@media (max-width: 599px) {
  .ayuca_guide .common_caption_wrap .common_caption::before {
    top: 5px;
  }
}
.ayuca_guide .common_table2_mutual .table_item:nth-child(1) .table_right {
  background-color: #fff;
}
.ayuca_guide .common_table2_mutual .table_item:nth-child(2) .table_right {
  background-color: #f5f5f5;
}
.ayuca_guide .common_table2_mutual .table_item:nth-child(3) .table_left {
  background-color: #f5f5f5;
}
.ayuca_guide .common_table2_mutual .table_item:nth-child(4) .table_right {
  background-color: #f5f5f5;
}
.ayuca_guide .common_table2_mutual .table_item .table_left p {
  font-weight: 500;
}
.ayuca_guide .common_table2_mutual .table_item .table_right p {
  font-weight: 300;
}
.ayuca_guide .common_table.ayuca_kousya {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .ayuca_guide .common_table.ayuca_kousya {
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  .ayuca_guide .common_table {
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  .ayuca_guide .common_table .table_right p {
    text-indent: -1.8rem;
    padding-left: 1.8rem;
  }
}
.ayuca_guide .common_table .table_right span img {
  width: 20px;
  vertical-align: bottom;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .ayuca_guide .common_table .table_right span img {
    width: 18px;
  }
}

.ayuca_guide_list li {
  width: 48%;
  margin-bottom: 50px;
}
.ayuca_guide_list li:nth-child(3) h4::before, .ayuca_guide_list li:nth-child(4) h4::before {
  content: url(../images/rosen/ayuca_guide_kousya.webp);
  position: absolute;
  top: 0;
  left: -5px;
  transform: scale(0.4) translate(-50%, -50%);
}
@media (max-width: 599px) {
  .ayuca_guide_list li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.ayuca_guide_list li h4 {
  margin-bottom: 10px;
  position: relative;
  font-size: 2rem;
  padding-left: 30px;
  font-weight: 400;
}
.ayuca_guide_list li h4::before {
  content: url(../images/rosen/ayuca_guide_jousya.webp);
  position: absolute;
  top: 0;
  left: -5px;
  transform: scale(0.4) translate(-50%, -50%);
}
@media (max-width: 599px) {
  .ayuca_guide_list li h4 {
    font-size: 1.8rem;
  }
}

.ayuca_guide_caption {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 599px) {
  .ayuca_buy {
    padding-bottom: 0;
  }
}
.ayuca_buy .common_table4_evenly {
  margin-bottom: 10px;
}
.ayuca_buy .buy_price .common_caption_wrap .common_caption::before {
  top: -3px;
}
@media (max-width: 599px) {
  .ayuca_buy .buy_price .common_caption_wrap .common_caption::before {
    top: 5px;
  }
}
.ayuca_buy .buy_item {
  margin-bottom: 30px;
}

.ayuca_customer {
  padding: 50px 0 0;
}
@media (max-width: 599px) {
  .ayuca_customer {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.ayuca_customer .customer__item ul {
  margin-bottom: 10px;
}
.ayuca_customer .accordion_content .customer__item {
  margin-top: 20px;
}
.ayuca_customer .customer__item {
  margin-bottom: 30px;
}
.ayuca_customer .customer__item .ttl4 {
  margin-bottom: 10px;
}
.ayuca_customer .customer_list {
  margin-bottom: 10px;
}
.ayuca_customer .customer_list li {
  width: 34%;
}
@media (max-width: 599px) {
  .ayuca_customer .customer_list li {
    width: 100%;
  }
}
.ayuca_customer .customer_caption p {
  font-size: 1.4rem;
}
@media (max-width: 599px) {
  .ayuca_customer .customer_caption p {
    font-size: 1.2rem;
  }
}
.ayuca_customer .btn_privacy {
  margin-bottom: 50px;
}

.ayuca_charge {
  padding: 50px 0;
}
@media (max-width: 599px) {
  .ayuca_charge {
    padding-bottom: 0;
  }
}
.ayuca_charge .charge_item {
  margin-bottom: 50px;
}
.ayuca_charge .charge_tab {
  margin-top: 20px;
}
.ayuca_charge .charge_tab .charge_tab_btns li {
  width: 32%;
  background-color: #e2e2e2;
  padding: 10px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}
.ayuca_charge .charge_tab .charge_tab_btns li.active, .ayuca_charge .charge_tab .charge_tab_btns li:hover {
  background-color: #d30b2a;
  color: #fff;
}
.ayuca_charge .charge_tab .charge_tab_btns li:first-child {
  border-radius: 10px 0 0 0;
}
.ayuca_charge .charge_tab .charge_tab_btns li:last-child {
  border-radius: 0 10px 0 0;
}
@media (max-width: 599px) {
  .ayuca_charge .charge_tab .charge_tab_btns li {
    font-size: 1.4rem;
  }
}
.ayuca_charge .charge_tab .charge_tab_content_wrap {
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  padding: 50px;
}
@media (max-width: 599px) {
  .ayuca_charge .charge_tab .charge_tab_content_wrap {
    padding: 20px;
  }
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content {
  display: none;
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content.active {
  display: block;
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content .charge_list li {
  font-size: 1.2rem;
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content .charge_tab_red_box {
  background-color: #d30b2a;
  padding: 20px 0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content .charge_tab_red_box h3,
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content .charge_tab_red_box p {
  color: #fff;
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content .charge_tab_red_box h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content .charge_tab_red_box h3 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content .charge_tab_red_box p {
    font-size: 1.4rem;
  }
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content .charge_tab_content2_img {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content .charge_tab_content2_img {
    overflow-y: scroll;
  }
  .ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_content .charge_tab_content2_img img {
    width: 690px;
  }
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_ttl {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_ttl {
    margin-bottom: 30px;
  }
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_ttl p {
  color: #d30b2a;
  font-weight: 500;
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_img {
  width: 80%;
  margin: 0 auto 30px;
  max-width: 900px;
}
@media (max-width: 599px) {
  .ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_img {
    width: 100%;
    overflow-y: scroll;
  }
  .ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_img img {
    width: 690px;
  }
}
.ayuca_charge .charge_tab .charge_tab_content_wrap .charge_tab_list li {
  font-size: 1.4rem;
}
.ayuca_charge .charge_tokuten .charge_list {
  margin-bottom: 20px;
}
.ayuca_charge .charge_item_left,
.ayuca_charge .charge_item_right {
  width: 48%;
}
@media (max-width: 599px) {
  .ayuca_charge .charge_item_left,
  .ayuca_charge .charge_item_right {
    width: 100%;
  }
}
.ayuca_charge .charge_item_left .charge_list li {
  text-indent: -1rem;
  padding-left: 1rem;
}
.ayuca_charge .charge_item_right .common_table_wrap {
  margin-bottom: 0;
}
.ayuca_charge .charge_item_right .common_table {
  margin-bottom: 20px;
}
.ayuca_charge .charge_item_right .table_item .table_column:first-child p {
  font-weight: bold;
}
.ayuca_charge .charge_item_right .common_caption_wrap .common_caption::before {
  top: -3px;
}
@media (max-width: 599px) {
  .ayuca_charge .charge_item_right .common_caption_wrap .common_caption::before {
    top: 5px;
  }
}

.ayuca_pass .common_caption_wrap .common_caption::before {
  top: -3px;
}
@media (max-width: 599px) {
  .ayuca_pass .common_caption_wrap .common_caption::before {
    top: 5px;
  }
}
.ayuca_pass .pass_item {
  margin-bottom: 50px;
}
.ayuca_pass .pass_item .common_table2 .table_left {
  justify-content: center;
}
.ayuca_pass .pass_item .common_table2 .table_right p {
  text-align: center;
}
.ayuca_pass .pass_item_row {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .ayuca_pass .pass_item_left {
    margin-bottom: 30px;
  }
}
.ayuca_pass .pass_item_left,
.ayuca_pass .pass_item_right {
  width: 100%;
}
@media (max-width: 599px) {
  .ayuca_pass .pass_item_left,
  .ayuca_pass .pass_item_right {
    width: 100%;
  }
}
.ayuca_pass .pass_item_left .pass_item_left_img,
.ayuca_pass .pass_item_right .pass_item_left_img {
  max-width: 48%;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .ayuca_pass .pass_item_left .pass_item_left_img,
  .ayuca_pass .pass_item_right .pass_item_left_img {
    max-width: 100%;
  }
}
.ayuca_pass .pass_item_left .pass_item_left_text,
.ayuca_pass .pass_item_right .pass_item_left_text {
  margin-bottom: 10px;
}
.ayuca_pass .pass_item_left .pass_item_left_subtext p,
.ayuca_pass .pass_item_right .pass_item_left_subtext p {
  font-size: 1.4rem;
}
.ayuca_pass .pass_red {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .ayuca_pass .pass_red {
    margin-bottom: 20px;
  }
}
.ayuca_pass .pass_red p {
  color: #d30b2a;
}
.ayuca_pass .common_caption_wrap {
  margin-top: 30px;
}
@media (max-width: 599px) {
  .ayuca_pass .common_caption_wrap {
    margin-top: 20px;
  }
}

.ayuca_refund {
  padding: 50px 0;
}
@media (max-width: 599px) {
  .ayuca_refund {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.ayuca_refund .refund_item {
  margin-bottom: 30px;
}
.ayuca_refund .ayuca_common_list_red {
  margin-top: 10px;
}
.ayuca_refund .refund_img {
  margin: 0 auto;
  margin-top: 50px;
  overflow-y: scroll;
  width: 80%;
}
@media (max-width: 599px) {
  .ayuca_refund .refund_img {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .ayuca_refund .refund_img img {
    width: 690px;
  }
}
.ayuca_refund .refund_img2 {
  margin-bottom: 30px;
}
.ayuca_refund .common_caption_wrap .common_caption::before {
  top: -3px;
}
.ayuca_refund .reissue_item {
  margin-top: 50px;
}
.ayuca_refund .reissue_item .gray_box {
  margin-bottom: 30px;
}
.ayuca_refund .reissue_img {
  max-width: 900px;
  margin: 30px auto 50px;
}

.ayuca_faq {
  padding-bottom: 50px;
}
.ayuca_faq .faq_list .faq_item {
  margin-bottom: 30px;
}
.ayuca_faq .faq_list .faq_item .question {
  padding: 25px 40px;
  border: 1px solid #d30b2a;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.ayuca_faq .faq_list .faq_item .question::after, .ayuca_faq .faq_list .faq_item .question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background-color: #d30b2a;
  width: 20px;
  height: 3px;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .ayuca_faq .faq_list .faq_item .question::after, .ayuca_faq .faq_list .faq_item .question::before {
    right: 5px;
  }
}
.ayuca_faq .faq_list .faq_item .question::after {
  transform: rotate(90deg);
  right: 20px;
  top: 48%;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .ayuca_faq .faq_list .faq_item .question::after {
    right: 15px;
  }
}
.ayuca_faq .faq_list .faq_item .question.active::after {
  transform: rotate(0);
  top: 49%;
  right: 20px;
}
@media (max-width: 599px) {
  .ayuca_faq .faq_list .faq_item .question.active::after {
    right: 15px;
  }
}
.ayuca_faq .faq_list .faq_item .question:hover {
  opacity: 0.7;
}
@media (max-width: 599px) {
  .ayuca_faq .faq_list .faq_item .question {
    padding: 15px;
  }
}
.ayuca_faq .faq_list .faq_item .question p {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 599px) {
  .ayuca_faq .faq_list .faq_item .question p {
    font-size: 1.6rem;
    padding-right: 30px;
  }
}
.ayuca_faq .faq_list .faq_item .answer {
  padding-top: 20px;
}
@media (max-width: 599px) {
  .ayuca_faq .faq_list .faq_item .answer {
    font-size: 1.4rem;
    padding-top: 10px;
  }
}

.ayuca_common_btn {
  width: 450px;
  margin: 0 auto;
  border-bottom: 3px solid #e2e2e2;
  padding-bottom: 10px;
  position: relative;
}
.ayuca_common_btn::after {
  content: url(../images/arrow_black_right.png);
  position: absolute;
  top: 13%;
  right: 0;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 599px) {
  .ayuca_common_btn::after {
    top: 20%;
  }
}
@media (max-width: 599px) {
  .ayuca_common_btn {
    width: 100%;
  }
  .ayuca_common_btn a {
    font-size: 1.4rem;
  }
  .ayuca_common_btn a::after {
    top: 30%;
  }
}
.ayuca_common_btn a {
  font-weight: 500;
}

.ayuca_common_pdf {
  margin-bottom: 30px;
}
.ayuca_common_pdf a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 48%;
  display: flex;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  align-items: center;
  justify-content: center;
}
.ayuca_common_pdf a::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 45%;
  right: 20px;
  transform: scale(0.5) translateY(-50%);
}
.ayuca_common_pdf a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.ayuca_common_pdf a:hover::after {
  content: url(../images/arrow_white_bottom.png);
}
@media (max-width: 599px) {
  .ayuca_common_pdf a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
  .ayuca_common_pdf a:last-child {
    margin-bottom: 0;
  }
}

.ayuca_common_list_red li {
  color: #d30b2a;
}

.common_caption_wrap {
  text-align: center;
}
.common_caption_wrap .common_caption {
  position: relative;
  padding-left: 60px;
  display: inline-block;
}
@media (max-width: 599px) {
  .common_caption_wrap .common_caption {
    padding-left: 35px;
  }
}
.common_caption_wrap .common_caption::before {
  content: url(../images/icon_common_caption.png);
  position: absolute;
  top: 5px;
  left: 15px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 599px) {
  .common_caption_wrap .common_caption::before {
    left: -15px;
  }
}
.common_caption_wrap .common_caption li {
  text-align: left;
  font-size: 1.4rem;
}
@media (max-width: 599px) {
  .common_caption_wrap .common_caption li {
    font-size: 1.2rem;
  }
}

#madoguti .map_link {
  border-bottom: 3px solid #e2e2e2;
  font-weight: bold;
  margin-left: 20px;
}
@media (max-width: 599px) {
  #madoguti .map_link {
    display: inline-block;
    margin-left: 0;
    margin-top: 5px;
  }
}

.common_table_wrap1 table {
  border-collapse: collapse;
}
@media (max-width: 599px) {
  .common_table_wrap1 table {
    width: 690px;
  }
}
.common_table_wrap1 table th,
.common_table_wrap1 table td {
  border: 1px solid #a9a9a9;
  padding: 10px;
}
.common_table_wrap1 table th:nth-child(1),
.common_table_wrap1 table td:nth-child(1) {
  width: 30%;
}
.common_table_wrap1 table th:nth-child(2),
.common_table_wrap1 table td:nth-child(2) {
  width: 10%;
}
.common_table_wrap1 table th:nth-child(3),
.common_table_wrap1 table td:nth-child(3) {
  width: 35%;
}
.common_table_wrap1 table th:nth-child(4),
.common_table_wrap1 table td:nth-child(4) {
  width: 25%;
}
.common_table_wrap1 table th img,
.common_table_wrap1 table td img {
  width: 25px;
  display: block;
  margin: 0 auto;
}
.common_table_wrap1 table th {
  background-color: #f5f5f5;
  text-align: center;
}

.common_caption li a {
  color: #007ac7;
  text-decoration: underline;
}

.ayuca_about_text {
  margin-bottom: 20px;
  text-align: center;
}

#manaca_about_anker,
#manaca_buy_anker,
#manaca_use_anker,
#manaca_change_anker,
#manaca_point_anker,
#manaca_faq_anker,
#ayuca_about_anker,
#ayuca_guide_anker,
#ayuca_buy_anker,
#ayuca_charge_anker,
#ayuca_pass_anker,
#ayuca_refund_anker,
#ayuca_faq_anker,
#ayuca_pdf {
  margin-top: -125px;
  padding-top: 125px;
}
@media (max-width: 1200px) {
  #manaca_about_anker,
  #manaca_buy_anker,
  #manaca_use_anker,
  #manaca_change_anker,
  #manaca_point_anker,
  #manaca_faq_anker,
  #ayuca_about_anker,
  #ayuca_guide_anker,
  #ayuca_buy_anker,
  #ayuca_charge_anker,
  #ayuca_pass_anker,
  #ayuca_refund_anker,
  #ayuca_faq_anker,
  #ayuca_pdf {
    margin-top: -70px;
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .common_navayuca .bus_info_list2 li:nth-child(6) {
    margin-right: 0 !important;
  }
}

.ayuca_top_btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  top: auto;
  z-index: 10000;
}
.ayuca_top_btn.active {
  position: absolute;
  bottom: auto;
  top: -40px;
  z-index: -1;
}
@media (max-width: 599px) {
  .ayuca_top_btn.active {
    position: absolute;
    right: 30px;
    bottom: auto;
    top: -40px;
    z-index: -1;
    width: 70px;
  }
}

footer {
  position: relative;
}

.text_link {
  color: #007ac7;
  text-decoration: underline;
}

.timetable .common_accordion:last-child {
  margin-bottom: 0;
}
.timetable .timetable_top_text {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .timetable .timetable_top_text {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}
.timetable .timetable_top_text a {
  border-bottom: 3px solid #e2e2e2;
  padding-bottom: 3px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .timetable .timetable_top_text a {
    border-bottom: 2px solid #e2e2e2;
    padding-bottom: 0px;
  }
}
.timetable .timetable_accordion .timetable_accordion_caption {
  margin-bottom: 20px;
}
.timetable .timetable_accordion .timetable_accordion_caption p {
  font-size: 1.4rem;
}
.timetable .timetable_accordion .timetable_accordion_item {
  margin-bottom: 40px;
}
.timetable .timetable_accordion .timetable_accordion_left {
  width: 48%;
}
@media (max-width: 599px) {
  .timetable .timetable_accordion .timetable_accordion_left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.timetable .timetable_accordion .timetable_accordion_left a {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .timetable .timetable_accordion .timetable_accordion_left a {
    margin-bottom: 10px;
  }
}
.timetable .timetable_accordion .timetable_accordion_right {
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .timetable .timetable_accordion .timetable_accordion_right {
    width: 100%;
    margin-bottom: 10px;
  }
}
.timetable .timetable_accordion .timetable_accordion_right p a {
  color: #007ac7;
}
.timetable .timetable_accordion .timetable_accordion_right p .text_red {
  display: inline;
}

.timetable_accordion_left a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
}
.timetable_accordion_left a::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 45%;
  right: 0;
  transform: scale(0.5) translateY(-50%);
}
.timetable_accordion_left a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.timetable_accordion_left a:hover::after {
  content: url(../images/arrow_white_bottom.png);
}
@media (max-width: 599px) {
  .timetable_accordion_left a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.6rem;
    padding: 15px 30px 15px 15px;
  }
  .timetable_accordion_left a:last-child {
    margin-bottom: 0;
  }
}

.community_bus_banner {
  max-width: 1000px;
  margin: 100px auto 0;
}
@media (max-width: 599px) {
  .community_bus_banner {
    margin-top: 50px;
  }
}

.timetable_top_btn {
  width: 180px;
  margin: 0 auto 100px;
  border-bottom: 3px solid #e2e2e2;
  padding-bottom: 10px;
  position: relative;
}
.timetable_top_btn::after {
  content: url(../images/arrow_black_top.png);
  position: absolute;
  top: 19%;
  right: 0;
  transform: scale(0.5) translateY(-50%);
}
.timetable_top_btn a {
  font-weight: 500;
}

.sightseeing_category {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .sightseeing_category .flex_center {
    justify-content: space-between;
  }
}
.sightseeing_category .sightseeing_facilities,
.sightseeing_category .sightseeing_tourist {
  width: 300px;
  border: 2px solid #d30b2a;
  padding: 20px 0;
  background-color: #fff;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.sightseeing_category .sightseeing_facilities.active,
.sightseeing_category .sightseeing_tourist.active {
  background-color: #d30b2a;
}
.sightseeing_category .sightseeing_facilities.active p,
.sightseeing_category .sightseeing_tourist.active p {
  color: #fff;
}
.sightseeing_category .sightseeing_facilities:hover,
.sightseeing_category .sightseeing_tourist:hover {
  background-color: #d30b2a;
}
.sightseeing_category .sightseeing_facilities:hover p,
.sightseeing_category .sightseeing_tourist:hover p {
  color: #fff;
}
@media (max-width: 599px) {
  .sightseeing_category .sightseeing_facilities,
  .sightseeing_category .sightseeing_tourist {
    width: 48%;
  }
}
.sightseeing_category .sightseeing_facilities p,
.sightseeing_category .sightseeing_tourist p {
  color: #d30b2a;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .sightseeing_category .sightseeing_facilities p,
  .sightseeing_category .sightseeing_tourist p {
    font-size: 1.8rem;
  }
}
.sightseeing_category .sightseeing_facilities {
  margin-right: 20px;
}
@media (max-width: 599px) {
  .sightseeing_category .sightseeing_facilities {
    margin-right: 0;
  }
}
.sightseeing_tab_area {
  padding: 0 0 60px;
  background: url(../images/bg_blue_common.jpg) center/cover no-repeat;
}
@media (max-width: 599px) {
  .sightseeing_tab_area {
    padding: 0 0 50px;
  }
}

.sightseeing_tab_list::after {
  content: "";
  max-width: 415px;
  width: 32%;
}
.sightseeing_tab_list li {
  max-width: 415px;
  width: 31.9%;
  background-color: #fff;
  margin-bottom: 40px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.sightseeing_tab_list li::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  bottom: -10px;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .sightseeing_tab_list li::after {
    content: none;
  }
}
.sightseeing_tab_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #d30b2a;
  width: 5px;
}
@media (max-width: 768px) {
  .sightseeing_tab_list li::before {
    content: none;
  }
}
.sightseeing_tab_list li.active {
  background-color: #d30b2a;
}
.sightseeing_tab_list li.active::after {
  content: url(../images/arrow_white_right.png);
  position: absolute;
  bottom: -10px;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .sightseeing_tab_list li.active::after {
    content: none;
  }
}
.sightseeing_tab_list li.active p {
  color: #fff;
}
@media (max-width: 768px) and (max-width: 768px) {
  .sightseeing_tab_list li.active .sightseeing_tab_right {
    width: 100%;
    padding: 10px;
    padding-bottom: 30px;
  }
  .sightseeing_tab_list li.active .sightseeing_tab_right::after {
    content: url(../images/arrow_white_right.png);
    position: absolute;
    top: 40%;
    right: 10px;
    transform: scale(0.5) translateY(-50%);
  }
}
.sightseeing_tab_list li:hover {
  background-color: #d30b2a;
}
.sightseeing_tab_list li:hover::after {
  content: url(../images/arrow_white_right.png);
  position: absolute;
  bottom: -10px;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .sightseeing_tab_list li:hover::after {
    content: none;
  }
}
.sightseeing_tab_list li:hover p {
  color: #fff;
}
@media (max-width: 1200px) {
  .sightseeing_tab_list li {
    width: 48%;
    margin-bottom: 30px;
  }
}
.sightseeing_tab_list li .sightseeing_tab_left {
  width: 38%;
}
@media (max-width: 768px) {
  .sightseeing_tab_list li .sightseeing_tab_left {
    width: 100%;
  }
}
.sightseeing_tab_list li .sightseeing_tab_right {
  width: 61%;
  padding-left: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .sightseeing_tab_list li .sightseeing_tab_right {
    width: 100%;
    padding: 10px;
    padding-bottom: 30px;
    position: inherit;
  }
  .sightseeing_tab_list li .sightseeing_tab_right::after {
    content: url(../images/arrow_red_right.png);
    position: absolute;
    bottom: -15px;
    right: 10px;
    transform: scale(0.5) translateY(-50%);
  }
}
.sightseeing_tab_list li .sightseeing_tab_right p {
  font-weight: 500;
}

.sightseeing_list {
  padding: 100px 0;
}
@media (max-width: 599px) {
  .sightseeing_list {
    padding: 50px 0;
  }
}
.sightseeing_list .community_bus_banner {
  margin-top: 0;
}

.sightseeing_item_group {
  width: 46%;
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .sightseeing_item_group {
    width: 100%;
    margin-bottom: 50px;
  }
}

.round_trip {
  border-bottom: 1px solid #d30b2a;
  margin-bottom: 20px;
}
.round_trip .round_trip_left {
  background-color: #d30b2a;
  padding: 5px 0;
  text-align: center;
  width: 30%;
}
.round_trip .round_trip_left p {
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
}
.round_trip .round_trip_right {
  width: 70%;
}
.round_trip .round_trip_right p {
  padding-left: 10px;
  font-size: 2rem;
}

.sightseeing_item .ttl3 a {
  font-size: 1.8rem;
  border-bottom: 3px solid #e2e2e2;
  font-weight: bold;
  margin-left: 10px;
}
@media (max-width: 599px) {
  .sightseeing_item .ttl3 a {
    margin-left: 0;
    display: inline-block;
  }
}

.sightseeing_item_content .sightseeing_item_caption {
  font-size: 1.2rem;
}
.sightseeing_item_content .sightseeing_item_text {
  margin-bottom: 30px;
}
.sightseeing_item_content .sightseeing_item_text h4 {
  margin-bottom: 10px;
}
.sightseeing_item_content .sightseeing_flag .row {
  margin-bottom: 15px;
}
.sightseeing_item_content .sightseeing_flag .row .row {
  margin-right: 10px;
  flex-wrap: nowrap;
}
.sightseeing_item_content .sightseeing_flag .sightseeing_flag_text {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.sightseeing_item_content .sightseeing_flag .sightseeing_flag_gray {
  background-color: #e1e1e1;
  padding: 5px 0;
  text-align: center;
  width: 120px;
  margin-right: 10px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sightseeing_item_red {
  margin-bottom: 30px;
}
.sightseeing_item_red p {
  font-size: 2.4rem;
  font-weight: 500;
  color: #d30b2a;
}

.read_text {
  width: 1000px;
  margin: 0 auto 50px;
}
@media (max-width: 1200px) {
  .read_text {
    width: 100%;
  }
}
.read_text p {
  font-size: 2rem;
}
@media (max-width: 599px) {
  .read_text p {
    font-size: 1.8rem;
  }
}
.read_text .caption_text {
  margin-top: 10px;
}
.read_text .caption_text p {
  font-size: 1.4rem;
}

#sightseeing_anker {
  padding-top: 125px;
  margin-top: -125px;
}
@media (max-width: 1200px) {
  #sightseeing_anker {
    padding-top: 70px;
    margin-top: -70px;
  }
}

.sightseeing_item_subtext {
  margin-bottom: 50px;
}

.conditions {
  padding: 0 0 100px;
}
@media (max-width: 599px) {
  .conditions {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

.iccord {
  padding: 0 0 100px;
}
@media (max-width: 599px) {
  .iccord {
    padding-bottom: 50px;
  }
}

.office .office_item {
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .office .office_item {
    margin-bottom: 50px;
  }
}
.office .office_item .accordion_content_text {
  margin-bottom: 30px;
}
.office .office_item .accordion_content_text p {
  font-size: 1.8rem;
}
.office .office_item .accordion_content_text p a {
  border-bottom: 3px solid #e2e2e2;
  font-weight: 500;
}
.office .office_item .common_table3 .table_item .table_column1 {
  width: 20%;
}
@media (max-width: 599px) {
  .office .office_item .common_table3 .table_item .table_column1 {
    width: 24%;
  }
}
.office .office_item .common_table3 .table_item .table_column1 p {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
@media (max-width: 599px) {
  .office .office_item .common_table3 .table_item .table_column1 p {
    display: block;
  }
}
.office .office_item .common_table3 .table_item .table_column1 p a {
  border-bottom: 3px solid #e2e2e2;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 599px) {
  .office .office_item .common_table3 .table_item .table_column1 p a {
    display: inline-block;
    margin-top: 10px;
  }
}
.office .office_item .common_table3 .table_item .table_column2,
.office .office_item .common_table3 .table_item .table_column3 {
  width: 40%;
}
@media (max-width: 599px) {
  .office .office_item .common_table3 .table_item .table_column2,
  .office .office_item .common_table3 .table_item .table_column3 {
    width: 38%;
  }
}
.office .office_item g .common_table3 {
  margin-bottom: 30px;
}
.office .office_item g .common_table3 .table_item:first-child .table_column p {
  text-align: center;
  justify-content: center;
  padding-left: 10px;
  font-weight: 500;
}
.office .office_item g .common_table3 .table_item .table_column p {
  text-align: left;
  padding-left: 20px;
}
@media (max-width: 599px) {
  .office .office_item g .common_table3 .table_item .table_column p {
    padding-left: 10px;
  }
}

.goods .banner_online {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .goods .banner_online {
    margin-bottom: 30px;
  }
}
.goods .goods_list .goods_item {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .goods .goods_list .goods_item:last-child {
    margin-bottom: 30px;
  }
}
.goods .goods_list .goods_item .goods_img {
  width: 22%;
}
@media (max-width: 599px) {
  .goods .goods_list .goods_item .goods_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.goods .goods_list .goods_item .goods_textarea {
  width: 75%;
}
@media (max-width: 599px) {
  .goods .goods_list .goods_item .goods_textarea {
    width: 100%;
  }
}
.goods .goods_list .goods_item .goods_textarea h5 {
  font-size: 1.8rem;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.goods .goods_list .goods_item .goods_textarea .goods_text p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .goods .goods_list .goods_item .goods_textarea .goods_text p {
    margin-bottom: 20px;
  }
}
.goods .goods_list .goods_item .goods_textarea .gray_box p {
  font-size: 1.6rem;
}
.goods .goods_list .goods_item .goods_textarea .gray_box p a {
  border-bottom: 3px solid #e2e2e2;
  font-weight: 500;
}
.goods .goods_list .goods_item .common_caption_wrap {
  margin-top: 10px;
}
.goods .goods_list .goods_item .common_caption_wrap .common_caption::before {
  top: -2px;
}

@media (max-width: 599px) {
  .information_about {
    padding-top: 20px;
  }
}
.information_about .information_bus {
  width: 100%;
}

.office .office_item .gray_box {
  margin-bottom: 30px;
}
.office .office_item .common_table4 {
  margin-bottom: 30px;
}
.office .office_item .common_table4 .table_item:first-child .table_column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.office .office_item .common_table4 .table_item:first-child .table_column4 {
  display: block;
}
.office .office_item .common_table4 .table_item:first-child .table_column4 p {
  padding: 10px 0;
}
.office .office_item .common_table4 .table_item:first-child .table_column4 ul {
  border-top: 1px solid #a9a9a9;
}
.office .office_item .common_table4 .table_item:first-child .table_column4 ul li {
  border-right: 1px solid #a9a9a9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.office .office_item .common_table4 .table_item:first-child .table_column4 ul li:last-child {
  border-right: none;
}
@media (max-width: 599px) {
  .office .office_item .common_table4 .table_item:first-child .table_column4 ul li {
    font-size: 1.4rem;
  }
}
.office .office_item .common_table4 .table_column4 {
  padding: 0;
  display: flex;
}
.office .office_item .common_table4 .table_column1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.office .office_item .common_table4 .table_column1,
.office .office_item .common_table4 .table_column3 {
  width: 18%;
  display: flex;
  align-items: center;
}
.office .office_item .common_table4 .table_column2 {
  width: 34%;
}
.office .office_item .common_table4 .table_column2 p a {
  border-bottom: 3px solid #e2e2e2;
  font-weight: bold;
  margin-left: 10px;
}
.office .office_item .common_table4 .table_column4 {
  width: 30%;
}
.office .office_item .common_table4 .table_column4 ul {
  width: 100%;
}
.office .office_item .common_table4 .table_column4 ul li {
  width: 25%;
  text-align: center;
  border-right: 1px solid #a9a9a9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.office .office_item .common_table4 .table_column4 ul li:last-child {
  border-right: none;
}
.office .office_item .common_table4 .table_column4 ul li img {
  width: 25px;
}
@media (max-width: 599px) {
  .office .office_item .common_table4 .table_column4 ul li img {
    width: 25px;
  }
}
.office .itibu {
  margin-top: 30px;
}
.office .itibu .credit img {
  width: 600px;
}
@media (max-width: 599px) {
  .office .itibu .credit img {
    width: 100%;
  }
}
.office .itibu_item {
  margin-bottom: 20px;
}
.office .itibu_item p {
  font-size: 1.8rem;
  font-weight: bold;
}

.route_page .map {
  padding-bottom: 100px;
}
@media (max-width: 599px) {
  .route_page .map {
    padding-bottom: 50px;
  }
}
.route_page .map .map_img {
  border: 3px solid #e2e2e2;
  height: 540px;
  overflow: hidden;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .route_page .map .map_img {
    height: 320px;
  }
}
.route_page .map .map_img img {
  width: 4000px;
  top: -1787px;
  left: -1237px;
}
@media (max-width: 768px) {
  .route_page .map .map_img img {
    width: 3500px;
    top: -1623px;
    left: -1323px;
  }
}
.route_page .map .map_text {
  margin-bottom: 20px;
}
.route_page .map .map_text p {
  font-size: 1.4rem;
}
.route_page .map .map_btn a {
  font-weight: 500;
  width: 220px;
  border: 1px solid #1a1a1a;
  padding: 10px 0;
  text-align: center;
  border-radius: 5px;
  position: relative;
  display: block;
  margin: 0 auto;
  transition: 0.3s;
}
.route_page .map .map_btn a::after {
  content: url(../images/arrow_black_right.png);
  position: absolute;
  top: 28%;
  right: 5px;
  transform: scale(0.45) translateY(-50%);
  transition: 0.3s;
}
.route_page .map .map_btn a:hover {
  background-color: #000;
  color: #fff;
}
.route_page .map .map_btn a:hover::after {
  content: url(../images/arrow_white_right.png);
}
.route_page .map_tab_list::after {
  content: "";
  width: 32%;
}
@media (max-width: 768px) {
  .route_page .map_tab_list::after {
    width: 48%;
  }
}
.route_page .map_tab_list li {
  width: 32%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .route_page .map_tab_list li {
    width: 48%;
  }
}
.route_page .map_tab_list li a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 20px 20px 20px 10px;
  text-align: center;
  width: 100%;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  transition: 0.3s;
}
.route_page .map_tab_list li a::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  top: 35%;
  right: 20px;
  transform: scale(0.5) translateY(-50%);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .route_page .map_tab_list li a::after {
    top: 33%;
    right: 2px;
    transform: scale(0.4) translateY(-50%);
  }
}
.route_page .map_tab_list li a.active {
  background-color: #d30b2a;
  color: #fff;
}
.route_page .map_tab_list li a.active::after {
  content: url(../images/arrow_white_right.png);
}
.route_page .map_tab_list li a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.route_page .map_tab_list li a:hover::after {
  content: url(../images/arrow_white_right.png);
}

.route_banner {
  max-width: 1000px;
  width: 100%;
  margin: 100px auto;
}
@media (max-width: 1200px) {
  .route_banner {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .route_banner {
    width: 90%;
    margin: 50px auto;
  }
}

.ride.common_bg_blue {
  padding-top: 0;
}
.ride .gray_box {
  background-color: #fff;
}
.ride .bread ul li:after {
  margin-left: 5px;
}
.ride .btn_gifubus_link {
  margin-top: 10px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .ride .btn_gifubus_link {
    margin-bottom: 0;
  }
  .ride .btn_gifubus_link li {
    padding-left: 0;
  }
}
.ride .btn_gifubus_nav {
  width: calc(50% - 20px);
  max-width: 580px;
}
@media (max-width: 768px) {
  .ride .btn_gifubus_nav {
    width: 100%;
    margin-bottom: 20px;
  }
}
.ride .btn_gifubus_nav a {
  border: 1px solid #971c30;
  border-left: 5px solid #d30b2a;
  padding: 15px 90px 20px 20px;
  color: #fff;
  position: relative;
  background-color: #971c30;
  font-size: 36px;
  font-weight: 300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 599px) {
  .ride .btn_gifubus_nav a {
    font-size: 24px;
  }
}
.ride .btn_gifubus_nav a::after {
  content: url(../images/icon_arrow_burgundy.png);
  position: absolute;
  top: 28%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .ride .btn_gifubus_nav a::after {
    right: 0;
  }
}
@media (max-width: 599px) {
  .ride .btn_gifubus_nav a::after {
    top: 15%;
    right: -10px;
    transform: scale(0.25) translateY(-50%);
  }
}
.ride .btn_gifubus_nav a:hover {
  background-color: #fff;
  color: #971c30;
  opacity: 1;
}
.ride .btn_gifubus_nav a:hover::after {
  content: url(../images/icon_arrow_white.png);
}
@media (max-width: 960px) {
  .ride .btn_gifubus_nav a {
    padding: 20px 30px 20px 20px;
  }
}
@media (max-width: 768px) {
  .ride .btn_gifubus_nav a {
    padding: 10px 80px 20px 20px;
  }
}
@media (max-width: 599px) {
  .ride .btn_gifubus_nav a {
    width: 100%;
    padding: 10px 70px 20px 10px;
  }
  .ride .btn_gifubus_nav a:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 320px) {
  .ride .btn_gifubus_nav a {
    padding: 10px 20px 20px 20px;
  }
}
.ride .btn_gifubus_nav a span {
  font-size: 14px;
  border-bottom: 1px solid #fff;
}
.ride .hajimete p {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .ride .hajimete .txt_center {
    text-align: left;
  }
}
.ride .hajimete .gray_box {
  margin-bottom: 30px;
}
.ride .ride_item.ride_item02 .ride_item_text02 {
  width: 100%;
}
.ride .ride_item .ride_item_img {
  width: 30%;
}
@media (max-width: 599px) {
  .ride .ride_item .ride_item_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.ride .ride_item .ride_item_text {
  width: 66%;
}
@media (max-width: 599px) {
  .ride .ride_item .ride_item_text {
    width: 100%;
  }
}
.ride .ride_item .ride_item_text p {
  margin-bottom: 20px;
}
.ride .ride_item .ttl4 {
  font-size: 18px;
}
.ride .ride_item .ride_item_bus_img {
  width: 599px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .ride .ride_item .ride_item_bus_img {
    width: 700px;
  }
}
.ride .ride_item01 .ride_item_bus_img {
  margin-top: 30px;
}
.ride .ride_item02 .row,
.ride .ride_item03 .row {
  margin-bottom: 30px;
}
.ride .ride_item02 .gray_box p,
.ride .ride_item03 .gray_box p {
  margin-bottom: 0;
}
.ride .ride_item02 .gray_box .gray_box_item,
.ride .ride_item03 .gray_box .gray_box_item {
  margin-bottom: 30px;
}
.ride .ride_item02 .gray_box .gray_box_item:last-child,
.ride .ride_item03 .gray_box .gray_box_item:last-child {
  margin-bottom: 0;
}
.ride .ride_item04 .ride_item04_item {
  margin-bottom: 30px;
}

.destination_number {
  padding: 100px 0 50px;
}
@media (max-width: 599px) {
  .destination_number {
    padding: 50px 0;
  }
}
.destination_number .destination_number_row {
  margin-bottom: 50px;
}
.destination_number .destination_number_row:last-child {
  margin-bottom: 0;
}
.destination_number .destination_number_text,
.destination_number .destination_number_img {
  width: 48%;
}
@media (max-width: 599px) {
  .destination_number .destination_number_text,
  .destination_number .destination_number_img {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .destination_number .destination_number_text {
    margin-bottom: 20px;
  }
}
.destination_number .destination_number_list {
  margin-top: 20px;
}
.destination_number .destination_number_list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.destination_number .destination_number_list li::before {
  position: absolute;
  top: -8px;
  left: -9px;
  transform: scale(0.35) translate(-50%, -50%);
}
.destination_number .destination_number_list li:nth-child(1)::before {
  content: url(../images/rosen/mark_number1.png);
}
.destination_number .destination_number_list li:nth-child(2)::before {
  content: url(../images/rosen/mark_number2.png);
}
.destination_number .destination_number_list li:nth-child(3)::before {
  content: url(../images/rosen/mark_number3.png);
}

.please .please_text,
.please .please_img {
  width: 48%;
}
@media (max-width: 599px) {
  .please .please_text,
  .please .please_img {
    width: 100%;
  }
}
.please .please_text p {
  margin-bottom: 20px;
}

.tickets {
  padding: 0 0 50px;
}
@media (max-width: 599px) {
  .tickets {
    padding: 50px 0 1px;
  }
}
.tickets .tickets_table table {
  width: 100%;
  border-collapse: collapse;
}
.tickets .tickets_table table th,
.tickets .tickets_table table td {
  border: 1px solid #a9a9a9;
  padding: 10px;
}
.tickets .tickets_table table th {
  background-color: #f5f5f5;
}
@media (max-width: 599px) {
  .tickets .common_pdf_btn {
    width: 100%;
  }
}
.tickets .tickets_acc_item {
  margin-bottom: 30px;
}
.tickets .tickets_acc_item .caption_list {
  text-align: right;
  margin-bottom: 20px;
}
.tickets .common_btn {
  margin-top: 30px;
}
.tickets .gray_bg {
  width: 100px;
  background-color: #e0e0e0;
  padding: 5px 0;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}
.tickets .tickets_pass {
  width: 600px;
  margin: 30px auto 0;
}
@media (max-width: 599px) {
  .tickets .tickets_pass {
    width: 100%;
  }
}
.tickets .tickets_pass p {
  text-align: center;
  margin-top: 10px;
}
.tickets .tickets_pass img {
  border-radius: 20px;
  border: 1px solid #231815;
}

.common_pdf_btn {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 20px 0;
  text-align: center;
  width: 48%;
  display: block;
  margin-bottom: 20px;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
}
.common_pdf_btn::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  top: 35%;
  right: 20px;
  transform: scale(0.5) translateY(-50%);
}
.common_pdf_btn:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.common_pdf_btn:hover::after {
  content: url(../images/arrow_white_right.png);
}
@media (max-width: 599px) {
  .common_pdf_btn.common_pdf_btn_br::after {
    top: 40%;
  }
}

.tickets_acc_text {
  margin-bottom: 20px;
}

.howto_page .ttl4 {
  margin-bottom: 10px;
}
.howto_page .round_trip .round_trip_left {
  padding: 5px 30px;
  width: auto;
}

.tickets_acc_apl li {
  width: 48%;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .tickets_acc_apl li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.tickets_acc_apl .tickets_apl_left {
  width: 25%;
}
.tickets_acc_apl .tickets_apl_right {
  width: 71%;
}
.tickets_acc_apl .tickets_apl_right .tickets_apl_name {
  margin-bottom: 10px;
}
.tickets_acc_apl .tickets_apl_btn a:last-child {
  width: 42%;
}
@media (max-width: 599px) {
  .tickets_acc_apl .tickets_apl_btn a:last-child {
    width: 52%;
  }
}
.tickets_acc_apl .tickets_apl_btn a:first-child {
  width: 35%;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .tickets_acc_apl .tickets_apl_btn a:first-child {
    width: 43%;
  }
}

.tickets_acc_row {
  margin-top: 10px;
  margin-bottom: 10px;
}
.tickets_acc_row p {
  margin-right: 20px;
}
.tickets_acc_row p:last-child {
  margin-right: 0;
}
@media (max-width: 599px) {
  .tickets_acc_row p:last-child {
    align-items: center;
  }
}
@media (max-width: 599px) {
  .tickets_acc_row p {
    margin-bottom: 10px;
  }
}

.tickets_acc_row2 p:first-child {
  width: 20%;
}
@media (max-width: 599px) {
  .tickets_acc_row2 p:first-child {
    width: 100%;
  }
}

.text_red_list {
  padding-left: 15px;
  margin-bottom: 10px;
}

.red_bg {
  background-color: #d30b2a;
  padding: 5px 26px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
  color: #fff;
}

.tickets_acc_row_unten {
  flex-wrap: nowrap;
}
.tickets_acc_row_unten .tickets_acc_unten_text {
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .tickets_acc_row_unten .tickets_acc_unten_text {
    width: 60%;
  }
}
.tickets_acc_row_unten .gray_bg {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tickets_acc_item_unten p {
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .tickets_acc_item_unten p {
    display: flex;
  }
}
.tickets_acc_item_unten .gray_bg {
  width: 180px;
}
@media (max-width: 599px) {
  .tickets_acc_item_unten .gray_bg {
    width: 120px;
  }
}

.commuter.common_bg_blue {
  padding-top: 0;
}
.commuter .commuter_teb .commuter_pass_btn,
.commuter .commuter_teb .commuter_1year_btn {
  width: 48%;
  background-color: #e2e2e2;
  padding: 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  position: relative;
}
.commuter .commuter_teb .commuter_pass_btn::before,
.commuter .commuter_teb .commuter_1year_btn::before {
  position: absolute;
  transform: scale(0.35) translateY(-50%);
  transition: 0.3s;
}
.commuter .commuter_teb .commuter_pass_btn.active, .commuter .commuter_teb .commuter_pass_btn:hover,
.commuter .commuter_teb .commuter_1year_btn.active,
.commuter .commuter_teb .commuter_1year_btn:hover {
  background-color: #d30b2a;
  color: #fff;
}
@media (max-width: 599px) {
  .commuter .commuter_teb .commuter_pass_btn,
  .commuter .commuter_teb .commuter_1year_btn {
    padding: 10px 0;
    text-align: left;
  }
}
.commuter .commuter_teb .commuter_pass_btn {
  border-radius: 10px 0 0 0;
}
.commuter .commuter_teb .commuter_pass_btn::before {
  content: url(../images/rosen/icon_commuter_pass_black.png);
  top: 27%;
  right: 52%;
}
@media (max-width: 599px) {
  .commuter .commuter_teb .commuter_pass_btn::before {
    top: 30%;
    right: 55%;
  }
}
.commuter .commuter_teb .commuter_pass_btn:lang(en)::before {
  right: 58%;
}
@media (max-width: 599px) {
  .commuter .commuter_teb .commuter_pass_btn:lang(en)::before {
    right: 66%;
  }
}
.commuter .commuter_teb .commuter_pass_btn:hover::before, .commuter .commuter_teb .commuter_pass_btn.active::before {
  content: url(../images/rosen/icon_commuter_pass_white.png);
}
@media (max-width: 599px) {
  .commuter .commuter_teb .commuter_pass_btn {
    padding-left: 30px;
  }
  .commuter .commuter_teb .commuter_pass_btn::before {
    top: 30%;
    right: 47%;
  }
}
.commuter .commuter_teb .commuter_1year_btn {
  border-radius: 0 10px 0 0;
}
.commuter .commuter_teb .commuter_1year_btn::before {
  content: url(../images/rosen/icon_commuter_1year_black.png);
  top: 12%;
  right: 58%;
}
@media (max-width: 599px) {
  .commuter .commuter_teb .commuter_1year_btn::before {
    right: 60%;
  }
}
.commuter .commuter_teb .commuter_1year_btn:lang(en)::before {
  right: 69%;
}
@media (max-width: 599px) {
  .commuter .commuter_teb .commuter_1year_btn:lang(en)::before {
    right: 72%;
  }
}
.commuter .commuter_teb .commuter_1year_btn:hover::before, .commuter .commuter_teb .commuter_1year_btn.active::before {
  content: url(../images/rosen/icon_commuter_1year_white.png);
}
@media (max-width: 599px) {
  .commuter .commuter_teb .commuter_1year_btn {
    padding-left: 20px;
  }
  .commuter .commuter_teb .commuter_1year_btn::before {
    top: 13%;
    right: 57%;
  }
}

.commuter_teb_content {
  background-color: #fff;
  padding: 30px;
}
@media (max-width: 599px) {
  .commuter_teb_content {
    padding: 20px;
    padding-bottom: 1px;
  }
}

.commuter .common_btn {
  margin: 30px auto 50px;
}
@media (max-width: 599px) {
  .commuter .common_btn {
    margin-bottom: 20px;
  }
}
.commuter .common_btn img {
  width: 70px;
  margin-right: 5px;
  vertical-align: bottom;
}
@media (max-width: 599px) {
  .commuter .common_btn img {
    width: 55px;
  }
}
.commuter .commuter_item {
  margin-bottom: 30px;
}
.commuter .common_table.common_table3.commuter_table {
  margin-top: 30px;
  margin-bottom: 20px;
}
.commuter .common_table.common_table3.commuter_table .table_item:first-child {
  background-color: #ecf3fb;
}
.commuter .common_table.common_table3.commuter_table .table_column1 {
  background-color: #ecf3fb;
  width: 16%;
}
.commuter .common_table.common_table3.commuter_table .table_column1 p {
  font-weight: 500;
}
.commuter .common_table.common_table3.commuter_table .table_column1 p span {
  font-size: 1.4rem;
  display: block;
}
.commuter .common_table.common_table3.commuter_table .table_column2,
.commuter .common_table.common_table3.commuter_table .table_column3 {
  width: 42%;
  align-items: flex-start;
}
.commuter .common_table.common_table3.commuter_table .table_column2 p,
.commuter .common_table.common_table3.commuter_table .table_column3 p {
  text-align: left;
}

.commuter_img {
  margin-bottom: 30px;
}

.common_table_1year {
  margin-top: 20px;
  margin-bottom: 30px;
  width: 90%;
  margin: 20px auto 30px;
}
@media (max-width: 599px) {
  .common_table_1year {
    width: 690px;
  }
}
.common_table_1year .table_item {
  border: none;
  border-bottom: 1px solid #a9a9a9;
}
.common_table_1year .table_item:first-child {
  border-top: 1px solid #a9a9a9;
  background-color: #ecf3fb;
}
.common_table_1year .table_item:last-child {
  background-color: #d30b2a;
}
.common_table_1year .table_item:last-child p {
  color: #fff;
  padding: 15px 10px;
}
.common_table_1year .table_item .table_column1 {
  width: 30%;
}
.common_table_1year .table_item .table_column2,
.common_table_1year .table_item .table_column3,
.common_table_1year .table_item .table_column4 {
  width: 20%;
}
.common_table_1year .table_item .table_column5 {
  width: 10%;
}
.common_table_1year .table_item .table_column {
  border: none;
  text-align: center;
}

.commuter_1year_map {
  width: 90%;
  margin: 20px auto 0;
}
@media (max-width: 599px) {
  .commuter_1year_map {
    width: 690px;
  }
}

.commuter_teb_content .red_bg {
  margin-bottom: 10px;
}
.commuter_teb_content .common_pdf {
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .commuter_teb_content .common_pdf .common_pdf_btn {
    width: 100%;
  }
}

.caption_list {
  margin-top: 10px;
}

#tickets_syogai {
  margin-top: -125px;
  padding-top: 125px;
}
@media (max-width: 599px) {
  #tickets_syogai {
    margin-top: -61px;
    padding-top: 61px;
  }
}

.syogai .tickets_acc_item .gray_bg {
  width: 200px;
}
@media (max-width: 599px) {
  .syogai .tickets_acc_item .gray_bg {
    width: 100px;
  }
}
.syogai .gray_table {
  margin-bottom: 10px;
}
.syogai .gray_table p {
  margin-bottom: 10px;
  width: 48%;
}
@media (max-width: 599px) {
  .syogai .gray_table p {
    width: 100%;
    display: flex;
    align-items: center;
  }
}

.txt_red {
  color: #d30b2a;
}

.noriba.common_bg_blue {
  padding-top: 0;
  padding-bottom: 120px;
}
@media (max-width: 599px) {
  .noriba.common_bg_blue {
    padding-bottom: 50px;
  }
}

@media (max-width: 599px) {
  .noriba_tab {
    margin-top: 40px;
  }
}
.noriba_tab li {
  background-color: #e2e2e2;
  padding: 20px 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  transition: 0.3s;
  width: 49%;
  cursor: pointer;
}
.noriba_tab li.active {
  background-color: #d30b2a;
  color: #fff;
}
.noriba_tab li:hover {
  background-color: #d30b2a;
  color: #fff;
}
.noriba_tab li.noriba_tab_jr {
  border-radius: 10px 0 0 0;
}
.noriba_tab li.noriba_tab_meitetu {
  border-radius: 0 10px 0 0;
}

.noriba_content {
  background-color: #fff;
  padding: 50px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .noriba_content {
    padding: 20px;
  }
}
.noriba_content .noriba_map {
  width: 768px;
  margin: 0 auto 50px;
}
@media (max-width: 768px) {
  .noriba_content .noriba_map {
    width: 100%;
  }
}
.noriba_content .noriba_map .noriba_map_ttl {
  background-color: #d30b2a;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
}
.noriba_content .noriba_map .noriba_map_ttl p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
}
.noriba_content .noriba_item {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .noriba_content .noriba_item {
    margin-bottom: 0;
  }
}
.noriba_content .noriba_item .ttl4 {
  margin-bottom: 20px;
}
.noriba_content .noriba_item .noriba_item_text {
  margin-bottom: 30px;
}
.noriba_content .noriba_item .noriba_item_text p {
  font-size: 1.4rem;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row {
  border: 1px solid #a9a9a9;
  border-top: none;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row:first-child {
  background-color: #f5f5f5;
  text-align: center;
  border-top: 1px solid #a9a9a9;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row:first-child p {
  font-weight: 500;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row:first-child .noriba_column_number {
  display: block;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row:first-child .noriba_column_goal {
  padding-bottom: 0;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row:first-child .noriba_column_qr {
  padding: 0;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row.noriba_table_123 .noriba_column_number {
  padding: 10px 0;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row.noriba_table_123 .noriba_column_number img {
  width: 80%;
}
@media (max-width: 599px) {
  .noriba_content .noriba_item .noriba_table .noriba_table_row.noriba_table_123 .noriba_column_number img {
    width: 40px;
  }
}
.noriba_content .noriba_item .noriba_table .noriba_table_row p {
  padding: 10px;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column {
  border-right: 1px solid #a9a9a9;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_number {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_number img {
  width: 40px;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_number,
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_qr {
  width: 13%;
}
@media (max-width: 599px) {
  .noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_number,
  .noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_qr {
    width: 25%;
  }
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal {
  width: 74%;
  padding: 30px 0 40px;
}
@media (max-width: 599px) {
  .noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal {
    width: 75%;
    border-right: none;
  }
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal p {
  font-weight: 500;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal p span {
  font-size: 1.6rem;
  display: block;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 15px 0;
  text-align: center;
  width: 48%;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  margin-left: 10px;
  margin-top: 10px;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal a.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal a.sp_db {
    display: block;
  }
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal a::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  top: 33%;
  right: 20px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 599px) {
  .noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal a::after {
    top: 34%;
    right: 10px;
  }
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal a:hover::after {
  content: url(../images/arrow_white_right.png);
}
@media (max-width: 599px) {
  .noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_goal a {
    width: 90%;
    font-size: 1.6rem;
    padding-right: 15px;
  }
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_qr {
  border-right: none;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 599px) {
  .noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_qr {
    display: none;
    padding: 0;
  }
}
.noriba_content .noriba_item .noriba_table .noriba_table_row .noriba_column_qr a {
  width: 100%;
}

.noriba_content_meitetu .noriba_item .noriba_table .noriba_table_row:nth-child(2) .noriba_column_number img {
  width: 40px;
}

.noriba_anker {
  margin-top: -125px;
  padding-top: 125px;
}
@media (max-width: 1200px) {
  .noriba_anker {
    margin-top: -70px;
    padding-top: 70px;
  }
}

.noriba_item_caption {
  margin-top: 30px;
}
.noriba_item_caption li {
  margin-bottom: 5px;
}
.noriba_item_caption a {
  font-weight: 500;
  border-bottom: 3px solid #e2e2e2;
}

.common_mv_lineup .inner {
  width: 80%;
}
@media (max-width: 1200px) {
  .common_mv_lineup .inner {
    width: 90%;
  }
}

.lineup_page .lineup_ttl {
  margin-bottom: 50px;
}
.lineup_page .lineup_ttl .ttl2 {
  margin-bottom: 10px;
}
.lineup_page .lineup_ttl p {
  text-align: center;
  font-size: 1.4rem;
}
.lineup_page .inner {
  width: 80%;
}
@media (max-width: 1200px) {
  .lineup_page .inner {
    width: 90%;
  }
}
.lineup_page .lineup_tab {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .lineup_page .lineup_tab {
    margin-bottom: 30px;
  }
}
.lineup_page .lineup_tab li {
  width: 32%;
  background-color: #e2e2e2;
  padding: 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}
.lineup_page .lineup_tab li.active, .lineup_page .lineup_tab li:hover {
  background-color: #d30b2a;
  color: #fff;
}
.lineup_page .lineup_tab li:first-child {
  border-radius: 10px 0 0 0;
}
.lineup_page .lineup_tab li:last-child {
  border-radius: 0 10px 0 0;
}
@media (max-width: 599px) {
  .lineup_page .lineup_tab li {
    width: 33%;
  }
}
.lineup_page .lineup_tab_content {
  padding-bottom: 130px;
}
@media (max-width: 599px) {
  .lineup_page .lineup_tab_content {
    padding-bottom: 30px;
  }
}
.lineup_page .lineup_gaiyou {
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .lineup_page .lineup_gaiyou {
    margin-bottom: 50px;
  }
}
.lineup_page .lineup_gaiyou .lineup_gaiyou_img,
.lineup_page .lineup_gaiyou .lineup_gaiyou_textarea {
  width: 48%;
}
@media (max-width: 599px) {
  .lineup_page .lineup_gaiyou .lineup_gaiyou_img,
  .lineup_page .lineup_gaiyou .lineup_gaiyou_textarea {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .lineup_page .lineup_gaiyou .lineup_gaiyou_img {
    margin-bottom: 30px;
  }
}
.lineup_page .lineup_intro {
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro {
    margin-bottom: 50px;
  }
}
.lineup_page .lineup_intro .inner_right {
  width: 90%;
  margin-right: 0;
}
@media (max-width: 1200px) {
  .lineup_page .lineup_intro .inner_right {
    width: 95%;
  }
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro .inner_right {
    width: 100%;
  }
}
.lineup_page .lineup_intro .inner_right .lineup_intro_row {
  margin-bottom: 50px;
}
.lineup_page .lineup_intro .lineup_intro_textarea {
  width: 45%;
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro .lineup_intro_textarea {
    width: 90%;
    margin: 0 auto 30px;
  }
}
.lineup_page .lineup_intro .lineup_intro_slide {
  width: 53%;
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro .lineup_intro_slide {
    width: 100%;
  }
}
.lineup_page .lineup_intro .lineup_intro_slide .slick-list {
  padding: 0 10% 0 0 !important;
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro .lineup_intro_slide .slick-list {
    padding: 0 8% 0 !important;
  }
}
.lineup_page .lineup_intro .lineup_intro_slide li {
  margin: 0 10px;
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro .lineup_spec {
    width: 90%;
    margin: 0 auto;
  }
}
.lineup_page .lineup_intro .lineup_spec .lineup_spec_row::after {
  content: "";
  width: 31%;
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro .lineup_spec .lineup_spec_row::after {
    width: 100%;
  }
}
.lineup_page .lineup_intro .lineup_spec .lineup_spec_item {
  width: 31%;
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro .lineup_spec .lineup_spec_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.lineup_page .lineup_intro .lineup_spec .lineup_spec_item .lineup_spec_name {
  margin-bottom: 10px;
}
.lineup_page .lineup_intro .lineup_spec .lineup_spec_item .lineup_spec_name p {
  font-size: 2rem;
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro .lineup_spec .lineup_spec_item .lineup_spec_name p {
    font-size: 1.8rem;
  }
}
.lineup_page .lineup_intro .lineup_spec .lineup_spec_item .lineup_spec_table_name {
  background-color: #e0e0e0;
  padding: 5px 0;
  text-align: center;
  width: 100px;
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro .lineup_spec .lineup_spec_item .lineup_spec_table_name {
    width: 75px;
  }
}
.lineup_page .lineup_intro .lineup_spec .lineup_spec_item .lineup_spec_table_text {
  padding-left: 7px;
}
.lineup_page .lineup_intro .lineup_spec .lineup_spec_table_item {
  width: 49%;
  margin-bottom: 10px;
}
.lineup_page .lineup_intro .lineup_intro_img {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .lineup_page .lineup_intro .lineup_intro_img {
    width: 100%;
  }
}
.lineup_page .lineup_info .lineup_info_item {
  width: 31%;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 599px) {
  .lineup_page .lineup_info .lineup_info_item {
    width: 100%;
    margin-bottom: 30px;
    padding: 20px;
  }
}
.lineup_page .lineup_info .lineup_info_item .grayout {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineup_page .lineup_info .lineup_info_item .grayout p {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}
.lineup_page .lineup_info .lineup_info_item .lineup_info_text {
  margin-bottom: 10px;
}
.lineup_page .lineup_info .lineup_info_item .lineup_info_caption {
  margin-bottom: 10px;
}
.lineup_page .lineup_info .lineup_info_item .lineup_info_caption p {
  font-size: 1.2rem;
}
.lineup_page .lineup_info .lineup_info_item .lineup_info_btn {
  margin-top: auto;
}
.lineup_page .lineup_info .lineup_info_item .lineup_info_btn a {
  border: 1px solid #d30b2a;
  padding: 10px 0;
  text-align: center;
  color: #d30b2a;
  width: 100%;
  display: block;
}
.lineup_page .lineup_info .lineup_info_item .lineup_info_btn a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.lineup_page .lineup_info .keitouzu_nobunaga {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .lineup_page .lineup_info .keitouzu_nobunaga img {
    width: 690px;
  }
}

.other_lineup_list::after {
  content: "";
  width: 32%;
}
@media (max-width: 599px) {
  .other_lineup_list::after {
    width: 48%;
  }
}
.other_lineup_list li {
  margin-bottom: 30px;
  width: 32%;
}
@media (max-width: 599px) {
  .other_lineup_list li {
    width: 48%;
  }
}
.other_lineup_list li p {
  background-color: #e0e0e0;
  padding: 10px;
  text-align: center;
}
@media (max-width: 599px) {
  .other_lineup_list li p {
    font-size: 1.4rem;
  }
}

@media (max-width: 599px) {
  .lineup_page .popup_box h3 {
    padding-right: 20px;
  }
}

.koukoku_text {
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .koukoku_text {
    margin-bottom: 50px;
  }
}
.koukoku_text .inner {
  width: 1000px;
}
@media (max-width: 1200px) {
  .koukoku_text .inner {
    width: 90%;
  }
}

.koukoku_type .koukoku_row {
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .koukoku_type .koukoku_row {
    margin-bottom: 50px;
  }
}
.koukoku_type .koukoku_row:first-child li {
  width: 48%;
}
@media (max-width: 599px) {
  .koukoku_type .koukoku_row:first-child li {
    width: 100%;
  }
}
.koukoku_type .koukoku_row .koukoku_row_textarea,
.koukoku_type .koukoku_row .koukoku_row_img {
  width: 48%;
}
@media (max-width: 599px) {
  .koukoku_type .koukoku_row .koukoku_row_textarea,
  .koukoku_type .koukoku_row .koukoku_row_img {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .koukoku_type .koukoku_row .koukoku_row_textarea {
    margin-bottom: 20px;
  }
}
.koukoku_type .koukoku_row .koukoku_row_textarea .koukoku_row_img {
  margin-bottom: 20px;
}
.koukoku_type .koukoku_row .koukoku_row_textarea p {
  margin-bottom: 20px;
}
.koukoku_type .koukoku_row .koukoku_row_textarea ul {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .koukoku_type .koukoku_row .koukoku_row_textarea ul {
    margin-bottom: 20px;
  }
}
.koukoku_type .koukoku_row .koukoku_row_textarea li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.koukoku_type .koukoku_row .koukoku_row_textarea li::before {
  content: "";
  background-image: url(../images/icon_arrow_red.png);
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  vertical-align: middle;
}

.koukoku_other {
  padding-top: 20px;
  padding-bottom: 120px;
}
@media (max-width: 599px) {
  .koukoku_other {
    padding-bottom: 50px;
    padding-top: 0;
  }
}
.koukoku_other a {
  width: 46%;
  background-color: #fff;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  position: relative;
  transition: 0.3s;
}
.koukoku_other a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #d30b2a;
  width: 5px;
}
.koukoku_other a::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  top: 43%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 599px) {
  .koukoku_other a::after {
    top: 40%;
  }
}
.koukoku_other a:hover {
  background-color: #d30b2a;
  opacity: 1;
}
.koukoku_other a:hover::after {
  content: url(../images/arrow_white_right.png);
  position: absolute;
  top: 43%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .koukoku_other a:hover::after {
    content: none;
  }
}
.koukoku_other a:hover p {
  color: #fff;
}
@media (max-width: 599px) {
  .koukoku_other a {
    width: 100%;
    margin-bottom: 20px;
  }
}
.koukoku_other a .koukoku_other_btn_left {
  width: 38%;
}
.koukoku_other a .koukoku_other_btn_right {
  width: 61%;
  padding-left: 20px;
  position: relative;
}
@media (max-width: 599px) {
  .koukoku_other a .koukoku_other_btn_right {
    padding-left: 10px;
  }
}
.koukoku_other a .koukoku_other_btn_right p {
  font-weight: 500;
}
@media (max-width: 599px) {
  .koukoku_other a .koukoku_other_btn_right p {
    font-size: 1.4rem;
  }
}

.koukoku_contact {
  padding: 70px 0 100px;
  background: url(../images/bg_blue_common.jpg) center/cover no-repeat;
}
@media (max-width: 599px) {
  .koukoku_contact {
    padding: 20px 0 50px;
  }
}
.koukoku_contact .inner {
  width: 1000px;
}
@media (max-width: 1200px) {
  .koukoku_contact .inner {
    width: 90%;
  }
}
.koukoku_contact .koukoku_contact_text {
  margin-bottom: 30px;
}
.koukoku_contact .koukoku_contact_row .koukoku_contact_item {
  width: 48%;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .koukoku_contact .koukoku_contact_row .koukoku_contact_item {
    width: 100%;
  }
}
.koukoku_contact .koukoku_contact_row .koukoku_contact_item .row {
  flex-wrap: nowrap;
}
.koukoku_contact .koukoku_contact_row .koukoku_contact_item .koukoku_contact_name {
  width: 100px;
  background-color: #fff;
  text-align: center;
  padding: 5px 0;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .koukoku_contact .koukoku_contact_row .koukoku_contact_item .koukoku_contact_name p {
    font-size: 1.4rem;
  }
}
.koukoku_contact .koukoku_contact_row .koukoku_contact_item .koukoku_contact_item_text p {
  font-size: 1.6rem;
}
@media (max-width: 599px) {
  .koukoku_contact .koukoku_contact_row .koukoku_contact_item .koukoku_contact_item_text p {
    font-size: 1.6rem;
  }
}

.koukoku_page .common_btn {
  margin-left: 0;
}
@media (max-width: 599px) {
  .koukoku_page .common_btn {
    margin: 0 auto;
  }
}

.side_content {
  padding-bottom: 60px;
}
@media (max-width: 599px) {
  .side_content {
    padding-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .side_content .ginancho_list .side_item.side_item2 .side_item_right p {
    padding-top: 10px;
  }
  .side_content .ginancho_list .side_item.side_item2 .side_item_right p::after {
    top: 30% !important;
  }
}
@media (max-width: 599px) {
  .side_content .in_side_list .side_item .side_item_right p::after {
    top: -5% !important;
  }
  .side_content .in_side_list .side_item1 .side_item_right p::after {
    top: -5%;
  }
  .side_content .in_side_list .side_item1 .side_item_right p:first-child::after, .side_content .in_side_list .side_item1 .side_item_right p:last-child::after {
    content: none;
  }
  .side_content .in_side_list .side_item2 .side_item_right p::after {
    top: 32% !important;
  }
}
.side_content .side_list::after {
  content: "";
  width: 31.9%;
}
.side_content .side_list .side_item {
  max-width: 415px;
  width: 31.9%;
  background-color: #fff;
  margin-bottom: 40px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.side_content .side_list .side_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #d30b2a;
  width: 5px;
}
@media (max-width: 768px) {
  .side_content .side_list .side_item::before {
    content: none;
  }
}
.side_content .side_list .side_item::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  top: 43%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .side_content .side_list .side_item::after {
    content: none;
  }
}
.side_content .side_list .side_item:hover {
  background-color: #d30b2a;
  opacity: 1;
}
.side_content .side_list .side_item:hover::after {
  content: url(../images/arrow_white_right.png);
  position: absolute;
  top: 43%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .side_content .side_list .side_item:hover::after {
    content: none;
  }
}
@media (max-width: 599px) {
  .side_content .side_list .side_item:hover {
    background-color: #fff;
  }
  .side_content .side_list .side_item:hover p {
    color: #1a1a1a !important;
  }
}
.side_content .side_list .side_item:hover p {
  color: #fff;
}
.side_content .side_list .side_item:hover .side_item_left {
  background-color: #fff;
}
@media (max-width: 768px) {
  .side_content .side_list .side_item {
    width: 48%;
    margin-bottom: 30px;
    background-color: transparent;
  }
  .side_content .side_list .side_item:last-child .side_item_right p:after {
    top: -7%;
  }
}
.side_content .side_list .side_item .side_item_left {
  width: 38%;
  padding: 10px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .side_content .side_list .side_item .side_item_left {
    width: 100%;
    padding: 0;
  }
}
.side_content .side_list .side_item .side_item_right {
  width: 61%;
  padding-left: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .side_content .side_list .side_item .side_item_right {
    width: 100%;
    padding: 10px;
    background-color: #fff;
  }
  .side_content .side_list .side_item .side_item_right p {
    font-size: 1.4rem;
    position: relative;
  }
  .side_content .side_list .side_item .side_item_right p:after {
    content: url(../images/arrow_red_right.png);
    position: absolute;
    top: 25%;
    right: -10px;
    transform: scale(0.4) translateY(-50%);
  }
}

.popup {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000000;
  line-height: 1.4;
}
.popup .popup_bg {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
}
.popup .popup_box {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px;
  position: absolute;
  top: 5%;
  left: 15%;
  width: 70%;
  height: 90%;
  overflow: scroll;
  z-index: 10000;
}
@media (max-width: 599px) {
  .popup .popup_box {
    width: 90%;
    left: 5%;
    padding: 20px;
  }
}
.popup .popup_box .popup_img {
  margin-bottom: 20px;
}
.popup .popup_box .popup_img img {
  margin: 0 auto 10px;
  display: block;
}
.popup .popup_box .popup_img p {
  color: #000 !important;
  font-weight: 500;
}
.popup .popup_box .popup_img p span {
  font-weight: 300;
  font-size: 1.4rem;
  display: block;
}
.popup .popup_box .popup_price {
  margin-bottom: 30px;
}
.popup .popup_box .popup_price h4 {
  margin-bottom: 10px;
}
.popup .popup_box .popup_price p {
  color: #000 !important;
}
.popup .popup_box .popup_price p span {
  font-size: 2.4rem;
  color: #d30b2a;
  font-weight: 500;
}
.popup .popup_box .popup_price .popup_price_name {
  background-color: #e0e0e0;
  padding: 5px 0;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .popup .popup_box .popup_price .popup_price_name {
    width: 85px;
  }
}
.popup .popup_box .popup_price .popup_price_row {
  margin-bottom: 10px;
}
.popup .popup_box .popup_gray {
  background-color: #f5f5f5;
  padding: 20px;
}
.popup .popup_box .popup_gray p {
  font-size: 1.4rem;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 2rem;
  height: 2rem;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .popup .close {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.popup .close::before, .popup .close::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 3px;
  border-radius: 3px;
  background-color: #000;
  content: "";
}
@media only screen and (max-width: 768px) {
  .popup .close::before, .popup .close::after {
    width: 1.8rem;
  }
}
.popup .close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.side_banner {
  width: 768px;
  margin: 0 auto;
  padding-bottom: 120px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .side_banner {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .side_banner {
    padding-bottom: 50px;
    padding-top: 10px;
  }
}
.side_banner.ginancho {
  padding-bottom: 50px;
}
@media (max-width: 599px) {
  .side_banner.ginancho {
    padding-bottom: 30px;
  }
}

#bus_channel_anker {
  margin-top: -125px;
  padding-top: 125px;
}
@media (max-width: 1200px) {
  #bus_channel_anker {
    margin-top: -70px;
    padding-top: 70px;
  }
}

@media (max-width: 599px) {
  .bus_channel .ttl2 {
    margin-top: 0;
  }
}

@media (max-width: 599px) {
  .ginancho_bread .inner {
    width: 100%;
  }
  .ginancho_bread ul {
    justify-content: space-between;
  }
  .ginancho_bread li {
    position: relative;
  }
  .ginancho_bread li::after {
    position: absolute;
    top: 5px;
    left: 55px;
  }
  .ginancho_bread li:first-child::after {
    left: 25px;
  }
}
.pnf_banner {
  margin-bottom: 50px;
}
.pnf_banner a {
  width: 46%;
  display: block;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  position: relative;
  transition: 0.3s;
}
.pnf_banner a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #d30b2a;
  width: 5px;
}
.pnf_banner a::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  top: 43%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
.pnf_banner a:hover {
  background-color: #d30b2a;
  opacity: 1;
}
.pnf_banner a:hover p {
  color: #fff;
}
.pnf_banner a:hover::after {
  content: url(../images/arrow_white_right.png);
  position: absolute;
  top: 43%;
  right: 10px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 599px) {
  .pnf_banner a {
    width: 90%;
  }
}
.pnf_banner a .ad_other_btn_left {
  width: 38%;
}
.pnf_banner a .ad_other_btn_right {
  width: 61%;
  padding-left: 20px;
  position: relative;
}
.pnf_banner a .ad_other_btn_right p {
  font-weight: 500;
}

.common_navayuca.common_nav_manaca .shadow_btn:nth-child(5) p {
  margin-top: -25px;
}
.common_navayuca.common_nav_manaca .bus_info_list2 li {
  width: 22%;
}
.common_navayuca.common_nav_manaca .bus_info_list2 li:nth-child(4) {
  margin-right: 3.5em !important;
}
@media (max-width: 599px) {
  .common_navayuca.common_nav_manaca .bus_info_list2 li:nth-child(4) {
    margin-right: 0 !important;
  }
}
@media (max-width: 599px) {
  .common_navayuca.common_nav_manaca .bus_info_list2 li {
    width: 48%;
    margin-right: 0;
  }
}

.cards_cont .cards_text {
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 599px) {
  .cards_cont .cards_table_table {
    width: 600px;
  }
}
.cards_cont .cards_table_text {
  margin-bottom: 10px;
}
.cards_cont .cards_table_item:first-child {
  margin-right: 10px;
}
.cards_cont .cards_table_item span {
  font-weight: bold;
}
.cards_cont table {
  border-collapse: collapse;
  width: 100%;
}
.cards_cont table th, .cards_cont table td {
  padding: 20px;
  border: 1px solid #a9a9a9;
}
.cards_cont table th:nth-child(1), .cards_cont table td:nth-child(1) {
  width: 20%;
  background-color: #f5f5f5;
}
.cards_cont table th:nth-child(2), .cards_cont table th:nth-child(3), .cards_cont table td:nth-child(2), .cards_cont table td:nth-child(3) {
  width: 40%;
}
.cards_cont table th {
  background-color: #f5f5f5;
  text-align: center;
}
.cards_cont table td {
  background-color: #fff;
}
.cards_cont table td p {
  text-indent: -1.5rem;
  padding-left: 1.5rem;
}
.cards_cont table .cards_ayuca_img {
  text-align: center;
}
.cards_cont table .cards_ayuca_img img {
  width: 200px;
}
.cards_cont table .cards_img img {
  margin-bottom: 10px;
}
.cards_cont table .cards_img p {
  font-size: 14px;
}
.cards_cont .cards_table_text_center {
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
}
.cards_cont .text_green {
  color: #39a887;
}
.cards_cont .cards_btn .cards_ayuca_btn {
  margin-right: 20px;
}
@media (max-width: 599px) {
  .cards_cont .cards_btn .cards_ayuca_btn {
    margin-right: 0;
    margin-bottom: 20px;
    margin-left: 0;
  }
}
.cards_cont .cards_btn a {
  width: 400px;
  display: block;
  border-radius: 5px;
}
@media (max-width: 599px) {
  .cards_cont .cards_btn a {
    width: 90%;
    margin: 0 auto;
  }
}
.cards_cont .cards_btn a img {
  border-radius: 5px;
}

.ayuca_about.manaca_about {
  padding-top: 100px;
}
.ayuca_about.manaca_about .ayuca_about_list li .about_text_red {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
.ayuca_about.manaca_about .ayuca_about_list li h5 {
  font-size: 24px;
}
.ayuca_about.manaca_about .ayuca_about_list li .manaka_img_zenkoku {
  width: 60px;
}
.ayuca_about.manaca_about .ayuca_about_list li .manaka_img_denshi {
  margin: 20px auto;
}
.ayuca_about.manaca_about .manaca_table {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .ayuca_about.manaca_about .manaca_table {
    width: 600px;
  }
}
.ayuca_about.manaca_about .manaca_table table {
  border-collapse: collapse;
  width: 100%;
}
.ayuca_about.manaca_about .manaca_table table th, .ayuca_about.manaca_about .manaca_table table td {
  border: 1px solid #f9f9f9;
  border: 1px solid #a9a9a9;
  padding: 10px;
}
.ayuca_about.manaca_about .manaca_table table th:nth-child(1), .ayuca_about.manaca_about .manaca_table table td:nth-child(1) {
  width: 24%;
  background-color: #f5f5f5;
  font-weight: bold;
}
.ayuca_about.manaca_about .manaca_table table th:nth-child(2), .ayuca_about.manaca_about .manaca_table table th:nth-child(3), .ayuca_about.manaca_about .manaca_table table td:nth-child(2), .ayuca_about.manaca_about .manaca_table table td:nth-child(3) {
  width: 28%;
}
.ayuca_about.manaca_about .manaca_table table th:nth-child(4), .ayuca_about.manaca_about .manaca_table table td:nth-child(4) {
  width: 20%;
}
.ayuca_about.manaca_about .manaca_table table th {
  text-align: center;
  background-color: #f5f5f5;
}
.manaca_item {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .manaca_item {
    margin-bottom: 20px;
  }
}
.manaca_item h5 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.manaca_item h5 span {
  font-size: 28px;
}
.manaca_item .manaca_list {
  margin-bottom: 20px;
}
.manaca_item .manaca_text {
  margin-bottom: 20px;
}
.manaca_item .gray_box {
  margin-bottom: 30px;
}

.manaca_buy .manaca_tab {
  background-color: #d30b2a;
  color: #fff;
  width: 30%;
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .manaca_buy .manaca_tab {
    padding: 10px 0;
  }
}
.manaca_buy .manaca_charge_img {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .manaca_buy .manaca_charge_img {
    width: 600px;
  }
}

.manaca_use .cards_img {
  width: 500px;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .manaca_use .cards_img {
    width: 100%;
  }
}
.manaca_use .manaca_use_img {
  margin-bottom: 30px;
}

.text_red2 {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.manaca_change .manaca_text .manaca_change_row {
  margin-bottom: 20px;
}
.manaca_change .manaca_text .row .manaca_change_text {
  width: 42%;
}
@media (max-width: 599px) {
  .manaca_change .manaca_text .row .manaca_change_text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.manaca_change .manaca_text .row .manaca_change_img {
  width: 54%;
}
@media (max-width: 599px) {
  .manaca_change .manaca_text .row .manaca_change_img {
    width: 100%;
  }
}
.manaca_change .gray_box .row h5 {
  margin-right: 20px;
}
.manaca_change .gray_box .row .gray_box_text {
  width: 100%;
}

.manaca_buy,
.manaca_use,
.manaca_point,
.manaca_change {
  padding-bottom: 80px;
}

/* 高速バス */
.align-center {
  align-items: center;
}

.common_mv .common_mv_icon2 {
  margin-right: 18px;
  width: 92px !important;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .common_mv .common_mv_icon2 {
    width: 70px !important;
    margin-right: 10px;
  }
}

.common_mv .common_mv_ttl2 h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 100;
}
.common_mv .common_mv_ttl2 h2 span {
  font-size: 1.8rem;
  margin-top: -10px;
  display: block;
  padding-left: 3px;
}
@media (max-width: 768px) {
  .common_mv .common_mv_ttl2 h2 {
    font-size: 36px;
  }
}

.nav_sp_inner .bus_info_list li {
  width: 32%;
  /* 4列の要素を作成 */
}

.bus_info_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* 横方向に均等に配置 */
  align-content: center;
  /* 2行目の要素を垂直方向にセンターに配置 */
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .bus_info_list {
    justify-content: space-between;
  }
}

.bus_info_list li {
  width: 21.5%;
  /* 4列の要素を作成 */
  text-align: center;
  /* テキストを中央揃え */
  margin-right: 3.5%;
  margin-bottom: 60px;
  /* 適切な間隔を追加 */
}
@media (max-width: 599px) {
  .bus_info_list li {
    margin: 0;
  }
}
.bus_info_list li:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.bus_info_list li img {
  width: 90% !important;
  margin: 0 auto 13px;
  display: block;
}
.bus_info_list li h3 {
  font-size: 2.6rem;
  font-weight: 300;
}
@media (max-width: 599px) {
  .bus_info_list li h3 {
    font-size: 1.5rem;
  }
}
.bus_info_list li h3 span {
  display: block;
  font-size: 1.6rem;
}
@media (max-width: 599px) {
  .bus_info_list li h3 span {
    font-size: 10px !important;
  }
}
@media (max-width: 599px) {
  .bus_info_list li {
    width: 48%;
    /* 4列の要素を作成 */
    margin-right: 0;
    margin-bottom: 20px;
    padding: 10px;
  }
}

.bus_info_list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* 横方向に均等に配置 */
  align-content: center;
  /* 2行目の要素を垂直方向にセンターに配置 */
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .bus_info_list2 {
    justify-content: space-between;
  }
}

.bus_info_list2 li {
  width: 21.5%;
  /* 4列の要素を作成 */
  text-align: center;
  /* テキストを中央揃え */
  margin-right: 3.5%;
  margin-bottom: 60px;
  /* 適切な間隔を追加 */
  padding: 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
  /* 1行目の最後のセルにマージン0を設定 */
}
.bus_info_list2 li:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.bus_info_list2 li:nth-child(4) {
  margin-right: 0 !important;
}
.bus_info_list2 li:nth-child(6) {
  margin-right: 0 !important;
}
.bus_info_list2 li img {
  width: 80% !important;
  margin: 0 auto 13px;
  display: block;
}
.bus_info_list2 li h3 {
  font-size: 2.6rem;
  font-weight: 300;
}
@media (max-width: 599px) {
  .bus_info_list2 li h3 {
    font-size: 1.5rem;
  }
}
.bus_info_list2 li h3 span {
  display: block;
  font-size: 1.5rem;
}
@media (max-width: 599px) {
  .bus_info_list2 li h3 span {
    font-size: 10px !important;
  }
}
.bus_info_list2 li p {
  font-size: 2.4rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 4px;
}
@media (max-width: 599px) {
  .bus_info_list2 li p {
    font-size: 17px !important;
  }
}
.bus_info_list2 li p.where {
  font-size: 1.4rem;
  font-weight: 300;
  color: #1a1a1a;
}
@media (max-width: 599px) {
  .bus_info_list2 li p.where {
    font-size: 11px !important;
  }
}
@media (max-width: 599px) {
  .bus_info_list2 li {
    width: 48%;
    /* 4列の要素を作成 */
    margin-right: 0;
    margin-bottom: 20px;
    padding: 10px;
  }
}

.bus_info_list3 li {
  width: 21.5%;
  /* 4列の要素を作成 */
  text-align: center;
  /* テキストを中央揃え */
  margin-right: 5%;
  margin-bottom: 60px;
  /* 適切な間隔を追加 */
  padding: 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
  /* 1行目の最後のセルにマージン0を設定 */
}
.bus_info_list3 li:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.bus_info_list3 li:nth-child(3) {
  margin-right: 0 !important;
}
.bus_info_list3 li:nth-child(6) {
  margin-right: 0 !important;
}
.bus_info_list3 li img {
  width: 80% !important;
  margin: 0 auto 13px;
  display: block;
}
.bus_info_list3 li h3 {
  font-size: 2.6rem;
  font-weight: 300;
}
@media (max-width: 599px) {
  .bus_info_list3 li h3 {
    font-size: 1.5rem;
  }
}
.bus_info_list3 li h3 span {
  display: block;
  font-size: 1.5rem;
}
@media (max-width: 599px) {
  .bus_info_list3 li h3 span {
    font-size: 10px !important;
  }
}
.bus_info_list3 li p {
  font-size: 2.4rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 4px;
}
@media (max-width: 599px) {
  .bus_info_list3 li p {
    font-size: 17px !important;
  }
}
.bus_info_list3 li p.where {
  font-size: 1.4rem;
  font-weight: 300;
  color: #1a1a1a;
}
@media (max-width: 599px) {
  .bus_info_list3 li p.where {
    font-size: 11px !important;
  }
}
@media (max-width: 599px) {
  .bus_info_list3 li {
    width: 48%;
    /* 4列の要素を作成 */
    margin-right: 0;
    margin-bottom: 20px;
    padding: 10px;
  }
}

.common_nav2 {
  padding: 0 0 80px 0;
}

.common_nav2.common_nav_bg {
  background: url(../images/businfo_bg.jpg) center/cover no-repeat;
}

.common_nav2 .bus_info_list li p {
  font-size: 1.8rem;
  color: #1a1a1a;
}
@media (max-width: 599px) {
  .common_nav2 .bus_info_list li p {
    font-size: 14px !important;
  }
}

.common_nav2 .bus_info_list li p.where {
  font-size: 1.2rem;
  color: #1a1a1a;
}
@media (max-width: 599px) {
  .common_nav2 .bus_info_list li p.where {
    font-size: 10px !important;
  }
}

/* パンくずリスト */
.bread {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .bread {
    margin-bottom: 0 !important;
  }
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 599px) {
  .bread ul li a {
    font-size: 1.4rem;
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

.highway_wifi_read {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 60px;
  /* リード文 */
  /* 注釈 */
}
.highway_wifi_read .main_read {
  font-size: 2rem;
  line-height: 28px;
  margin-bottom: 38px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .highway_wifi_read .main_read {
    font-size: 1.8rem;
    line-height: 26px;
    margin-bottom: 34px;
  }
}
.highway_wifi_read .annotation {
  margin-bottom: 48px;
  font-weight: 300;
}
.highway_wifi_read .attached_info {
  width: 100%;
  height: 60px;
  margin-bottom: 15px;
  font-size: 2.4rem;
  line-height: 60px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .highway_wifi_read .attached_info {
    line-height: 45px;
    font-size: 1.8rem;
  }
}
.highway_wifi_read .attached_info .attached_title {
  width: 25%;
  display: block;
  text-align: center;
  background: #d30b2a;
  color: #fff;
  margin-right: 2.5%;
}
@media (max-width: 768px) {
  .highway_wifi_read .attached_info .attached_title {
    width: 35% !important;
    font-size: 1.8rem;
    line-height: 45px;
  }
}
@media (max-width: 599px) {
  .highway_wifi_read .attached_info .attached_title {
    width: 35%;
    height: 45px;
    font-size: 15px !important;
    line-height: 45px;
  }
}
.highway_wifi_read .attached_info .attached_item {
  flex: 1;
  text-align: left;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .highway_wifi_read .attached_info .attached_item {
    font-size: 1.6rem;
    line-height: 24px;
  }
}
@media (max-width: 599px) {
  .highway_wifi_read .attached_info .attached_item {
    font-size: 1.5rem;
    line-height: 24px;
  }
}

.authentication {
  /* 認証方式 */
  padding: 0;
}
@media (max-width: 599px) {
  .authentication {
    padding: 10px 0 0;
  }
}
.authentication .authentication_btn {
  /*margin-bottom: 30px;*/
}
.authentication .authentication_btn li {
  width: 49%;
  background-color: #dfdfdf;
  color: #000;
  font-weight: bold;
  padding: 0;
  text-align: center;
  /*margin-bottom: 10px;*/
  font-size: 2.4rem;
  line-height: 90px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 768px) {
  .authentication .authentication_btn li {
    line-height: 60px;
  }
}
@media (max-width: 599px) {
  .authentication .authentication_btn li {
    width: 100%;
    line-height: 45px;
    font-size: 1.4rem;
    border-radius: 10px;
    margin-bottom: 10px;
  }
}
.authentication .authentication_btn li.active {
  background-color: #d30b2a;
  color: #fff;
  font-size: 30px;
  line-height: 90px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .authentication .authentication_btn li.active {
    line-height: 60px;
    font-size: 2.4rem;
  }
}
@media (max-width: 599px) {
  .authentication .authentication_btn li.active {
    line-height: 45px;
    font-size: 1.6rem;
    height: 45px;
  }
}
.authentication .authentication_sns,
.authentication .authentication_mail {
  width: 100%;
  padding: 45px 65px;
  background: #fff;
  font-weight: 300;
  /* 注釈 */
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .authentication .authentication_sns,
  .authentication .authentication_mail {
    padding: 20px 30px;
  }
}
.authentication .authentication_sns .annotation,
.authentication .authentication_mail .annotation {
  margin-bottom: 48px;
}
.authentication .authentication_sns .step_info,
.authentication .authentication_mail .step_info {
  width: 100%;
  height: 45px;
  margin-bottom: 15px;
  line-height: 45px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .authentication .authentication_sns .step_info,
  .authentication .authentication_mail .step_info {
    height: auto;
    margin-bottom: 0;
  }
}
.authentication .authentication_sns .step_info .step_title,
.authentication .authentication_mail .step_info .step_title {
  width: 17%;
  font-size: 2rem;
  display: block;
  text-align: center;
  background: #d30b2a;
  color: #fff;
  margin-right: 2.5%;
}
@media (max-width: 768px) {
  .authentication .authentication_sns .step_info .step_title,
  .authentication .authentication_mail .step_info .step_title {
    width: 100%;
    font-size: 1.6rem;
    line-height: 24px;
    margin-right: 0;
  }
}
.authentication .authentication_sns .step_info .step_item,
.authentication .authentication_mail .step_info .step_item {
  flex: 1;
  text-align: left;
  color: #1a1a1a;
  font-size: 1.8rem;
  line-height: 24px;
}
@media (max-width: 768px) {
  .authentication .authentication_sns .step_info .step_item,
  .authentication .authentication_mail .step_info .step_item {
    font-size: 1.6rem;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.authentication .authentication_sns.active,
.authentication .authentication_mail.active {
  display: block;
}
.authentication .information_common {
  width: 100%;
}
.authentication .information_common .information_list {
  width: 768px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .authentication .information_common .information_list {
    width: 100%;
  }
}
.authentication .information_common .information_list li {
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.authentication .information_common .information_list li::after {
  top: 25%;
  right: -50px;
}
@media (max-width: 768px) {
  .authentication .information_common .information_list li::after {
    right: 0;
  }
}
@media (max-width: 599px) {
  .authentication .information_common .information_list li::after {
    top: 40%;
  }
}
.authentication .information_common .information_list li .information_date {
  display: inline-block;
  font-size: 1.4rem;
  margin-right: 60px;
}
@media (max-width: 599px) {
  .authentication .information_common .information_list li .information_date {
    display: block;
    font-size: 1.2rem;
  }
}
.authentication .information_common .information_list li a {
  display: block;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .authentication .information_bus {
    margin-bottom: 50px;
  }
}
.authentication .information_list {
  margin-bottom: 50px;
}
.authentication .information_list li {
  border-left: 3px solid #d30b2a;
  padding: 20px;
  padding-right: 0;
  margin-bottom: 20px;
  position: relative;
  width: 85%;
}
@media (max-width: 768px) {
  .authentication .information_list li {
    padding: 15px;
  }
}
.authentication .information_list li::after {
  content: url(../images/arrow_red_right.png);
  position: absolute;
  top: 50%;
  right: -40px;
  transform: scale(0.5) translateY(-50%);
}
@media (max-width: 768px) {
  .authentication .information_list li::after {
    transform: scale(0.4) translateY(-70%);
  }
}
.authentication .information_list li a {
  font-size: 1.8rem;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 10px;
  display: block;
}
.authentication .information_list li a:hover {
  color: #d30b2a;
}
@media (max-width: 768px) {
  .authentication .information_list li a {
    font-size: 1.4rem;
  }
}
.authentication .information_list li a .information_date {
  font-size: 1.2rem;
  display: block;
}

@media (max-width: 599px) {
  .common_nav2.common_nav_bg.common_nav_4 .bus_info_list3 {
    justify-content: space-between;
  }
}

/*高速バス_新宿線*/
.highway_shinjuku {
  position: relative;
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .highway_shinjuku {
    padding: 0 0 10px;
  }
}
.highway_shinjuku .common_caption_wrap .common_caption::before {
  top: -3px;
}
.highway_shinjuku .ttl3 {
  border-left: 8px solid #d30b2a !important;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 100;
  line-height: 2.5;
  margin-bottom: 0;
  border: 1px solid #d30b2a;
  padding-bottom: 2px;
}
@media (max-width: 599px) {
  .highway_shinjuku .ttl3 {
    font-size: 2.4rem;
    border-left: 8px solid #d30b2a !important;
    padding-left: 20px;
    font-weight: 100;
    line-height: 2.5;
    margin-bottom: 0;
    border: 1px solid #d30b2a;
  }
}
.highway_shinjuku .tel_reservation h4,
.highway_shinjuku .highway_contact_odakyu h4,
.highway_shinjuku .highway_contact_gifu h4 {
  padding-left: 10px;
  font-size: 2rem;
  border-left: 8px solid #c60022;
  font-weight: 500;
  margin-bottom: 10px;
}
.highway_shinjuku h3 {
  border-left: 3px solid #d30b2a;
  padding-left: 20px;
  font-size: 36px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .highway_shinjuku h3 {
    font-size: 2.4rem;
  }
}
.highway_shinjuku .common_accordion .accordion_ttl {
  margin-bottom: 40px;
}
.highway_shinjuku table {
  width: 100%;
}
.highway_shinjuku table,
.highway_shinjuku table th,
.highway_shinjuku table td {
  border: 1px solid #a9a9a9;
  border-collapse: collapse;
  height: 20px;
  font-weight: 400;
}
.highway_shinjuku td {
  padding: 9px 20px;
}
.highway_shinjuku .table_ttl {
  text-align: center;
  background-color: #f5f5f5;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_shinjuku .table_ttl {
    font-size: 1.6rem;
  }
}
.highway_shinjuku .table_ttl2 {
  background-color: #f5f5f5;
}
@media (max-width: 768px) {
  .highway_shinjuku .table_ttl2 {
    width: 36%;
  }
}
.highway_shinjuku .shinjuku_route_map {
  margin-bottom: 40px;
}
.highway_shinjuku .route_shinjuku {
  text-align: center;
  margin-bottom: 40px;
  margin-inline: 22px;
  margin-top: 70px;
}
@media (max-width: 599px) {
  .highway_shinjuku .route_shinjuku {
    width: 700px;
  }
}
.highway_shinjuku .route_shinjuku img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.highway_shinjuku .shinjuku_timetable,
.highway_shinjuku .table_guideline {
  flex-basis: 48%;
}
@media (max-width: 768px) {
  .highway_shinjuku .shinjuku_timetable,
  .highway_shinjuku .table_guideline {
    flex-basis: 100%;
  }
}
.highway_shinjuku .shinjuku_timetable td {
  font-weight: 500;
}
.highway_shinjuku .shinjuku_timetable .shinjuku_times {
  font-weight: 300;
}
@media (max-width: 768px) {
  .highway_shinjuku .shinjuku_timetable {
    margin-bottom: 20px;
  }
  .highway_shinjuku .shinjuku_timetable:last-of-type {
    margin-bottom: 0;
  }
}
.highway_shinjuku .shinjuku_times {
  text-align: center;
  font-weight: 300;
}
.highway_shinjuku .btn_pdf {
  margin-bottom: 40px;
}
.highway_shinjuku .btn_pdf a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 580px;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  margin: 0 auto;
}
.highway_shinjuku .btn_pdf a::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 45%;
  right: 20px;
  transform: scale(0.5) translateY(-50%) rotate(-90deg);
}
@media (max-width: 599px) {
  .highway_shinjuku .btn_pdf a::after {
    top: 40%;
  }
}
.highway_shinjuku .btn_pdf a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.highway_shinjuku .btn_pdf a:hover::after {
  content: url(../images/arrow_white_bottom.png);
}
@media (max-width: 599px) {
  .highway_shinjuku .btn_pdf a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
  .highway_shinjuku .btn_pdf a:last-child {
    margin-bottom: 0;
  }
}
.highway_shinjuku .fare_calender {
  margin-bottom: 40px;
}
.highway_shinjuku .shinjuku_days {
  width: 8%;
  text-align: center;
}
@media (max-width: 1200px) {
  .highway_shinjuku .shinjuku_days {
    width: 10%;
  }
}
.highway_shinjuku .fare_table {
  text-align: center;
  font-feature-settings: "palt";
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .highway_shinjuku .fare_table {
    width: 1200px;
  }
}
.highway_shinjuku .fare_table .fare_table_return {
  display: none;
}
@media (max-width: 1200px) {
  .highway_shinjuku .fare_table .fare_table_return {
    display: block;
  }
}
.highway_shinjuku .fare_cell {
  width: 23%;
}
.highway_shinjuku .fare_table_ttl {
  width: 19%;
  padding: 9px 0;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .highway_shinjuku .fare_table_ttl {
    width: 12%;
  }
}
.highway_shinjuku .schedule_s {
  background-color: #e94534;
  color: #fff;
}
.highway_shinjuku .schedule_a {
  background-color: #ffc330;
}
.highway_shinjuku .schedule_b {
  background-color: #fff672;
}
.highway_shinjuku .schedule_c {
  background-color: #b3f986;
}
.highway_shinjuku .schedule_d {
  background-color: #32be77;
  color: #fff;
}
.highway_shinjuku .schedule_e {
  background-color: #57caf3;
  color: #fff;
}
.highway_shinjuku .schedule_f {
  background-color: #4195ce;
  color: #fff;
}
.highway_shinjuku .seattingmap {
  flex-wrap: nowrap;
}
@media (max-width: 960px) {
  .highway_shinjuku .seattingmap {
    flex-wrap: wrap;
  }
}
.highway_shinjuku .seat_desc {
  width: 50%;
}
@media (max-width: 960px) {
  .highway_shinjuku .seat_desc {
    width: 100%;
  }
}
.highway_shinjuku .seat_desc p {
  font-weight: 300;
}
@media (max-width: 960px) {
  .highway_shinjuku .seat_desc p {
    margin-bottom: 20px;
  }
}
.highway_shinjuku .equipment {
  margin-top: 30px;
}
.highway_shinjuku .equipment .icon_equipment {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .highway_shinjuku .equipment .icon_equipment {
    margin-right: 0;
    flex-basis: 33%;
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .highway_shinjuku .equipment .icon_equipment {
    flex-basis: 50%;
  }
}
.highway_shinjuku .equipment .icon_equipment img {
  width: 100%;
  max-width: 50px;
  height: auto;
  margin-right: 5px;
}
.highway_shinjuku .equipment .icon_equipment span {
  color: #d30b2a;
}
@media (max-width: 599px) {
  .highway_shinjuku .equipment .icon_equipment span {
    font-size: 1.4rem;
  }
}
.highway_shinjuku .equipment p {
  margin-top: 20px;
}
.highway_shinjuku .annotation {
  margin-top: 40px;
  padding: 30px;
  background-color: #f5f5f5;
  font-size: 1.6rem;
  font-weight: 300;
}
@media (max-width: 599px) {
  .highway_shinjuku .annotation {
    padding: 15px;
  }
}
.highway_shinjuku .seat_img {
  width: 48%;
  margin-left: 20px;
}
@media (max-width: 960px) {
  .highway_shinjuku .seat_img {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}
.highway_shinjuku .seat_img img {
  width: 100%;
  max-width: 581px;
  height: auto;
  aspect-ratio: 581/155;
}
.highway_shinjuku .bus_stop {
  margin-bottom: 40px;
}
.highway_shinjuku .bus_stop .g_map {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_shinjuku .bus_stop .g_map {
    padding-bottom: 75%;
  }
}
.highway_shinjuku .bus_stop .g_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_shinjuku .bus_stop .g_map_l {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_shinjuku .bus_stop .g_map_l {
    padding-bottom: 75%;
  }
}
.highway_shinjuku .bus_stop .g_map_l iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_shinjuku .bus_stop .gmap_tab_btn {
  width: 100%;
  max-width: 320px;
  border: 2px solid #d30b2a;
  border-radius: 5px;
  margin: 0 0 15px;
}
.highway_shinjuku .bus_stop .gmap_tab_btn ul li {
  width: 50%;
  text-align: center;
  font-weight: 500;
  color: #d30b2a;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.3s;
}
.highway_shinjuku .bus_stop .gmap_tab_btn ul li.active, .highway_shinjuku .bus_stop .gmap_tab_btn ul li:hover {
  background-color: #d30b2a;
  color: #fff;
}
.highway_shinjuku .reservation_detail {
  margin-bottom: 40px;
}
.highway_shinjuku .reservation_detail:last-child {
  margin-top: 60px;
}
.highway_shinjuku .attention {
  color: #d30b2a;
  margin-bottom: 40px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .highway_shinjuku .attention {
    text-align: left;
  }
}
.highway_shinjuku .btn_web_reservation a {
  display: block;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.highway_shinjuku .btn_web_reservation a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.highway_shinjuku .btn_web_reservation a img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_shinjuku .btn_web_reservation a img {
    aspect-ratio: 901/201;
  }
}
.highway_shinjuku .btn_web_reservation p {
  font-size: 1rem;
  margin-top: 30px;
}
.highway_shinjuku .tel_reservation {
  padding-top: 40px;
}
@media (max-width: 599px) {
  .highway_shinjuku .tel_reservation {
    padding-top: 0;
  }
}
.highway_shinjuku .tel_reservation .center_tel {
  text-align: center;
  margin-bottom: 20px;
}
.highway_shinjuku .tel_reservation .center_tel img {
  margin-bottom: 10px;
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_shinjuku .tel_reservation .center_tel img {
    aspect-ratio: 902/323;
  }
}
.highway_shinjuku .tel_reservation .center_tel .attention {
  font-size: 1rem;
}
.highway_shinjuku .tel_reservation .reservation_detail ul {
  padding-left: 18px;
}
.highway_shinjuku .tel_reservation .reservation_detail ul li {
  font-weight: 300;
  position: relative;
}
.highway_shinjuku .tel_reservation .reservation_detail ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.highway_shinjuku .tel_reservation .reservation_detail .reservation_detail_mt {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .highway_shinjuku .tel_reservation .reservation_detail .table_guideline {
    margin-top: -1px;
  }
}
.highway_shinjuku .tel_reservation .reservation_detail .table_guideline .table_guideline_desc {
  font-weight: 300;
}
.highway_shinjuku .highway_contact_gifu {
  margin-top: 30px;
}
.highway_shinjuku .highway_contact_odakyu p,
.highway_shinjuku .highway_contact_gifu p {
  font-weight: 300;
}
.highway_shinjuku .calendar-container-shirakawa {
  width: 100%;
  margin: 0 0 15px 0;
  border-radius: 5px;
  background: #001f5f;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .highway_shinjuku .calendar-container-shirakawa {
    width: 800px;
  }
}
.highway_shinjuku .calendar-container-shirakawa h1 {
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 1.6rem;
  margin: 0;
  color: #fff;
}
.highway_shinjuku .calendar-container-shirakawa td {
  border: solid 1px #999;
  background-color: #fff;
  font-weight: normal;
  height: 37px;
  text-align: center;
  padding: 1px;
}
.highway_shinjuku .calendar-container-shirakawa th {
  border: solid 1px #999;
  background-color: #fff;
}
.highway_shinjuku .calendar-shirakawa {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #999;
}
.highway_shinjuku .mikata {
  font-weight: bold;
  text-align: center;
}
.highway_shinjuku .cal_ue {
  background-color: #0170c1;
  color: #fff;
}
.highway_shinjuku .cal_naka {
  background-color: #e8f7cf;
}
.highway_shinjuku .cal_shita {
  background-color: #c2ebfa;
}
.highway_shinjuku .cal_date_sun {
  font-weight: bold;
  text-align: center;
  background-color: #e86060;
  color: #fff;
}
.highway_shinjuku .cal_date_sat {
  font-weight: bold;
  text-align: center;
  background-color: #0000cc;
  color: #fff;
}
.highway_shinjuku .cal_price1 {
  text-align: center;
  background-color: #e8f7cf;
}
.highway_shinjuku .cal_price2 {
  text-align: center;
  background-color: #c2ebfa;
}
.highway_shinjuku .cal_date {
  font-weight: bold;
  text-align: center;
  background-color: #0170c1;
  color: #fff;
}

/*高速バス_白川郷線*/
.highway_shirakawago {
  position: relative;
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .highway_shirakawago {
    padding: 0 0 10px;
  }
}
.highway_shirakawago .common_caption_wrap .common_caption a {
  display: inline-block;
  border-bottom: 3px solid #e2e2e2;
  font-size: 1.4rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
.highway_shirakawago .common_caption_wrap .common_caption::before {
  top: 5px;
}
@media (max-width: 599px) {
  .highway_shirakawago .common_caption_wrap .common_caption::before {
    top: 25%;
    transform: scale(0.5) translateY(-50%);
  }
}
.highway_shirakawago h3 {
  border-left: 3px solid #d30b2a;
  padding-left: 20px;
  font-size: 36px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .highway_shirakawago h3 {
    font-size: 2.4rem;
  }
}
.highway_shirakawago h3 span {
  font-size: 2.4rem;
}
@media (max-width: 599px) {
  .highway_shirakawago h3 span {
    font-size: 1.6rem;
  }
}
.highway_shirakawago .ttl3_2 {
  margin-bottom: 30px;
}
.highway_shirakawago h4 {
  padding-left: 10px;
  font-size: 2rem;
  border-left: 8px solid #c60022;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .highway_shirakawago h4 {
    font-size: 1.8rem;
  }
}
.highway_shirakawago h5 {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 5px;
}
.highway_shirakawago .ttl3 {
  border-left: 8px solid #d30b2a !important;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 100;
  line-height: 2.5;
  margin-bottom: 0;
  border: 1px solid #d30b2a;
  padding-bottom: 2px;
}
@media (max-width: 599px) {
  .highway_shirakawago .ttl3 {
    font-size: 2.4rem;
  }
}
.highway_shirakawago .w1200 {
  width: 1200px;
}
@media (max-width: 599px) {
  .highway_shirakawago .w600 {
    width: 660px;
  }
}
.highway_shirakawago .common_accordion .accordion_ttl {
  margin-bottom: 40px;
}
.highway_shirakawago .gray_box {
  margin-bottom: 50px;
}
.highway_shirakawago table {
  width: 100%;
}
.highway_shirakawago table,
.highway_shirakawago table th,
.highway_shirakawago table td {
  border: 1px solid #a9a9a9;
  border-collapse: collapse;
  height: 20px;
}
.highway_shirakawago td {
  padding: 9px 20px;
}
.highway_shirakawago .table_ttl {
  text-align: center;
  background-color: #f5f5f5;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_shirakawago .table_ttl {
    font-size: 1.6rem;
  }
}
.highway_shirakawago .table_ttl2_1 {
  text-align: left;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_shirakawago .table_ttl2_1 {
    font-size: 1.6rem;
  }
}
.highway_shirakawago .table_ttl2 {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_shirakawago .table_ttl2 {
    font-size: 1.6rem;
  }
}
.highway_shirakawago .table_ttl3 {
  background-color: #f5f5f5;
  width: 32%;
}
.highway_shirakawago .table_ttl_kids {
  background-color: #ffffe6;
}
.highway_shirakawago .shinjuku_route_map {
  margin-bottom: 40px;
}
.highway_shirakawago .route_shinjuku {
  text-align: center;
  margin-bottom: 40px;
  margin-inline: 22px;
  margin-top: 70px;
}
@media (max-width: 599px) {
  .highway_shirakawago .route_shinjuku {
    width: 800px;
  }
}
.highway_shirakawago .route_shinjuku img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.highway_shirakawago .table_guideline {
  flex-basis: 48%;
}
@media (max-width: 768px) {
  .highway_shirakawago .table_guideline {
    flex-basis: 100%;
  }
}
.highway_shirakawago .btn_pdf {
  margin-bottom: 40px;
}
.highway_shirakawago .btn_pdf a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 580px;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  margin: 0 auto;
}
.highway_shirakawago .btn_pdf a::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 45%;
  right: 20px;
  transform: scale(0.5) translateY(-50%) rotate(-90deg);
}
@media (max-width: 599px) {
  .highway_shirakawago .btn_pdf a::after {
    top: 40%;
  }
}
.highway_shirakawago .btn_pdf a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.highway_shirakawago .btn_pdf a:hover::after {
  content: url(../images/arrow_white_bottom.png);
}
@media (max-width: 599px) {
  .highway_shirakawago .btn_pdf a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
  .highway_shirakawago .btn_pdf a:last-child {
    margin-bottom: 0;
  }
}
.highway_shirakawago .fare_table {
  text-align: center;
  font-feature-settings: "palt";
  margin-bottom: 30px;
}
.highway_shirakawago .fare_calender {
  margin-top: 50px;
}
.highway_shirakawago .fare_calender p {
  margin-bottom: 30px;
}
.highway_shirakawago .transfer_gifu_shirakawa {
  margin-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 599px) {
  .highway_shirakawago .transfer_gifu_shirakawa {
    padding-bottom: 30px;
  }
}
.highway_shirakawago .transfer_gifu_shirakawa p {
  margin-bottom: 30px;
}
.highway_shirakawago .transfer_gifu_shirakawa .table_takayama {
  flex-basis: 30%;
}
.highway_shirakawago .transfer_gifu_shirakawa .transfer_block {
  position: relative;
  flex-basis: 18%;
  background-color: #ffffe6;
  border: 1px solid #a9a9a9;
  margin-inline: 10px;
  margin-bottom: 30px;
}
.highway_shirakawago .transfer_gifu_shirakawa .transfer_block p {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.highway_shirakawago .transfer_gifu_shirakawa .transfer_block p span {
  display: block;
}
.highway_shirakawago .transfer_gifu_shirakawa .table_shirakawa {
  flex-basis: 50%;
}
.highway_shirakawago .transfer_gifu_shirakawa .ticket_hirugano a {
  display: block;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.highway_shirakawago .transfer_gifu_shirakawa .ticket_hirugano a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.highway_shirakawago .transfer_gifu_shirakawa .ticket_hirugano a img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 300/32;
}
@media (max-width: 599px) {
  .highway_shirakawago .transfer_gifu_shirakawa .ticket_hirugano a img {
    aspect-ratio: 45/12;
  }
}
.highway_shirakawago .transfer_gujo {
  margin-top: 50px;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .highway_shirakawago .transfer_gujo {
    margin-bottom: 30px;
  }
}
.highway_shirakawago .transfer_gujo a {
  display: inline-block;
  border-bottom: 3px solid #e2e2e2;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
.highway_shirakawago .demandtaxi a {
  display: block;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.highway_shirakawago .demandtaxi a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.highway_shirakawago .demandtaxi a img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 300/32;
}
@media (max-width: 599px) {
  .highway_shirakawago .demandtaxi a img {
    aspect-ratio: 45/12;
  }
}
.highway_shirakawago .special_fare {
  margin-top: 60px;
}
@media (max-width: 599px) {
  .highway_shirakawago .special_fare {
    margin-top: 0;
  }
}
.highway_shirakawago .special_fare .row {
  margin-bottom: 50px;
}
.highway_shirakawago .special_fare .special_fare_desc {
  flex-basis: 40%;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .highway_shirakawago .special_fare .special_fare_desc {
    flex-basis: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.highway_shirakawago .special_fare .img_ticket {
  flex-basis: 60%;
}
@media (max-width: 768px) {
  .highway_shirakawago .special_fare .img_ticket {
    flex-basis: 100%;
  }
}
.highway_shirakawago .special_fare .img_ticket img {
  width: 100%;
  height: auto;
}
.highway_shirakawago .equipment {
  margin-top: 30px;
}
.highway_shirakawago .equipment .icon_equipment {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .highway_shirakawago .equipment .icon_equipment {
    margin-right: 0;
    flex-basis: 33%;
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .highway_shirakawago .equipment .icon_equipment {
    flex-basis: 50%;
  }
}
.highway_shirakawago .equipment .icon_equipment img {
  width: 100%;
  max-width: 50px;
  height: auto;
  margin-right: 5px;
}
.highway_shirakawago .equipment .icon_equipment span {
  color: #d30b2a;
}
@media (max-width: 599px) {
  .highway_shirakawago .equipment .icon_equipment span {
    font-size: 1.4rem;
  }
}
.highway_shirakawago .equipment p {
  margin-top: 20px;
}
.highway_shirakawago .bus_stop {
  margin-bottom: 40px;
}
.highway_shirakawago .bus_stop .g_map {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_shirakawago .bus_stop .g_map {
    padding-bottom: 75%;
  }
}
.highway_shirakawago .bus_stop .g_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_shirakawago .bus_stop .g_map_l {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_shirakawago .bus_stop .g_map_l {
    padding-bottom: 75%;
  }
}
.highway_shirakawago .bus_stop .g_map_l iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_shirakawago .bus_stop .gmap_tab_btn {
  width: 100%;
  max-width: 320px;
  border: 2px solid #d30b2a;
  border-radius: 5px;
  margin: 0 0 15px;
}
.highway_shirakawago .bus_stop .gmap_tab_btn ul li {
  width: 50%;
  text-align: center;
  font-weight: 500;
  color: #d30b2a;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.3s;
}
.highway_shirakawago .bus_stop .gmap_tab_btn ul li.active, .highway_shirakawago .bus_stop .gmap_tab_btn ul li:hover {
  background-color: #d30b2a;
  color: #fff;
}
.highway_shirakawago .reservation_detail {
  margin-bottom: 40px;
}
.highway_shirakawago .reservation_detail:last-child {
  margin-top: 60px;
}
.highway_shirakawago .reservation_detail p {
  margin-top: 10px;
}
.highway_shirakawago .attention {
  color: #d30b2a;
  margin-bottom: 40px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .highway_shirakawago .attention {
    text-align: left;
  }
}
.highway_shirakawago .btn_web_reservation a {
  display: block;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.highway_shirakawago .btn_web_reservation a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.highway_shirakawago .btn_web_reservation a img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_shirakawago .btn_web_reservation a img {
    aspect-ratio: 901/201;
  }
}
.highway_shirakawago .btn_web_reservation p {
  font-size: 1rem;
  margin-top: 30px;
}
@media (max-width: 599px) {
  .highway_shirakawago .btn_web_reservation p {
    margin-top: 20px;
  }
}
.highway_shirakawago .tel_reservation {
  padding-top: 40px;
}
@media (max-width: 599px) {
  .highway_shirakawago .tel_reservation {
    padding-top: 0;
  }
}
.highway_shirakawago .tel_reservation .center_tel {
  text-align: center;
  margin-bottom: 20px;
}
.highway_shirakawago .tel_reservation .center_tel img {
  margin-bottom: 10px;
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_shirakawago .tel_reservation .center_tel img {
    aspect-ratio: 902/323;
  }
}
.highway_shirakawago .tel_reservation .center_tel .attention {
  font-size: 1rem;
}
.highway_shirakawago .tel_reservation .reservation_detail ul {
  padding-left: 18px;
}
.highway_shirakawago .tel_reservation .reservation_detail ul li {
  font-weight: 300;
  position: relative;
}
.highway_shirakawago .tel_reservation .reservation_detail ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.highway_shirakawago .tel_reservation .reservation_detail .reservation_detail_mt {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .highway_shirakawago .tel_reservation .reservation_detail .table_guideline {
    margin-top: -1px;
  }
}
.highway_shirakawago .tel_reservation .reservation_detail .table_guideline .table_guideline_desc {
  font-weight: 300;
}
.highway_shirakawago .bnr_foreign_lng {
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .highway_shirakawago .bnr_foreign_lng .bnr_foreign_img {
    width: 33.3%;
    max-width: 380px;
    padding: 5px;
  }
}
@media (max-width: 599px) {
  .highway_shirakawago .bnr_foreign_lng .bnr_foreign_img {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}
.highway_shirakawago .bnr_foreign_lng .bnr_foreign_img a {
  display: block;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.highway_shirakawago .bnr_foreign_lng .bnr_foreign_img a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.highway_shirakawago .bnr_foreign_lng .bnr_foreign_img a img {
  width: 100%;
  max-width: 380px;
  height: auto;
  aspect-ratio: 760/256;
}
.highway_shirakawago .highway_contact {
  margin-top: 30px;
}
.highway_shirakawago .highway_contact p {
  font-weight: 300;
}
.highway_shirakawago .calendar-container-shirakawa {
  width: 100%;
  margin: 0 0 40px 0;
  background: #001f5f;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .highway_shirakawago .calendar-container-shirakawa {
    width: 800px;
  }
}
.highway_shirakawago .calendar-container-shirakawa h1 {
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 1.6rem;
  margin: 0;
  color: #fff;
}
.highway_shirakawago .calendar-container-shirakawa td {
  border: solid 1px #999;
  background-color: #fff;
  font-weight: normal;
  height: 37px;
  text-align: center;
  padding: 1px;
}
.highway_shirakawago .calendar-container-shirakawa th {
  border: solid 1px #999;
  background-color: #fff;
}
.highway_shirakawago .calendar-shirakawa {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #999;
}
.highway_shirakawago .mikata {
  font-weight: bold;
  text-align: center;
}
.highway_shirakawago .cal_ue {
  background-color: #0170c1;
  color: #fff;
}
.highway_shirakawago .cal_naka {
  background-color: #e8f7cf;
}
.highway_shirakawago .cal_shita {
  background-color: #c2ebfa;
}
.highway_shirakawago .cal_date_sun {
  font-weight: bold;
  text-align: center;
  background-color: #e86060;
  color: #fff;
}
.highway_shirakawago .cal_date_sat {
  font-weight: bold;
  text-align: center;
  background-color: #0000cc;
  color: #fff;
}
.highway_shirakawago .cal_price1 {
  text-align: center;
  background-color: #e8f7cf;
}
.highway_shirakawago .cal_price2 {
  text-align: center;
  background-color: #c2ebfa;
}
.highway_shirakawago .cal_date {
  font-weight: bold;
  text-align: center;
  background-color: #0170c1;
  color: #fff;
}
.highway_shirakawago .cal_price_s {
  text-align: center;
  height: 30px;
  line-height: 30px;
  background-color: #e94534;
  color: #fff;
}
.highway_shirakawago .cal_price_a {
  text-align: center;
  height: 30px;
  line-height: 30px;
  background-color: #fff572;
}
.highway_shirakawago .cal_price_b {
  text-align: center;
  height: 30px;
  line-height: 30px;
  background-color: #b3f986;
}
.highway_shirakawago .cal_price_c {
  text-align: center;
  height: 30px;
  line-height: 30px;
  background-color: #58caf3;
  color: #fff;
}
.highway_shirakawago .cal_price_d {
  text-align: center;
  height: 30px;
  line-height: 30px;
  background-color: #4195ce;
  color: #fff;
}

/*高速バス_高山線*/
.highway_takayama {
  position: relative;
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .highway_takayama {
    padding: 0 0 10px;
  }
}
.highway_takayama .common_caption_wrap .common_caption::before {
  top: -3px;
}
.highway_takayama h3 {
  border-left: 3px solid #d30b2a;
  padding-left: 20px;
  font-size: 36px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .highway_takayama h3 {
    font-size: 2.4rem;
  }
}
.highway_takayama h4 {
  padding-left: 10px;
  font-size: 2rem;
  border-left: 8px solid #c60022;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .highway_takayama h4 {
    font-size: 1.8rem;
  }
}
.highway_takayama .ttl3 {
  border-left: 8px solid #d30b2a !important;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 100;
  line-height: 2.5;
  margin-bottom: 0;
  border: 1px solid #d30b2a;
  padding-bottom: 2px;
}
@media (max-width: 599px) {
  .highway_takayama .ttl3 {
    font-size: 2.4rem;
  }
}
.highway_takayama .tel_reservation h4,
.highway_takayama .highway_contact_gifu h4 {
  padding-left: 10px;
  font-size: 2rem;
  border-left: 8px solid #c60022;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .highway_takayama .sp_ruby {
    line-height: 1.6;
  }
}
.highway_takayama .common_accordion .accordion_ttl {
  margin-bottom: 40px;
}
.highway_takayama table {
  width: 100%;
}
.highway_takayama table,
.highway_takayama table th,
.highway_takayama table td {
  border: 1px solid #a9a9a9;
  border-collapse: collapse;
  height: 20px;
}
.highway_takayama td {
  padding: 9px 20px;
}
@media (max-width: 599px) {
  .highway_takayama td {
    padding: 9px 10px;
  }
}
.highway_takayama .table_ttl {
  text-align: center;
  background-color: #f5f5f5;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_takayama .table_ttl {
    font-size: 1.6rem;
    width: 25%;
  }
}
.highway_takayama .table_ttl2 {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_takayama .table_ttl2 {
    font-size: 1.6rem;
  }
}
.highway_takayama .table_ttl3 {
  background-color: #f5f5f5;
  width: 32%;
}
@media (max-width: 768px) {
  .highway_takayama .w800 {
    width: 800px;
  }
}
.highway_takayama .table_desc {
  text-align: left;
}
.highway_takayama .shinjuku_route_map {
  margin-bottom: 40px;
}
.highway_takayama .route_takayama {
  text-align: center;
  margin-bottom: 40px;
  margin-inline: 22px;
  margin-top: 70px;
}
@media (max-width: 599px) {
  .highway_takayama .route_takayama {
    width: 700px;
  }
}
.highway_takayama .route_takayama img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.highway_takayama .btn_pdf {
  margin-bottom: 40px;
}
.highway_takayama .btn_pdf a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 580px;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  margin: 0 auto;
}
.highway_takayama .btn_pdf a::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 45%;
  right: 20px;
  transform: scale(0.5) translateY(-50%) rotate(-90deg);
}
@media (max-width: 599px) {
  .highway_takayama .btn_pdf a::after {
    top: 40%;
  }
}
.highway_takayama .btn_pdf a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.highway_takayama .btn_pdf a:hover::after {
  content: url(../images/arrow_white_bottom.png);
}
@media (max-width: 599px) {
  .highway_takayama .btn_pdf a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
  .highway_takayama .btn_pdf a:last-child {
    margin-bottom: 0;
  }
}
.highway_takayama .fare_table {
  text-align: center;
  font-feature-settings: "palt";
}
.highway_takayama .fare_table .fare_table_return {
  display: none;
}
@media (max-width: 1200px) {
  .highway_takayama .fare_table .fare_table_return {
    display: block;
  }
}
.highway_takayama .coupon_ticket .fare_table {
  margin-block: 20px;
}
.highway_takayama .coupon_ticket p {
  margin-bottom: 20px;
}
.highway_takayama .gakuwari,
.highway_takayama .freeticket_1 {
  margin-bottom: 60px;
}
.highway_takayama .gakuwari .fare_table,
.highway_takayama .freeticket_1 .fare_table,
.highway_takayama .freeticket_2 .fare_table {
  margin-top: 20px;
  margin-bottom: 20px;
}
.highway_takayama .gakuwari a,
.highway_takayama .freeticket_1 a,
.highway_takayama .freeticket_2 a {
  display: inline;
  border-bottom: 3px solid #e2e2e2;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
.highway_takayama .gakuwari ul,
.highway_takayama .freeticket_1 ul,
.highway_takayama .freeticket_2 ul {
  padding-left: 18px;
}
.highway_takayama .gakuwari ul li,
.highway_takayama .freeticket_1 ul li,
.highway_takayama .freeticket_2 ul li {
  font-weight: 300;
  position: relative;
}
.highway_takayama .gakuwari ul li::before,
.highway_takayama .freeticket_1 ul li::before,
.highway_takayama .freeticket_2 ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.highway_takayama .gakuwari .letter_red {
  color: #d30b2a;
}
.highway_takayama .freeticket_1 [data-ruby] {
  position: relative;
}
.highway_takayama .freeticket_1 [data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -0.6em;
  left: 9px;
  right: 0;
  margin: auto;
  font-size: 0.5em;
}
@media (max-width: 599px) {
  .highway_takayama .freeticket_1 [data-ruby]::before {
    top: -0.8em;
    left: 7px;
    font-size: 0.4em;
  }
}
.highway_takayama .bus_stop {
  margin-bottom: 40px;
}
.highway_takayama .bus_stop .g_map {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_takayama .bus_stop .g_map {
    padding-bottom: 75%;
  }
}
.highway_takayama .bus_stop .g_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_takayama .bus_stop .g_map_l {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_takayama .bus_stop .g_map_l {
    padding-bottom: 75%;
  }
}
.highway_takayama .bus_stop .g_map_l iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_takayama .bus_stop .gmap_tab_btn {
  width: 100%;
  max-width: 320px;
  border: 2px solid #d30b2a;
  border-radius: 5px;
  margin: 0 0 15px;
}
.highway_takayama .bus_stop .gmap_tab_btn ul li {
  width: 50%;
  text-align: center;
  font-weight: 500;
  color: #d30b2a;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.3s;
}
.highway_takayama .bus_stop .gmap_tab_btn ul li.active, .highway_takayama .bus_stop .gmap_tab_btn ul li:hover {
  background-color: #d30b2a;
  color: #fff;
}
.highway_takayama .equipment {
  margin-top: 30px;
}
.highway_takayama .equipment .icon_equipment {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .highway_takayama .equipment .icon_equipment {
    margin-right: 0;
    flex-basis: 33%;
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .highway_takayama .equipment .icon_equipment {
    flex-basis: 50%;
  }
}
.highway_takayama .equipment .icon_equipment img {
  width: 100%;
  max-width: 50px;
  height: auto;
  margin-right: 5px;
}
.highway_takayama .equipment .icon_equipment span {
  color: #d30b2a;
}
@media (max-width: 599px) {
  .highway_takayama .equipment .icon_equipment span {
    font-size: 1.4rem;
  }
}
.highway_takayama .equipment p {
  margin-top: 20px;
}
.highway_takayama .reservation_detail {
  margin-bottom: 40px;
}
.highway_takayama .reservation_detail:last-child {
  margin-top: 60px;
}
.highway_takayama .attention {
  color: #d30b2a;
  margin-bottom: 40px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .highway_takayama .attention {
    text-align: left;
  }
}
.highway_takayama .btn_web_reservation a {
  display: block;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.highway_takayama .btn_web_reservation a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.highway_takayama .btn_web_reservation a img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_takayama .btn_web_reservation a img {
    aspect-ratio: 901/201;
  }
}
.highway_takayama .btn_web_reservation p {
  font-size: 1rem;
  margin-top: 30px;
}
.highway_takayama .tel_reservation {
  padding-top: 40px;
}
@media (max-width: 599px) {
  .highway_takayama .tel_reservation {
    padding-top: 0;
  }
}
.highway_takayama .tel_reservation .center_tel {
  text-align: center;
  margin-bottom: 20px;
}
.highway_takayama .tel_reservation .center_tel img {
  margin-bottom: 10px;
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_takayama .tel_reservation .center_tel img {
    aspect-ratio: 902/323;
  }
}
.highway_takayama .tel_reservation .center_tel .attention {
  font-size: 1rem;
}
.highway_takayama .tel_reservation .reservation_detail ul {
  padding-left: 18px;
}
.highway_takayama .tel_reservation .reservation_detail ul li {
  font-weight: 300;
  position: relative;
}
.highway_takayama .tel_reservation .reservation_detail ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.highway_takayama .tel_reservation .reservation_detail .reservation_detail_mt {
  margin-top: 15px;
}
.highway_takayama .tel_reservation .reservation_detail .table_guideline {
  flex-basis: 48%;
}
@media (max-width: 768px) {
  .highway_takayama .tel_reservation .reservation_detail .table_guideline {
    margin-top: -1px;
    flex-basis: 100%;
  }
}
.highway_takayama .tel_reservation .reservation_detail .table_guideline .table_guideline_desc {
  font-weight: 300;
}
.highway_takayama .highway_contact_gifu {
  margin-top: 30px;
}
.highway_takayama .highway_contact_odakyu p,
.highway_takayama .highway_contact_gifu p {
  font-weight: 300;
}

/*高速バス_八幡線*/
.highway_hachiman {
  position: relative;
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .highway_hachiman {
    padding: 0 0 10px;
  }
}
.highway_hachiman .common_caption_wrap .common_caption::before {
  top: -3px;
}
.highway_hachiman h3 {
  border-left: 3px solid #d30b2a;
  padding-left: 20px;
  font-size: 36px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 15px;
  font-feature-settings: "palt";
}
@media (max-width: 599px) {
  .highway_hachiman h3 {
    font-size: 2.4rem;
  }
}
.highway_hachiman h4 {
  padding-left: 10px;
  font-size: 2rem;
  border-left: 8px solid #c60022;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .highway_hachiman h4 {
    font-size: 1.8rem;
  }
}
.highway_hachiman .ttl3 {
  border-left: 8px solid #d30b2a !important;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 100;
  line-height: 2.5;
  margin-bottom: 0;
  border: 1px solid #d30b2a;
  padding-bottom: 2px;
}
@media (max-width: 599px) {
  .highway_hachiman .ttl3 {
    font-size: 2.4rem;
  }
}
.highway_hachiman .tickets_acc_item {
  margin-bottom: 30px;
}
.highway_hachiman .tel_reservation h4,
.highway_hachiman .highway_contact_gifu h4 {
  padding-left: 10px;
  font-size: 2rem;
  border-left: 8px solid #c60022;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .highway_hachiman .sp_ruby {
    line-height: 1.7;
  }
}
.highway_hachiman .common_accordion .accordion_ttl {
  margin-bottom: 40px;
}
.highway_hachiman .tickets_acc_apl {
  width: 50%;
  margin: 16px 0;
}
@media (max-width: 599px) {
  .highway_hachiman .tickets_acc_apl {
    width: 100%;
  }
}
.highway_hachiman .tickets_acc_apl li {
  width: 48%;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  .highway_hachiman .tickets_acc_apl li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.highway_hachiman .tickets_acc_apl .tickets_apl_left {
  width: 25%;
}
@media (max-width: 599px) {
  .highway_hachiman .tickets_acc_apl .tickets_apl_left {
    width: 50%;
    margin: 0 auto;
  }
}
.highway_hachiman .tickets_acc_apl .tickets_apl_right {
  width: 71%;
}
@media (max-width: 599px) {
  .highway_hachiman .tickets_acc_apl .tickets_apl_right {
    width: 100%;
    text-align: center;
  }
}
.highway_hachiman .tickets_acc_apl .tickets_apl_right .tickets_apl_name {
  margin-bottom: 10px;
}
.highway_hachiman .tickets_acc_apl .tickets_apl_btn a:last-child {
  width: 42%;
}
@media (max-width: 599px) {
  .highway_hachiman .tickets_acc_apl .tickets_apl_btn a:last-child {
    width: 52%;
  }
}
.highway_hachiman .tickets_acc_apl .tickets_apl_btn a:first-child {
  width: 35%;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .highway_hachiman .tickets_acc_apl .tickets_apl_btn a:first-child {
    width: 43%;
  }
}
.highway_hachiman .centx_link div {
  display: flex;
  flex-wrap: wrap;
}
.highway_hachiman .centx_link div a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 206px;
  background-color: #d30b2a;
  border-radius: 10px;
  padding: 15px;
  margin-top: 10px;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 599px) {
  .highway_hachiman .centx_link div a {
    width: 100%;
    margin-right: 0;
  }
}
.highway_hachiman table {
  width: 100%;
}
.highway_hachiman table,
.highway_hachiman table th,
.highway_hachiman table td {
  border: 1px solid #a9a9a9;
  border-collapse: collapse;
  height: 20px;
}
.highway_hachiman td {
  padding: 9px 20px;
}
@media (max-width: 599px) {
  .highway_hachiman td {
    padding: 9px 10px;
  }
}
.highway_hachiman .table_ttl {
  text-align: center;
  background-color: #f5f5f5;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_hachiman .table_ttl {
    font-size: 1.6rem;
  }
}
.highway_hachiman .table_ttl2 {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_hachiman .table_ttl2 {
    font-size: 1.6rem;
  }
}
.highway_hachiman .table_ttl3 {
  background-color: #f5f5f5;
  width: 32%;
}
.highway_hachiman .table_desc {
  text-align: left;
}
.highway_hachiman .shinjuku_route_map {
  margin-bottom: 40px;
}
.highway_hachiman .route_hachiman {
  text-align: center;
  margin-bottom: 40px;
  margin-inline: 22px;
  margin-top: 70px;
}
@media (max-width: 599px) {
  .highway_hachiman .route_hachiman {
    width: 700px;
  }
}
.highway_hachiman .route_hachiman img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.highway_hachiman .btn_pdf {
  margin-bottom: 40px;
}
.highway_hachiman .btn_pdf a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 580px;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  margin: 0 auto;
}
.highway_hachiman .btn_pdf a::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 45%;
  right: 20px;
  transform: scale(0.5) translateY(-50%) rotate(-90deg);
}
@media (max-width: 599px) {
  .highway_hachiman .btn_pdf a::after {
    top: 40%;
  }
}
.highway_hachiman .btn_pdf a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.highway_hachiman .btn_pdf a:hover::after {
  content: url(../images/arrow_white_bottom.png);
}
@media (max-width: 599px) {
  .highway_hachiman .btn_pdf a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
  .highway_hachiman .btn_pdf a:last-child {
    margin-bottom: 0;
  }
}
.highway_hachiman .fare_table {
  text-align: center;
  font-feature-settings: "palt";
}
.highway_hachiman .fare_table .fare_table_return {
  display: none;
}
@media (max-width: 1200px) {
  .highway_hachiman .fare_table .fare_table_return {
    display: block;
  }
}
.highway_hachiman .w1200 {
  width: 1200px;
}
.highway_hachiman .transfar_hachiman table {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .highway_hachiman .transfar_hachiman .table_ttl {
    width: 25%;
  }
}
.highway_hachiman .transfar_hachiman span {
  font-weight: 500;
}
.highway_hachiman .transfar_hachiman ul {
  padding-left: 18px;
}
.highway_hachiman .transfar_hachiman ul li {
  font-weight: 300;
  position: relative;
}
.highway_hachiman .transfar_hachiman ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.highway_hachiman .coupon_ticket .fare_table {
  margin-block: 20px;
}
.highway_hachiman .coupon_ticket p {
  margin-bottom: 20px;
}
.highway_hachiman .equipment {
  margin-top: 30px;
}
.highway_hachiman .equipment .icon_equipment {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .highway_hachiman .equipment .icon_equipment {
    margin-right: 0;
    flex-basis: 33%;
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .highway_hachiman .equipment .icon_equipment {
    flex-basis: 50%;
  }
}
.highway_hachiman .equipment .icon_equipment img {
  width: 100%;
  max-width: 50px;
  height: auto;
  margin-right: 5px;
}
.highway_hachiman .equipment .icon_equipment span {
  color: #d30b2a;
}
@media (max-width: 599px) {
  .highway_hachiman .equipment .icon_equipment span {
    font-size: 1.4rem;
  }
}
.highway_hachiman .equipment p {
  margin-top: 20px;
}
.highway_hachiman .bus_stop {
  margin-bottom: 40px;
}
.highway_hachiman .bus_stop .g_map {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_hachiman .bus_stop .g_map {
    padding-bottom: 75%;
  }
}
.highway_hachiman .bus_stop .g_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_hachiman .bus_stop .g_map_l {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_hachiman .bus_stop .g_map_l {
    padding-bottom: 75%;
  }
}
.highway_hachiman .bus_stop .g_map_l iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_hachiman .bus_stop .gmap_tab_btn {
  width: 100%;
  max-width: 320px;
  border: 2px solid #d30b2a;
  border-radius: 5px;
  margin: 0 0 15px;
}
.highway_hachiman .bus_stop .gmap_tab_btn ul li {
  width: 50%;
  text-align: center;
  font-weight: 500;
  color: #d30b2a;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.3s;
}
.highway_hachiman .bus_stop .gmap_tab_btn ul li.active, .highway_hachiman .bus_stop .gmap_tab_btn ul li:hover {
  background-color: #d30b2a;
  color: #fff;
}
.highway_hachiman .reservation_detail {
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .highway_hachiman .reservation_detail:last-child {
    margin-top: 60px;
  }
}
.highway_hachiman .attention {
  color: #d30b2a;
  margin-bottom: 40px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .highway_hachiman .attention {
    text-align: left;
  }
}
.highway_hachiman .btn_web_reservation a {
  display: block;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.highway_hachiman .btn_web_reservation a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.highway_hachiman .btn_web_reservation a img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_hachiman .btn_web_reservation a img {
    aspect-ratio: 901/201;
  }
}
.highway_hachiman .btn_web_reservation p {
  font-size: 1rem;
  margin-top: 30px;
}
.highway_hachiman .tel_reservation .center_tel {
  text-align: center;
  margin-bottom: 20px;
}
.highway_hachiman .tel_reservation .center_tel img {
  margin-bottom: 10px;
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_hachiman .tel_reservation .center_tel img {
    aspect-ratio: 902/323;
  }
}
.highway_hachiman .tel_reservation .center_tel .attention {
  font-size: 1rem;
}
.highway_hachiman .tel_reservation .reservation_detail ul {
  padding-left: 18px;
}
.highway_hachiman .tel_reservation .reservation_detail ul li {
  font-weight: 300;
  position: relative;
}
.highway_hachiman .tel_reservation .reservation_detail ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.highway_hachiman .tel_reservation .reservation_detail .reservation_detail_mt {
  margin-top: 15px;
}
.highway_hachiman .tel_reservation .reservation_detail .table_guideline {
  flex-basis: 48%;
}
@media (max-width: 768px) {
  .highway_hachiman .tel_reservation .reservation_detail .table_guideline {
    margin-top: -1px;
    flex-basis: 100%;
  }
}
.highway_hachiman .tel_reservation .reservation_detail .table_guideline .table_guideline_desc {
  font-weight: 300;
}
.highway_hachiman .highway_contact_gifu {
  margin-top: 30px;
}
.highway_hachiman .highway_contact_odakyu p,
.highway_hachiman .highway_contact_gifu p {
  font-weight: 300;
}

.mankitsu_ticket {
  margin-bottom: 40px;
  cursor: pointer;
}
@media (max-width: 599px) {
  .mankitsu_ticket {
    margin-top: -20px;
  }
}
.mankitsu_ticket .sales_copy {
  margin-bottom: 10px;
}
.mankitsu_ticket .sales_copy p {
  font-feature-settings: "palt";
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #d30b2a;
}
@media (max-width: 599px) {
  .mankitsu_ticket .sales_copy p {
    font-size: 18px;
  }
}

.transfar_hachiman_limited {
  margin-top: 40px;
}
.transfar_hachiman_limited table {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .transfar_hachiman_limited .table_ttl {
    width: 25%;
  }
}
.transfar_hachiman_limited span {
  font-weight: 500;
}
.transfar_hachiman_limited ul {
  padding-left: 18px;
}
.transfar_hachiman_limited ul li {
  font-weight: 300;
  position: relative;
}
.transfar_hachiman_limited ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.transfar_hachiman_limited ol {
  padding-left: 18px;
}
.transfar_hachiman_limited ol li {
  font-size: 14px;
  font-weight: 300;
}
.transfar_hachiman_limited h5 {
  font-size: 16px;
  color: #d30b2a;
}

/*高速バス_関美濃線*/
.highway_sekimino {
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .highway_sekimino {
    padding: 0 0 10px;
  }
}
.highway_sekimino .common_caption_wrap .common_caption::before {
  top: -3px;
}
.highway_sekimino h3 {
  border-left: 3px solid #d30b2a;
  padding-left: 20px;
  font-size: 36px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .highway_sekimino h3 {
    font-size: 2.4rem;
  }
}
.highway_sekimino h4 {
  padding-left: 10px;
  font-size: 2rem;
  border-left: 8px solid #c60022;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .highway_sekimino h4 {
    font-size: 1.8rem;
  }
}
.highway_sekimino .ttl3 {
  border-left: 8px solid #d30b2a !important;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 100;
  line-height: 2.5;
  margin-bottom: 0;
  border: 1px solid #d30b2a;
  padding-bottom: 2px;
}
@media (max-width: 599px) {
  .highway_sekimino .ttl3 {
    font-size: 2.4rem;
  }
}
.highway_sekimino .tel_reservation h4,
.highway_sekimino .highway_contact_gifu h4 {
  padding-left: 10px;
  font-size: 2rem;
  border-left: 8px solid #c60022;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .highway_sekimino .sp_ruby {
    line-height: 1.7;
  }
}
.highway_sekimino .common_accordion .accordion_ttl {
  margin-bottom: 40px;
}
.highway_sekimino .sekimino_fare {
  margin-bottom: 40px;
}
.highway_sekimino table {
  width: 100%;
}
.highway_sekimino table,
.highway_sekimino table th,
.highway_sekimino table td {
  border: 1px solid #a9a9a9;
  border-collapse: collapse;
  height: 20px;
}
.highway_sekimino td {
  padding: 9px 20px;
}
@media (max-width: 599px) {
  .highway_sekimino td {
    padding: 9px 10px;
  }
}
.highway_sekimino .table_ttl {
  text-align: center;
  background-color: #f5f5f5;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_sekimino .table_ttl {
    font-size: 1.6rem;
  }
}
.highway_sekimino .table_ttl2 {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_sekimino .table_ttl2 {
    font-size: 1.6rem;
  }
}
.highway_sekimino .table_ttl3 {
  background-color: #f5f5f5;
  width: 32%;
}
.highway_sekimino .table_ttl_y {
  background-color: #ffffe6;
}
.highway_sekimino .table_desc {
  text-align: left;
}
.highway_sekimino .shinjuku_route_map {
  margin-bottom: 40px;
}
.highway_sekimino .route_sekimino {
  text-align: center;
  margin-bottom: 40px;
  margin-inline: 22px;
  margin-top: 70px;
}
@media (max-width: 599px) {
  .highway_sekimino .route_sekimino {
    width: 700px;
  }
}
.highway_sekimino .route_sekimino img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.highway_sekimino .btn_pdf {
  margin-bottom: 40px;
}
.highway_sekimino .btn_pdf a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 580px;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  margin: 0 auto;
}
.highway_sekimino .btn_pdf a::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 45%;
  right: 20px;
  transform: scale(0.5) translateY(-50%) rotate(-90deg);
}
@media (max-width: 599px) {
  .highway_sekimino .btn_pdf a::after {
    top: 40%;
  }
}
.highway_sekimino .btn_pdf a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.highway_sekimino .btn_pdf a:hover::after {
  content: url(../images/arrow_white_bottom.png);
}
@media (max-width: 599px) {
  .highway_sekimino .btn_pdf a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
  .highway_sekimino .btn_pdf a:last-child {
    margin-bottom: 0;
  }
}
.highway_sekimino .fare_table {
  text-align: center;
  font-feature-settings: "palt";
}
.highway_sekimino .fare_table .fare_table_return {
  display: none;
}
@media (max-width: 1200px) {
  .highway_sekimino .fare_table .fare_table_return {
    display: block;
  }
}
.highway_sekimino .w1200 {
  width: 1200px;
  margin: 1px 0;
}
.highway_sekimino .sekimino_gray_box span {
  display: block;
  font-weight: 500;
}
.highway_sekimino .equipment {
  margin-top: 30px;
}
.highway_sekimino .equipment .icon_equipment {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .highway_sekimino .equipment .icon_equipment {
    margin-right: 0;
    flex-basis: 33%;
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .highway_sekimino .equipment .icon_equipment {
    flex-basis: 50%;
  }
}
.highway_sekimino .equipment .icon_equipment img {
  width: 100%;
  max-width: 50px;
  height: auto;
  margin-right: 5px;
}
.highway_sekimino .equipment .icon_equipment span {
  color: #d30b2a;
}
@media (max-width: 599px) {
  .highway_sekimino .equipment .icon_equipment span {
    font-size: 1.4rem;
  }
}
.highway_sekimino .equipment p {
  margin-top: 20px;
}
.highway_sekimino .bus_stop {
  margin-bottom: 40px;
}
.highway_sekimino .bus_stop .g_map_l {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_sekimino .bus_stop .g_map_l {
    padding-bottom: 75%;
  }
}
.highway_sekimino .bus_stop .g_map_l iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_sekimino .bus_stop .gmap_tab_btn {
  width: 100%;
  max-width: 320px;
  border: 2px solid #d30b2a;
  border-radius: 5px;
  margin: 0 0 15px;
}
.highway_sekimino .bus_stop .gmap_tab_btn ul li {
  width: 50%;
  text-align: center;
  font-weight: 500;
  color: #d30b2a;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.3s;
}
.highway_sekimino .bus_stop .gmap_tab_btn ul li.active, .highway_sekimino .bus_stop .gmap_tab_btn ul li:hover {
  background-color: #d30b2a;
  color: #fff;
}
.highway_sekimino .reservation_detail {
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .highway_sekimino .reservation_detail:last-child {
    margin-top: 60px;
  }
}
.highway_sekimino .attention {
  color: #d30b2a;
  margin-bottom: 40px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .highway_sekimino .attention {
    text-align: left;
  }
}
.highway_sekimino .btn_web_reservation a {
  display: block;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.highway_sekimino .btn_web_reservation a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.highway_sekimino .btn_web_reservation a img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_sekimino .btn_web_reservation a img {
    aspect-ratio: 901/201;
  }
}
.highway_sekimino .btn_web_reservation p {
  font-size: 1rem;
  margin-top: 30px;
}
.highway_sekimino .tel_reservation .center_tel {
  text-align: center;
  margin-bottom: 20px;
}
.highway_sekimino .tel_reservation .center_tel img {
  margin-bottom: 10px;
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_sekimino .tel_reservation .center_tel img {
    aspect-ratio: 902/323;
  }
}
.highway_sekimino .tel_reservation .center_tel .attention {
  font-size: 1rem;
}
.highway_sekimino .tel_reservation .reservation_detail ul {
  padding-left: 18px;
}
.highway_sekimino .tel_reservation .reservation_detail ul li {
  font-weight: 300;
  position: relative;
}
.highway_sekimino .tel_reservation .reservation_detail ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.highway_sekimino .tel_reservation .reservation_detail .reservation_detail_mt {
  margin-top: 15px;
}
.highway_sekimino .tel_reservation .reservation_detail .table_guideline {
  flex-basis: 48%;
}
@media (max-width: 768px) {
  .highway_sekimino .tel_reservation .reservation_detail .table_guideline {
    margin-top: -1px;
    flex-basis: 100%;
  }
}
.highway_sekimino .tel_reservation .reservation_detail .table_guideline .table_guideline_desc {
  font-weight: 300;
}
.highway_sekimino .highway_contact_gifu {
  margin-top: 30px;
}
.highway_sekimino .highway_contact_odakyu p,
.highway_sekimino .highway_contact_gifu p {
  font-weight: 300;
}

/*高速バス_ひるがの線*/
.highway_hirugano {
  padding: 0 0 80px;
}
@media (max-width: 768px) {
  .highway_hirugano {
    padding: 0 0 10px;
  }
}
.highway_hirugano .common_caption_wrap .common_caption a {
  display: inline-block;
  border-bottom: 3px solid #e2e2e2;
  font-size: 1.4rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
.highway_hirugano .common_caption_wrap .common_caption::before {
  top: 5px;
}
.highway_hirugano h3 {
  border-left: 3px solid #d30b2a;
  padding-left: 20px;
  font-size: 36px;
  font-weight: 100;
  line-height: 1.2;
  margin-bottom: 15px;
  font-feature-settings: "palt";
}
@media (max-width: 599px) {
  .highway_hirugano h3 {
    font-size: 2.4rem;
  }
}
.highway_hirugano h3 span {
  font-size: 2.4rem;
}
@media (max-width: 599px) {
  .highway_hirugano h3 span {
    font-size: 1.6rem;
  }
}
.highway_hirugano .ttl3_2 {
  margin-bottom: 30px;
}
.highway_hirugano h4 {
  padding-left: 10px;
  font-size: 2rem;
  border-left: 8px solid #c60022;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .highway_hirugano h4 {
    font-size: 1.8rem;
  }
}
.highway_hirugano h5 {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 5px;
}
.highway_hirugano .ttl3 {
  border-left: 8px solid #d30b2a !important;
  padding-left: 20px;
  font-size: 30px;
  font-weight: 100;
  line-height: 2.5;
  margin-bottom: 0;
  border: 1px solid #d30b2a;
  padding-bottom: 2px;
}
@media (max-width: 599px) {
  .highway_hirugano .ttl3 {
    font-size: 2.4rem;
  }
}
.highway_hirugano .w1200 {
  width: 1200px;
}
@media (max-width: 599px) {
  .highway_hirugano .w600 {
    width: 660px;
  }
}
.highway_hirugano .common_accordion .accordion_ttl {
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .highway_hirugano .gray_box {
    padding: 10px;
  }
}
@media (max-width: 599px) {
  .highway_hirugano .gray_box li {
    text-indent: 0;
    padding-left: 0;
  }
}
.highway_hirugano table {
  width: 100%;
}
.highway_hirugano table,
.highway_hirugano table th,
.highway_hirugano table td {
  border: 1px solid #a9a9a9;
  border-collapse: collapse;
  height: 20px;
}
.highway_hirugano td {
  padding: 9px 20px;
}
.highway_hirugano .table_ttl {
  text-align: center;
  background-color: #f5f5f5;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_hirugano .table_ttl {
    font-size: 1.6rem;
  }
}
.highway_hirugano .table_ttl2_1 {
  text-align: left;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_hirugano .table_ttl2_1 {
    font-size: 1.6rem;
  }
}
.highway_hirugano .table_ttl2 {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .highway_hirugano .table_ttl2 {
    font-size: 1.6rem;
  }
}
.highway_hirugano .table_ttl3 {
  background-color: #f5f5f5;
  width: 32%;
}
.highway_hirugano .table_ttl_kids {
  background-color: #ffffe6;
}
.highway_hirugano .shinjuku_route_map {
  margin-bottom: 40px;
}
.highway_hirugano .route_hirugano {
  text-align: center;
  margin-bottom: 40px;
  margin-inline: 22px;
  margin-top: 70px;
}
@media (max-width: 599px) {
  .highway_hirugano .route_hirugano {
    width: 700px;
  }
}
.highway_hirugano .route_hirugano img {
  width: 100%;
  max-width: 1000px;
  height: auto;
}
.highway_hirugano .table_guideline {
  flex-basis: 48%;
}
@media (max-width: 768px) {
  .highway_hirugano .table_guideline {
    flex-basis: 100%;
  }
}
.highway_hirugano .btn_pdf {
  margin-bottom: 40px;
}
.highway_hirugano .btn_pdf a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 580px;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  margin: 0 auto;
}
.highway_hirugano .btn_pdf a::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 45%;
  right: 20px;
  transform: scale(0.5) translateY(-50%) rotate(-90deg);
}
@media (max-width: 599px) {
  .highway_hirugano .btn_pdf a::after {
    top: 40%;
  }
}
.highway_hirugano .btn_pdf a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.highway_hirugano .btn_pdf a:hover::after {
  content: url(../images/arrow_white_bottom.png);
}
@media (max-width: 599px) {
  .highway_hirugano .btn_pdf a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
  .highway_hirugano .btn_pdf a:last-child {
    margin-bottom: 0;
  }
}
.highway_hirugano .nagaragawa_ticket a span {
  display: block;
}
.highway_hirugano .nagaragawa_ticket a img {
  width: 100%;
  max-width: 700px;
  height: auto;
  aspect-ratio: 20/7;
}
.highway_hirugano .red_notice {
  color: #d30b2a;
  font-weight: 500;
  margin-bottom: 20px;
}
.highway_hirugano .equipment {
  margin-top: 30px;
}
.highway_hirugano .equipment .icon_equipment {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .highway_hirugano .equipment .icon_equipment {
    margin-right: 0;
    flex-basis: 33%;
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .highway_hirugano .equipment .icon_equipment {
    flex-basis: 50%;
  }
}
.highway_hirugano .equipment .icon_equipment img {
  width: 100%;
  max-width: 50px;
  height: auto;
  margin-right: 5px;
}
.highway_hirugano .equipment .icon_equipment span {
  color: #d30b2a;
}
@media (max-width: 599px) {
  .highway_hirugano .equipment .icon_equipment span {
    font-size: 1.4rem;
  }
}
.highway_hirugano .equipment p {
  margin-top: 20px;
}
.highway_hirugano .bus_stop {
  margin-bottom: 40px;
}
.highway_hirugano .bus_stop .g_map {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_hirugano .bus_stop .g_map {
    padding-bottom: 75%;
  }
}
.highway_hirugano .bus_stop .g_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_hirugano .bus_stop .g_map_l {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
@media (max-width: 599px) {
  .highway_hirugano .bus_stop .g_map_l {
    padding-bottom: 75%;
  }
}
.highway_hirugano .bus_stop .g_map_l iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.highway_hirugano .bus_stop .gmap_tab_btn {
  width: 100%;
  max-width: 320px;
  border: 2px solid #d30b2a;
  border-radius: 5px;
  margin: 0 0 15px;
}
.highway_hirugano .bus_stop .gmap_tab_btn ul li {
  width: 50%;
  text-align: center;
  font-weight: 500;
  color: #d30b2a;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.3s;
}
.highway_hirugano .bus_stop .gmap_tab_btn ul li.active, .highway_hirugano .bus_stop .gmap_tab_btn ul li:hover {
  background-color: #d30b2a;
  color: #fff;
}
.highway_hirugano .reservation_detail {
  margin-bottom: 40px;
}
.highway_hirugano .reservation_detail:last-child {
  margin-top: 60px;
}
.highway_hirugano .reservation_detail p {
  margin-top: 10px;
}
.highway_hirugano .attention {
  color: #d30b2a;
  margin-bottom: 40px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .highway_hirugano .attention {
    text-align: left;
  }
}
.highway_hirugano .btn_web_reservation a {
  display: block;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
}
.highway_hirugano .btn_web_reservation a:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.highway_hirugano .btn_web_reservation a img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_hirugano .btn_web_reservation a img {
    aspect-ratio: 901/201;
  }
}
.highway_hirugano .btn_web_reservation p {
  font-size: 1rem;
  margin-top: 30px;
}
@media (max-width: 599px) {
  .highway_hirugano .btn_web_reservation p {
    margin-top: 20px;
  }
}
.highway_hirugano .tel_reservation {
  padding-top: 40px;
}
@media (max-width: 599px) {
  .highway_hirugano .tel_reservation {
    padding-top: 0;
  }
}
.highway_hirugano .tel_reservation .center_tel {
  text-align: center;
  margin-bottom: 20px;
}
.highway_hirugano .tel_reservation .center_tel img {
  margin-bottom: 10px;
  width: 100%;
  max-width: 1200px;
  height: auto;
  aspect-ratio: 400/43;
}
@media (max-width: 599px) {
  .highway_hirugano .tel_reservation .center_tel img {
    aspect-ratio: 902/323;
  }
}
.highway_hirugano .tel_reservation .center_tel .attention {
  font-size: 1rem;
}
.highway_hirugano .tel_reservation .reservation_detail ul {
  padding-left: 18px;
}
.highway_hirugano .tel_reservation .reservation_detail ul li {
  font-weight: 300;
  position: relative;
}
.highway_hirugano .tel_reservation .reservation_detail ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.highway_hirugano .tel_reservation .reservation_detail .reservation_detail_mt {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .highway_hirugano .tel_reservation .reservation_detail .table_guideline {
    margin-top: -1px;
  }
}
.highway_hirugano .tel_reservation .reservation_detail .table_guideline .table_guideline_desc {
  font-weight: 300;
}
.highway_hirugano .highway_contact {
  margin-top: 30px;
}
.highway_hirugano .highway_contact p {
  font-weight: 300;
}

.fare_table {
  text-align: center;
  font-feature-settings: "palt";
  margin-bottom: 30px;
}

.fare_table_left {
  text-align: left;
}

.discounted_ticket {
  margin-bottom: 50px;
}
.discounted_ticket table {
  margin-top: 20px;
}
.discounted_ticket ol {
  padding-left: 18px;
}
.discounted_ticket ul {
  padding-left: 18px;
}
.discounted_ticket ul li {
  font-weight: 300;
  position: relative;
}
.discounted_ticket ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.discounted_ticket a {
  display: inline-block;
  border-bottom: 3px solid #e2e2e2;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
@media (max-width: 599px) {
  .discounted_ticket td {
    padding: 9px 7px;
  }
}
.discounted_ticket .table_ttl_1 {
  text-align: center;
  background-color: #f5f5f5;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 599px) {
  .discounted_ticket .table_ttl_1 {
    font-size: 1.6rem;
    width: 26%;
  }
}

/* 貸切バス */
/*貸切バス*/
.charter_mv_ttl span {
  padding-left: 3px;
}

.common_mv .common_mv_icon3 {
  margin-right: 18px;
  margin-top: -6px;
}
@media (max-width: 768px) {
  .common_mv .common_mv_icon3 {
    margin-right: 10px;
    margin-top: -8px;
  }
}
.common_mv .common_mv_icon3 img {
  width: 100%;
  max-width: 74px;
  height: auto;
  aspect-ratio: 13/10;
}
@media (max-width: 768px) {
  .common_mv .common_mv_icon3 img {
    max-width: 50px;
  }
}

.charter_page .common_nav .common_nav_bg_pt0 {
  padding-top: 0;
}

.charter_info_list {
  margin-bottom: -60px !important;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .charter_info_list {
    margin-bottom: 0;
    justify-content: space-between;
  }
}
.charter_info_list li {
  width: calc(33.3333333333% - 30px);
  background-color: #fff;
  padding: 30px;
  text-align: center;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  transition: 0.3s;
  margin: 0 15px 60px 15px;
}
.charter_info_list li:hover {
  box-shadow: none;
  transform: translateY(5px);
}
@media (max-width: 768px) {
  .charter_info_list li {
    padding: 10px;
    width: 32%;
    box-shadow: 0px 3px 10px -3px rgba(129, 129, 129, 0.6);
  }
}
@media (max-width: 599px) {
  .charter_info_list li {
    width: 48%;
    /* 4列の要素を作成 */
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;
    padding: 10px;
  }
}
.charter_info_list li img {
  width: 80% !important;
  margin: 0 auto 13px;
  display: block;
}
@media (max-width: 768px) {
  .charter_info_list li img {
    margin-bottom: 10px;
  }
}
.charter_info_list li h3 {
  font-size: 2.4rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .charter_info_list li h3 {
    font-size: 1.8rem;
  }
}
.charter_info_list li p {
  font-size: 1.8rem;
  color: #1a1a1a;
}
@media (max-width: 599px) {
  .charter_info_list li p {
    font-size: 14px;
  }
}

.common_nav_pt {
  padding: 0 0 130px;
}

/*貸切バス_ご利用案内*/
.common_mv .common_mv_icon3 {
  margin-right: 20px;
  margin-top: -6px;
}
@media (max-width: 768px) {
  .common_mv .common_mv_icon3 {
    margin-right: 10px;
  }
}
.common_mv .common_mv_icon3 img {
  width: 100%;
  max-width: 70px;
  height: auto;
  aspect-ratio: 13/10;
}
@media (max-width: 768px) {
  .common_mv .common_mv_icon3 img {
    max-width: 50px;
  }
}

.common_mv .common_mv_ttl3 h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 100;
}
@media (max-width: 768px) {
  .common_mv .common_mv_ttl3 h2 {
    font-size: 36px;
  }
}

.guide h4 {
  margin-bottom: 10px;
}
.guide .user_guide_about {
  padding: 0 0 100px;
}
@media (max-width: 768px) {
  .guide .user_guide_about {
    padding: 0 0 50px;
  }
}
.guide .user_guide_about .ttl_bottom {
  font-weight: 300;
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .guide .user_guide_about .ttl_bottom {
    margin-bottom: 50px;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: left;
    font-size: 1.6rem;
  }
}
.guide .user_guide_about .ttl2 {
  margin-bottom: 0;
}
.guide .user_guide {
  background: url(../images/bg_blue_common.jpg) center/cover no-repeat;
}
.guide .user_guide .guide_list {
  margin-bottom: 40px;
  margin-left: -10px;
}
@media (max-width: 768px) {
  .guide .user_guide .guide_list {
    flex-wrap: wrap;
  }
}
.guide .user_guide .guide_list:last-of-type {
  margin-bottom: 0;
}
.guide .user_guide .guide_list div {
  flex-basis: 33%;
  padding: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .guide .user_guide .guide_list div {
    flex-basis: 50%;
  }
}
@media (max-width: 599px) {
  .guide .user_guide .guide_list div {
    flex-basis: 100%;
    padding: 10px 0 10px 10px;
  }
}
.guide .user_guide .guide_list div p {
  background-color: #d30b2a;
  color: #fff;
  padding-block: 5px;
}
.guide .user_guide .guide_list div img {
  width: 100%;
  height: auto;
}
.guide .user_guide .guide_desc {
  margin-left: 20px;
  width: 100%;
  max-width: 930px;
}
@media (max-width: 768px) {
  .guide .user_guide .guide_desc {
    margin-left: 0;
    margin-top: 10px;
  }
}
.guide .user_guide .guide_desc p {
  font-weight: 300;
}
.guide .guide_contact {
  padding-top: 100px;
  padding-bottom: 30px;
}
@media (max-width: 599px) {
  .guide .guide_contact {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}
.guide .guide_contact p {
  font-weight: 300;
}
.guide .guide_contact .guide_shop {
  margin-bottom: 40px;
}
.guide .guide_contact .guide_shop .guide_img {
  margin-bottom: 20px;
}
.guide .guide_contact .guide_shop .guide_img img {
  width: 100%;
  max-width: 240px;
  height: auto;
  aspect-ratio: 4/3;
}
.guide .guide_contact .guide_shop address {
  font-style: normal;
  font-weight: 300;
}
@media (max-width: 768px) {
  .guide .guide_contact .guide_shop address {
    margin-left: 0;
  }
}
.guide .guide_contact .guide_shop address h5 {
  font-size: 1.8rem;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin-right: 20px;
  font-weight: 500;
}
.guide .guide_contact .guide_shop address p {
  margin: 10px 0;
}
.guide .guide_contact .guide_shop .map {
  border-bottom: 3px solid #e2e2e2;
}
.guide .guide_contact .guide_bnr {
  margin-block: 20px;
}
.guide .guide_contact .guide_bnr img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  aspect-ratio: 5/1;
}
.guide .guide_contact .travel_agency address {
  margin-top: 20px;
  font-style: normal;
  font-weight: 300;
}
.guide .guide_contact .travel_agency address h5 {
  font-size: 1.8rem;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin-right: 20px;
  font-weight: 500;
}
.guide .guide_contact .travel_agency address p {
  margin: 5px 0;
}
.guide .guide_contact .travel_agency .map {
  border-bottom: 3px solid #e2e2e2;
}
.guide .guide_contact .office_item {
  margin-top: 40px;
}
.guide .guide_contact .office_item .accordion_content_text {
  margin-bottom: 30px;
}
.guide .guide_contact .office_item .accordion_content_text p {
  font-size: 1.8rem;
}
.guide .guide_contact .office_item .accordion_content_text p a {
  border-bottom: 3px solid #e2e2e2;
  font-weight: 500;
}
.guide .guide_contact .office_item .common_table3 .table_item .table_column1 {
  width: 20%;
  align-items: center;
}
.guide .guide_contact .office_item .common_table3 .table_item .table_column1 p {
  font-weight: 500;
}
@media (max-width: 599px) {
  .guide .guide_contact .office_item .common_table3 .table_item .table_column1 p {
    display: block;
  }
}
.guide .guide_contact .office_item .common_table3 .table_item .table_column1 p span {
  font-weight: 300;
  font-size: 1.4rem;
  display: block;
}
.guide .guide_contact .office_item .common_table3 .table_item .table_column2 {
  width: 60%;
  align-items: center;
}
.guide .guide_contact .office_item .common_table3 .table_item .table_column2 a {
  display: block;
  border-bottom: 3px solid #e2e2e2;
  font-size: 1.4rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 599px) {
  .guide .guide_contact .office_item .common_table3 .table_item .table_column2 a {
    display: inline-block;
  }
}
.guide .guide_contact .office_item .common_table3 .table_item .table_column3 {
  width: 20%;
}
.guide .guide_contact .office_item .common_table3 .table_item:first-child .table_column p {
  text-align: center;
  justify-content: center;
  padding-left: 10px;
  font-weight: 500;
}
.guide .guide_contact .office_item .common_table3 .table_item .table_column p {
  text-align: left;
  padding-left: 20px;
}
@media (max-width: 599px) {
  .guide .guide_contact .office_item .common_table3 .table_item .table_column p {
    padding-left: 10px;
  }
}

/*貸切バス_安全評価*/
@media (min-width: 1201px) {
  .vw {
    font-size: 46px;
  }
}
@media (max-width: 1200px) {
  .vw {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
@media (max-width: 768px) {
  .vw {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
@media (max-width: 599px) {
  .vw {
    font-size: 2.4rem;
  }
}
.safety h4 {
  margin-bottom: 10px;
}
.safety .safety_symbol {
  background: url(../images/bg_blue_common.jpg) center/cover no-repeat;
  padding: 0 0 100px;
}
@media (max-width: 768px) {
  .safety .safety_symbol {
    padding: 0 0 50px;
  }
}
.safety .safety_symbol .symbol_img {
  background-color: #fff;
  border-radius: 85px;
  padding: 20px 0px 20px 85px;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  align-items: center;
  max-width: 1200px;
}
@media (max-width: 599px) {
  .safety .safety_symbol .symbol_img {
    padding: 20px;
    text-align: center;
    justify-content: center;
    border-radius: 40px;
  }
}
.safety .safety_symbol .symbol_img img {
  width: 100%;
  max-width: 130px;
  height: auto;
}
.safety .safety_symbol .symbol_img p {
  font-feature-settings: "palt";
  margin-left: 40px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .safety .safety_symbol .symbol_img p {
    margin-left: 0;
    flex-basis: 100%;
    margin-top: 15px;
  }
}
.safety .safety_symbol .ttl_bottom {
  text-align: left;
  font-weight: 300;
  margin-bottom: 0;
}
.safety .safety_about {
  padding: 100px 0 130px;
}
@media (max-width: 768px) {
  .safety .safety_about {
    padding: 50px 0;
  }
}
.safety .safety_about .safety_about_desc {
  padding: 0 0 30px;
  font-weight: 300;
}
.safety .safety_about a {
  display: block;
  margin: 20px auto;
  border-bottom: 3px solid #e2e2e2;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  position: relative;
  padding-right: 40px;
}
.safety .safety_about a::after {
  content: "＞";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/*貸切バス_フォーム*/
.charter_bread ul li:after {
  margin-right: 0;
}

.form_charter {
  padding: 0 0 130px;
}
@media (max-width: 768px) {
  .form_charter {
    padding: 0 0 50px;
  }
}
.form_charter .ttl2 {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .form_charter .ttl_bottom {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.form_charter .form_charter_attention .form_charter_attention_desc {
  background-color: #f5f5f5;
  padding: 30px;
  font-weight: 300;
  line-height: 1.6;
}
@media (max-width: 599px) {
  .form_charter .form_charter_attention .form_charter_attention_desc {
    padding: 15px;
  }
}
.form_charter .form_charter_attention .form_charter_attention_desc h5 {
  font-weight: 300;
  font-size: 1.6rem;
}
.form_charter .form_charter_attention .form_charter_attention_desc ul li {
  position: relative;
  padding-left: 24px;
  margin: 0 0 5px;
}
.form_charter .form_charter_attention .form_charter_attention_desc ul li::before {
  content: "■";
  left: 0;
  position: absolute;
}
.form_charter .form_charter_attention .form_charter_attention_desc ul li a {
  text-decoration: underline;
}
.form_charter .form_charter_attention .form_charter_attention_desc p {
  margin-top: 40px;
}
.form_charter .form_charter_attention .form_charter_attention_desc p a {
  display: block;
  border-bottom: 3px solid #e2e2e2;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
.form_charter .form_charter_fill {
  padding-top: 50px;
}
.form_charter .form_charter_fill dl {
  border-bottom: 1px solid #a9a9a9;
  display: flex;
  flex-wrap: wrap;
  padding-block: 30px;
}
.form_charter .form_charter_fill dl:nth-of-type(n+5) {
  border-bottom: 3px solid #a9a9a9;
}
.form_charter .form_charter_fill dl:last-of-type {
  border-bottom: none;
  padding: 0 0 30px;
}
.form_charter .form_charter_fill dl dt {
  width: 21%;
  display: inline-block;
  padding-right: 20px;
  padding-top: 28px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .form_charter .form_charter_fill dl dt {
    width: 30%;
  }
}
@media (max-width: 960px) {
  .form_charter .form_charter_fill dl dt {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .form_charter .form_charter_fill dl dt {
    width: 32%;
  }
}
@media (max-width: 599px) {
  .form_charter .form_charter_fill dl dt {
    width: 100%;
    padding-top: 10px;
  }
}
.form_charter .form_charter_fill dl dt .must {
  background-color: #d30b2a;
  color: #fff;
  width: 65px;
  height: 30px;
  display: block;
  text-align: center;
  line-height: 29px;
  float: right;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .form_charter .form_charter_fill dl dt .must {
    font-size: 1.4rem;
    width: 55px;
    height: 25px;
    line-height: 24px;
  }
}
@media (max-width: 599px) {
  .form_charter .form_charter_fill dl dt .must {
    float: none;
    display: inline-block;
    margin-left: 10px;
  }
}
.form_charter .form_charter_fill dl dd {
  width: 79%;
  display: inline-block;
  padding-block: 20px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .form_charter .form_charter_fill dl dd {
    width: 70%;
  }
}
@media (max-width: 960px) {
  .form_charter .form_charter_fill dl dd {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .form_charter .form_charter_fill dl dd {
    width: 68%;
  }
}
@media (max-width: 599px) {
  .form_charter .form_charter_fill dl dd {
    width: 100%;
    padding-block: 5px;
  }
}
.form_charter .form_charter_fill dl select {
  height: 45px;
  width: 100%;
  padding: 5px 10px;
  border-color: #acacac;
  border-radius: 3px;
}
.form_charter .form_charter_fill dl p {
  font-weight: 300;
  font-size: 1.4rem;
}
.form_charter .form_charter_fill dl input[type=text],
.form_charter .form_charter_fill dl input[type=email] {
  height: 45px;
  font-size: 1.2rem;
  padding: 5px;
  border: 1px solid #acacac;
  border-radius: 3px;
}
.form_charter .form_charter_fill dl input[type=radio] {
  display: none;
}
.form_charter .form_charter_fill dl label {
  position: relative;
  padding: 0 0 0 30px;
  display: inline-block;
}
.form_charter .form_charter_fill dl label:after,
.form_charter .form_charter_fill dl label:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}
.form_charter .form_charter_fill dl label:after {
  left: 0;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
}
.form_charter .form_charter_fill dl label:before {
  left: 5px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: #d30b2a;
  border-radius: 50%;
  opacity: 0;
}
.form_charter .form_charter_fill dl input[type=radio]:checked + label:before {
  opacity: 1;
}
.form_charter .form_charter_fill dl label:hover:after {
  border-color: #d30b2a;
}
.form_charter .form_charter_fill dl .fill_w {
  width: 100%;
}
.form_charter .form_charter_fill dl .fill_ws {
  width: 28.5%;
}
@media (max-width: 1200px) {
  .form_charter .form_charter_fill dl .fill_ws {
    width: 24%;
  }
}
@media (max-width: 960px) {
  .form_charter .form_charter_fill dl .fill_ws {
    width: 21%;
  }
}
@media (max-width: 599px) {
  .form_charter .form_charter_fill dl .fill_ws {
    width: 20%;
  }
}
.form_charter .form_charter_fill dl .fill_ws_2 {
  width: 28.5%;
}
@media (max-width: 1200px) {
  .form_charter .form_charter_fill dl .fill_ws_2 {
    width: 40%;
  }
}
.form_charter .form_charter_fill dl textarea {
  width: 100%;
  max-height: 110px;
  font-size: 1.2rem;
  padding: 5px;
  border-color: #acacac;
  border-radius: 3px;
}
.form_charter .form_charter_fill dl ul {
  margin-top: 11px;
}
.form_charter .form_charter_fill dl ul li {
  padding-bottom: 5px;
}
.form_charter .form_charter_fill dl .chk_mt {
  margin-top: 12px;
}
.form_charter .form_charter_fill button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: #ccc;
}
.form_charter .form_charter_fill button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 20px;
  background: #d30b2a;
  color: #fff;
  padding: 20px 56px;
  font-size: 50px;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  margin: 0 auto;
  display: block;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  max-width: 350px;
  font-weight: 300;
}
.form_charter .form_charter_fill button[type=submit]:hover {
  box-shadow: none;
  transform: translateY(5px);
}
@media (max-width: 599px) {
  .form_charter .form_charter_fill button[type=submit] {
    width: 70%;
    font-size: 40px;
  }
}
.form_charter .form_charter_fill button[type=reset] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 15px;
  background: #d2d2d2;
  padding: 10px 76px;
  margin: 30px auto 0;
  display: block;
  cursor: pointer;
}

.form_charter_chk {
  padding: 0 0 130px;
}
@media (max-width: 768px) {
  .form_charter_chk {
    padding: 0 0 50px;
  }
}
.form_charter_chk .ttl2 {
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .form_charter_chk .ttl_bottom {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.form_charter_chk dl {
  border-bottom: 1px solid #a9a9a9;
  display: flex;
  flex-wrap: wrap;
  padding-block: 30px;
}
.form_charter_chk dl:nth-of-type(n+5) {
  border-bottom: 3px solid #a9a9a9;
}
.form_charter_chk dl:last-of-type {
  border-bottom: none;
  padding: 0 0 30px;
}
.form_charter_chk dl dt {
  width: 21%;
  display: inline-block;
  padding-right: 20px;
  padding-top: 28px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .form_charter_chk dl dt {
    width: 30%;
  }
}
@media (max-width: 960px) {
  .form_charter_chk dl dt {
    width: 35%;
  }
}
@media (max-width: 768px) {
  .form_charter_chk dl dt {
    width: 32%;
  }
}
@media (max-width: 599px) {
  .form_charter_chk dl dt {
    width: 100%;
    padding-top: 10px;
  }
}
.form_charter_chk dl dt .must {
  background-color: #d30b2a;
  color: #fff;
  width: 65px;
  height: 30px;
  display: block;
  text-align: center;
  line-height: 29px;
  float: right;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .form_charter_chk dl dt .must {
    font-size: 1.4rem;
    width: 55px;
    height: 25px;
    line-height: 24px;
  }
}
@media (max-width: 599px) {
  .form_charter_chk dl dt .must {
    float: none;
    display: inline-block;
    margin-left: 10px;
  }
}
.form_charter_chk dl dd {
  width: 79%;
  display: inline-block;
  padding-block: 20px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .form_charter_chk dl dd {
    width: 70%;
  }
}
@media (max-width: 960px) {
  .form_charter_chk dl dd {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .form_charter_chk dl dd {
    width: 68%;
  }
}
@media (max-width: 599px) {
  .form_charter_chk dl dd {
    width: 100%;
    padding-block: 5px;
  }
}
.form_charter_chk dl select {
  height: 45px;
  width: 100%;
  padding: 5px 10px;
  border-color: #acacac;
  border-radius: 3px;
}
.form_charter_chk dl p {
  font-weight: 300;
  font-size: 1.4rem;
}
.form_charter_chk dl input[type=text],
.form_charter_chk dl input[type=email] {
  height: 45px;
  font-size: 1.2rem;
  padding: 5px;
  border: 1px solid #acacac;
  border-radius: 3px;
}
.form_charter_chk dl input[type=radio] {
  display: none;
}
.form_charter_chk dl label {
  position: relative;
  padding: 0 0 0 30px;
  display: inline-block;
}
.form_charter_chk dl label:after,
.form_charter_chk dl label:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
}
.form_charter_chk dl label:after {
  left: 0;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
}
.form_charter_chk dl label:before {
  left: 5px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: #d30b2a;
  border-radius: 50%;
  opacity: 0;
}
.form_charter_chk dl input[type=radio]:checked + label:before {
  opacity: 1;
}
.form_charter_chk dl label:hover:after {
  border-color: #d30b2a;
}
.form_charter_chk dl .fill_w {
  width: 100%;
}
.form_charter_chk dl .fill_ws {
  width: 28.5%;
}
@media (max-width: 1200px) {
  .form_charter_chk dl .fill_ws {
    width: 24%;
  }
}
@media (max-width: 960px) {
  .form_charter_chk dl .fill_ws {
    width: 21%;
  }
}
@media (max-width: 599px) {
  .form_charter_chk dl .fill_ws {
    width: 20%;
  }
}
.form_charter_chk dl textarea {
  width: 100%;
  max-height: 110px;
  font-size: 1.2rem;
  padding: 5px;
  border-color: #acacac;
  border-radius: 3px;
}
.form_charter_chk dl ul {
  margin-top: 11px;
}
.form_charter_chk dl ul li {
  padding-bottom: 5px;
}
.form_charter_chk dl .chk_mt {
  margin-top: 12px;
}
.form_charter_chk button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: #ccc;
}
.form_charter_chk button[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 20px;
  background: #d30b2a;
  color: #fff;
  padding: 20px 56px;
  font-size: 50px;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  margin: 0 auto;
  display: block;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  max-width: 350px;
  font-weight: 300;
}
.form_charter_chk button[type=submit]:hover {
  box-shadow: none;
  transform: translateY(5px);
}
@media (max-width: 599px) {
  .form_charter_chk button[type=submit] {
    width: 70%;
    font-size: 40px;
  }
}
.form_charter_chk button[type=button] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 15px;
  background: #d2d2d2;
  padding: 10px 76px;
  margin: 30px auto 0;
  display: block;
  cursor: pointer;
}
.form_charter_chk .form_charter_fill_chk {
  padding-top: 0;
}
.form_charter_chk .form_charter_fill_chk .form_charter_chk_desc {
  margin-top: 10px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .form_charter_chk .form_charter_fill_chk .form_charter_chk_desc {
    margin-top: 0;
  }
}

/*貸切バス営業所*/
.charter_office {
  margin-bottom: 130px;
}
@media (max-width: 599px) {
  .charter_office {
    margin-bottom: 50px;
  }
}
.charter_office .branch .office_item .accordion_content_text {
  margin-bottom: 30px;
}
.charter_office .branch .office_item .accordion_content_text p {
  font-size: 1.8rem;
}
.charter_office .branch .office_item .accordion_content_text p a {
  border-bottom: 3px solid #e2e2e2;
  font-weight: 500;
}
.charter_office .branch .office_item .common_table3 .table_item .table_column1 {
  width: 40%;
  align-items: center;
}
.charter_office .branch .office_item .common_table3 .table_item .table_column1 p {
  font-weight: 500;
}
@media (max-width: 599px) {
  .charter_office .branch .office_item .common_table3 .table_item .table_column1 p {
    display: block;
  }
}
.charter_office .branch .office_item .common_table3 .table_item .table_column1 p span {
  font-weight: 300;
  font-size: 1.4rem;
  display: block;
}
.charter_office .branch .office_item .common_table3 .table_item .table_column2 {
  width: 20%;
  align-items: center;
}
.charter_office .branch .office_item .common_table3 .table_item .table_column3 {
  width: 40%;
}
.charter_office .branch .office_item .common_table3 .table_item .table_column3 a {
  display: block;
  border-bottom: 3px solid #e2e2e2;
  font-size: 1.4rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 599px) {
  .charter_office .branch .office_item .common_table3 .table_item .table_column3 a {
    display: inline-block;
  }
}
.charter_office .branch .office_item .common_table3 .table_item:first-child .table_column p {
  text-align: center;
  justify-content: center;
  padding-left: 10px;
  font-weight: 500;
}
.charter_office .branch .office_item .common_table3 .table_item .table_column p {
  text-align: left;
  padding-left: 20px;
}
@media (max-width: 599px) {
  .charter_office .branch .office_item .common_table3 .table_item .table_column p {
    padding-left: 10px;
  }
}
.charter_office .user_guide_about p {
  font-weight: 300;
}
.charter_office .user_guide_about .guide_shop {
  margin-bottom: 30px;
}
.charter_office .user_guide_about .guide_shop .guide_img {
  margin-bottom: 20px;
}
.charter_office .user_guide_about .guide_shop .guide_img img {
  width: 100%;
  max-width: 240px;
  height: auto;
  aspect-ratio: 4/3;
}
.charter_office .user_guide_about .guide_shop address {
  font-style: normal;
  margin-left: 20px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .charter_office .user_guide_about .guide_shop address {
    margin-left: 0;
  }
}
.charter_office .user_guide_about .guide_shop address h5 {
  font-size: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin-right: 20px;
  font-weight: 500;
}
.charter_office .user_guide_about .guide_shop address .map {
  border-bottom: 3px solid #e2e2e2;
  font-weight: 500;
}
.charter_office .user_guide_about .guide_shop address p {
  margin: 10px 0;
}

.c_lineup_page .c_lineup_ttl {
  background-color: #d30b2a;
  background-image: url(../images/charter/bg_c_lineup.png);
  background-repeat: no-repeat;
  background-position: bottom -2px right;
  background-size: 40%;
  color: #fff;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_ttl {
    background-size: 100%;
    padding-bottom: 40px;
    margin-bottom: 50px;
  }
}
.c_lineup_page .c_lineup_ttl h2 {
  padding: 10px 0;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_ttl h2 {
    margin-bottom: 0;
    line-height: 1.3;
  }
}
.c_lineup_page .c_lineup_ttl h2 span {
  color: #fff;
}
.c_lineup_page .c_lineup_desc .c_lineup_btns {
  margin-bottom: 60px;
}
.c_lineup_page .c_lineup_desc .c_lineup_btns .c_lineup_btns_list::after {
  content: "";
  width: calc(33.3333333333% - 16px);
}
@media (max-width: 768px) {
  .c_lineup_page .c_lineup_desc .c_lineup_btns .c_lineup_btns_list::after {
    width: calc(50% - 8px);
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul {
  margin-top: 30px;
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li {
  width: calc(33.3333333333% - 16px);
  background-color: #fff;
  margin-bottom: 40px;
  box-shadow: 5px 5px 10px -1px rgba(129, 129, 129, 0.6);
  position: relative;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 500;
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #d30b2a;
  width: 5px;
}
@media (max-width: 768px) {
  .c_lineup_page .c_lineup_desc .c_lineup_btns ul li::before {
    content: none;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li:hover {
  background-color: #d30b2a;
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li:hover img:nth-of-type(2) {
  opacity: 0;
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li:hover p {
  color: #fff;
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li.active {
  background-color: #d30b2a;
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li.active img:nth-of-type(2) {
  opacity: 0;
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li.active p {
  color: #fff;
}
@media (max-width: 768px) {
  .c_lineup_page .c_lineup_desc .c_lineup_btns ul li {
    width: calc(50% - 8px);
    margin-bottom: 20px;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li .btn_bus {
  width: 100px;
  height: auto;
  flex-basis: 40%;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_btns ul li .btn_bus {
    flex-basis: 100%;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li .btn_bus img {
  width: 100%;
  height: auto;
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li .bus_name {
  flex-basis: 60%;
  max-width: 240px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px;
  position: relative;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_btns ul li .bus_name {
    flex-basis: 100%;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li .bus_name p {
  font-size: 1.4rem;
  margin-top: 46px;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_btns ul li .bus_name p {
    margin-top: 36px;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li .bus_name p span {
  font-size: 2.4rem;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_btns ul li .bus_name p span {
    font-size: 2.2rem;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul li .bus_name img {
  width: 100%;
  max-width: 210px;
  height: auto;
  position: absolute;
  top: 16px;
  display: block;
  transition: 0.2s ease-in-out;
}
@media (max-width: 1200px) {
  .c_lineup_page .c_lineup_desc .c_lineup_btns ul li .bus_name img {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_btns ul li .bus_name img {
    top: 10px;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul .emperor_btn .bus_name img {
  max-width: 170px;
  margin-bottom: -10px;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_btns ul .emperor_btn .bus_name img {
    max-width: 150px;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_btns ul .emperor2_btn .bus_name img {
  margin-bottom: -10px;
}
.c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_img,
.c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_textarea {
  width: 48%;
}
@media (max-width: 768px) {
  .c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_img,
  .c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_textarea {
    width: 100%;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_img img,
.c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_textarea img {
  width: 100%;
  height: auto;
}
.c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_textarea h2 {
  width: -moz-fit-content;
  width: fit-content;
}
.c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_textarea .spec_ttl {
  background-color: #e1e1e1;
  padding: 5px 0;
  text-align: center;
  width: 120px;
  margin-right: 10px;
  margin-bottom: 5px;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_textarea .spec_ttl {
    width: 100%;
    margin-right: 0;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_textarea .spec_desc {
  padding: 5px 0;
  margin-right: 10px;
  margin-bottom: 5px;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_textarea .spec_desc {
    text-align: center;
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_gaiyou .c_lineup_gaiyou_img {
    margin-bottom: 30px;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_seat {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .c_lineup_page .c_lineup_desc .c_lineup_seat {
    margin-top: 60px;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_seat .img_seat {
  margin-bottom: 30px;
  max-width: 640px;
  margin-inline: auto;
}
.c_lineup_page .c_lineup_desc .c_lineup_seat .img_seat img {
  width: 100%;
  height: auto;
}
.c_lineup_page .c_lineup_desc .c_lineup_seat .img_seat p {
  text-align: right;
}
.c_lineup_page .c_lineup_desc .c_lineup_seat .btn_pdf {
  margin-bottom: 30px;
}
.c_lineup_page .c_lineup_desc .c_lineup_seat .btn_pdf a {
  border: 1px solid #d30b2a;
  border-left: 5px solid #d30b2a;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 580px;
  display: block;
  color: #d30b2a;
  position: relative;
  font-weight: 500;
  margin: 0 auto;
}
.c_lineup_page .c_lineup_desc .c_lineup_seat .btn_pdf a::after {
  content: url(../images/arrow_red_bottom.png);
  position: absolute;
  top: 45%;
  right: 20px;
  transform: scale(0.5) translateY(-50%) rotate(-90deg);
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_seat .btn_pdf a::after {
    top: 40%;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_seat .btn_pdf a:hover {
  background-color: #d30b2a;
  color: #fff;
  opacity: 1;
}
.c_lineup_page .c_lineup_desc .c_lineup_seat .btn_pdf a:hover::after {
  content: url(../images/arrow_white_bottom.png);
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_seat .btn_pdf a {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding: 15px 0;
  }
  .c_lineup_page .c_lineup_desc .c_lineup_seat .btn_pdf a:last-child {
    margin-bottom: 0;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_seat hr {
  border: 1px solid #e1e1e1;
  margin-bottom: 20px;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro {
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_intro {
    margin-bottom: 50px;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_intro p {
  margin-top: 20px;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro p a {
  border-bottom: 3px solid #e2e2e2;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .inner_right {
  width: 100%;
  margin-right: 0;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .inner_right .c_lineup_intro_row {
  margin-bottom: 50px;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_textarea {
  width: 45%;
}
@media (max-width: 768px) {
  .c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_textarea {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_textarea ul {
  padding-left: 18px;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_textarea ul li {
  font-weight: 300;
  position: relative;
  padding: 2px 0;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_textarea ul li::before {
  content: "•";
  position: absolute;
  left: -18px;
  font-weight: 900;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_slide {
  width: 53%;
}
@media (max-width: 768px) {
  .c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_slide {
    width: 100%;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_slide .slick-list {
  padding: 0 10% 0 0 !important;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_slide .slick-list {
    padding: 0 8% 0 !important;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_slide li {
  margin: 0 10px;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_slide li img {
  width: 100%;
  height: auto;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec {
    width: 90%;
    margin: 0 auto;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec .c_lineup_spec_row::after {
  content: "";
  width: 31%;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec .c_lineup_spec_row::after {
    width: 100%;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec .c_lineup_spec_item {
  width: 31%;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec .c_lineup_spec_item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec .c_lineup_spec_item .c_lineup_spec_name {
  margin-bottom: 10px;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec .c_lineup_spec_item .c_lineup_spec_name p {
  font-size: 2rem;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec .c_lineup_spec_item .c_lineup_spec_name p {
    font-size: 1.8rem;
  }
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec .c_lineup_spec_item .c_lineup_spec_table_name {
  background-color: #e0e0e0;
  padding: 5px 0;
  text-align: center;
  width: 100px;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec .c_lineup_spec_item .c_lineup_spec_table_text {
  padding-left: 7px;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_spec .c_lineup_spec_table_item {
  width: 49%;
  margin-bottom: 10px;
}
.c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_img {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .c_lineup_page .c_lineup_desc .c_lineup_intro .c_lineup_intro_img {
    width: 100%;
  }
}
.c_lineup_page .c_lineup_desc .seiryu_prince .c_lineup_intro_textarea,
.c_lineup_page .c_lineup_desc .sunrise .c_lineup_intro_textarea,
.c_lineup_page .c_lineup_desc .sunrise_saloon .c_lineup_intro_textarea,
.c_lineup_page .c_lineup_desc .seiryu_saloon .c_lineup_intro_textarea,
.c_lineup_page .c_lineup_desc .seiryu_star .c_lineup_intro_textarea,
.c_lineup_page .c_lineup_desc .seiryu_star2 .c_lineup_intro_textarea,
.c_lineup_page .c_lineup_desc .seiryu_clover .c_lineup_intro_textarea {
  width: 100%;
}
.c_lineup_page .c_lineup_desc .seiryu_prince ul,
.c_lineup_page .c_lineup_desc .sunrise ul,
.c_lineup_page .c_lineup_desc .sunrise_saloon ul,
.c_lineup_page .c_lineup_desc .seiryu_saloon ul,
.c_lineup_page .c_lineup_desc .seiryu_star ul,
.c_lineup_page .c_lineup_desc .seiryu_star2 ul,
.c_lineup_page .c_lineup_desc .seiryu_clover ul {
  display: flex;
  flex-wrap: wrap;
}
.c_lineup_page .c_lineup_desc .seiryu_prince ul li,
.c_lineup_page .c_lineup_desc .sunrise ul li,
.c_lineup_page .c_lineup_desc .sunrise_saloon ul li,
.c_lineup_page .c_lineup_desc .seiryu_saloon ul li,
.c_lineup_page .c_lineup_desc .seiryu_star ul li,
.c_lineup_page .c_lineup_desc .seiryu_star2 ul li,
.c_lineup_page .c_lineup_desc .seiryu_clover ul li {
  flex-basis: 40%;
}
@media (max-width: 768px) {
  .c_lineup_page .c_lineup_desc .seiryu_prince ul li,
  .c_lineup_page .c_lineup_desc .sunrise ul li,
  .c_lineup_page .c_lineup_desc .sunrise_saloon ul li,
  .c_lineup_page .c_lineup_desc .seiryu_saloon ul li,
  .c_lineup_page .c_lineup_desc .seiryu_star ul li,
  .c_lineup_page .c_lineup_desc .seiryu_star2 ul li,
  .c_lineup_page .c_lineup_desc .seiryu_clover ul li {
    flex-basis: 100%;
  }
}
.c_lineup_page #c_lineup_anker {
  padding-top: 125px;
  margin-top: -125px;
}
@media (max-width: 1200px) {
  .c_lineup_page #c_lineup_anker {
    padding-top: 70px;
    margin-top: -70px;
  }
}

/*貸切バス_ご利用案内*/
.common_mv .common_mv_icon3 {
  margin-right: 20px;
  margin-top: -6px;
}
@media (max-width: 768px) {
  .common_mv .common_mv_icon3 {
    margin-right: 10px;
  }
}
.common_mv .common_mv_icon3 img {
  width: 100%;
  max-width: 70px;
  height: auto;
  aspect-ratio: 13/10;
}
@media (max-width: 768px) {
  .common_mv .common_mv_icon3 img {
    max-width: 50px;
  }
}

.common_mv .common_mv_ttl3 h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 100;
}
@media (max-width: 768px) {
  .common_mv .common_mv_ttl3 h2 {
    font-size: 36px;
  }
}

.safety_initiatives h4 {
  margin-bottom: 10px;
}
.safety_initiatives .safety_initiatives_about {
  padding: 0 0 100px;
}
.safety_initiatives .safety_initiatives_about .safety_wrap {
  background-color: #fff;
  border-radius: 50px;
  padding: 20px 50px 20px 50px;
  box-shadow: 5px 0px 10px -1px rgba(129, 129, 129, 0.6);
  align-items: center;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .safety_initiatives .safety_initiatives_about .safety_wrap {
    padding: 30px 33px 30px 33px;
  }
}
@media (max-width: 599px) {
  .safety_initiatives .safety_initiatives_about .safety_wrap {
    display: block;
  }
}
.safety_initiatives .safety_initiatives_about .safety_wrap div.safety_read {
  width: 83%;
  text-align: justify;
}
@media (max-width: 768px) {
  .safety_initiatives .safety_initiatives_about .safety_wrap div.safety_read {
    max-width: 75%;
  }
}
@media (max-width: 599px) {
  .safety_initiatives .safety_initiatives_about .safety_wrap div.safety_read {
    max-width: 100%;
    width: 100%;
  }
}
.safety_initiatives .safety_initiatives_about .safety_wrap div.safety_mark {
  max-width: 15%;
}
@media (max-width: 768px) {
  .safety_initiatives .safety_initiatives_about .safety_wrap div.safety_mark {
    max-width: 20%;
  }
}
@media (max-width: 599px) {
  .safety_initiatives .safety_initiatives_about .safety_wrap div.safety_mark {
    max-width: 40%;
    width: 100%;
    margin: 0 auto 15px;
  }
}
.safety_initiatives .safety_initiatives_about .safety_wrap div.safety_mark img {
  width: 100%;
}
@media (max-width: 768px) {
  .safety_initiatives .safety_initiatives_about {
    padding: 0 0 50px;
  }
}
.safety_initiatives .safety_initiatives_about .ttl_bottom {
  font-weight: 300;
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .safety_initiatives .safety_initiatives_about .ttl_bottom {
    margin-bottom: 50px;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-align: left;
    font-size: 1.6rem;
  }
}
.safety_initiatives .safety_initiatives_about .ttl_bottom2 {
  font-weight: 300;
  margin-bottom: 50px;
  text-align: left;
}
.safety_initiatives .safety_initiatives_about .ttl2 {
  margin-bottom: 50px;
}
.safety_initiatives .safety_item {
  background: url(../images/bg_blue_common.jpg) center/cover no-repeat;
}
.safety_initiatives .safety_item .safety_list {
  margin-bottom: 50px;
  margin-left: 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .safety_initiatives .safety_item .safety_list {
    flex-wrap: wrap;
  }
}
.safety_initiatives .safety_item .safety_list:last-of-type {
  margin-bottom: 0;
}
.safety_initiatives .safety_item .safety_list div {
  flex-basis: 24%;
  padding: 0;
  text-align: center;
  background: #ffffff;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .safety_initiatives .safety_item .safety_list div {
    flex-basis: 32%;
  }
}
@media (max-width: 768px) {
  .safety_initiatives .safety_item .safety_list div {
    flex-basis: 48%;
  }
}
@media (max-width: 599px) {
  .safety_initiatives .safety_item .safety_list div {
    flex-basis: 100%;
    padding: 0;
  }
}
.safety_initiatives .safety_item .safety_list div p.title {
  background-color: #d30b2a;
  color: #fff;
  padding: 5px 0 6px;
}
.safety_initiatives .safety_item .safety_list div p.read {
  background-color: #ffffff;
  color: #000;
  padding: 10px;
  text-align: justify;
}
.safety_initiatives .safety_item .safety_list div img {
  width: 100%;
  height: auto;
}
.safety_initiatives .safety_item .safety_list:after {
  content: "";
  display: block;
  width: 24%;
  height: 0;
}
.safety_initiatives .safety_item .safety_list:before {
  content: "";
  display: block;
  width: 24%;
  height: 0;
  order: 1;
}/*# sourceMappingURL=style.css.map */