/* 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"] section.concept::before{
  animation:sp_wave 8s linear 0s infinite;
}
body[wc-view-type="tb"] section.concept::before{
  animation:tb_wave 6s linear 0s infinite;
}
body[wc-view-type="tb-l"] section.concept::before{
  animation:tbl_wave 10s linear 0s infinite;
}
body[wc-view-type="pc"] section.concept::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: #1d4e88;
  border: solid 1px #1d4e88;
  border-radius: 1rem;
  box-sizing: border-box;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1em;
}
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: #1d4e88;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
div.btn.white a{
  border: solid 1px #fff;
  color: #fff;
}
div.btn.white a::after{
  background-color: #fff;
}
div.btn.insta a{
  background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
  color: #fff;
  border:none;
}
div.btn.insta a::after{
  background-color: #fff;
}
/*バナー*/
div.banner_block{
  width: 100vw;
  display: flex;
  justify-content: center;
  padding-top: var(--headerHeight);
}
body[wc-view-type="sp"] div.banner_block{
  padding-top: calc(var(--headerHeight) / 2);
}
div.banner_block div.banner{
  width: 620px;
}
body[wc-view-type="sp"] div.banner_block div.banner{
  width: calc(100vw - 20px);
}
div.banner_block div.banner a{
  width: 100%;
  display: block;
}
div.banner_block div.banner a figure{
  width: 100%;
}
div.banner_block div.banner a figure picture{
  display: block;
  width: 100%;
  height: 100%;
}
div.banner_block div.banner a figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*コンテンツdecoration*/
section.white_deco::before,
div.white_deco::before{
  content: "";
  position: absolute;
  left: 0;
  width: 100vw;
  z-index: 5;
  -webkit-mask-image:url("/img/svg/wave_under02.svg?");
  mask-image:url("/img/svg/wave_under02.svg?");
  background-color: #fff;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: top center;
  mask-position: top center;
}
section.gray_deco::before,
div.gray_deco::before{
  background-color: #f5f5f5;
  content: "";
  position: absolute;
  left: 0;
  width: 100vw;
  z-index: 5;
  -webkit-mask-image:url("/img/svg/wave_under02.svg?");
  mask-image:url("/img/svg/wave_under02.svg?");
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: top center;
  mask-position: top center;
}
body[wc-view-type="sp"] section.white_deco::before,
body[wc-view-type="sp"] div.white_deco::before,
body[wc-view-type="sp"] section.gray_deco::before,
body[wc-view-type="sp"] div.gray_deco::before{
  height: 16px;
  top: -1px;
  mask-size: contain;
}
body[wc-view-type="tb"] section.white_deco::before,
body[wc-view-type="tb"] div.white_deco::before,
body[wc-view-type="tb"] section.gray_deco::before,
body[wc-view-type="tb"] div.gray_deco::before{
  height: 38px;
  top: -1px;
  mask-size: contain;
}
body[wc-view-type="tb-l"] div.white_deco::before,
body[wc-view-type="tb-l"] section.white_deco::before,
body[wc-view-type="tb-l"] section.gray_deco::before,
body[wc-view-type="tb-l"] div.gray_deco::before{
  height: 52px;
  top: -1px;
  -webkit-mask-size: 1024px;
  mask-size:1024px 53px;
}
body[wc-view-type="pc"] section.white_deco::before,
body[wc-view-type="pc"] div.white_deco::before,
body[wc-view-type="pc"] section.gray_deco::before,
body[wc-view-type="pc"] div.gray_deco::before{
  height: 45px;
  top: -1px;
  mask-size: contain;
}
section.blue_deco::before,
div.blue_deco::before{
  content: "";
  position: absolute;
  left: 0;
  width: 100vw;
  z-index: 5;
  -webkit-mask-image:url("../img/svg/wave_under02.svg?");
  mask-image:url("../img/svg/wave_under02.svg?");
  background-color: #8ac3de;
  -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"] section.blue_deco::before,
body[wc-view-type="sp"] div.blue_deco::before{
  height: 16px;
  top: -1px;
  mask-size: contain;
}
body[wc-view-type="tb"] section.blue_deco::before,
body[wc-view-type="tb"] div.blue_deco::before{
  height: 39px;
  top: -1px;
  mask-size: contain;
}
body[wc-view-type="tb-l"] section.blue_deco::before,
body[wc-view-type="tb-l"] div.blue_deco::before{
  height: 52px;
  top: 0;
  -webkit-mask-size: 1024px;
  mask-size:1024px 53px;
}
body[wc-view-type="pc"] section.blue_deco::before,
body[wc-view-type="pc"] div.blue_deco::before{
  height: 45px;
  top: -1px;
  mask-size: contain;
}
/*背景固定*/
main{
  position: relative;
  z-index: 1;
  width: 100vw;
  overflow: hidden;
}
main::before{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100vw;
}
body[wc-view-type="sp"] main::before{
  background-image: url("/img/top/sp_backfixed.webp?202304291526");
}
body.safari[wc-view-type="sp"] main::before{
  background-image: url("/img/top/sp_backfixed.png?202304291526");
}
body[wc-view-type="tb"] main::before{
  background-image: url("/img/top/tb_backfixed.webp?202304291526");
}
body.safari[wc-view-type="tb"] main::before{
  background-image: url("/img/top/tb_backfixed.png?202304291526");
}
body[wc-view-type="tb-l"] main::before{
  background-image: url("/img/top/tb_backfixed.webp?202304291526");
}
body.safari[wc-view-type="tb-l"] main::before{
  background-image: url("/img/top/tb_backfixed.png?202304291526");
}
body[wc-view-type="pc"] main::before{
  background-image: url("/img/top/pc_backfixed.webp?202304291526");
}
body.safari[wc-view-type="pc"] main::before{
  background-image: url("/img/top/pc_backfixed.png?202304291526");
}
/*スライダー*/
section.top .cs_wrap[class*="fade"] .comboslider .cs_item img:not(.wcnotinterfere){
  width: 100vw !important;
}
section.top .cs_wrap[class*="fade"] .comboslider{
  width: 100vw !important;
}
section.top .cs_wrap[class*="fade"] .comboslider .cs_item{
  width: 100vw !important;
}


section.top{
  height:  calc(var(--windowfixdheight) - var(--headerHeight));
  position: relative;
  z-index: 1;
  background-color: #fff;
  width: 100vw;
}
section.top div.top_inner{
  display: flex;
  flex-direction: column-reverse;
  height: calc(var(--windowfixdheight) - var(--headerHeight));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  padding: var(--headerHeight) 0;
  z-index: 3;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.2);
}
section.top div.top_inner div.top_text_box{
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}
body[wc-view-type="sp"] section.top div.top_inner div.top_text_box{
  margin-top: 5vw;
}
body:not([wc-view-type="sp"]) section.top div.top_inner div.top_text_box{
  margin-top: 2rem;
}
section.top div.top_inner div.top_text_box > h2{
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
body:not([wc-view-type="sp"]) section.top div.top_inner div.top_text_box > h2{
  font-size: 1.5rem;
}
section.top div.top_inner div.top_text_box div.logo{
  background-color: #fff;
  -webkit-mask-image: url("/img/top/slider/logo.svg");
  mask-image:url("/img/top/slider/logo.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
body[wc-view-type="sp"] section.top div.top_inner div.top_text_box div.logo{
  width: 70vw;
  height: 40vw;
  margin-bottom: 10vw;
}
body:not([wc-view-type="sp"]) section.top div.top_inner div.top_text_box div.logo{
  width: 300px;
  height: 184px;
  margin-bottom: 4rem;
}
section.top div.top_inner div.renewal_box{
  display: flex;
  flex-direction: column;
}
body[wc-view-type="sp"] section.top div.top_inner div.renewal_box{
  flex-direction: column;
}
section.top div.top_inner div.renewal_box p{
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1em; 
}
section.top div.top_inner div.renewal_box p:nth-of-type(1){
  font-size: 1.3rem;
}
section.top div.top_inner div.renewal_box p:nth-of-type(2){
  font-size: 2rem;
  font-family: "Montserrat";
}
.cs_wrap[class*="fade"] .comboslider .cs_item img:not(.wcnotinterfere){
  height: calc(var(--windowfixdheight) - var(--headerHeight)) !important;
}
.cs_wrap.comboslider-fade {
  height: calc(var(--windowfixdheight) - var(--headerHeight)) !important;
}
section.top div.slider{
  width: 100vw !important;
}
div.slider_box{
}
div.slider_box figure{
}
div.slider_box picture{
  width: 100vw !important;
  height: 100%;
  display: block;
}
div.slider_box img{
  width: 100vw !important;
  height: 100%;
  object-fit: cover;
}
/*コンテンツ*/
section.concept{
  position: relative;
  z-index: 1;
  padding: calc(var(--headerHeight) * 1.5) 0;
  background-color: #fff;
  width: 100vw;
  overflow-x: clip;
}
body[wc-view-type="sp"] section.concept{
  padding: calc(var(--headerHeight) * 1.5) 0 calc((var(--headerHeight) * 1.5) - 32px) 0;
}
body[wc-view-type="tb"] section.concept{
  padding: calc(var(--headerHeight) * 1.5) 0 calc((var(--headerHeight) * 1.5) - 30px) 0;
}
body[wc-view-type="tb"] section.concept{
  padding: calc(var(--headerHeight) * 1.5) 0 calc((var(--headerHeight) * 1.5) - 52px) 0;
}
body[wc-view-type="pc"] section.concept{
 padding: calc(var(--headerHeight) * 1.5) 0 calc(var(--headerHeight) * 1.5 - 40px) 0;
}
section.concept::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;
  overflow: hidden;
}
body[wc-view-type="sp"] section.concept::before{
  height: 16px;
  top: -15px;
  -webkit-mask-size: contain;
  mask-size: contain;
}
body[wc-view-type="tb"] section.concept::before{
  height: 39px;
  top: -37px;
  -webkit-mask-size: 768px 39px;
  mask-size: 768px 39px;
}
body[wc-view-type="tb-l"] section.concept::before{
  height: 53px;
  top: -51px;
  -webkit-mask-size:1024px 53px;
  mask-size:1024px 53px;
}
body[wc-view-type="pc"] section.concept::before{
  height: 45px;
  top: -44px;
  -webkit-mask-size: contain;
  mask-size: contain;
}
body[wc-view-type="sp"] section.concept h2,
body[wc-view-type="sp"] section.concept p{
  width: 100vw;
  padding: 0 10vw;
  box-sizing: border-box;
}
body[wc-view-type="pc"] section.concept h2,
body[wc-view-type="pc"] section.concept p{
  text-align: center;
  margin-bottom: 2rem;
}
section.concept h2{
  font-size: 1.3rem;
  color: #333;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  opacity: 0;
}
section.concept h2.wcvisible{
  opacity: 1;
}
section.concept h2::before{
  content: "Concept";
  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;
}
section.concept > p{
  line-height: 2rem;
  font-weight: 400;
  padding: 0 10vw;
  margin-bottom: 2rem;
  transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  opacity: 0;
}
body[wc-view-type="sp"] section.concept > p br.sp_none{
  display: none;
}
section.concept > p.wcvisible{
  opacity: 1;
}
body:not([wc-view-type="sp"]) section.concept > p{
  text-align: center;
}
section.concept  div.concept_slider{
  position: relative;
  z-index: 1;
}
section.concept div.concept_slider::before,
section.concept div.concept_slider::after{
  content: "";
  width: 100vw;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; 
}
body[wc-view-type="sp"] section.concept div.concept_slider::before,
body[wc-view-type="sp"] section.concept div.concept_slider::after{
  height: 5vw;
}
body[wc-view-type="tb"] section.concept div.concept_slider::before,
body[wc-view-type="tb"] section.concept div.concept_slider::after{
  height: 30px;
}
body[wc-view-type="tb-l"] section.concept div.concept_slider::before,
body[wc-view-type="tb-l"] section.concept div.concept_slider::after{
  height: 26px;
}
body[wc-view-type="pc"] section.concept div.concept_slider::before,
body[wc-view-type="pc"] section.concept div.concept_slider::after{
  height: 40px;
}
section.concept div.concept_slider::before{
  top: -1px;
}
section.concept div.concept_slider::after{
  bottom: -1px;
}
body[wc-view-type="sp"] section.concept div.concept_slider::before{
  top: -4px;
}
body[wc-view-type="sp"] section.concept div.concept_slider::after{
  bottom: -4px;
}
body[wc-view-type="sp"] section.concept div.concept_slider::before{
  background-image: url("../img/top/concept/slider/sp_slider_top.webp");
}
body.safari[wc-view-type="sp"] section.concept div.concept_slider::before{
  background-image: url("../img/top/concept/slider/sp_slider_top.png");
}
body[wc-view-type="sp"] section.concept div.concept_slider::after{
  background-image: url("../img/top/concept/slider/sp_slider_bottom.webp");
}
body.safari[wc-view-type="sp"] section.concept div.concept_slider::after{
  background-image: url("../img/top/concept/slider/sp_slider_bottom.png");
}
body[wc-view-type="tb"] section.concept div.concept_slider::before{
  background-image: url("../img/top/concept/slider/tb_slider_top.webp");
}
body.safari[wc-view-type="tb"] section.concept div.concept_slider::before{
  background-image: url("../img/top/concept/slider/tb_slider_top.png");
}
body[wc-view-type="tb"] section.concept div.concept_slider::after{
  background-image: url("../img/top/concept/slider/tb_slider_bottom.webp");
}
body.safari[wc-view-type="tb"] section.concept div.concept_slider::after{
  background-image: url("../img/top/concept/slider/tb_slider_bottom.png");
}
body[wc-view-type="tb-l"] section.concept div.concept_slider::before{
  background-image: url("../img/top/concept/slider/tbl_slider_top.webp");
}
body.safari[wc-view-type="tb-l"] section.concept div.concept_slider::before{
  background-image: url("../img/top/concept/slider/tbl_slider_top.png");
}
body[wc-view-type="tb-l"] section.concept div.concept_slider::after{
  background-image: url("../img/top/concept/slider/tbl_slider_bottom.webp");
}
body.safari[wc-view-type="tb-l"] section.concept div.concept_slider::after{
  background-image: url("../img/top/concept/slider/tbl_slider_bottom.png");
}
body[wc-view-type="pc"] section.concept div.concept_slider::before{
  background-image: url("../img/top/concept/slider/pc_slider_top.webp");
}
body.safari[wc-view-type="pc"] section.concept div.concept_slider::before{
  background-image: url("../img/top/concept/slider/pc_slider_top.png");
}
body[wc-view-type="pc"] section.concept div.concept_slider::after{
  background-image: url("../img/top/concept/slider/pc_slider_bottom.webp");
}
body.safari[wc-view-type="pc"] section.concept div.concept_slider::after{
  background-image: url("../img/top/concept/slider/pc_slider_bottom.png");
}
section.concept div.concept_slider div.c_slider_block{
}
body[wc-view-type="sp"] section.concept  div.concept_slider div.c_slider_block > div{
  width: calc(100vw / 2);
}
body[wc-view-type="sp"] section.concept  div.concept_slider div.c_slider_block > div{
  width: calc(100vw / 3);
}
body[wc-view-type="pc"] section.concept  div.concept_slider div.c_slider_block > div{
  width: calc(100vw / 5);
}
section.concept  div.concept_slider div.c_slider_block > div{
}
section.concept  div.concept_slider div.c_slider_block > div figure{
}
section.concept  div.concept_slider div.c_slider_block > div figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
section.concept  div.concept_slider div.c_slider_block > div figure img{
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
body[wc-view-type="sp"] section.concept  div.concept_slider div.c_slider_block > div figure img{
  height: 40vw;
}
body[wc-view-type="tb"] section.concept  div.concept_slider div.c_slider_block > div figure img{
  height: 30vw;
}
body[wc-view-type="tb-l"] section.concept  div.concept_slider div.c_slider_block > div figure img{
  height: 240px;
}
body[wc-view-type="pc"] section.concept  div.concept_slider div.c_slider_block > div figure img{
  height: 280px;
}
/*お知らせ*/
section.information{
  padding: calc(var(--headerHeight) * 1.5) 0;
  background: linear-gradient(177.6deg,#008acd 4.64%,#8ac3de 93.84%);
  position: relative;
  z-index: 1;
  width: 100vw;
}
body[wc-view-type="sp"] section.information{
  padding: calc(var(--headerHeight) * 1.5 + 16px) 0 calc(var(--headerHeight) * 1.5 - 16px) 0;
}
body[wc-view-type="tb"] section.information{
  padding: calc(var(--headerHeight) * 1.5 + 39px) 0 calc(var(--headerHeight) * 1.5 - 39px) 0;
}
body[wc-view-type="tb-l"] section.information{
  padding: calc(var(--headerHeight) * 1.5 + 52px) 0 calc(var(--headerHeight) * 1.5 - 52px) 0;
}
body[wc-view-type="pc"] section.information{
  padding: calc(var(--headerHeight) * 1.5 + 45px) 0 calc(var(--headerHeight) * 1.5 - 45px) 0;
}
section.information > h2{
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  box-sizing: border-box;
  transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  opacity: 0;
}
section.information > h2.wcvisible{
  opacity: 1;
}
body[wc-view-type="sp"] section.information > h2{
  padding: 0 10vw;
}
body[wc-view-type="tb"] section.information > h2{
  padding: 0 12vw;
}
body[wc-view-type="tb-l"] section.information > h2{
  padding: 0 12vw;
}
body[wc-view-type="pc"] section.information > h2{
  width: 1100px;
  margin:0 auto;
}
section.information > h2::before{
  content: "News";
  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.information div.info_block{
  box-sizing: border-box;
}

body[wc-view-type="sp"] section.information div.info_area,
body[wc-view-type="tb"] section.information div.info_area,
body[wc-view-type="tb-l"] section.information div.info_area{  
  margin-top: 1.5rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
body[wc-view-type="sp"] section.information div.info_area{
  width: 90vw;
  margin-left: auto;
  margin-right: 0;
}
body[wc-view-type="tb"] section.information div.info_area,
body[wc-view-type="tb-l"] section.information div.info_area{
  width: calc(100vw - (12vw + 3rem + 88px));
  margin-left: auto;
  margin-right: 0;
}
body[wc-view-type="pc"] section.information div.info_area{
  width: calc(1100px + ((100vw - 1100px) / 2));
  padding-left: 150px;
  padding-right: 1rem;
  margin-left: auto;
  margin-top: 2rem;
  box-sizing: border-box;
}

section.information div.info_area{
  display: flex;
}
body:not([wc-view-type="pc"]) section.information div.info_area{
   -webkit-mask-image: -webkit-linear-gradient(left, black 0,black calc( 100% - 1.5rem),transparent calc( 100% - 0.25rem));
  mask-image: linear-gradient(to left, black 0,black calc( 100% - 1.5rem),transparent calc( 100% - 0.25rem));
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
section.information div.info_area article{
  border: solid 1px #fff;
  border-radius: 1.5rem;
  box-sizing: border-box;
  margin-left: 1rem;
}
body[wc-view-type="sp"] section.information div.info_area article{
  width: 230px;
}
body[wc-view-type="tb"] section.information div.info_area article{
  width: 265px;
}
body[wc-view-type="tb-l"] section.information div.info_area article{
  width: 290px;
}
body[wc-view-type="pc"] section.information div.info_area article{
  width: calc((100% / 5) - 1rem);
}
/*
body[wc-view-type="pc"] section.information div.info_area article{
  width: 290px;
}*/
section.information div.info_area article a{
  padding: 1rem;
  box-sizing: border-box;
  text-decoration: none;
  display: block;
}
section.information div.info_area article a figure{
}
section.information div.info_area article a figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
section.information div.info_area article a figure picture img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}
body[wc-view-type="sp"] section.information div.info_area article a figure picture img{
  height: 45vw !important;
}
body[wc-view-type="tb"] section.information div.info_area article a figure picture img,
body[wc-view-type="tb-l"] section.information div.info_area article a figure picture img{
  height: 180px !important;
}
body[wc-view-type="pc"] section.information div.info_area article a figure picture img{
  height: 175px !important;
}
section.information div.info_area article div.info_top_text{
  display: flex;
  flex-direction: column-reverse;
  padding: 0 0.5rem;
  box-sizing: border-box;
}
section.information div.info_area article div.info_top_text time{
  padding-top: 0.25rem;
  display: table;
  margin-left: auto;
  margin-right: 0;
}
section.information div.info_area article div.info_top_text time span{
  color: #fff;
  display: table;
  margin-left: auto;
  margin-right: 0;
  padding-left: 1.5rem;
  position: relative;
  z-index: 1;
}
section.information div.info_area article div.info_top_text time span::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-image: url("../img/svg/calendar.svg");
  mask-image: url("../img/svg/calendar.svg");
  width: 1.5rem;
  height: 1.5rem;
  transform: translateY(-50%);
}
section.information div.info_area article div.info_top_text h2{
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.15rem;
  font-weight: 500;
}
section.information div.info_area article a p{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  padding-right: 2rem;
  box-sizing: border-box;
  padding-left: 0.5rem;
  position: relative;
  z-index: 1;
}
section.information div.info_block div.c_slider_block article a p::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: #fff;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
body[wc-view-type="sp"] section.information div.btn{
  margin: 1.5rem 1rem 0 auto;
}
body[wc-view-type="tb"] section.information div.btn,
body[wc-view-type="tb-l"] section.information div.btn{
  margin: 1.5rem 2rem 0 auto;
}
body[wc-view-type="pc"] section.information div.btn{
  margin: 2rem calc((100vw - 1100px) / 2) 0 auto;
}
div.news_busshi{
  position: absolute;
}
body[wc-view-type="sp"] div.news_busshi{
  width: 65px;
  bottom: calc((var(--headerHeight) * 1.5) - 0.5rem);
  left: 10vw;
}
body[wc-view-type="tb"] div.news_busshi,
body[wc-view-type="tb-l"] div.news_busshi{
  width: 110px;
  bottom: calc((var(--headerHeight) * 1.5) + 4.2rem);
  left: 12vw;
}
body[wc-view-type="pc"] div.news_busshi{
  width: 120px;
  bottom: calc((var(--headerHeight) * 1.5) + 4.8rem);
  left: calc((100vw - 1100px) / 2);
}
div.news_busshi figure{
}
div.news_busshi figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.news_busshi figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*施設案内・観光スポット2回目*/
div.guidance_area{
  background-color: rgba(0,138,205,0.4);
  position: relative;
  z-index: 1;
  width: 100vw;
}
body[wc-view-type="sp"] div.guidance_area{
  padding: calc(var(--headerHeight) * 1.5 + 16px) 0;
}
body[wc-view-type="tb"] div.guidance_area{
  padding: calc(var(--headerHeight) * 1.5 + 39px) 0;
}
body[wc-view-type="tb-l"] div.guidance_area{
  padding: calc(var(--headerHeight) * 1.5 + 52px) 0;
}
body[wc-view-type="pc"] div.guidance_area{
  padding: calc(var(--headerHeight) * 1.5 + 45px) 0;
}

div.guidance_area::before,
div.guidance_area::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  -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.guidance_area::before{
  -webkit-mask-image:url("../img/svg/wave_under02.svg?");
  mask-image:url("../img/svg/wave_under02.svg?");
  background-color: #8ac3de;
}
div.guidance_area::after{
  width: 100vw;
  -webkit-mask-image:url("../img/svg/wave_up.svg");
  mask-image:url("../img/svg/wave_up.svg");
  /*background-color: #008acd;*/
   background-color: #fff ;
}

body[wc-view-type="sp"] div.guidance_area::before{
  height: 16px;
  top: -1px;
  mask-size: contain;
}
body[wc-view-type="tb"] div.guidance_area::before{
  height: 38px;
  top: -1px;
  mask-size: contain;
}
body[wc-view-type="tb-l"] div.guidance_area::before{
  height: 52px;
  top: -2px;
  -webkit-mask-size: 1024px;
  mask-size:1024px 53px;
}
body[wc-view-type="pc"] div.guidance_area::before{
  height: 45px;
  top: -1px;
  mask-size: contain;
}
body[wc-view-type="sp"] div.guidance_area::after{
  height: 16px;
  bottom: -1px;
  mask-size: contain;
}
body[wc-view-type="tb"] div.guidance_area::after{
  height: 38px;
  bottom: -1px;
  mask-size: contain;
}
body[wc-view-type="tb-l"] div.guidance_area::after{
  height: 52px;
  bottom: -1px;
  -webkit-mask-size: 1024px;
  mask-size:1024px 53px;
}
body[wc-view-type="pc"] div.guidance_area::after{
  height: 45px;
  bottom: -1px;
  mask-size: contain;
}
div.guidance_area div.guidance_top{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 1rem;
}
div.guidance_area div.guidance_top p.guidance_title{
  color: #fff;
  font-size: 2rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  opacity: 0;
}
div.guidance_area div.guidance_top p.guidance_title.wcvisible{
  opacity: 1;
}
body:not([wc-view-type="tb-l"]) div.guidance_area div.guidance_top p.guidance_title{
  margin-bottom: 1rem;
}
div.guidance_area div.guidance_top p.deco_text{
  text-align: center;
  font-weight: 700;
  font-size: 10.25vw;
  font-family: "Montserrat";
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
  color: rgba(255,255,255,0) !important;
  white-space: nowrap;
  line-height: 1em;
  transition: opacity 1s linear, filter 1s linear;
  opacity: 0;
   -ms-filter: blur(4px);
  filter: blur(4px);
}
div.guidance_area div.guidance_top p.deco_text.wcvisible{
  opacity: 1;
   -ms-filter: blur(0px);
  filter: blur(0px);
}
body[wc-view-type="pc"] div.guidance_area div.guidance_top p.deco_text{
  font-size: 7.2rem;
}
div.guidance_area article{
  display: flex; 
  transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  opacity: 0;
}
div.guidance_area article.wcvisible{
  opacity: 1;
}
body[wc-view-type="tb"] div.guidance_area article,
body[wc-view-type="sp"] div.guidance_area article{
  flex-direction: column-reverse;
}
body[wc-view-type="pc"] div.guidance_area article{
  width: 1100px;
  margin: var(--headerHeight) auto 0 auto;
}
body[wc-view-type="tb-l"] div.guidance_area article:nth-of-type(even),
body[wc-view-type="pc"] div.guidance_area article:nth-of-type(even){
  flex-direction: row-reverse;
}
div.guidance_area article:nth-of-type(2){
  margin-top: var(--headerHeight);
}
div.guidance_area article div.guide_img{
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(1) div.guide_img{
  padding-left: calc(5rem + 12vw);
}
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(2) div.guide_img{
  padding-right: calc(5rem + 12vw);
}
body[wc-view-type="tb-l"] div.guidance_area article div.guide_img{
  width: calc(50vw - 2rem);
}
body[wc-view-type="pc"] div.guidance_area article div.guide_img{
  width: 550px;
}
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(1) div.guide_img::before,
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(2) div.guide_img::before,
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(1) div.guide_img::before,
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(2) div.guide_img::before{
  font-family: "Montserrat";
  color: rgba(255,255,255,1) !important;
  white-space: nowrap;
  position:absolute;
  top: 1rem;
  font-size: 12vw;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 700;
  opacity: 0.5;
}
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(1) div.guide_img::before,
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(2) div.guide_img::before{
  top: 1rem;
  font-size: 12vw;
}
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(1) div.guide_img::before,
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(2) div.guide_img::before{
  top: 2rem;
  font-size: 3.5rem;
}
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(1) div.guide_img::before,
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(1) div.guide_img::before{
  content: "Facility";
}
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(1) div.guide_img::before{
  left: 0;
}
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(1) div.guide_img::before{
  left: 12vw;
}
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(2) div.guide_img::before,
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(2) div.guide_img::before{
  content: "Spot";
}
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(2) div.guide_img::before{
  right: 0;
}
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(2) div.guide_img::before{
  right: 12vw;
}
body[wc-view-type="sp"] div.guidance_area article div.guide_img figure{
  width: 85vw;
}
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(1) div.guide_img figure{
  margin-left: auto;
  margin-right: 0;
}
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(2) div.guide_img figure{
  margin-right: auto;
  margin-left: 0;
}
div.guidance_area article div.guide_img figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.guidance_area article div.guide_img figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body[wc-view-type="sp"] div.guidance_area article div.guide_img figure img{
  height: 50vw;
}
body[wc-view-type="tb-l"] div.guidance_area article:nth-of-type(1) div.guide_img figure img,
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(1) div.guide_img figure img,
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(1) div.guide_img figure img{
  border-radius: 1.5rem 0 0 1.5rem;
}
body[wc-view-type="tb-l"] div.guidance_area article:nth-of-type(2) div.guide_img figure img,
body[wc-view-type="tb"] div.guidance_area article:nth-of-type(2) div.guide_img figure img,
body[wc-view-type="sp"] div.guidance_area article:nth-of-type(2) div.guide_img figure img{
  border-radius: 0 1.5rem 1.5rem 0;
}
body[wc-view-type="tb"] div.guidance_area article div.guide_img figure img{
  height: 320px;
}
body[wc-view-type="pc"] div.guidance_area article div.guide_img figure img{
  border-radius: 1.5rem;
}
div.guidance_area article div.guide_text{
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] div.guidance_area article div.guide_text{
  padding: 1rem 10vw 0 10vw;
  width: 100vw;
}
body[wc-view-type="tb"] div.guidance_area article div.guide_text{
  padding: 2rem 12vw 0 12vw;
  width: 100vw;
}
body[wc-view-type="pc"] div.guidance_area article div.guide_text,
body[wc-view-type="tb-l"] div.guidance_area article div.guide_text{
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body[wc-view-type="tb-l"] div.guidance_area article div.guide_text{
width: calc(50vw + 2rem);
padding-top: 2rem;
}
body[wc-view-type="tb-l"] div.guidance_area article:nth-of-type(1) div.guide_text{
  padding-left: 6rem;
  padding-right: 1.5rem;
}
body[wc-view-type="tb-l"] div.guidance_area article:nth-of-type(2) div.guide_text{
  padding-right: 6rem;
  padding-left: 1.5rem;
}
body[wc-view-type="pc"] div.guidance_area article div.guide_text{
  width: 550px;
}
body[wc-view-type="pc"] div.guidance_area article div.guide_text::before,
body[wc-view-type="tb-l"] div.guidance_area article div.guide_text::before{
  position: absolute;
  top: 0;
  z-index: 2;
  color: rgba(255,255,255,0.5);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1em;
}
body[wc-view-type="pc"] div.guidance_area article:nth-of-type(1) div.guide_text::before,
body[wc-view-type="tb-l"] div.guidance_area article:nth-of-type(1) div.guide_text::before{
  content: "Facility";
}
body[wc-view-type="tb-l"] div.guidance_area article:nth-of-type(1) div.guide_text::before{
  left: 2.5rem;
}
body[wc-view-type="pc"] div.guidance_area article:nth-of-type(1) div.guide_text::before{
  left: 0;
}
body[wc-view-type="tb-l"] div.guidance_area article:nth-of-type(2) div.guide_text::before,
body[wc-view-type="pc"] div.guidance_area article:nth-of-type(2) div.guide_text::before{
  content: "Spot";
}
body[wc-view-type="tb-l"] div.guidance_area article:nth-of-type(2) div.guide_text::before{
  right: 2.5rem;
}
body[wc-view-type="pc"] div.guidance_area article:nth-of-type(2) div.guide_text::before{
  right: 0;
}
body[wc-view-type="pc"] div.guidance_area article:nth-of-type(1) div.guide_text{
  padding-right: 3rem;
  padding-left: 4rem;
}
body[wc-view-type="pc"] div.guidance_area article:nth-of-type(2) div.guide_text{
  padding-left: 3rem;
  padding-right: 4rem;
}
div.guidance_area article div.guide_text > h2{
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  padding-bottom: 1rem;
  font-weight: 500;
}
div.guidance_area article div.guide_text > p{
  line-height: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}
div.guidance_area article div.guide_text div.g_bushi{
  position: absolute;
  bottom: -1rem;
  z-index: 2;
}
body[wc-view-type="sp"] div.guidance_area article div.guide_text div.g_bushi{
  width: 22.5vw;
}
body[wc-view-type="sp"] div.guidance_area article div.guide_text div.g_bushi.facility_bushi{
  right: 1rem;
}
body[wc-view-type="sp"] div.guidance_area article div.guide_text div.g_bushi.spot_bushi{
  left: 1rem;
  bottom: 0;
}
body[wc-view-type="tb"] div.guidance_area article div.guide_text div.g_bushi,
body[wc-view-type="tb-l"] div.guidance_area article div.guide_text div.g_bushi{
  width: 100px;
}
body[wc-view-type="tb"] div.guidance_area article div.guide_text div.g_bushi.facility_bushi{
  right: 4rem;
  bottom: -2rem;
}
body[wc-view-type="tb"] div.guidance_area article div.guide_text div.g_bushi.spot_bushi{
  left: 4rem;
  bottom: 0;
}
body[wc-view-type="tb-l"] div.guidance_area article div.guide_text div.g_bushi.facility_bushi{
  right: 2rem;
  bottom:1rem;
}
body[wc-view-type="tb-l"] div.guidance_area article div.guide_text div.g_bushi.spot_bushi{
  right: 6rem;
  bottom: 2.5rem;
}
body[wc-view-type="pc"] div.guidance_area article div.guide_text div.g_bushi{
  width: 110px;
}
body[wc-view-type="pc"] div.guidance_area article div.guide_text div.g_bushi.facility_bushi{
  right: 3rem;
  bottom: 1rem;
}
body[wc-view-type="pc"] div.guidance_area article div.guide_text div.g_bushi.spot_bushi{
  right: 4rem;
  bottom: 2rem;
}
div.guidance_area article div.guide_text div.g_bushi{
}
div.guidance_area article div.guide_text div.g_bushi.facility_bushi picture,
div.guidance_area article div.guide_text div.g_bushi.spot_bushi picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.guidance_area article div.guide_text div.g_bushi img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.guidance_area article div.guide_text a.outside_link{
  padding-right: 1.5rem;
  color: #fff;
  position: relative;
  z-index: 1;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  display: table;
  margin-top: 1.5rem;
  box-sizing: border-box;
  margin-left: auto;
}
body[wc-view-type="sp"] div.guidance_area article div.guide_text a.outside_link{
  width: calc(150px + 0.5rem);
  margin-top: 0.75rem;
}
body[wc-view-type="tb"] div.guidance_area article div.guide_text a.outside_link,
body[wc-view-type="tb-l"] div.guidance_area article div.guide_text a.outside_link,
body[wc-view-type="pc"] div.guidance_area article div.guide_text a.outside_link{
  width: calc(170px + 0.5rem);
}
div.guidance_area article div.guide_text a.outside_link::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 1.8rem;
  height: 1.8rem;
  -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;
}
/*カレンダー*/
div.calendar{
  background-color: #fff;
  width: 100vw;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.calendar{
  padding: calc(var(--headerHeight) * 0.75 + 16px) 10vw calc(var(--headerHeight) * 1) 10vw;
}
body[wc-view-type="tb"] div.calendar{
  padding: calc(var(--headerHeight) * 0.75 + 39px) 12vw calc(var(--headerHeight) * 1.2) 12vw;
}
body[wc-view-type="tb-l"] div.calendar{
  padding: calc(var(--headerHeight) * 0.75 + 52px) 12vw calc(var(--headerHeight) * 1.5) 12vw;
}
body[wc-view-type="pc"] div.calendar{
  padding: calc(var(--headerHeight) * 0.75 + 45px) calc((100vw - 1100px) / 2) calc(var(--headerHeight) * 1.2) calc((100vw - 1100px) / 2);
}
section.calendar_block h2,
section.pick_up_block h2{
  font-size: 1.3rem;
  color: #333;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  opacity: 0;
}
section.calendar_block h2.wcvisible,
section.pick_up_block h2.wcvisible{
  opacity: 1;
}
div.calendar > section h2::before{
  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.calendar > section.calendar_block h2::before{
  content: "Calendar";
}
div.calendar > section.pick_up_block h2::before{
  content: "Pick Up";
}
div.calendar_flex{
  display: flex;
}
body[wc-view-type="sp"] div.calendar_flex,
body[wc-view-type="tb"] div.calendar_flex{
  flex-direction: column;
}
body[wc-view-type="tb-l"] div.calendar_flex > div{
  width: calc(50% - 0.5rem);
}
body[wc-view-type="pc"] div.calendar_flex > div{
  width: calc(50% - 1rem);
}
body[wc-view-type="tb-l"] div.calendar_flex > div.calendar01{
  margin-right: 0.5rem;
}
body[wc-view-type="pc"] div.calendar_flex > div.calendar01{
  margin-right: 1rem;
}
body[wc-view-type="sp"] div.calendar_flex > div.calendar02,
body[wc-view-type="tb"] div.calendar_flex > div.calendar02{
  margin-top: 1rem;
}
body[wc-view-type="tb-l"] div.calendar_flex > div.calendar02{
  margin-left: 0.5rem;
}
body[wc-view-type="pc"] div.calendar_flex > div.calendar02{
  margin-left: 1rem;
}
body[wc-view-type="tb"] div.calendar_flex > div:only-of-type,
body[wc-view-type="tb-l"] div.calendar_flex > div:only-of-type{
  width: 90%;
  margin: 0 auto;
}
body[wc-view-type="pc"] div.calendar_flex > div:only-of-type{
  width: 800px;
  margin: 0 auto;
}
div.calendar_flex > div figure{
}
div.calendar_flex > div picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.calendar_flex > div figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body[wc-view-type="sp"] div.calendar_flex > div figure img{
  height: 72.5vw;
}
body[wc-view-type="tb"] div.calendar_flex > div figure img{
  height: 69vw;
}
body[wc-view-type="tb-l"] div.calendar_flex > div figure img{
  height: 33.8vw;
}
body[wc-view-type="pc"] div.calendar_flex > div figure img{
  height: 485.2px;
}
body[wc-view-type="tb-l"] div.calendar_flex > div:only-of-type figure img{
  height: 62.1vw;
}
body[wc-view-type="pc"] div.calendar_flex > div:only-of-type figure img{
  height: 727px;
}

/*ピックアップ*/
div.calendar > section.pick_up_block{
  padding-top: var(--headerHeight);
}
section.pick_up_block > div.pick_up_flex{
  display: flex;
}
body[wc-view-type="tb"] section.pick_up_block > div.pick_up_flex,
body[wc-view-type="tb-l"] section.pick_up_block > div.pick_up_flex,
body[wc-view-type="pc"] section.pick_up_block > div.pick_up_flex{
  flex-wrap: wrap;
}
body[wc-view-type="sp"] section.pick_up_block > div.pick_up_flex{
  flex-direction: column;
}
body[wc-view-type="tb"] section.pick_up_block > div.pick_up_flex,
body[wc-view-type="tb-l"] section.pick_up_block > div.pick_up_flex,
body[wc-view-type="pc"] section.pick_up_block > div.pick_up_flex{
  align-items:flex-start;
}
section.pick_up_block > div.pick_up_flex div.pick_up_box{
}
body[wc-view-type="sp"] section.pick_up_block > div.pick_up_flex div.pick_up_box{
  margin-bottom: 1.25rem;
}
body[wc-view-type="sp"] section.pick_up_block > div.pick_up_flex div.pick_up_box:last-of-type{
  margin-bottom: 0;
}
body[wc-view-type="tb"] section.pick_up_block > div.pick_up_flex div.pick_up_box,
body[wc-view-type="tb-l"] section.pick_up_block > div.pick_up_flex div.pick_up_box{
  width: calc(50% - 0.5rem);
}
body[wc-view-type="pc"] section.pick_up_block > div.pick_up_flex div.pick_up_box{
  width: calc(50% - 1rem);
}
body[wc-view-type="tb"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(1),
body[wc-view-type="tb-l"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(1){
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}
body[wc-view-type="tb"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(2),
body[wc-view-type="tb-l"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(2){
  margin-left: 0.5rem;
  margin-bottom: 1rem;
}
body[wc-view-type="tb"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(3),
body[wc-view-type="tb-l"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(3){
  margin-right: 0.5rem;
}
body[wc-view-type="tb"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(4),
body[wc-view-type="tb-l"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(4){
  margin-left: 0.5rem;
}
body[wc-view-type="pc"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(1){
  margin-right: 1rem;
  margin-bottom: 2rem;
}
body[wc-view-type="pc"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(2){
  margin-left: 1rem;
  margin-bottom: 2rem;
}
body[wc-view-type="pc"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(3){
  margin-right: 1rem;
}
body[wc-view-type="pc"] section.pick_up_block > div.pick_up_flex div.pick_up_box:nth-of-type(4){
  margin-left: 1rem;
}
section.pick_up_block > div.pick_up_flex div.pick_up_box span{
  display: table;
  margin: 0.75rem auto 0 auto;
  line-height: 1em;
  padding-right: 2.8rem;
  position: relative;
  z-index: 1;
}
section.pick_up_block > div.pick_up_flex div.pick_up_box span::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: #333;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
section.pick_up_block > div.pick_up_flex div.pick_up_box a{
  display: flex;
  flex-direction: column-reverse;
  text-decoration: none;
  color: #333;
}
section.pick_up_block > div.pick_up_flex div.pick_up_box figure{
}
section.pick_up_block > div.pick_up_flex div.pick_up_box figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
section.pick_up_block > div.pick_up_flex div.pick_up_box figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body[wc-view-type="sp"] section.pick_up_block > div.pick_up_flex div.pick_up_box figure img{
  height: 34.7vw;
}
body[wc-view-type="tb"] section.pick_up_block > div.pick_up_flex div.pick_up_box figure img{
  height: 17vw;
}
body[wc-view-type="tb-l"] section.pick_up_block > div.pick_up_flex div.pick_up_box figure img{
  height: 16vw;
}
body[wc-view-type="pc"] section.pick_up_block > div.pick_up_flex div.pick_up_box figure img{
  height: 233px;
}
/*Instagram*/
div.sns{
  padding: calc(var(--headerHeight) * 1.5) 0;
  background: linear-gradient(177.6deg,#008acd 4.64%,#8ac3de 93.84%);
  position: relative;
  z-index: 1;
  width: 100vw;
}
body[wc-view-type="sp"] div.sns{
  padding: calc(var(--headerHeight) * 0.75 + 16px) 0 calc(var(--headerHeight) * 1) 0;
}
body[wc-view-type="tb"] div.sns{
  padding: calc(var(--headerHeight) * 0.75 + 39px) 0 calc(var(--headerHeight) * 1.2) 0;
}
body[wc-view-type="tb-l"] div.sns{
  padding: calc(var(--headerHeight) * 0.75 + 52px) 0 calc(var(--headerHeight) * 1.5) 0;
}
body[wc-view-type="pc"] div.sns{
  padding: calc(var(--headerHeight) * 0.75 + 45px) 0 calc(var(--headerHeight) * 1.2) 0;
}
div.sns section.insta{
  background-color: #fff;
  border-radius: 2rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] div.sns section.insta{
  padding: calc(15px + 2.5rem) 0 1.5rem 0;
  margin-top: 70px;
}
body[wc-view-type="tb"] div.sns section.insta{
  width: 76vw;
  margin: 0 auto;
  padding: calc(39px + 1.5rem) 1.5rem 2rem 1.5rem;
  margin-top: 70px;
}
body[wc-view-type="tb-l"] div.sns section.insta,
body[wc-view-type="pc"] div.sns section.insta{
  margin: 0 auto;
  padding: calc(47px + 1.5rem) 1.5rem 2rem 1.5rem;
  margin-top: 90px;
}
body[wc-view-type="tb-l"] div.sns section.insta{
  width: 76vw;
}
body[wc-view-type="pc"] div.sns section.insta{
  width: 800px;
}
div.sns section.insta > h2{
  position: absolute;
  z-index: -1;
  color: #333;
  font-family: "Montserrat";
  background-color: #fff;
  border-radius: 100%;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.25rem;
  padding-top: calc(90px - 1.5rem);
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.sns section.insta > h2{
  width: 160px;
  height: 140px;
  top: calc((50px + 1rem) * -1);
}
body[wc-view-type="tb"] div.sns section.insta > h2{
  width: 190px;
  height: 170px;
  top: calc((70px + 1rem) * -1);
  padding-top: calc(105px - 0.75rem);
}
body[wc-view-type="tb-l"] div.sns section.insta > h2,
body[wc-view-type="pc"] div.sns section.insta > h2{
  width: 220px;
  height: 200px;
  top: -90px;
  padding-top: 110px;
}
div.sns section.insta > h2::before{
  content: "";
  background-color: var(--footerIconColor);
  width: 75px;
  height: 75px;
  display: table;
  position: absolute;
  top: 0.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-image: var(--wciconsrc);
  background-repeat: no-repeat;
}
body[wc-view-type="tb"] div.sns section.insta > h2::before{
  width: 105px;
  height: 105px;
}
body[wc-view-type="tb-l"] div.sns section.insta > h2::before,
body[wc-view-type="pc"] div.sns section.insta > h2::before{
  width: 110px;
  height: 110px;
}
div.sns section.insta div.insta_imgarea{
}
body[wc-view-type="sp"] div.sns section.insta div.insta_imgarea{
}
div.sns section.insta div.insta_imgarea div.i_slider_block > figure{
  margin: 0 0.75rem;
}
body[wc-view-type="sp"] div.sns section.insta div.insta_imgarea div.i_slider_block > figure{
  width: 25vw;
}
body:not([wc-view-type="sp"]) div.sns section.insta div.insta_imgarea div.i_slider_block > figure{
  width: 120px;
}
div.sns section.insta div.insta_imgarea div.i_slider_block > figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.sns section.insta div.insta_imgarea div.i_slider_block > figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div.sns section.insta div.btn{
  margin-top: 1.5rem;
}
div.busshi_area{
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
body[wc-view-type="sp"] div.busshi_area{
  width: calc(260px + 1rem);
  top: -50px;
}
body[wc-view-type="tb"] div.busshi_area{
  width: calc(320px + 3rem);
}
body[wc-view-type="tb-l"] div.busshi_area,
body[wc-view-type="pc"] div.busshi_area{
  width: calc(360px + 3rem);
}
body[wc-view-type="sp"] div.busshi_area > figure{
  width: 50px;
}
body[wc-view-type="tb"] div.busshi_area > figure{
  width: 65px;
}
body[wc-view-type="tb-l"] div.busshi_area > figure,
body[wc-view-type="pc"] div.busshi_area > figure{
  width: 70px;
}
div.busshi_area > figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.busshi_area > figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body[wc-view-type="sp"] div.busshi_area > figure img{
  height: 75px;
}
/*アクセス*/
section.access{
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  position: relative;
  z-index: 1;
  width: 100vw;
}
body[wc-view-type="sp"] section.access{
  padding: calc(var(--headerHeight) * 1.5 + 16px) 0 calc(var(--headerHeight) * 1.5) 0;
}
body[wc-view-type="tb"] section.access{
  padding: calc(var(--headerHeight) * 1.5 + 39px) 0 calc(var(--headerHeight) * 1.5) 0;
}
body[wc-view-type="tb-l"] section.access{
  padding: calc(var(--headerHeight) * 1.5 + 52px) 0 calc(var(--headerHeight) * 1.5) 0;
}
body[wc-view-type="pc"] section.access{
  padding: calc(var(--headerHeight) * 1.5 + 45px) 0 calc(var(--headerHeight) * 1.5) 0;
}
div.access_inner{
  display: flex;
  position: relative;
  z-index: 1;
  transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  opacity: 0;
}
div.access_inner.wcvisible{
  opacity: 1;
}
div.access_inner::before,
div.access_inner::after{
  content: "";
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-mask-image: url("../img/svg/double_line.svg");
  mask-image: url("../img/svg/double_line.svg");
  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;
}
body[wc-view-type="sp"] div.access_inner::before,
body[wc-view-type="sp"] div.access_inner::after{ 
  height: 1.2rem;
}
body[wc-view-type="tb"] div.access_inner::before,
body[wc-view-type="tb"] div.access_inner::after{
  height: 1.3rem;
}
body[wc-view-type="tb-l"] div.access_inner::before,
body[wc-view-type="tb-l"] div.access_inner::after,
body[wc-view-type="pc"] div.access_inner::before,
body[wc-view-type="pc"] div.access_inner::after{ 
  height: 1.5rem;
  -webkit-mask-size: 6.5rem;
  mask-size: 6.5rem;
}
div.access_inner::before{
  top: 0;
}
div.access_inner::after{
  bottom: 0;
}
body[wc-view-type="sp"] div.access_inner{
  padding: 2.7rem 0;
}
body[wc-view-type="tb"] div.access_inner{
  padding: 2.8rem 0;
}
body[wc-view-type="tb"] div.access_inner,
body[wc-view-type="sp"] div.access_inner{
  flex-direction: column;
  position: relative;
  z-index: 1;
}
body[wc-view-type="tb"] div.access_inner,
body[wc-view-type="tb-l"] div.access_inner{
  width: 76vw;
  margin: 0 auto;
}
body[wc-view-type="pc"] div.access_inner{
  width: 1100px;
  margin: 0 auto;
}
div.access_inner div.access_text{
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.access_inner div.access_text,
body[wc-view-type="tb"] div.access_inner div.access_text{
  padding-bottom: 1.5rem;
}
body[wc-view-type="tb-l"] div.access_inner div.access_text{
  padding: 4rem 2rem 2.5rem 2rem;
}
body[wc-view-type="pc"] div.access_inner div.access_text{
  position: relative;
  z-index: 1;
  padding: 5rem 3rem 3.5rem 3rem;
}
body[wc-view-type="tb-l"] div.access_inner div.access_text,
body[wc-view-type="tb-l"] div.access_inner div.access_img,
body[wc-view-type="pc"] div.access_inner div.access_text,
body[wc-view-type="pc"] div.access_inner div.access_img{
  width: 50%;
}
body[wc-view-type="pc"] div.access_inner div.access_text div.btn{
  margin-top: auto;
  margin-bottom: 1.5rem;
}
body[wc-view-type="tb-l"] div.access_inner div.access_img,
body[wc-view-type="pc"] div.access_inner div.access_img{
  box-sizing: border-box;
}
body[wc-view-type="sp"] div.access_inner div.access_img{
  width: 80vw;
  margin: 0 auto;
}
body[wc-view-type="tb"] div.access_inner div.access_img{
  width: calc(100% - 5rem);
  margin: 0 auto;
}
body[wc-view-type="tb-l"] div.access_inner div.access_img{
  padding: 2.5rem 2rem 2.5rem 0;
}
body[wc-view-type="pc"] div.access_inner div.access_img{
  padding: 3.5rem 3rem 3.5rem 0;
}
div.access_inner div.access_text > h2{
  text-align: center;
  font-size: 1.3rem;
  color: #333;
}
div.access_inner div.access_text > h2::before{
  content: "Access";
  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.access_inner div.access_text > p{
  box-sizing: border-box;
}
body:not([wc-view-type="sp"]) div.access_inner div.access_text > p{

  text-align: center;
}
body[wc-view-type="sp"] div.access_inner div.access_text > p{
  padding: 1rem 10vw;
  width: 100vw;
}
body[wc-view-type="tb"] div.access_inner div.access_text > p{
  padding: 1.5rem 5rem;
}
body[wc-view-type="tb-l"] div.access_inner div.access_text > p,
body[wc-view-type="pc"] div.access_inner div.access_text > p{
  margin: 1.5rem 0;
}
div.access_inner div.access_img figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.access_inner div.access_img figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}
body[wc-view-type="tb"] div.access_inner div.access_img figure img{
  height: 50vw;
}
body[wc-view-type="tb"] div.access_inner div.access_img figure img{
  height: 250px;
}
body[wc-view-type="tb-l"] div.access_inner div.access_img figure img{
  height: 268px;
}
body[wc-view-type="pc"] div.access_inner div.access_img figure img{
  height: 300px;
}
/*土佐清水市直販所協議会*/
div.kyougikai_area{
  padding-bottom: var(--headerHeight);
  background-color: #fff;
  box-sizing: border-box;
  width: 100vw;
}
body[wc-view-type="tb"] div.kyougikai_area,
body[wc-view-type="tb-l"] div.kyougikai_area{
  padding: 0 12vw var(--headerHeight) 12vw;
  width: 100vw;
}
div.kyougikai_area div.box_title{
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
div.kyougikai_area div.box_title::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  height: 1px;
  background-color: #1d4e88;
}
body[wc-view-type="pc"] div.kyougikai_area div.box_title{
  width: 1100px;
  margin: 0 auto 1.5rem auto;
}
div.kyougikai_area div.box_title span{
  text-align: center;
  color: #333;
  font-size: 1.3rem;
  border: solid 1px #1d4e88;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  background-color: #fff;
  margin: 0 auto;
  display: table;
}
div.kyougikai_area div.kyougi_inner{
  display: flex;
  padding: 0 1rem;
  box-sizing: border-box;
  flex-wrap: wrap;
}
body[wc-view-type="sp"] div.kyougikai_area div.kyougi_inner{
  flex-direction: column;
  padding: 0 10vw;
}
body[wc-view-type="pc"] div.kyougikai_area div.kyougi_inner{
  width: 1100px;
  margin: 0 auto;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block{
  display: flex;
  padding: 1rem;
  box-sizing: border-box;
  background-color: #f5f5f5;
  flex-direction: column;
  border-radius: 1.5rem;
}
body[wc-view-type="sp"] div.kyougikai_area div.kyougi_inner div.kyougi_block:nth-of-type(1),
body[wc-view-type="tb"] div.kyougikai_area div.kyougi_inner div.kyougi_block:nth-of-type(1){
  margin-bottom: 1.5rem;
}
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block,
body[wc-view-type="pc"] div.kyougikai_area div.kyougi_inner div.kyougi_block{
  width: calc(50% - 1rem);
}
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block:nth-of-type(1),
body[wc-view-type="pc"] div.kyougikai_area div.kyougi_inner div.kyougi_block:nth-of-type(1){
  margin-right: 1rem;
}
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block:nth-of-type(2),
body[wc-view-type="pc"] div.kyougikai_area div.kyougi_inner div.kyougi_block:nth-of-type(2){
  margin-left: 1rem;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block p.kyougi_name{
  width: 100%;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #1d4e88;
  padding-bottom: 0.5rem;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex{
  display: flex;
  background-color: #f5f5f5;
  padding: 0 1rem 1rem 1rem;
  box-sizing: border-box;
  border-radius: 1rem;
  width: 100%;
}
body[wc-view-type="sp"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex,
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex{
  flex-direction: column-reverse;
  padding: 0 1rem;
}
body[wc-view-type="sp"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text,
body[wc-view-type="sp"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_img,
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text,
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_img{
  width: 100%;
}
body[wc-view-type="sp"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text,
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text{
  margin-top: 1rem;
}
body[wc-view-type="tb"]  div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text,
body[wc-view-type="tb"]  div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_img,
body[wc-view-type="pc"]  div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text,
body[wc-view-type="pc"]  div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_img{
  width: 50%;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text{ 
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.adress{
  margin-bottom: 0.75rem;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.adress p.adnumber{ 
  color: #333;
  font-size: 0.85rem;
  font-family: "Number";
  display: flex;
  align-items: center;
  font-weight: 700;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.adress p.adnumber span,
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.icon_box span{
  position: relative;
z-index: 1;
width: 1.5rem;
height: 1.5rem;
display: inline-block;
margin-right: 0.5rem;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.adress p.adnumber span::before,
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.icon_box span::before{
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border:solid 1px #333;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
  border-radius: 100%;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.adress p.adnumber span::after,
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.icon_box span::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  background-color: #333;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  margin-right: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.adress address{
  font-size: 0.85rem;
  padding-left: 2rem;
  box-sizing: border-box;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.adress p.ad_text{
  font-size: 0.75rem;
  line-height: 1em;
  padding-left: 2rem;
  box-sizing: border-box;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.icon_box{
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text div.icon_box a{
  display: inline-block;
  color: #333;
  text-decoration: none;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text > dl{
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text > dl dt{
  width: 4.7rem;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text > dl dt span{
  color: #333;
border: solid 1px #333;
box-sizing: border-box;
padding: 0.15rem 0.5rem 0.25rem 0.5rem;
border-radius: 1rem;
font-size: 0.75rem;
white-space: nowrap;
  width: calc(100% - 0.5rem);
display: block;
text-align: center;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_text > dl dd{
  width: calc(100% - 4.7rem);
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_img figure{
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_img figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_img figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body[wc-view-type="sp"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_img figure img{
  height: 37vw;
}
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.in_flex div.kyougi_img figure img{
  height: 150px;
}
div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area{
  display: flex;
}
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area,
body[wc-view-type="sp"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area{
  flex-direction: column;
}
body[wc-view-type="sp"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area div.btn:nth-of-type(1),
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area div.btn:nth-of-type(1){
  margin-bottom: 0.75rem;
}
body[wc-view-type="tb"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area div.btn:nth-of-type(1),
body[wc-view-type="pc"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area div.btn:nth-of-type(1){
  margin-left: auto;
  margin-right: 0.5rem;
}
body[wc-view-type="tb"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area div.btn:nth-of-type(2),
body[wc-view-type="pc"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area div.btn:nth-of-type(2){
  margin-left: 0.5rem;
  margin-right: auto;
}
body[wc-view-type="sp"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area div.btn a{
  width: 165px;
}
body[wc-view-type="tb-l"] div.kyougikai_area div.kyougi_inner div.kyougi_block div.btn_area div.btn a{
  width: 186px;
}
/*お問い合わせ*/
section.contact{
  position: relative;
  z-index: 1;
  padding: var(--headerHeight) 0;
  width: 100vw;
}
body[wc-view-type="sp"] section.contact{
  padding: calc(var(--headerHeight) * 1.5 + 16px) 0;
}
body[wc-view-type="tb"] section.contact{
  padding: calc(var(--headerHeight) * 1.5 + 39px) 0;
}
body[wc-view-type="tb-l"] section.contact{
  padding: calc(var(--headerHeight) * 1.5 + 52px) 0;
}
body[wc-view-type="pc"] section.contact{
  padding: calc(var(--headerHeight) * 1.5 + 45px) 0;
}
section.contact > h2{
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
section.contact > h2,
section.contact > p,
section.contact div.contact_box{
  transition: opacity 0.8s linear, -webkit-transform 0.8s linear;
  opacity: 0;
}
section.contact > h2.wcvisible,
section.contact > p.wcvisible,
section.contact div.contact_box.wcvisible{
  opacity: 1;
}
section.contact > h2::before{
  content: "Contact";
  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.contact > figure{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
section.contact > 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.contact > figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
section.contact > figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.contact > p{
  text-align: center;
  color: #fff;
  line-height: 1.8rem;
  margin: 1.5rem 0;
}
section.contact div.contact_box{
  display: flex;
}
body[wc-view-type="sp"] section.contact div.contact_box{
  width: 100vw;
  flex-direction:column;
}
body[wc-view-type="tb"] section.contact div.contact_box{
  width: 76vw;
  margin: 0 auto;
}
body[wc-view-type="pc"] section.contact div.contact_box{
  width: 750px;
  margin: 0 auto;
  align-items: center;
}
body[wc-view-type="sp"] section.contact div.contact_box div.tel{
  display: table;
  margin: 0 auto 1.5rem auto;
}
body[wc-view-type="pc"] section.contact div.contact_box div.tel,
body[wc-view-type="pc"] section.contact div.contact_box div.mail{
  width: 50%;
}
body[wc-view-type="tb-l"] section.contact div.contact_box div.tel{
  margin-right: 1rem;
  margin-left: auto;
}
body[wc-view-type="pc"] section.contact div.contact_box div.tel div.tel_inner{  
  margin: 0 2rem 0 auto;
}
section.contact div.contact_box div.tel div.tel_inner span{
  margin-left: 3.5rem;
  color: #fff;
  padding-left: 4.7rem;
  position: relative;
  z-index: 1;
}
section.contact div.contact_box div.tel div.tel_inner span::before{
  content: "営業時間";
  font-size: 0.75rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: solid 1px;
  padding: 0 0.5rem;
  border-radius: 1rem;
  color: #fff;
  z-index: 2;
}
section.contact div.contact_box div.tel div.tel_inner a{
  font-weight: 700;
  font-family: "Number";
  font-size: 2.5rem;
  text-decoration: none;
  display: table;
  color: #fff;
  padding-left: 3rem;
  position: relative;
  z-index: 1;
  line-height: 1em;
}
body[wc-view-type="tb"] section.contact div.contact_box div.tel div.tel_inner a{
  font-size: 2.2rem;
}
body:not([wc-view-type="sp"]) section.contact div.contact_box div.tel div.tel_inner a{
  pointer-events: none;
}
section.contact div.contact_box div.tel div.tel_inner a::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 3rem;
  height: 3rem;
  -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.contact div.contact_box div.mail.btn a{
  white-space: nowrap;
}
body[wc-view-type="tb-l"] section.contact div.contact_box div.mail.btn{
  margin-left: 1rem;
  margin-right: auto;
}
body[wc-view-type="pc"] section.contact div.contact_box div.mail.btn a{
  margin-left: 2rem;
  margin-right: auto;
}

/*バナーエリア*/
div.main_banner_area{
	background: linear-gradient(to bottom, #f5f5f5 0%,#ffffff 100%);
	box-sizing: border-box;
  width: 100vw;
}
body[wc-view-type="sp"] div.main_banner_area{
  padding: calc(var(--headerHeight) * 1.5) 0vw calc((var(--headerHeight) * 1.5) - 32px) 0;
}
body[wc-view-type="tb"] div.main_banner_area{
  padding: calc(var(--headerHeight) * 1.5) 0vw calc((var(--headerHeight) * 1.5) - 30px) 0vw;
}
body[wc-view-type="tb-l"] div.main_banner_area{
  padding: calc(var(--headerHeight) * 1.5) 12vw calc((var(--headerHeight) * 1.5) - 52px) 12vw;
}
body[wc-view-type="pc"] div.main_banner_area{
 padding: calc(var(--headerHeight) * 1.5) calc((100vw - 1100px) / 2) calc(var(--headerHeight) * 1.5 - 40px) calc((100vw - 1100px) / 2);
}
div.main_banner_area div.banner_slider{
}
div.main_banner_area div.banner_slider div.banner_box{
  width: 275px !important;
  margin: 0 0.5rem;
  position: relative;
  z-index: 1;
}
div.main_banner_area div.banner_slider div.banner_box a{
  display: block;
  position: relative;
  z-index: 10;
  text-decoration: none;
}
div.main_banner_area div.banner_slider div.banner_box a > figure{
 box-shadow: 0px 0px 5px rgba(68,68,85,0.2); 
}
div.main_banner_area div.banner_slider div.banner_box a picture{
  display: block;
  width: 100%;
  height: 100%;
}
div.main_banner_area div.banner_slider div.banner_box a img{
  width: 100% !important;
  height: 140px !important;
  object-fit: cover;
}
div.main_banner_area div.banner_slider div.banner_box a > p{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0.5rem 2.5rem 0 1rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  color: #333;
}
div.main_banner_area div.banner_slider div.banner_box a > p::after{
  content: "";
  width: 2.5rem;
  height: 2.2rem;
  position: absolute;
  right: 0.75rem;
  top: calc(0.25rem + 50%);
  transform: translateY(-50%);
  z-index: 2;
  background-color: #333;
  -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: var(--headerBtnSize);
  mask-size: var(--headerBtnSize);
}
