@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;
}
@media screen and (max-width: 767px) {
  .spend h2 {
    font-size: 2.3rem;
  }
}


/*--------------------------------------------------------------------------
タイトル
--------------------------------------------------------------------------*/
.titleBlock {
  margin: 40px 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 .floor i {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
  margin: 16px 6px 0 0;
  padding: 5px 12px;
  border-radius: 4px;
  color: #1073E5;
  border: solid 1px #1073E5;
}

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

.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;
}

@media screen and (max-width: 767px) {
  .titleBlock {
    margin: 34px 0 24px;
  }
  .titleBlock.index {
    margin: 0 0 32px;
    height: 210px;
  }
  .titleBlock h1 {
    font-size: 2.7rem;
  }
  .titleBlock .kind {
    font-size: 1.4rem;
    margin: 0 0 8px;
  }
  .titleBlock .floor span {
    font-size: 1.0rem;
    margin: 0 4px 0 0;
    padding: 1px 8px 1px;
  }
  .titleBlock .floor i {
    font-size: 1.0rem;
    margin: 0 4px 0 0;
    padding: 1px 8px 1px;
  }

}

/*--------------------------------------------------------------------------
インデックス
--------------------------------------------------------------------------*/
/*-----------------------------------
  タブ
-----------------------------------*/
.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;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.tabList li a {
  display: block;
  padding: 0 20px 12px;
}

.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;
}

@media screen and (max-width: 767px) {
  .indexTabBlock ul {
    margin: 0 0 20px;
  }
  .tabList li span {
    font-size: 1.5rem;
    padding: 0 0 0 34px;
    background-size: 28px;
  }
  .tabList li a {
    padding: 0 0 10px;
  }
}

/*-----------------------------------
  リスト
-----------------------------------*/
.indexListBlock ul,
.alsoRecommendBlock ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 28px 24px;
}

.indexListBlock ul li,
.alsoRecommendBlock ul li {
  width: calc((100% / 3) - 16px);
  border-radius: 12px;
/*  display: none;*/
}

.indexListBlock li.show {
  display: block;
}

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

.indexListBlock ul li:hover,
.indexListBlock ul li a:hover,
.alsoRecommendBlock ul li:hover,
.alsoRecommendBlock ul li a:hover {
  border-color: #1073E5;
}

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

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

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

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

.indexListBlock ul li .floor span,
.alsoRecommendBlock 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;
}

.alsoRecommendBlock ul li .floor i {
  display: none;
}

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

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

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

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

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

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

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

.indexListBlock ul li .detail,
.alsoRecommendBlock 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;
}
@media screen and (max-width: 767px) {
  .indexListBlock ul {
    flex-direction: column;
    gap: 12px 0;
  }
  .indexListBlock ul li {
    width: 100%;
  }
  .indexListBlock ul li figure {
    height: auto;
  }
  .indexListBlock ul li .detailBox {
    padding: 16px;
  }
  .indexListBlock ul li .title {
    font-size: 1.8rem;
    margin: 5px 0 10px 0;
  }
  .indexListBlock ul li .info {
    margin-bottom: 0;
  }
  .indexListBlock ul li .info .time,
  .indexListBlock ul li .info .tel {
    background-size: 20px;
  }
  .indexListBlock ul li .info div {
    padding: 0 0 0 25px;
  }
}


/*--------------------------------------------------------------------------
外観写真・説明文章
--------------------------------------------------------------------------*/
.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.item2 .slider-thumbnail {
  width: 90%;
}

.maininfoBlock .sliderBox .slider-thumbnail ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.maininfoBlock .sliderBox .slider-thumbnail ul li {
  width: 70px !important;
  cursor: pointer;
  opacity: 0.5;
}

.maininfoBlock .sliderBox .slider-thumbnail ul li.swiper-slide-thumb-active {
  opacity: 1 !important;
}

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

.maininfoBlock .sliderBox .slider-thumbnail.w100 {
  width: 100%;
}

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

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

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

.maininfoBlock .text p a[target="_blank"] {
  background: url(../img/icon_blank.png) no-repeat right center;
  background-size: 20px;
  padding: 0 24px 0 0;
  color: #1073E5;
  text-decoration: underline;
}
.maininfoBlock .text p a[target="_blank"]:hover {
  text-decoration: none;
}

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

@media screen and (max-width: 767px) {
  .maininfoBlock .wrap {
    flex-direction: column;
    width: 100%;
    margin: 0 auto 32px;
  }
  .maininfoBlock .sliderBox {
    width: 100%;
  }
  .maininfoBlock .sliderBox.item2 .slider-thumbnail {
  width: 90%;
  }
  .maininfoBlock .sliderBox .slider-thumbnail {
  width: 90%;
  }
  .maininfoBlock .sliderBox.item2 .slider-thumbnail ul li {
    width: 25% !important;
    opacity: 0.5;
  }
  .maininfoBlock .text {
    width: calc(100% - 40px);
    margin: 40px auto 0;
  }
}

/*--------------------------------------------------------------------------
店舗情報/詳細情報
--------------------------------------------------------------------------*/
.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;
}

.detailinfoBlock table td a[target="_blank"] {
  background: url(../img/icon_blank.png) no-repeat right center;
  background-size: 20px;
  padding: 0 24px 0 0;
}

