/* CSS Document */
@keyframes sp_wave{
  0% {
    -webkit-mask-position: 0 100%;
     mask-position: 0 100%;
  }
  100% {
    -webkit-mask-position: 320px 100%;
     mask-position: 320px 100%;
  }
}
@keyframes tb_wave{
  0% {
    -webkit-mask-position: 0 100%;
     mask-position: 0 100%;
  }
  100% {
    -webkit-mask-position: 768px 100%;
     mask-position: 768px 100%;
  }
}
@keyframes tbl_wave{
  0% {
    -webkit-mask-position: 0 100%;
     mask-position: 0 100%;
  }
  100% {
    -webkit-mask-position: 1024px 100%;
     mask-position: 1024px 100%;
  }
}
@keyframes pc_wave{
  0% {
    -webkit-mask-position: 0 100%;
     mask-position: 0 100%;
  }
  100% {
    -webkit-mask-position: 895px 100%;
     mask-position: 895px 100%;
  }
}

body[wc-view-type="sp"] div.spot_wrap::before{
  animation:sp_wave 8s linear 0s infinite;
}
body[wc-view-type="tb"] div.spot_wrap::before{
  animation:tb_wave 6s linear 0s infinite;
}
body[wc-view-type="tb-l"] div.spot_wrap::before{
  animation:tbl_wave 10s linear 0s infinite;
}
body[wc-view-type="pc"] div.spot_wrap::before{
  animation:pc_wave 15s linear 0s infinite;
}

