/* 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.access_wrap::before{
  animation:sp_wave 8s linear 0s infinite;
}
body[wc-view-type="tb"] div.access_wrap::before{
  animation:tb_wave 6s linear 0s infinite;
}
body[wc-view-type="tb-l"] div.access_wrap::before{
  animation:tbl_wave 10s linear 0s infinite;
}
body[wc-view-type="pc"] div.access_wrap::before{
  animation:pc_wave 15s linear 0s infinite;
}

/*透明*/
span.opa{
  width: 0;
  height: 0;
  display: block;
  opacity: 0;
  overflow: hidden;
}
/*ページタイトル*/
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 > h1{
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
}
section.page_title > h1::before{
  content: "Access";
  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.access_wrap{
  padding: var(--headerHeight) 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.access_wrap{
  padding: var(--headerHeight) 0 6px 0;
}
body[wc-view-type="tb"] div.access_wrap{
  padding: var(--headerHeight) 0 14px 0;
}
body[wc-view-type="tb-l"] div.access_wrap{
  padding: var(--headerHeight) 0 18px 0;
}
body[wc-view-type="pc"] div.access_wrap{
  padding: var(--headerHeight) 0 15px 0;
}
div.access_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: #f5f5f5;
  -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.access_wrap::before{
  height: 16px;
  top: -16px;
  mask-size: contain;
}
body[wc-view-type="tb"] div.access_wrap::before{
  height: 39px;
  top: -38px;
  -webkitmask-mask-size: 768px 39px;
  mask-size: 768px 39px;
}
body[wc-view-type="tb-l"] div.access_wrap::before{
  height: 53px;
  top: -52px;
  -webkitmask-size:1024px 53px;
  mask-size:1024px 53px;
}
body[wc-view-type="pc"] div.access_wrap::before{
  height: 45px;
  top: -45px;
  -webkitmask-size:895px 45px;
  mask-size: 895px 45px;
}


/*access内容*/
div.acccess_inner{
}
body[wc-view-type="tb"] div.acccess_inner,
body[wc-view-type="tb-l"] div.acccess_inner{
  width: 76vw;
  margin: 0 auto;
}
body[wc-view-type="pc"] div.acccess_inner{
  width: 750px;
  margin: 0 auto;
}
div.access_area{
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}
body:not([wc-view-type="sp"]) div.access_area{
  padding: 3rem;
}
body[wc-view-type="tb-l"] div.access_area{
  max-width: 100% !important;
}
body[wc-view-type="tb"] div.access_area{
  padding: 3rem;
}
div.access_area > p{
  line-height: 1.8rem;
  color: #333;
  margin-bottom: 1.5rem;
}
body:not([wc-view-type="sp"]) div.access_area > p{
  text-align: center;
}
div.access_area div.access_flex{
  display: flex;
}
body[wc-view-type="sp"] div.access_area div.access_flex div.access_f_box.access_01,
body[wc-view-type="sp"] div.access_area div.access_flex div.access_f_box.access_02{
  width: calc(50% - 0.5rem)
}
body[wc-view-type="sp"] div.access_area div.access_flex div.access_f_box.access_01{
  margin-right: 0.5rem;
}
body[wc-view-type="sp"] div.access_area div.access_flex div.access_f_box.access_02{
  margin-left: 0.5rem;
}
body:not([wc-view-type="sp"]) div.access_area div.access_flex div.access_f_box.access_01,
body:not([wc-view-type="sp"]) div.access_area div.access_flex div.access_f_box.access_02{
  width: calc(50% - 1.25rem)
}
body:not([wc-view-type="sp"]) div.access_area div.access_flex div.access_f_box.access_01{
  margin-right: 1.25rem;
}
body:not([wc-view-type="sp"]) div.access_area div.access_flex div.access_f_box.access_02{
  margin-left: 1.25rem;
}
div.access_area div.access_flex div.access_f_box > p.access_title{
  background-color: #1d4e88;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem 0;
  border-radius: 0.75rem;
}
div.access_area div.access_flex div.access_f_box > p.access_title span{
  display: block;
  font-size: 0.85rem;
  color: #fff;
}
div.access_block{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(362px + 2.5rem);
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}
body[wc-view-type="tb"] div.access_block,
body[wc-view-type="tb-l"] div.access_block,
body[wc-view-type="pc"] div.access_block{
  padding-bottom: 2.5rem;
  height: calc(398px + 2.5rem);
}
div.access_block::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #1d4e88;
  z-index: -1;
}
div.access_block div.access_box,
div.access_block div.access_time{
  margin-top: 1.5rem;
}
div.access_block div.access_box.m_bottom_12{
  margin-bottom: 0.3rem;
  margin-top: auto;
}
div.access_block div.access_time{
  background-color: #f5f5f5;
  padding: 0.5rem 0 0.5rem 0;
  text-align: center;
}
div.access_block div.access_time > p{
  display: table;
  margin: 0 auto;
  border-bottom: 1px solid #1d4e88;
  padding: 0 0.5rem;
}
div.access_block div.access_time > p span{
  color: #1d4e88;
  font-size: 0.85rem;
  margin-right: 0.25rem;
  padding-bottom: 0.25rem;
  display: inline-block;
}
body[wc-view-type="sp"] div.access_block div.access_time > p span{
  display: table;
  margin: 0 auto;
}
div.access_block div.access_box.t_m_auto{
  margin-top: auto;
}
div.access_block div.access_box p{
  padding: 0.75rem 0;
  background-color: #fff;
  text-align: center;
  border: solid 1px #1d4e88;
  box-sizing: border-box;
  border-radius: 0.75rem;
}
div.access_block div.access_box p > span{
  display: block;
  font-size: 0.85rem;
}
body[wc-view-type="sp"] div.access_block div.access_box p > span{
  font-size: 0.8rem;
}
div.mejika_goal{
  background-color: #fff;
  padding: 1rem;
  border: solid 1px #1d4e88;
  border-radius: 0.75rem;
}
body:not([wc-view-type="sp"]) div.mejika_goal{
  padding: 2rem;
}
div.mejika_goal > p{
  display: table;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-left: 2.5rem;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
}
div.mejika_goal > p::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: #a61022;
  color: #fff;
  font-size: 0.75rem;
  text-align: center;
  line-height: 2rem;
  -webkit-mask-image: url("/img/svg/access.svg");
  mask-image: url("/img/svg/access.svg");
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
div.mejika_goal figure{
}
div.mejika_goal figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.mejika_goal figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.public_time{
  display: table;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 1rem;
}
div.public_time a{
  display: table;
  padding-right: 1.8rem;
  position: relative;
  z-index: 1;
  color: #1d4e88;
}
div.public_time a::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 2rem;
  height: 2rem;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  background-color: #1d4e88;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
/*マップ*/
div.map_wrap{
  padding-top: calc(var(--headerHeight) / 2);
  background: -moz-linear-gradient(top, rgba(245,245,245,1) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(245,245,245,1) 0%,rgba(255,255,255,1) 20%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(245,245,245,1) 0%,rgba(255,255,255,1) 20%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ 
}
div.map_wrap > p.map_title{
  font-size: 1.3rem;
  color: #333;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom:0.75rem;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  opacity: 0;
}
div.map_wrap > p.map_title.wcvisible{
  opacity: 1;
}
div.map_wrap > p.map_title::before{
  content: "Map";
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Montserrat";
  color: rgba(29,78,136,0.2);
  display: block;
  line-height: 1em;
  margin-bottom: 0.5rem;
}
div.map{
  width: 100vw;
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] div.map{
  height: 70vw;
}
body[wc-view-type="tb"] div.map{
  height: 500px;
}
body[wc-view-type="tb-l"] div.map{
  height: 500px;
}
body[wc-view-type="pc"] div.map{
  height: 500px;
}
div.map iframe{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}