/* =====================================================
list
===================================================== */

.spot-list{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  align-items:stretch;
}


/* =====================================================
card
===================================================== */

.spot-card{
  display:flex;
  flex-direction:column;
  height:100%;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  border:1px solid #e3edf1;
  box-shadow:0 12px 30px rgba(28, 65, 83, .06);
}

.spot-card__image{
  aspect-ratio:4 / 3;
  overflow:hidden;
  background:#f3f7f8;
  flex-shrink:0;
}

.spot-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.spot-card__body{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
  padding:22px 18px 24px;
}

.spot-card__label{
  display:inline-block;
  align-self:flex-start;
  margin:0 0 12px;
  padding:6px 12px;
  font-size:.78rem;
  line-height:1.4;
  letter-spacing:.12em;
  color:#4f8395;
  background:#edf7fa;
  border-radius:999px;
}

.spot-card__title{
  margin:0 0 12px;
  font-size:1.8rem;
  line-height:1.5;
  font-weight:700;
  color:#2f4149;
}

.spot-card__excerpt{
  margin:0;
  font-size:1.4rem;
  line-height:1.9;
  color:#5a6870;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.spot-card__more{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  min-height:46px;
  padding:12px 20px;
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg, #77c8cf 0%, #5fb9c2 100%);
  color:#fff;
  font-size:1.35rem;
  font-weight:700;
  cursor:pointer;
  transition:opacity .3s ease, transform .3s ease;
}

.spot-card__more:hover{
  opacity:.92;
  transform:translateY(-2px);
}


/* =====================================================
modal
===================================================== */

.spot-modal{
  position:fixed;
  inset:0;
  z-index: 1000001;
  display:none;
}

.spot-modal.is-active{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px 16px;
}

.spot-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(20, 34, 43, .6);
}

.spot-modal__dialog{
  position:relative;
  width:min(100%, 1080px);
  max-height:calc(100vh - 40px);
  overflow:auto;
  background:#fff;
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.2);
  z-index:1;
}

.spot-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:#0f536d;
  color:#fff;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  z-index:3;
}

.spot-modal__image{
  overflow:hidden;
  background:#f3f7f8;
}

.spot-modal__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.spot-modal__content{
  padding:28px 22px 30px;
}

.spot-modal__label{
  display:inline-block;
  margin:0 0 12px;
  padding:6px 12px;
  font-size:.78rem;
  line-height:1.4;
  letter-spacing:.12em;
  color:#4f8395;
  background:#edf7fa;
  border-radius:999px;
}

.spot-modal__title{
  margin:0 0 16px;
  font-size:2.1rem;
  line-height:1.5;
  font-weight:700;
  color:#2f4149;
}

.spot-modal__text{
  margin:0;
  font-size:1.45rem;
  line-height:1.95;
  color:#5a6870;
}

.spot-modal__text + .spot-modal__text{
  margin-top:14px;
}


/* =====================================================
tablet
===================================================== */

@media screen and (min-width:768px){

  .spot-list{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:26px;
  }

  .spot-card__body{
    padding:24px 20px 26px;
  }

}


/* =====================================================
pc
===================================================== */

@media screen and (min-width:1024px){

  .spot-list{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:28px;
  }

  .spot-card__body{
    padding:24px 20px 26px;
  }

  .spot-card__title{
    font-size:1.95rem;
  }

  .spot-card__excerpt{
    font-size:1.45rem;
    margin-bottom: 25px;
  }

  /* モーダルを2カラム */
  .spot-modal__dialog{
    display:grid;
    grid-template-columns:minmax(0, 46%) minmax(0, 54%);
    align-items:stretch;
  }

  .spot-modal__image{
    min-height:100%;
  }

  .spot-modal__image img{
    width:100%;
    height:100%;
    min-height:100%;
  }

  .spot-modal__content{
    padding:34px 32px 38px;
  }

}

/* =====================================================
spot intro
===================================================== */

.spot-intro{
  padding:72px 0 40px;
}

.spot-intro .container{
  width:min(100% - 32px, 1180px);
  margin:0 auto;
}

.spot-intro__inner{
  max-width:860px;
  margin:0 auto;
  text-align:center;
}

.spot-intro__sub{
  margin:0 0 10px;
  font-size:.95rem;
  line-height:1.4;
  letter-spacing:.18em;
  color:#7aa8b7;
}

.spot-intro__title{
  margin:0;
  font-size:2.5rem;
  line-height:1.5;
  font-weight:700;
  color:#2f4149;
}

.spot-intro__text{
  margin:18px 0 0;
  font-size:1.5rem;
  line-height:2;
  color:#53636a;
}


/* =====================================================
tablet
===================================================== */

@media screen and (min-width:768px){

  .spot-intro{
    padding:86px 0 50px;
  }

  .spot-intro__title{
    font-size:2.9rem;
  }

}


/* =====================================================
pc
===================================================== */

@media screen and (min-width:1024px){

  .spot-intro{
    padding:96px 0 56px;
  }

  .spot-intro__inner{
    max-width:900px;
  }

  .spot-intro__title{
    font-size:3.2rem;
  }

  .spot-intro__text{
    font-size:1.55rem;
  }

}


/* =====================================================
spot group heading
===================================================== */

.spot-group{
  padding:80px 0 40px;
}

.spot-group--nature{
  background:#fff;
}

.spot-group--culture{
  background:#f7fbfc;
}