/*透明*/
span.opa{
  width: 0;
  height: 0;
  display: block;
  opacity: 0;
  overflow: hidden;
}
/*ボタン*/
div.btn{
  display: table;
  margin: 0 auto;
}
div.btn a{
  display: table;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  position: relative;
  z-index: 1;
  color: #fff;
  background-color: #8ac3de;
  border-radius: 1rem;
  box-sizing: border-box;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1em;
  width: 100%;
}
div.btn a::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
/*ページタイトル*/
section.page_title{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
body[wc-view-type="sp"] section.page_title{
  height: 45vw;
}
body[wc-view-type="tb"] section.page_title{
  height: 250px;
}
body[wc-view-type="tb-l"] section.page_title{
  height: 280px;
}
body[wc-view-type="pc"] section.page_title{
  height: 350px;
}
section.page_title > h2{
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
}
section.page_title > h2::before{
  content: "Spot";
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Montserrat";
  color: rgba(255,255,255,0.5);
  display: block;
  line-height: 1em;
  margin-bottom: 0.5rem;
}
section.page_title figure{
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
section.page_title figure::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(177.6deg,#008acd 4.64%,#8ac3de 93.84%);
  opacity: 0.75;
}
section.page_title figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
section.page_title figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*コンテンツ*/
div.spot_wrap{
  position: relative;
  z-index: 1;
}
div.spot_wrap section.spot_top{
  box-sizing: border-box;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] div.spot_wrap section.spot_top{
  padding: var(--headerHeight) 0;
}
body[wc-view-type="tb"] div.spot_wrap section.spot_top{
  padding: var(--headerHeight) 12vw var(--headerHeight) calc(12vw + 3.1rem);
}
body[wc-view-type="tb-l"] div.spot_wrap section.spot_top{
  padding: calc(var(--headerHeight) + 3.5rem) 12vw var(--headerHeight) 12vw;
}
body[wc-view-type="pc"] div.spot_wrap section.spot_top{
  padding: calc(var(--headerHeight) + 3.5rem) 0 var(--headerHeight) 0;
}
div.spot_wrap::before{
  content: "";
  position: absolute;
  left: 0;
  width: 100vw;
  z-index: 5;
  -webkit-mask-image:url("/img/svg/wave_up.svg?");
  mask-image:url("/img/svg/wave_up.svg?");
  background-color: #fff;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position:bottom center;
  mask-position:bottom center;
}
body[wc-view-type="sp"] div.spot_wrap::before{
  height: 16px;
  top: -16px;
  mask-size: contain;
}
body[wc-view-type="tb"] div.spot_wrap::before{
  height: 39px;
  top: -38px;
  -webkitmask-mask-size: 768px 39px;
  mask-size: 768px 39px;
}
body[wc-view-type="tb-l"] div.spot_wrap::before{
  height: 53px;
  top: -52px;
  -webkitmask-size:1024px 53px;
  mask-size:1024px 53px;
}
body[wc-view-type="pc"] div.spot_wrap::before{
  height: 45px;
  top: -45px;
  -webkitmask-size:895px 45px;
  mask-size: 895px 45px;
}
div.spot_text{
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
div.spot_text::before{
  content: "Enjoyment";
  position: absolute;
  top: 0;
  left: 2vw;
  line-height: 1em;
  color: rgba(29,78,138,0.1);
  font-family: "Montserrat";
  font-size: 2.9rem;
  font-weight: 700;
}
body[wc-view-type="sp"] div.spot_text::before,
body[wc-view-type="tb"] div.spot_text::before{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
body[wc-view-type="tb"] div.spot_text::before{
  top: -1rem;
  left: -3.1rem;
}
body[wc-view-type="tb-l"] div.spot_text::before,
body[wc-view-type="pc"] div.spot_text::before{
  top: -3.5rem;
  left: 1rem;
}
body[wc-view-type="sp"] div.spot_text{
  padding: 0 10vw 0 calc(10vw + 1rem);
  box-sizing: border-box;
  width: 100vw;
}
body[wc-view-type="tb-l"] div.spot_text{
  padding-right: 150px;
}
body[wc-view-type="pc"] div.spot_text{
  width: 850px;
  margin: 0 auto;
  padding-right: 220px;
}
div.spot_text h2{
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  box-sizing: border-box;
}
body[wc-view-type="tb"] div.spot_text h2{
  padding-left: 1.5rem;
}
div.spot_text h2::before,
div.spot_text h2::after{
  content: "";
  position: absolute;
  z-index: 2;
}
div.spot_text h2::before{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body[wc-view-type="sp"] div.spot_text h2::before{
  background-image:url("/mejika_img/spot/deco/sp_bushi.wbp");
  right: -4vw;
  top: -1rem;
  width: 90px;
  height: 86px;
}
body.safari[wc-view-type="sp"] div.spot_text h2::before{
  background-image:url("/img/spot/deco/sp_bushi.png");
}
body[wc-view-type="tb"] div.spot_text h2::before{
  right: 0;
  top: -55px;
  width: 145px;
  height: 139px;
  background-image: url("/img/spot/deco/tb_bushi.webp");
}
body.safari[wc-view-type="tb"] div.spot_text h2::before{
  background-image: url("/img/spot/deco/tb_bushi.png");
}
body[wc-view-type="tb-l"] div.spot_text h2::before{
  right: -150px;
  top: 0;
  width: 175px;
  height: 169px;
  background-image: url("/img/spot/deco/tb_l_bushi.webp");
}
body.safari[wc-view-type="tb-l"] div.spot_text h2::before{
  background-image: url("/img/spot/deco/tb_l_bushi.png");
}
body[wc-view-type="pc"] div.spot_text h2::before{
  right: -200px;
  top: 0;
  width: 196px;
  height: 190px;
  background-image: url("/img/spot/deco/pc_bushi.webp");
}
body.safari[wc-view-type="pc"] div.spot_text h1::before{
  background-image: url("/img/spot/deco/pc_bushi.png");
}
div.spot_text h2::after{
  width: 100%;
  height: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-mask-image: url("/img/svg/title_wave.svg?1335");
  mask-image: url("/img/svg/title_wave.svg?1335");
  background-color: #1d4e88;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
}
div.spot_text h1 span.timei{
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  display: block;
}
body[wc-view-type="tb-l"] div.spot_text h2 span.timei,
body[wc-view-type="pc"] div.spot_text h2 span.timei{
  font-size: 2.1rem;
  display: inline-block;
}
div.spot_text h2 span.big{
  font-size: 2.1rem;
  font-weight: 500;
  color: #333;
}
div.spot_text p{
  padding: 0 1rem;
  box-sizing: border-box;
  line-height: 1.8rem;
}
body[wc-view-type="tb"] div.spot_text p{
  padding: 0 1.5rem;
}
/*スワイプメニューコンテンツ*/
div.spot_inner{
  background-color: #fff;
}
div.spot_block{
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.spot_block{
  padding: 1rem 1rem calc(var(--headerHeight) + 16px) 1rem;
}
body[wc-view-type="tb"] div.spot_block{
  padding: 1rem 1rem calc(var(--headerHeight) + 39px) 1rem;
}
body[wc-view-type="tb-l"] div.spot_block{
  padding: 1rem 1rem calc(var(--headerHeight) + 53px) 1rem;
}
body[wc-view-type="pc"] div.spot_block{
  padding: 1rem 1rem calc(var(--headerHeight) + 45px) 1rem;
}

[swipemenu][menu-type="tab"]{
  background-color: rgba(255,255,255,1) !important;
}
[swipemenu][menu-type="tab"] .swipemenuinner [swipemenu-target]:not(.wcactive):not(.nonetarget),
[swipemenu][menu-type="tab"] .swipemenuinner [swipemenu-target]:not(.wcactive):not(.nonetarget)::before{
  background-color: #ddd !important;
}
[wc-scr-pos][pos-type="x"]:not(.wcmasknone):not([wc-scr-pos="none"]) {
  mask-image: inherit !important;
}
body[wc-view-type="sp"] div.spot_block{
  flex-direction: column;
}
div.spot_block article{
  background-color: #fff;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 1.5rem;
  flex-direction: column;
}
body[wc-view-type="sp"] div.spot_block article{
  width: 100%;
  margin-top: 1.5rem;
}
body[wc-view-type="sp"] div.spot_block article:nth-of-type(1){
  margin-top: 0.5rem;
}
body[wc-view-type="tb"] div.spot_block article,
body[wc-view-type="tb-l"] div.spot_block article{
  width: calc((100% / 2) - 2rem);
  margin: 2rem 1rem 0 1rem;
}
body[wc-view-type="pc"] div.spot_block article{
  width: calc((100% / 3) - 2rem);
  margin: 2rem 1rem 0 1rem;
  padding: 1.5rem;
}
div.spot_block article > h2{
  text-align: center;
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
body[wc-view-type="pc"] div.spot_block article > h2{
  padding-bottom: 1.2rem;
}
div.spot_block article > h2::after{
  content: "";
  width: 100%;
  height: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-mask-image:url("/img/svg/title_wave.svg?1335");
  mask-image:url("/img/svg/title_wave.svg?1335");
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
}
div.spot_block.watch_area article > h2::after{
  background-color: #549adf;
}
div.spot_block.enjoy_area article > h2::after{
  background-color: #ea9636;
}
div.spot_block.history_area article > h2::after{
  background-color: #57c38b;
}
div.spot_block article div.spot_box{
  display: flex;
  height: calc(100% - 3rem);
  box-sizing: border-box;
}
div.spot_block article div.spot_box{
  flex-direction: column;
  padding: 0 1rem;
  justify-content: space-between;
}
body[wc-view-type="pc"] div.spot_block article div.spot_box{
  padding:0.5rem 1rem 0 1rem;
  height: calc(100% - 3.5rem);
}
div.spot_block article div.s_img{
}
body:not([wc-view-type="pc"]) div.spot_block article div.s_img,
body:not([wc-view-type="pc"]) div.spot_block article div.s_text{
  width: 100%;
}
body[wc-view-type="pc"] div.spot_block article div.s_img{
  width: 100%;
}
div.spot_block article div.s_img span.inyou{
  font-size: 0.85rem;
  padding-left: 1rem;
  position: relative;
  z-index: 1;
  display: table;
  margin-left: auto;
  margin-right: 0;
  margin-top: 0.25rem;
}
div.spot_block article div.s_img span.inyou::before{
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
  font-size: 0.85rem;
}
body[wc-view-type="pc"] div.spot_block article div.s_text{
  width: 100%;
  padding: 1rem 1rem 0 1rem;
  box-sizing: border-box;
}
div.spot_block article div.s_img figure{
}
div.spot_block article div.s_img figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.spot_block article div.s_img figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body[wc-view-type="pc"] div.spot_block article div.s_img figure img{
  height: 13vw;
}
div.spot_block article div.s_text{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  height: 100%;
}
body[wc-view-type="sp"] div.spot_block article div.s_text{
  margin-top: 1rem;
}
div.spot_block article div.s_text > p{
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 1rem;
}
body[wc-view-type="sp"] div.spot_block article div.s_text > p{
  padding: 0 0.5rem;
}
body[wc-view-type="tb"] div.spot_block article div.s_text > p,
body[wc-view-type="tb-l"] div.spot_block article div.s_text > p{
  padding: 0 1rem;
  margin-top: 1rem;
}
div.spot_block article div.s_text span{
  font-size: 0.85rem;
  padding-left: 1rem;
  position: relative;
  z-index: 1;
  display: block;
}
div.spot_block article div.s_text span::before{
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
  font-size: 0.85rem;
}
div.spot_block article div.s_text > div.btn{
  margin-top: auto;
}
div.spot_block.watch_area article div.s_text div.btn a{
  background-color: #549adf;
}
div.spot_block.enjoy_area article div.s_text div.btn a{
  background-color: #ea9636;
}
div.spot_block.history_area article div.s_text div.btn a{
  background-color: #57c38b;
}
body[wc-view-type="tb-l"] div.btn_box,
body[wc-view-type="pc"] div.btn_box{
  display: flex;
	flex-direction: column;
	gap:0.75rem;
}
body[wc-view-type="sp"] div.btn_box div.btn{
  margin-top: 0.5rem;
  width: 150px;
}
body[wc-view-type="tb"] div.btn_box div.btn{
  width: 172px;
  margin-top: 0.5rem;
}
body[wc-view-type="tb-l"] div.btn_box div.btn,
body[wc-view-type="pc"] div.btn_box div.btn{
	width: fit-content;
}
body[wc-view-type="tb-l"] div.btn_box div.btn a,
body[wc-view-type="pc"] div.btn_box div.btn a{
	width: 100%;
}