@charset "utf-8";

/* フライトブロック */
.ptlFlightBlock {
    background-color: #EBF6FF;
}
.ptlFlightBlock .wrap {
    padding: 48px 0;
}
.ptlFlightBlock .toFlightBox {
    width: 100%;
    text-align: center
}
.ptlFlightBlock .toFlightBox a {
    width: 384px;
    border-radius: 10px;
    background: url(../img/arrow_white-circle-right.png) no-repeat right 14px center, linear-gradient(113deg, rgba(29, 151, 232, 1) 0%, rgba(11, 108, 206, 1) 100%) no-repeat;
    background-size: 24px auto, 100%;
    color: #fff;
    display: inline-block;
    line-height: 1.6;
    font-weight: bold;
    padding: 18px 30px;
    box-shadow: 0 3px 8px rgba(20, 99, 138, 0.3);
    transition: 0.3s;
}
.ptlFlightBlock .toFlightBox a:hover {
    opacity: 0.7;
}
@media screen and (max-width: 767px) {
    .ptlFlightBlock .wrap {
        padding: 32px 15px;
    }
    .ptlFlightBlock .toFlightBox a {
        max-width: 270px;
        width: 90%;
        display: inline-block;
        font-size: 1.8rem;
        line-height: 1.26;
        padding: 18px 30px;
        box-shadow: 0 2px 4px rgba(20, 99, 138, 0.3);
        background: url(../img/arrow_white-circle-right.png) no-repeat right 14px center, linear-gradient(113deg, rgba(29, 151, 232, 1) 0%, rgba(11, 108, 206, 1) 100%) no-repeat;
        background-size: 18px auto, 100%;
    }
}

/* 出発・到着便タブ */
.tabBox ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #C5DFEB;
  margin: 0;
}