.spot-group .container{
  width:min(100% - 32px, 1180px);
  margin:0 auto;
}


/* 見出し */

.spot-group__head{
  margin:0 0 36px;
  text-align:center;
}

.spot-group__sub{
  margin:0 0 10px;
  font-size:.9rem;
  letter-spacing:.18em;
  line-height:1.4;
  color:#7ba3b1;
}

.spot-group__title{
  margin:0;
  font-size:2.4rem;
  line-height:1.5;
  font-weight:700;
  color:#2f4149;
}


/* ライン装飾（introと統一） */

.spot-group__title::after{
  content:"";
  display:block;
  width:56px;
  height:2px;
  margin:16px auto 0;
  background:#b9d9e3;
  border-radius:999px;
}


/* =====================================================
tablet
===================================================== */

@media screen and (min-width:768px){

  .spot-group{
    padding:90px 0 46px;
  }

  .spot-group__title{
    font-size:2.8rem;
  }

}


/* =====================================================
pc
===================================================== */

@media screen and (min-width:1024px){

  .spot-group{
    padding: 110px 0 110px;
  }

  .spot-group__head{
    margin-bottom:42px;
  }

  .spot-group__title{
    font-size:3rem;
  }

}
/* =====================================================
access
===================================================== */

.spot-access{
  padding: 96px 0 110px;
  background: #fff;
}

.spot-access .container{
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.spot-access__head{
  text-align: center;
  margin-bottom: 40px;
}

.spot-access__sub{
  margin: 0 0 10px;
  font-size: .95rem;
  line-height: 1.4;
  letter-spacing: .18em;
  color: #7aa8b7;
}

.spot-access__title{
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #0d3448;
}

.spot-access__map{
  overflow: hidden;
  border-radius: 0;
}

.spot-access__map iframe{
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.spot-access__box{
  margin-top: 42px;
  padding: 44px 42px 28px;
  background: #fff;
}

.spot-access__cols{
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.spot-access__col h3{
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1d3342;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  color: #0d3448;
}

.spot-access__info{
  display: grid;
  gap: 22px;
  margin: 0;
}

.spot-access__info div{
  display: grid;
  gap: 8px;
}

.spot-access__info dt{
  font-size: 1.35rem;
  line-height: 1.6;
  font-weight: 700;
  color: #3c4e59;
}

.spot-access__info dd{
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #4f6470;
}

.spot-access__list{
  margin: 0;
  padding-left: 1.3em;
}

.spot-access__list li{
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #4f6470;
}

.spot-access__btn{
  margin-top: 34px;
  text-align: right;
}

.spot-access__btn a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #77c8cf 0%, #5fb9c2 100%);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(78,157,166,.18);
  transition: opacity .3s ease, transform .3s ease;
}

.spot-access__btn a:hover{
  opacity: .92;
  transform: translateY(-2px);
}

.spot-access__btn a::after{
  content: "›";
  margin-left: 12px;
  font-size: 1.8rem;
  line-height: 1;
}


/* =====================================================
parking
===================================================== */

.spot-parking{
  padding: 96px 0 120px;
  background: #f7fbfc;
}

.spot-parking .container{
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.spot-parking__head{
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.spot-parking__sub{
  margin: 0 0 10px;
  font-size: .95rem;
  line-height: 1.4;
  letter-spacing: .18em;
  color: #7aa8b7;
}

.spot-parking__title{
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #111;
}

.spot-parking__lead{
  margin: 18px 0 0;
  font-size: 1.55rem;
  line-height: 2;
  color: #53636a;
}

.spot-parking__layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.spot-parking__image img{
  display: block;
  width: 100%;
  border-radius: 18px;
}

.spot-parking__text{
  margin: 0 0 26px;
  font-size: 1.6rem;
  line-height: 2;
  color: #3f505a;
}

.spot-parking__stats{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
}

.spot-parking__stats div{
  min-height: 92px;
  padding: 18px 12px;
  border: 1px solid #d9e5ea;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.spot-parking__stats dt{
  margin: 0 0 8px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #5b6c76;
}

.spot-parking__stats dd{
  margin: 0;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.spot-parking__stats .is-total{
  grid-column: span 2;
}

.spot-parking__stats .is-total dt,
.spot-parking__stats .is-total dd{
  font-weight: 700;
}


/* =====================================================
tablet
===================================================== */

@media screen and (min-width: 768px){

  .spot-access__cols{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .spot-parking__stats{
    grid-template-columns: repeat(3, 1fr);
  }

  .spot-parking__stats .is-total{
    grid-column: auto;
  }

}


/* =====================================================
pc
===================================================== */

@media screen and (min-width: 1024px){

  .spot-access{
    padding: 104px 0 120px;
  }

  .spot-access__map iframe{
    height: 460px;
  }

  .spot-access__box{
    margin-top: 48px;
    padding: 46px 44px 30px;
  }

  .spot-access__title,
  .spot-parking__title{
    font-size: 3.6rem;
  }

  .spot-parking{
    padding: 104px 0 130px;
  }

  .spot-parking__layout{
    grid-template-columns: minmax(0, 54%) minmax(0, 46%);
    gap: 48px;
  }

  .spot-parking__stats{
    grid-template-columns: repeat(4, 1fr);
  }

  .spot-parking__stats .is-total{
    grid-column: 1 / 2;
  }

}