/* CSS Document */
div.spot_btn{
  display: table;
  margin: 0 auto;
}
div.spot_btn:nth-of-type(1){
  margin: 2rem auto;
}
div.spot_btn a{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 calc(var(--headerBtnSize) + 1rem ) 0 1.5rem;
  text-decoration: none;
  background-color: var(--defaultcolor);
  color: #fff;
  font-weight: 700;
  height: var(--headerBtnSize);
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.spot_btn a{
  width: 180px;
}
body[wc-view-type="tb"] div.spot_btn a,
body[wc-view-type="pc"] div.spot_btn a{
  width: 240px;
}
div.spot_btn a::after{
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  width: calc(var(--headerBtnSize) - 6px);
  height: calc(var(--headerBtnSize) - 6px);
  right: 0;
  top: 3px;
  background-color: #fff;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
div.spot_btn > p{
  padding-left: 1.5rem;
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.spot_btn > p{
  width: 180px;
}
body[wc-view-type="tb"] div.spot_btn > p,
body[wc-view-type="pc"] div.spot_btn > p{
  width: 240px;
}
div.spot_btn > p::before{
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  left: 0;
  top: 0;
  background-color: var(--defaultcolor);
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
/*楽しみ方*/
article.enjoy{
}
article.enjoy h1,
article.spot h1{
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--defaultcolor);
  padding-top: 1rem;
}
div.comming_soon{
  font-size: 3rem;
  color: #bbb;
  font-weight: 700;
  font-family: 'Oswald';
  display: table;
  margin: 0 auto;
  border: solid 2px #bbb;
  padding: 2rem;
}
/*観光スポット*/
article.spot{
}
p.spot_text{
  text-align: center;
  line-height: 1.8rem;
  margin: 1rem 0;
}
article.spot dl{
  background: -moz-linear-gradient(top, rgba(253,253,253,1) 0%, rgba(253,253,253,0) 100%);
  background: -webkit-linear-gradient(top, rgba(253,253,253,1) 0%,rgba(253,253,253,0) 100%);
  background: linear-gradient(to bottom, rgba(253,253,253,1) 0%,rgba(253,253,253,0) 100%); 
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}
body[wc-view-type="pc"] article.spot dl{
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 4rem;
}
body[wc-view-type="tb"] article.spot dl{
  margin-bottom: 4rem;
}
body[wc-view-type="sp"] article.spot dl{
  margin-bottom: 4rem;
}
article.spot dl dt{
  font-size: 1.2rem;
  color: var(--defaultcolor);
  font-weight: 700;
  margin-bottom: 1rem;
}
body[wc-view-type="tb"] article.spot dl dd,
body[wc-view-type="pc"] article.spot dl dd{
  display: flex;
}
body[wc-view-type="tb"] article.spot dl:nth-of-type(even) dd,
body[wc-view-type="pc"] article.spot dl:nth-of-type(even) dd{
  flex-direction: row-reverse;
}
body[wc-view-type="tb"] article.spot dl dd > figure,
body[wc-view-type="tb"] article.spot dl dd > div.spot_text,
body[wc-view-type="pc"] article.spot dl dd > figure,
body[wc-view-type="pc"] article.spot dl dd > div.spot_text{
  width: 50%;
}
article.spot dl dd > figure{
}
article.spot dl dd > figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
article.spot dl dd > figure img{
  width: 100%;
  object-fit: contain;
  height: 100%;
  object-position: top;
}
article.spot dl dd > div.spot_text{
  box-sizing: border-box;
}
body[wc-view-type="tb"] article.spot dl:nth-of-type(odd) dd > div.spot_text,
body[wc-view-type="pc"] article.spot dl:nth-of-type(odd) dd > div.spot_text{
  padding-left: 2rem;
}
body[wc-view-type="tb"] article.spot dl:nth-of-type(even) dd > div.spot_text,
body[wc-view-type="pc"] article.spot dl:nth-of-type(even) dd > div.spot_text{
  padding-right: 2rem;
}
article.spot dl dd > div.spot_text > p{
  line-height: 1.8rem;
}
body[wc-view-type="sp"] article.spot dl dd > div.spot_text > p{
  padding:1rem 1rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
}