.tabList li {
  width: 131px;
  display: inline-block;
  text-align: center;
  padding: 0 0 12px 0;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.tabList li span {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0;
  transition: 0.3s;
  display: inline-block;
  color: #333;
  line-height: 2;
}

.tabList li:hover span,
.tabList li.active span {
  color: #1073E5;
}

.tabList li::after {
  content: '';
  width: 0;
  height: 0;
  background: #1073E5;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -1px;
  transition: 0.3s;
}

.tabList li.active::after,
.tabList li:hover::after {
  width: 100%;
  height: 2px;
}

.tabList li.active {
  pointer-events: none;
}

.tabList:has(li:hover) li.active::after {
  width: 0;
  height: 0;
}
@media screen and (max-width: 767px) {
    .tabList li {
        width: 50%;
    }
    .tabList li span {
        font-size: 1.5rem;
    }
}

/* フライトリスト */
.flightListBox table {
  width: 100%;
  margin: auto;
  display: none;
  margin-bottom: 18px;
  box-sizing: border-box;
}
.flightListBox table.show {
  width: calc(100% - 48px);
  margin: auto;
  display: block;
}
.flightListBox table tr {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 0 26px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items:stretch;
}
.flightListBox table tr td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.flightListBox table tr td:last-child {
  width: 14%;
  padding-top: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.flightListBox table tr td {
  font-family: 'Roboto',self;
  padding: 0 12px 0 0;
  display: table-cell;
}
.flightListBox table tr td:nth-child(1) {
    width: 11%;
    padding-left: 20px;
}
.flightListBox table tr td:nth-child(2) {
    width: 14%;
}
.flightListBox table tr td:nth-child(3) {
    width: 14%;
}
.flightListBox table tr td:nth-child(4) {
    width: 14%;
}
.flightListBox table tr td:nth-child(1),
.flightListBox table tr td:nth-child(2),
.flightListBox table tr td:nth-child(3),
.flightListBox table tr td:nth-child(4) {
  font-size: 2rem;
  font-weight: bold;
}
.flightListBox table tr td:nth-child(5) {
  width: 32%;
  padding-left: 28px;
  font-size: 1.6rem;
  font-weight: 400;
}
.flightListBox table tr td span {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #929292;
}
.flightListBox table tr td:nth-child(5) span {
    display: inline-block;
    margin-right: 10px;
}
.flightListBox table tr td s {
    display: block;
    color: #aaaaaa;
}
.flightListBox table tr td img {
  width: auto;
  height: 33px;
}
.flightListBox table tr td.line {
  border-left: 1px solid #DEEAF0;
}
.flightListBox table tr td:last-child a {
  font-size: 1.5rem;
  font-weight: 500;
  padding: 6px 32px 4px 18px;
  display: inline-block;
  background: #F4F4F4 url(../img/icon_blank.png) no-repeat right 13px center;
  background-size: 20px;
  border-radius: 20px;
}
.flightListBox table tr td:last-child a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
    .flightListBox {
      margin-top: 0;
    }
    .flightListBox table tr td s {
        display: inline-block;
        margin: 0 6px;
    }
    .flightListBox table tr {
        flex-wrap: wrap;
        padding: 22px 16px 12px;
    }
    .flightListBox table tr td {
        padding: 0 4px;
    }
    .flightListBox table tr td:nth-child(1) {
        padding-left: 4px;
    }
    .flightListBox table tr td:nth-child(1),
    .flightListBox table tr td:nth-child(2),
    .flightListBox table tr td:nth-child(3),
    .flightListBox table tr td:nth-child(4) {
        box-sizing: border-box;
        padding-bottom: 10px;
    }
    .flightListBox table tr td:nth-child(1),
    .flightListBox table tr td:nth-child(2),
    .flightListBox table tr td:nth-child(3),
    .flightListBox table tr td:nth-child(4) {
        width: 50%;
        font-size: 1.9rem;
    }
    .flightListBox table tr td:nth-child(5),
    .flightListBox table tr td:last-child {
        width: 100%;
    }
    .flightListBox table tr td:nth-child(5) {
        font-size: 1.5rem;
    }
    .flightListBox table tr td:nth-child(5) span {
        display: inline-block;
        margin-right: 10px;
    }
    .flightListBox table tr td:nth-child(5) {
        padding-left: 4px;
        font-weight: bold;
    }
    .flightListBox table tr td:last-child {
        text-align: right;
        display: block;
        border: none;
    }
    .flightListBox table tr td:last-child a {
        font-size: 1.3rem;
        padding: 9px 36px 6px 22px;
    }
    .flightListBox table tr td.line {
        border: none;
        border-top: 1px solid #DEEAF0;
        padding-top: 15px;
    }
    .flightListBox table tr td span {
        font-size: 1.2rem;
    }
}
/* フライト例外 */
.flightListBox table tr td.flightNone {
    text-align: center;
    width: 100%;
    padding-top: 0;
    font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
    .flightListBox table tr td.flightNone {
        font-size: 1.5rem;
        padding-right: 4px;
        padding-bottom: 8px;
    }
}
/* 運行状況・Web予約 */
.statusBox {
  margin: 64px 0 0 0;
  padding: 40px 32px 22px;
  background: #FAFAFA;
  border-radius: 2px;
  font-weight: bold;
}
.statusBox h3 {
  margin-bottom: 32px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
.statusBox div {
  padding: 18px;
  margin-bottom: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
}
.statusBox div figure {
  padding: 10px 32px 10px 0;
  border-right: 1px solid #DEEAF0;
}
.statusBox div figure img {
  width: 164px;
}
.statusBox div h4 {
  padding: 0 32px;
  font-size: 1.8rem;
  font-weight: bold;
}
.statusBox div ul {
  display: flex;
  gap: 0 8px;
  margin-left: auto;
}
.statusBox div ul li a {
  width: 200px;
  padding: 12px 0 14px 0;
  text-align: center;
  display: block;
  border: 1px solid #B9CED8;
  border-radius: 6px;
  background: url(../img/icon_blank.png) no-repeat right 8px center;
  background-size: 20px;
  transition: 0.3s;
}
.statusBox div ul li a:hover {
  border-color: #0091D7;
  transition: 0.3s;
}

/* 現在運休 */
.suspendBox {
  background: #F5F5F5;
  border-radius: 2px;
  text-align: center;
  padding: 44px 20px;
}
.suspendBox p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #D70000;
}

/*--------------------------------------------------------------------------
出発・到着の流れ
--------------------------------------------------------------------------*/
nav.lwrCommonNaviInpage.col4 ul {
  gap: 0 12px;
}
nav.lwrCommonNaviInpage.col4 ul li {
  width: calc((100% / 4) - 10px);
}

.flowBlock h2 {
  margin: 80px 0 48px;
  font-size: 3rem;
  font-weight: bold;
}
.flowBlock h3 {
  margin: 64px 0 32px;
  padding: 0 0 12px;
  font-size: 2.6rem;
  font-weight: bold;
  border-bottom: 1px solid #1073E5;
}
.flowBlock h2 + h3 {
  margin-top: 48px;
}
.flowBlock ul.listDot {
  margin-bottom: 14px;
}
.flowBlock .floormap {
  margin: 40px 0;
}

.flowBlock .columnRimg {
  display: flex;
  justify-content: space-between;
  margin: 0 0 32px;
}
.flowBlock .columnRimg .img {
  width: 300px;
}
.flowBlock .columnRimg .txt {
  width: calc(100% - 300px - 60px);
}



/*--------------------------------------------------------------------------
海外へ渡航される皆様へ
--------------------------------------------------------------------------*/
.abroadBlock h2 {
  margin: 80px 0 32px;
  font-size: 3rem;
  font-weight: bold;
}
.abroadBlock p {
  margin: 32px 0 10px;
}
main.flight ul.listDot a {
  text-decoration: underline;
  color: #1073E5;
}
main.flight ul.listDot a:hover {
  text-decoration: none;
}
main.flight a[target="_blank"] {
  background: url(../img/icon_blank.png) no-repeat right center;
  background-size: 20px;
  padding-right: 28px;
}


/*--------------------------------------------------------------------------
満空
--------------------------------------------------------------------------*/
.ptlAccessNewsBlock .ptlParkingBox .ptlParkingStatusBox {
  margin-bottom: 17px;
}
.pMankuu_h_update {
  text-align: center;
  margin-bottom: 25px;
}
.pMankuu_h_update a {
  color: #1073E5;
  font-weight: bold;
  position: relative;
  padding-left: 27px;
}
.pMankuu_h_update a::before {
  content: "";
  box-sizing: border-box;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 1px;
  left: 0;
  background-image: url(../img/top/mankuu.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.pMankuu_h_update a:hover {
  opacity: 0.7;
}

/* タイムテーブル用 */
.timetableBox {
    border-radius: 12px;
    background: #F5FBFE;
    padding: 24px 12px 12px 12px;
}
.timetableBox .tabList li {
    width: 50%;
}
#depRefine,
#arrRefine {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}
.timetableBox input[type="submit"]:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #depRefine,
  #arrRefine {
    display: block;
    flex-wrap: wrap;
  }
}
#departure a,
#arrival a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
/* フライト情報絞り込み機能 */
.timetableAction {
  background-color: #C0E2F6;
  margin-bottom: 28px;
  padding: 16px 144px 16px 24px;
  position: relative;
}
.timetableAction select {
  padding: 18px 14px;
  width: 220px;
}
.timetableAction .label-narr,
.timetableAction .label-sort {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333333;
  padding-left: 36px;
  position: relative;
}
.timetableAction .label-sort {
  margin-left: 15px;
}
.timetableAction .label-narr::before,
.timetableAction .label-sort::before {
  content: "";
  width: 38px;
  height: 38px;
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  background-position: center center;
  background-size: contain;
}
.timetableAction .label-narr::before {
  background-image: url(../img/flight/icon_narr.png);
}
.timetableAction .label-sort::before {
  background-image: url(../img/flight/icon_sort.png);  
}
.timetableAction input[type="submit"] {
  background-color: transparent;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: underline;
  border: none;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .timetableAction input[type="submit"] {
    position: absolute;
    top: 24px;
    right: 24px;
  }
  .timetableActionLabel {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .timetableActionLabel {
    background-color: #C0E2F6;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 18px 15px;
    position: relative;
  }
  .timetableActionLabel::after {
      content: "";
      width: 24px;
      height: 24px;
      position: absolute;
      transform: rotate(-180deg);
      right: 13px;
      top: 15px;
      background: url(../img/arrow_blue_up.svg) 0% 0% / contain;
      transition: 0.1s;
  }
  .timetableActionLabel.active::after {
    transform: rotate(0deg);
  }
  .timetableAction .label-narr,
  .timetableAction .label-sort {
    font-size: 1.5rem;
    padding-left: 42px;
  }
  .timetableAction .label-sort {
    margin-left: 0;
    margin-top: 15px;
  }
  .timetableAction .label-narr::before,
  .timetableAction .label-sort::before {
    top: -6px;
  }
  .timetableAction form {
    width: 100%;
  }
  .timetableAction select {
    display: block;
    padding: 18px 14px;
    width: 100%;
  }
  .timetableAction {
    padding: 20px 15px;
    display: none;
  }
  .timetableAction.active {
    display: block;
  }
  .timetableAction input[type="submit"] {
    position: relative;
  }
  .timetableAction .btn-reset {
    text-align: right;
    margin-top: 15px;
  }
}
/* TOPフライト情報一覧ボタン */
.toFlightBox .btn-departure,
.toFlightBox .btn-arrival {
  display: none !important;
}
.toFlightBox .btn-departure.active,
.toFlightBox .btn-arrival.active {
  display: inline-block !important;
}
/* 色合い変更ブルー */
body.blue .timetableBox,
body.blue select,
body.blue .ptlFlightBlock,
body.blue .timetableAction {
  background-color: #0000ff;
  color: #ffff00;
}
body.blue .timetableActionLabel {
  background-color: #0000ff;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-top: none;
}
body.blue .timetableActionLabel.active {
  border-bottom: none;
}
body.blue .flightListBox table tr td s,
body.blue .timetableAction .label-narr,
body.blue .timetableAction .label-sort {
  color: #ffff00;
}
body.blue select,
body.blue .tabBox ul {
  border-color: #ffff00;
}
body.blue input[type="submit"] {
  background-color: #ffffff;
  color: #0000ff;
}
body.blue .timetableAction {
    border: 1px solid #ffff00;
    border-top: none;
}
body.blue .timetableAction.active {
  border-color: #ffffff;
}
body.blue .timetableAction .label-narr::before {
  background-image: url(../img/flight/icon_narr-yellow.png);
}
body.blue .timetableAction .label-sort::before {
  background-image: url(../img/flight/icon_sort-yellow.png);  
}
body.blue .timetableActionLabel::after {
  background-image: url(../img/arrow_white_up.svg);  
}
body.blue .ptlFlightBlock .toFlightBox a {
  background-image: url(../img/arrow_white-circle-right.png);
  background-color: #0000ff;
  color: #ffffff;
  border: 1px solid #ffffff;
}
body.blue .pMankuu_h_update a::before {
  background-image: url(../img/top/mankuu-white.png);
}
/* 色合い変更イエロー */
body.yellow .timetableBox,
body.yellow select,
body.yellow .ptlFlightBlock,
body.yellow .timetableAction {
  background-color: #ffff00;
  color: #000000;
}
body.yellow .timetableActionLabel {
  background-color: #ffff00;
  color: #0000ff;
  border: 1px solid #0000ff;
  border-top: none;
}
body.yellow .timetableActionLabel.active {
  border-bottom: none;
}
body.yellow .flightListBox table tr td s,
body.yellow .timetableAction .label-narr,
body.yellow .timetableAction .label-sort {
  color: #000000;
}
body.yellow select,
body.yellow .tabBox ul {
  border-color: #000000;
}
body.yellow input[type="submit"] {
  background-color: #0000ff;
  color: #ffff00;
}
body.yellow .timetableAction {
    border: 1px solid #000000;
    border-top: none;
}
body.yellow .timetableAction.active {
  border-color: #0000ff;
}
body.yellow .timetableAction .label-narr::before {
  background-image: url(../img/flight/icon_narr-black.png);
}
body.yellow .timetableAction .label-sort::before {
  background-image: url(../img/flight/icon_sort-black.png);  
}
body.yellow .timetableActionLabel::after {
  background-image: url(../img/arrow_dblue_up.svg);  
}
body.yellow .ptlFlightBlock .toFlightBox a {
  background-image: url(../img/arrow_dblue-circle-right.png);
  background-color: #ffff00;
  color: #0000ff;
  border: 1px solid #0000ff;
}
body.yellow .pMankuu_h_update a::before {
  background-image: url(../img/top/mankuu-blue.png);
}
/* 色合い変更ブラック */
body.black .timetableBox,
body.black select,
body.black .ptlFlightBlock,
body.black .timetableAction,
body.black .timetableActionLabel {
  background-color: #000000;
  color: #ffffff;
}
body.black .timetableActionLabel {
  background-color: #000000;
  color: #ffff00;
  border: 1px solid #ffff00;
  border-top: none;
}
body.black .timetableActionLabel.active {
  border-bottom: none;
}
body.black .flightListBox table tr td s,
body.black .timetableAction .label-narr,
body.black .timetableAction .label-sort {
  color: #ffffff;
}
body.black select,
body.black .tabBox ul {
  border-color: #ffffff;
}
body.black input[type="submit"] {
  background-color: #ffff00;
  color: #000000;
}
body.black .timetableAction {
    border: 1px solid #ffffff;
    border-top: none;
}
body.black .timetableAction.active {
  border-color: #ffff00;
}
body.black .timetableAction .label-narr::before {
  background-image: url(../img/flight/icon_narr-white.png);
}
body.black .timetableAction .label-sort::before {
  background-image: url(../img/flight/icon_sort-white.png);  
}
body.black .timetableActionLabel::after {
  background-image: url(../img/arrow_yellow_up.svg);  
}
body.black .ptlFlightBlock .toFlightBox a {
  background-image: url(../img/arrow_yellow-circle-right.png);
  background-color: #000000;
  color: #ffff00;
  border: 1px solid #ffff00;
}
body.black .pMankuu_h_update a::before {
  background-image: url(../img/top/mankuu-yellow.png);
}