@charset "utf-8";

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

  空港で過ごす
  /spend/

***************************************************************************/
.spend h2 {
  font-size: 2.6rem;
  margin: 0 0 10px;
  padding: 0 0 10px;
  font-weight: bold;
  border-bottom: 1px solid #1073E5;
}

/*--------------------------------------------------------------------------
タイトル
--------------------------------------------------------------------------*/
.titleBlock {
  margin: 0 0 50px;
  font-weight: bold;
}

.titleBlock h1 {
  font-size: 4.2rem;
  line-height: 1.2;
  color: #1073E5;
  font-weight: bold;
}

.titleBlock .kind {
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.titleBlock .floor span {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
  margin: 16px 6px 0 0;
  padding: 6px 12px;
  border-radius: 4px;
  background: #1073E5;
  color: #ffffff;
}

.titleBlock.index {
  background: url(../img/spend/bg_title.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  height: 320px;
  display: flex;
}

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

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

.titleBlock.index p {
  margin: 16px 0 0 0;
}

/*--------------------------------------------------------------------------
インデックス
--------------------------------------------------------------------------*/
/*-----------------------------------
  タブ
-----------------------------------*/
.indexTabBlock ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #C5DFEB;
  margin: 0 0 50px;
}

.tabList li {
  width: 33.33%;
  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 0 0 49px;
  transition: 0.3s;
  display: inline-block;
  color: #333;
  line-height: 2;
}

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

.tabList li#eat span {
  background: url(../img/spend/eat_black_icn.svg) no-repeat left center;
  background-size: 32px auto !important;
}

.tabList li#buy span {
  background: url(../img/spend/buy_black_icn.svg) no-repeat left center;
  background-size: 28px auto !important;
}

.tabList li#enjoy span {
  background: url(../img/spend/enjoy_black_icn.svg) no-repeat left center;
  background-size: 26px auto !important;
}

.tabList li#eat.active span,
.tabList li#eat:hover span {
  background: url(../img/spend/eat_blue_icn.svg) no-repeat left center;
}

.tabList li#buy.active span,
.tabList li#buy:hover span {
  background: url(../img/spend/buy_blue_icn.svg) no-repeat left center;
}

.tabList li#enjoy.active span,
.tabList li#enjoy:hover span {
  background: url(../img/spend/enjoy_blue_icn.svg) no-repeat left center;
}

.tabList li::after {
  content: '';
  width: 0;
  height: 0;
  background: #0091D7;
  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;
}
/*-----------------------------------
  リスト
-----------------------------------*/
.indexListBlock ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 28px 24px;
}

.indexListBlock ul li {
  width: calc((100% / 3) - 16px);
  border-radius: 12px;
  border: 1px solid #ffffff;
  display: none;
}

.indexListBlock li.show {
  display: block;
}

.indexListBlock ul li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border: 1px solid #9DD4EF;
  box-sizing: border-box;
  border-radius: 12px;
}

.indexListBlock ul li:hover,
.indexListBlock ul li a:hover {
  border: 1px solid #1073E5;
}

.indexListBlock ul li figure {
  width: 100%;
  height: 250px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

.indexListBlock ul li figure img {
  object-fit: cover;
  transition: 0.3s;
}

.indexListBlock ul li a:hover figure img {
  transform: scale(1.05);
  transition: 0.3s;
}

.indexListBlock ul li .detailBox {
  padding: 18px 20px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}

.indexListBlock ul li .floor span {
  font-size: 1.3rem;
  margin: 0 6px 0 0;
  padding: 0 8px 2px;
  display: inline-block;
  border-radius: 4px;
  background: #1073E5;
  color: #ffffff;
}

.indexListBlock ul li .title {
  font-size: 2rem;
  color: #1073E5;
  margin: 5px 0 20px 0;
}

.indexListBlock ul li .info {
  display: flex;
  margin-bottom: 20px;
}

.indexListBlock ul li .info div {
  width: 50%;
  padding: 0 0 0 30px;
}

.indexListBlock ul li .info.row {
  flex-direction: column;
  gap: 10px 0;
}

.indexListBlock ul li .info.row div {
  width: 100%;
}

.indexListBlock ul li .info .time {
  background: url(../img/icon_time-gray.png) no-repeat left center;
  background-size: 24px;
}

.indexListBlock ul li .info .tel {
  background: url(../img/icon_tel-gray.png) no-repeat left center;
  background-size: 24px;
}

.indexListBlock ul li .detail {
  margin: auto 20px 20px;
  font-weight: bold;
  padding: 0 30px 0 0;
  text-align: right;
  color: #1073E5;
  background: url(../img/arrow_blue-circle-right.png) no-repeat right center;
  background-size: 20px;
}

/*--------------------------------------------------------------------------
外観写真・説明文章
--------------------------------------------------------------------------*/
.maininfoBlock .wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 60px;
}

.maininfoBlock .sliderBox {
  width: 680px;
}

.maininfoBlock .sliderBox .slider {
  margin: 0 0 6px;
}

.maininfoBlock .sliderBox .slider img {
  width: 100%;
  height: auto;
}

.maininfoBlock .sliderBox .slider-thumbnail {
  width: calc(100% / 3);
  cursor: pointer;
}

.maininfoBlock .sliderBox.spendSlider07 .slider-thumbnail {
  width: 60%;
}

.maininfoBlock .text {
  width: calc(100% - 680px - 40px);
}

.maininfoBlock .text p + p {
  margin-top: 2rem;
}

.maininfoBlock + .floormapBlock {
  margin-top: 100px;
}

/*--------------------------------------------------------------------------
店舗情報/詳細情報
--------------------------------------------------------------------------*/
.detailinfoBlock {
  margin-bottom: 40px;
}

.detailinfoBlock table tr:first-child th,
.detailinfoBlock table tr:first-child td {
  padding-top: 10px;
}

.detailinfoBlock table .paymentBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.detailinfoBlock table .paymentBox dt {
  width: 10em;
  font-weight: bold;
}

.detailinfoBlock table .paymentBox dd {
  width: calc(100% - 10em - 10px);
}

.detailinfoBlock + .floormapBlock {
  margin-top: 100px;
}


/*--------------------------------------------------------------------------
おすすめ商品
--------------------------------------------------------------------------*/
.recommendBlock {
  margin: 0 0 80px;
}

.recommendBlock .recommendBox {
  margin: 22px 0 80px 0;
  display: flex;
  justify-content: left;
  gap: 36px;
}

.recommendBlock .textBox p {
  margin: 30px 0;
}

.recommendBlock .recommendBox article {
  width: calc(100% / 3);
}

.recommendBlock .recommendBox article figure {
  background: #F5F5F5;
  height: 253px;
  margin: 0 0 20px;
}

.recommendBlock .recommendBox article figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.recommendBlock .recommendBox article .title {
  font-size: 2rem;
  margin: 0 0 10px;
  font-weight: bold;
  color: #1073E5;
}

.recommendBlock .recommendBox article .price {
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.recommendBlock .notesBox {
  border-radius: 6px;
  background: #F9F9F9;
  font-size: 1.4rem;
  padding: 20px;
}
