/*
********************************************************************************
■ 福岡タワーの楽しみ方
********************************************************************************
*/
html {
  overflow-x: hidden;
}

#main.enjoy {
  background: url("../img/common/deco-triangle-02.png") no-repeat top 60px left -8%;
  background-size: 18%;
}

@media print, screen and (max-width: 1000px) {
  #main.enjoy {
    background-size: 35%;
  }
}

/*
--------------------------------------------------
ページタイトル
--------------------------------------------------
*/
#main #page-header .title {
  position: relative;
}

#main #page-header .title::before {
  content: '';
  display: inline-block;
  width: 125px;
  height: 24px;
  background: url("../img/enjoy/page-title-en.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(-1.2em + -28px);
  left: 50%;
  margin-left: -62.5px;
}

#main #page-header .title::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url("../img/common/icon_sightseeing_nav.png") no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
  position: absolute;
  top: -1.2em;
  left: 50%;
  margin-left: -25px;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main #page-header .title {
    font-size: 30px;
    font-size: 3.0rem;
    letter-spacing: 0;
    padding: 0 0 1em 40px;
  }

  #main #page-header .title::before {
    width: 92px;
    height: 17.7px;
    top: -0.8em;
    left: 50%;
    margin-left: -46px;
  }

  #main #page-header .title::after {
    width: 36px;
    height: 36px;
    top: -5px;
    left: 0;
    margin-left: 0;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/


/*
--------------------------------------------------
FV（コラージュ画像）
--------------------------------------------------
*/
#main.enjoy .enjoy-fv {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  padding-top: 40px;
}

#main.enjoy .enjoy-fv .img-dev-pc {
  width: 1920px;
  max-width: none;
  height: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

#main.enjoy .enjoy-fv .img-dev-sp {
  width: 100%;
  height: auto;
}
/*----------------- ▲ ▲ -----------------*/


/*
--------------------------------------------------
リード文
--------------------------------------------------
*/
#main.enjoy .enjoy-list-section {
  padding: 70px 0;
}

#main.enjoy .enjoy-list-section .lead {
  text-align: center;
  color: #00bef0;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 70px;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main.enjoy .enjoy-list-section {
    padding: 30px 0 40px;
  }

  #main.enjoy .enjoy-list-section .lead {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 4%;
    margin-bottom: 24px;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/


/*
--------------------------------------------------
楽しみ方カード一覧
--------------------------------------------------
*/
#main.enjoy .enjoy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 30px;
  margin-bottom: 60px;
}

#main.enjoy .enjoy-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f5fdff;
  box-shadow: 0 1px 15px rgba(98, 150, 163, 0.3);
}

#main.enjoy .enjoy-card .card-title {
  background: #f5fdff;
  border-left: 6px solid #00bef0;
  color: #000;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0.7em 1em;
}

#main.enjoy .enjoy-card .card-image {
  padding: 20px 20px 0;
}

#main.enjoy .enjoy-card .card-image img {
  display: block;
  width: 100%;
}

#main.enjoy .enjoy-card .card-text {
  flex: 1;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.8;
  color: #333;
  padding: 20px 20px 0;
}

#main.enjoy .enjoy-card .card-text .hashtag {
  color: #00bef0;
  font-weight: bold;
}

#main.enjoy .enjoy-card .card-btn {
  text-align: center;
  padding: 20px 20px 35px;
}

#main.enjoy .enjoy-card .card-btn span {
  display: inline-block;
  position: relative;
  min-width: 300px;
  padding: 0.8em 1.5em;
  background: #f9d300;
  border: 3px solid #f9d300;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  font-size: 17px;
  font-size: 1.7rem;
  text-align: center;
  transition: .2s;
}

#main.enjoy .enjoy-card .card-btn span::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url("../img/common/arrow.png") no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

body:not(.touch) #main.enjoy .enjoy-card:hover .card-btn span {
  background: #fff;
  color: #000000;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main.enjoy .enjoy-list {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 4%;
    margin-bottom: 40px;
  }

  #main.enjoy .enjoy-card .card-title {
    font-size: 16px;
    font-size: 1.6rem;
  }

  #main.enjoy .enjoy-card .card-text {
    font-size: 13px;
    font-size: 1.3rem;
  }

  #main.enjoy .enjoy-card .card-btn span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/


/*
--------------------------------------------------
評価（トリップアドバイザー）
--------------------------------------------------
*/
#main.enjoy .enjoy-evaluation {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

#main.enjoy .enjoy-evaluation .logo {
  max-width: 254px;
  margin: 0 auto 20px;
}

#main.enjoy .enjoy-evaluation .area-title {
  background: #579442;
  color: #fff;
  font-weight: bold;
  padding: 8px;
  margin-bottom: 10px;
}

#main.enjoy .enjoy-evaluation #TA_selfserveprop841 > img {
  display: none;
}

#main.enjoy .enjoy-evaluation #CDSWIDSSP {
  width: 100% !important;
}


/*
********************************************************************************
■ フォトスポット（guide/facilities.phpのフォトスポット部分を移植）
********************************************************************************
*/

#main.enjoy.photospot {
  background: url("../img/common/deco-triangle-02.png") no-repeat top 30% left -10%, url("../img/common/deco-triangle-01.png") no-repeat top 15% right -10%;
}

