@charset "utf-8";

/***************************************************************************

  空港マップ
  /floormap/

***************************************************************************/
/*--------------------------------------------------------------------------
共通
--------------------------------------------------------------------------*/
main.lower.floormap .pankuzuList {
  margin: 150px 0 0 0;
}


/*-----------------------------------
  タイトル
-----------------------------------*/
.titleBlock {
  background: url(../img/floormap/bg_title.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  height: 320px;
  display: flex;
}

.titleBlock::after {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.titleBlock h1,
.titleBlock p {
  position: relative;
  color: #ffffff !important;
  z-index: 1;
}

.titleBlock h1 {
  font-size: 4.2rem;
  line-height: 1.2;
  font-weight: bold;
}
.titleBlock p {
  margin: 16px 0 0 0;
}

/*--------------------------------------------------------------------------
タブ
--------------------------------------------------------------------------*/
.tabBlock ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #C5DFEB;
  margin: 50px 0 48px;
}

.tabList li {
  width: 20%;
  display: inline-block;
  text-align: center;
  padding: 0 20px 12px;
  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;
}

/*--------------------------------------------------------------------------
フロア図
--------------------------------------------------------------------------*/
.floorBox {
  margin: 0 0 80px;
}
.floorBlock h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #1073E5;
  margin: 0 0 20px
}
.floorBlock h2 span.floor {
  background: #1073E5;
  color: #ffffff;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

/*-----------------------------------
  旅客ビルページの各階へのボタン
-----------------------------------*/
.floorBox .btn {
  text-align: center;
  margin: 24px 0 0 0;
}
.floorBox .btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 427px;
  height: 64px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(29, 151, 232, 1) 0%, rgba(11, 108, 206, 1) 100%);
  box-shadow: 0 2px 4px rgba(59, 133, 170, 0.3);
  transition: 0.3s;
}
.floorBox .btn a span {
  display: block;
  width: 100%;
  background: url(../img/arrow_white-circle-right.png) no-repeat right 24px center;
  background-size: 20px;
}
.floorBox .btn a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/*-----------------------------------
  マップ右下の凡例
-----------------------------------*/
.floorBox .legend {
  margin: 8px 0 0 0;
}
.floorBox .legend ul {
  display: flex;
  justify-content: right;
  gap: 0 24px;
  font-size: 1.4rem;
}
.floorBox .legend ul li {
  position: relative;
  padding: 0 0 0 30px;
}
.floorBox .legend ul li::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  border-radius: 4px;
}
/*-----------------------------------
  フロアマップ 切り替え部分
-----------------------------------*/
.tabContents figure img {
  display: none;
}
.tabContents figure img.floormapActive {
  display: block;
}