@media screen and (max-width: 767px) {
  .detailinfoBlock table tr:first-child td {
    padding-top: 0;
  }
  .detailinfoBlock table .paymentBox {
    flex-direction: column;
    gap: 0;
  }
  .detailinfoBlock table .paymentBox dt {
    width: 100%;
  }
  .detailinfoBlock table .paymentBox dd {
    width: 100%;
    padding: 4px 0 12px;
  }
}

/*--------------------------------------------------------------------------
おすすめ商品
--------------------------------------------------------------------------*/
.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 {
  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;
}

.floormapBlock h3 {
  margin: 0 0 32px;
}

@media screen and (max-width: 767px) {
  .recommendBlock {
    margin: 0 0 60px;
  }
  .recommendBlock .recommendBox {
    margin: 22px 0 32px 0;
    flex-direction: column;
    gap: 32px;
  }
  .recommendBlock .recommendBox article {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .recommendBlock .recommendBox article figure {
    width: 155px;
    height: auto;
    margin: 0 10px 12px 0;
  }
  .recommendBlock .recommendBox article .title {
    font-size: 1.8rem;
    width: calc(100% - 155px - 10px);
  }
  .recommendBlock .notesBox {
    font-size: 1.3rem;
    padding: 16px;
  }
  .floormapBlock h3 {
    margin: 0 0 20px;
  }
}

.alsoRecommendBlock h3 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .alsoRecommendBlock h3 {
    margin-bottom: 32px;
  }
}

/*--------------------------------------------------------------------------
こちらもおすすめ
--------------------------------------------------------------------------*/
main.lower .alsoRecommendBlock {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.recommendPlaceSlidebox {
  width: 100%;
}
/*
.recommendPlaceSlidebox {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 24px;
}

.recommendPlaceSlidebox ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0 24px;
}

.recommendPlaceSlidebox ul li {
  width: 384px;
  border-radius: 12px;
  background: #fff;
  display: block;
  height: auto;
}

.recommendPlaceSlidebox ul li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  transition: 0.3s;
}

.recommendPlaceSlidebox ul li a::after {
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 12px;
  border: solid 1px #9DD4EF;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  transition: 0.3s;
  pointer-events: none;
}

.recommendPlaceSlidebox ul li a:hover::after {
  border: solid 2px #1073E5;
}

.recommendPlaceSlidebox ul li figure {
  width: 100%;
  aspect-ratio: 5 / 3;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

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

.recommendPlaceSlidebox ul li a:hover figure img {
  transform: scale(1.05);
}

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

.recommendPlaceSlidebox ul li .floor {
  display: flex;
  justify-content: flex-start;
}

.recommendPlaceSlidebox ul li .floor span,
.recommendPlaceSlidebox ul li .floor i {
  font-size: 1.3rem;
  margin: 0 6px 0 0;
  padding: 1px 8px 0;
  display: inline-block;
  border-radius: 4px;
}

.recommendPlaceSlidebox ul li .floor span {
  background: #1073E5;
  border: solid 1px #1073E5;
  color: #ffffff;
}

.recommendPlaceSlidebox ul li .floor i {
  background: #ffffff;
  color: #1073E5;
  border: solid 1px #1073E5;
}

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

.recommendPlaceSlidebox ul li .title span {
  font-size: 1.4rem;
}

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

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

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

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

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

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

.recommendPlaceSlidebox ul li .detail {
  margin: auto 20px 32px;
  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;
}
*/

.recommendPlaceSlidebox .controllParts {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0;
}

.recommendPlacePagenation {
  width: initial !important;
  z-index: 2;
  text-align: center;
  padding: 6px 0;
  line-height: 12px !important;
  position: relative;
  z-index: 10;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px 0 !important;
}

.recommendPlaceSlidebox .swiper-pagination-bullet {
  background: #CFD9DE !important;
  border: solid 2px #fff !important;
  height: 10px;
  width: 10px;
  opacity: 1;
}

.recommendPlaceSlidebox .swiper-pagination-bullet-active {
  background: #1073E5 !important;
  z-index: 10 !important;
}

@media screen and (max-width: 767px) {
  .alsoRecommendBlock {
    width: 100%;
    max-width: 100%;
  display: block;
  }
  .recommendPlaceSlidebox {
    width: 100%;
    display: block;
  }
  .recommendPlaceSlidebox .slider {
  overflow: hidden;
  }
  
  .alsoRecommendBlock ul.swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: initial;
  }
  .alsoRecommendBlock ul li.swiper-slide {
    flex-shrink: 0 !important;
    height: auto;
  }
  .alsoRecommendBlock ul li figure {
    height: auto;
  }
  .alsoRecommendBlock ul li .detailBox {
    padding: 15px 15px;
  }
  .alsoRecommendBlock ul li .title {
    font-size: 1.8rem;
    margin: 5px 0 10px 0;
  }
  .alsoRecommendBlock ul li .info {
    margin-bottom: 0;
  }
  .alsoRecommendBlock ul li .info .time,
  .alsoRecommendBlock ul li .info .tel {
    background-size: 20px;
  }
  .alsoRecommendBlock ul li .info div {
    padding: 0 0 0 25px;
  }

  .recommendPlaceSlidebox .controllParts {
    bottom: 12px;
  }

  .recommendPlaceSlidebox .recommendPlacePagenation {
    padding: 0 0 !important;
  }

  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px 0 !important;
  }

  .recommendPlaceSlidebox .swiper-pagination-bullet {
    border: solid 1px #fff !important;
    height: 10px;
    width: 10px;
  }

}