/* ページタイトル（EN） */
#main.enjoy.photospot #page-header .title::before {
  width: 108px;
  height: 20px;
  background-image: url("../img/enjoy/page-title-en-photospot.png");
  margin-left: -54px;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main.enjoy.photospot #page-header .title::before {
    width: 83px;
    height: 15.4px;
    margin-left: -41.5px;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/


/*
--------------------------------------------------
フォトスポット一覧
--------------------------------------------------
*/
#main.enjoy.photospot .area-photo {
  margin-top: 50px;
  margin-bottom: 70px;
}

#main.enjoy.photospot .area-photo .area-title img {
  display: block;
}

#main.enjoy.photospot .area-photo .list-spot li {
  display: flex;
}

#main.enjoy.photospot .area-photo .list-spot li .image {
  width: 50%;
}

#main.enjoy.photospot .area-photo .list-spot li .image img {
  display: block;
}

#main.enjoy.photospot .area-photo .list-spot li .description {
  width: 50%;
  background: #01bef0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
}

#main.enjoy.photospot .area-photo .list-spot li .description .title {
  font-size: 30px;
  font-size: 3.0rem;
  margin-bottom: 0.5em;
  background: url("../img/enjoy/icon-photo.png") no-repeat top center;
  padding-top: 60px;
}

#main.enjoy.photospot .area-photo .list-spot li .description .text {
  font-size: 18px;
  font-size: 1.8rem;
}

#main.enjoy.photospot .area-photo .list-spot li:nth-child(odd) .image {
  order: 1;
}

#main.enjoy.photospot .area-photo .list-spot li:nth-child(odd) .description {
  order: 2;
}

/* レスポンシブ調整 ----------------------------------------------------------*/
@media print, screen and (max-width: 1000px) {
  #main.enjoy.photospot .area-photo .list-spot li .description .title {
    font-size: 26px;
    font-size: 2.6rem;
  }

  #main.enjoy.photospot .area-photo .list-spot li .description .text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main.enjoy.photospot .area-photo .list-spot li .description .title {
    font-size: 20px;
    font-size: 2.0rem;
    background-size: 43px;
    padding-top: 45px;
  }

  #main.enjoy.photospot .area-photo .list-spot li .description .text {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media print, screen and (max-width: 650px) {
  #main.enjoy.photospot .area-photo .list-spot li .description {
    padding: 0 10px;
  }

  #main.enjoy.photospot .area-photo .list-spot li .description .title {
    font-size: 16px;
    font-size: 1.6rem;
    background-size: 30px;
    padding-top: 35px;
  }

  #main.enjoy.photospot .area-photo .list-spot li .description .text {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media print, screen and (max-width: 500px) {
  #main.enjoy.photospot .area-photo .list-spot li {
    flex-wrap: wrap;
  }

  #main.enjoy.photospot .area-photo .list-spot li .image {
    width: 100%;
  }

  #main.enjoy.photospot .area-photo .list-spot li .description {
    width: 100%;
    padding: 15px 10px;
  }

  #main.enjoy.photospot .area-photo .list-spot li:nth-child(odd) .image {
    order: 2;
  }

  #main.enjoy.photospot .area-photo .list-spot li:nth-child(odd) .description {
    order: 1;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/


/*
--------------------------------------------------
公式Instagram
--------------------------------------------------
*/
#main.enjoy.photospot .ps-instagram {
  background: #ecf5fe;
  padding: 60px 0 80px;
}

#main.enjoy.photospot .ps-instagram-inner {
  display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 9px rgba(53, 171, 202, 0.3);
    padding: 30px 30px 0;
    text-decoration: none;
}

#main.enjoy.photospot .ps-instagram-phone {
  width: 333px;
  flex-shrink: 0;
}

#main.enjoy.photospot .ps-instagram-phone img {
  display: block;
  width: 100%;
}

#main.enjoy.photospot .ps-instagram-title {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: bold;
  color: #000;
  line-height: 1.3;
  margin-bottom: 20px;
}

#main.enjoy.photospot .ps-instagram-title img {
  display: block;
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

#main.enjoy.photospot .ps-instagram-title .text-block {
  display: block;
}

#main.enjoy.photospot .ps-instagram-title .account {
  display: block;
  font-size: 26px;
  font-size: 2.6rem;
  color: #1a68ce;
}

#main.enjoy.photospot .ps-instagram-text {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  padding-bottom: 20px;
}

#main.enjoy.photospot .ps-instagram-text .hashtag {
  color: #1a68ce;
  font-weight: bold;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main.enjoy.photospot .ps-instagram {
    padding: 30px 0 40px;
  }

  #main.enjoy.photospot .ps-instagram-inner {
    flex-direction: column;
    gap: 0px;
    margin: 0 4%;
    padding: 30px 6% 0;
    border-radius: 20px;
    text-align: center;
  }

  #main.enjoy.photospot .ps-instagram-phone {
    width: 160px;
    order: 2;
    margin-left: -30px;
  }

  #main.enjoy.photospot .ps-instagram-body {
    order: 1;
  }

  #main.enjoy.photospot .ps-instagram-title {
    justify-content: center;
    font-size: 20px;
    font-size: 2.0rem;
    white-space: nowrap;
    text-align: left;
  }

  #main.enjoy.photospot .ps-instagram-title img {
    width: 34px;
  }

  #main.enjoy.photospot .ps-instagram-title .account {
    font-size: 15px;
    font-size: 1.5rem;
    white-space: nowrap;
  }

  #main.enjoy.photospot .ps-instagram-text {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/