/*-----------------------------------
  ピクトグラムボックス
-----------------------------------*/
.pctBox {
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  margin: 46px 0 64px;
  padding: 28px;
}
.pctBox ul {
  margin: 34px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
}
.pctBox ul li {
  width: 25%;
  font-size: 1.5rem;
  background-size: 34px;
  background-position: left center;
  background-repeat: no-repeat;
}
.pctBox ul li a {
  text-decoration: underline;
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0 0 50px;
  background-size: 34px;
  background-position: left center;
  background-repeat: no-repeat;
}
.pctBox ul li a:hover {
  text-decoration: none;
}
.pctBox ul li.information a {
  background-image: url(../img/floormap/pct-information.svg);
}
.pctBox ul li.checkin_counter a {
  background-image: url(../img/floormap/pct-checkin_counter.svg);
}
.pctBox ul li.elevator a {
  background-image: url(../img/floormap/pct-elevator.svg);
}
.pctBox ul li.escalator a {
  background-image: url(../img/floormap/pct-escalator.svg);
}
.pctBox ul li.stairs a {
  background-image: url(../img/floormap/pct-stairs.svg);
}
.pctBox ul li.restroom a {
  background-image: url(../img/floormap/pct-restroom.svg);
}
.pctBox ul li.restroom_men a {
  background-image: url(../img/floormap/pct-restroom_men.svg);
}
.pctBox ul li.restroom_women a {
  background-image: url(../img/floormap/pct-restroom_women.svg);
}
.pctBox ul li.restroom_accessible a {
  background-image: url(../img/floormap/pct-restroom_accessible.svg);
}
.pctBox ul li.changing_room a {
  background-image: url(../img/floormap/pct-changing_room.svg);
}
.pctBox ul li.aed a {
  background-image: url(../img/floormap/pct-aed.svg);
}
.pctBox ul li.cash_corner a {
  background-image: url(../img/floormap/pct-cash_corner.svg);
}
.pctBox ul li.foreign_exchange_machine a {
  background-image: url(../img/floormap/pct-foreign_exchange_machine.svg);
}
.pctBox ul li.coin_lockers a {
  background-image: url(../img/floormap/pct-coin_lockers.svg);
}
.pctBox ul li.smoking_room a {
  background-image: url(../img/floormap/pct-smoking_room.svg);
}
.pctBox ul li.police_box a {
  background-image: url(../img/floormap/pct-police_box.svg);
}
.pctBox ul li.postal_mailbox a {
  background-image: url(../img/floormap/pct-postal_mailbox.svg);
}
.pctBox ul li.work_booth a {
  background-image: url(../img/floormap/pct-work_booth.svg);
}
.pctBox ul li.bus_stop a {
  background-image: url(../img/floormap/pct-bus_stop.svg);
}
.pctBox ul li.taxi_stand a {
  background-image: url(../img/floormap/pct-taxi_stand.svg);
}
.pctBox ul li.rental_car_counter a {
  background-image: url(../img/floormap/pct-rental_car_counter.svg);
}
.pctBox ul li.bicycle_station a {
  background-image: url(../img/floormap/pct-bicycle_station.svg);
}
.pctBox ul li.nursing_room a {
  background-image: url(../img/floormap/pct-nursing_room.svg);
}
.pctBox ul li.calm_cool_down a {
  background-image: url(../img/floormap/pct-calm_cool_down.svg);
}
.pctBox ul li.prayer_room a {
  background-image: url(../img/floormap/pct-prayer_room.svg);
}
.pctBox ul li.baggage_inspection a {
  background-image: url(../img/floormap/pct-baggage_inspection.svg);
}

/*-----------------------------------
  ショップ・施設一覧
-----------------------------------*/
.placeBox h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 48px 0 24px;
}
.placeBox ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.placeBox ul li {
  width: calc((100% / 3) - 16px);
}
.placeBox ul li a {
  height: 70px;
  padding: 0 42px 0 63px;
  border: 2px solid #9DC8FB;
  border-radius: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  background: url(../img/arrow_blue-circle-right.png) no-repeat right 18px center;
  background-size: 20px;
  transition: 0.3s;
  position: relative;
  line-height: 1.3;
}
.placeBox ul li a:hover {
  border: 2px solid #1073E5;
  transition: 0.3s;
}
.placeBox ul li a span {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 9px;
}
.placeBox ul.eat li a span,
.floorBox .legend ul li.eat::before {
  background: #FFE044;
}
.placeBox ul.buy li a span,
.floorBox .legend ul li.buy::before {
  background: #A4D1FE;
}
.placeBox ul.enjoy li a span,
.floorBox .legend ul li.enjoy::before {
  background: #FFA5C4;
}


/*--------------------------------------------------------------------------
マップPDF版
--------------------------------------------------------------------------*/
.downloadBox {
  background: #FAFAFA;
  border-radius: 8px;
}
.downloadBox dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
}
.downloadBox dl dt {
  font-size: 1.8rem;
  font-weight: bold;
}
.downloadBox dl dd ul {
  display: flex;
  gap: 0 8px;
}
.downloadBox dl dd ul li a {
  display: block;
  border: 2px solid #9DC8FB;
  background: #ffffff url(../img/arrow_blue-circle-right.png) no-repeat right 15px center;
  background-size: 13px;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: bold;
  width: 160px;
  height: 56px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  transition: 0.3s;
}
.downloadBox dl dd ul li a:hover {
  border: 2px solid #1073E5;
  transition: 0.3s;
}
