@charset "UTF-8";

.conBody{
  background: transparent;
}
.flex{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex::after{
  content: "";
  clear: none;
  display: block;
}


/*lNav*/

.lNav{
  /*margin: -200px 0 30px 0;
  padding-top: 200px;*/
  margin: 0 0 30px 0;
}
.lNav ul::after{
  content: none;
}
.lNav li{
  /*width: 31%;*/
  width: 47%;
  margin: 0 1% 10px 1%;
  /*border: 1px solid #465244;*/
  border: 1px solid #383c3c;
  text-align: center;
  font-size: clamp(calc(12px * 0.7), calc(12vw / 3.75), 12px);/*12 / 16*/
  line-height: 1.2;
  /*border-radius: 8px;*/
  border-radius: 200px;
}
.lNav li a{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  /*display: block;*/
  width: 100%;
  height: 40px;
  /*line-height: 40px;*/
  background: #fff;
  /*color: #465244;*/
  transition: .3s;
  text-decoration: none;
  border-radius: inherit;
}
.lNav li a:hover{
  /*background: #465244;*/
  background: #383c3c;
  color: #fff;
  opacity: 1;
}
.lNav li.current a{
  /*background: #465244;*/
  background: #383c3c;
  color: #fff;
}

.galTtl01{
  margin: 0 0 20px 0;
  padding: 0 0 0 0.1em;
  font-size: clamp(calc(18px * 0.7), calc(18vw / 3.75), 18px);/*1.8 / 2.4*/
  text-align: center;
  line-height: 1.2;
  font-weight: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
}


/* for PC*/
@media print, screen and (min-width:768px) {
  /*lNav*/
  .lNav{
    /*margin: -200px 0 60px 0;*/
    margin: 0 0 60px 0;
  }
  /*.lNav ul{
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    }*/
  .lNav li{
    width: 19%;
    margin: 0 1%;
    /*margin: 0;*/
    font-size: clamp(calc(16px * 0.7), calc(16vw / 11.00), 16px);/*13 / 16*/
  }
  .lNav li:first-of-type{
    letter-spacing: normal;
  }
  .lNav li a{
    height: 50px;
    /*line-height: 50px;*/
  }
  .lNav li.current a{}
  
  .lNav li br{
    display: none;
  }
  .galTtl01{
    margin: 0 0 30px 0;
    padding: 0 0 0 0.2em;
    font-size: clamp(calc(24px * 0.7), calc(24vw / 11.00), 24px);/*18 / 24*/
    letter-spacing: 0.2em;
  }
}

/* for tablet*/
@media only screen and (min-device-width: 768px) and (max-device-width: 834px) and (orientation:portrait) {
  /*縦向きのみの記述 --- iPad Pro12.9はPC表示*/
  .lNav li{
    ffont-size: clamp(calc(13px * 0.7), calc(13vw / 11.00), 13px);/*13 / 16*/
  }
}

/*galMain
--------------------------------- */
.swiper{
  background: none;
}
.swiper img{
  display: block;
  width: 100%;
  vertical-align: bottom;
  border: none;
}
.swiper-wrapper::after{
  content: none;
}
.galMain{
  position: relative;
}
.galMain figcaption{
  position: absolute;
  right: 6px;
  bottom: 6px;
  font-size: clamp(calc(11px * 0.7), calc(11vw / 3.75), 11px);
  text-align: right;
  line-height: 1.2;
  color: #fff;
}

.galbtnPrev,
.galbtnNext{
  position: absolute;
  top: calc(50% - 20px);
  width: 30px;
  height: 30px;
  border-width: 2px;
  border-color: #fff;
  border-style: solid;
  border-bottom: none;
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
  z-index: 50;
  cursor: pointer;
  transition: .3s;
}
.galbtnPrev{
  left: 10px;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.galbtnNext{
  right: 10px;
  border-left: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.galMain .swiper-slide,
.galMain .swiper-slide img{
  border-radius: 16px;
}
.galThumbnail .swiper-slide,
.galThumbnail .swiper-slide img{
  border-radius: 8px;
}


/* for pc*/
@media screen and (min-width: 768px) {
  .galMain{}
  .galMain figcaption{
    right: 10px;
    bottom: 10px;
    font-size: clamp(calc(14px * 0.7), calc(14vw / 11.00), 14px);
  }
  
  .galbtnPrev,
  .galbtnNext{
    top: calc(50% - 40px);
    width: 40px;
    height: 40px;
  }
  .galbtnPrev{
    left: 20px;
  }
  .galbtnNext{
    right: 20px;
  }
  .galbtnPrev:hover,
  .galbtnNext:hover{
    border-color: #09c5bf;
    cursor: pointer;
  }
  
  .galMain .swiper-slide,
  .galMain .swiper-slide img{
    border-radius: 30px;
  }
  .galThumbnail .swiper-slide,
  .galThumbnail .swiper-slide img{
    border-radius: 16px;
  }
  
}

/*galThumbnail
--------------------------------- */
.galThumbnail{
  margin: 20px 0 0 0;
}
.galThumbnail::after{
  content: none;
}
.galThumbnail .swiper-wrapper{
  /*-webkit-flex-wrap: wrap;
  flex-wrap: wrap;*/
  justify-content: center;
}
.galThumbnail .swiper-slide{
  position: relative;
  /*width: 20% !important;*/
  width: 24%;
  margin-right: 1.33%;
  padding-bottom: 8px;
  transition: .3s;
}
.galThumbnail .swiper-slide:last-of-type{
  margin-right: 0 !important;
}
.galThumbnail .swiper-slide::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 4px;
  background-color: #09c5bf;
  background: -moz-linear-gradient(left, #7de17d, #09c5bf); 
  background: -webkit-linear-gradient(left, #7de17d, #09c5bf); 
  background: linear-gradient(to right, #7de17d, #09c5bf);
  border-radius: 200px;
  transition: 1.0s;
  /*-webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);*/
}
.galThumbnail .swiper-slide:hover{
  cursor: pointer;
  opacity: 0.8;
}
.galThumbnail .swiper-slide.swiper-slide-thumb-active::before{
  width: 100%;
}
.galThumbnail img{
    vertical-align: bottom;
}
/* for pc*/
@media screen and (min-width: 768px) {
  .galThumbnail{}
  .galThumbnail .swiper-slide{
  }
}


#town.sec01{
  margin-bottom: 0 !important;
  padding-bottom: 60px;
}
/* for pc*/
@media screen and (min-width: 768px) {
  #town.sec01{
    margin-bottom: 0 !important;
    padding-bottom: 80px;
  }
}

figcaption.shadow{
	text-shadow: 1px 1px 1px rgba(0,0,0,1), -1px -1px 0 rgba(0,0,0,1), 1px -1px 0 rgba(0,0,0,1), -1px 1px 0 rgba(20,0,0,1);
}




