@charset "utf-8";
/*-------------------------------------------------
PC表示：960px〜
スマホ　320〜959px（brakepoint: 520px 960px）
-------------------------------------------------*/

/*スライディング画像*/
.bl_slide_wrap{
  position: relative;
  z-index: 10;
}

.bl_slide_wrap .slider {
  display: none;
  opacity: 0;
  position: relative;
  z-index: 10;
  animation: FV_slider .6s 0.2s ease-out both;
}
@keyframes FV_slider{
  0% { opacity: 0;}
  100%{opacity: 1;}
}

.bl_slide_wrap .slider.slick-initialized {
  display: block;
}


.bl_slide_wrap .sl_image img {
  object-fit: cover;
  width: 100%;
  height: 600px;
}
/* テキストとアイコンのinner */
.bl_slide_wrap_inner {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 1250px;
  margin: auto;
  pointer-events: none;
}

.bl_slide_wrap ._icon {
  position: absolute;
  z-index: 19;
  bottom: 15px;
  right: 15px;
}

.bl_slide_wrap ._catch {
  text-align: left;
  position: absolute;
  z-index: 20;
  margin: 0;
  bottom: 0%;
  left: 0;
  width: max-content;
  transform: translateY(-50%);
  padding: 0 1em;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: FV_slider .6s 0.2s ease-out both; 
}

.bl_slide_wrap ._catch ._txt ._big {
  color: #444;
  font-weight: bold;
  font-size: clamp(26px, 2.6923vw,35px);
  text-shadow: 0 0 0.1em rgb(255 255 255 / 70%), 0 0 0.2em rgb(255 255 255 / 70%), 0 0 0.3em rgb(255 255 255 / 70%), 0 0 0.4em rgb(255 255 255 / 70%), 0 0 0.5em rgb(255 255 255 / 70%);
  letter-spacing: .05em;
}


/* xs */
@media not screen and (min-width:520px) {
  .bl_slide_wrap ._icon img {
    width: 55px;
  }
  .bl_slide_wrap ._catch ._txt ._big {
    font-size: 19px;
  }
  .bl_slide_wrap ._catch ._txt ._description {
    margin-top: 15px;
    font-size: 14px;
  }
}



.bl_slide_wrap ._news ._nav {
  flex: 1;
  background: rgba(255,255,255,0.9);
  /* border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1); */
}
.bl_slide_wrap ._news ._nav > li {
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: .2s;
}

._news ._nav > li > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  margin: -1em;
  padding: 1em 2em 1em 1em;
  width: calc(100% + 2em);
  font-weight: inherit;
  color: #000;
}

._news ._nav > li:focus,
._news ._nav > li:hover {
  background: rgba(0, 0, 0, .05);
}

._news ._nav ._date {
  color: #333;
    /* font-size: 80%; */
    /* margin: 0 0 0.3em; */
    /* padding: 0 0.1em; */
    margin-right: 1em;
    align-self: baseline;
    display: flex;
    align-items: center;
}

._news ._nav ._date::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f0da";
  font-size: 1em;
  margin-right: 1em;
  color: #0067CE;
}

/*スマホ*/
/* md */
@media not screen and (min-width:960px) {
.bl_slide_wrap {
  margin: 0 auto;
}

.bl_slide_wrap .sl_image img {
  height: 66.7vw;
  max-height: 500px;
}

.bl_slide_wrap ._catch {
  bottom: 0; 
  font-size: 4vw;
}

}

/* -----------------------------------------------------------
背景
----------------------------------------------------------- */
.ly_pastelGreen_theme {
  background-color: var(--bg_color);
  color: var(--txt_color);
}

/* -----------------------------------------------------------
下層コンテンツグリッド
----------------------------------------------------------- */
.un_contGrid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  place-items: center;
  gap: 40px 6%;
}
.un_contGrid > ._item {
  position: relative;
  text-decoration: none;
  width: 100%;
  transition: filter .25s;
}
.un_contGrid > ._item:hover {
  filter: brightness(90%) contrast(120%);
}
.un_contGrid > ._item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.un_contGrid ._txt {
  background-color: var(--main_color1);
  color: #fff;
  font-weight: bold;
  padding: 15px 10px;
  line-height: 1.4;
  text-align: center;
  font-size: 2rem;
  letter-spacing: .15em;
}
/* md */
@media not screen and (min-width:960px) {
  .un_contGrid {
    grid-template-columns: repeat(1,1fr);
    column-gap: 4%;
  }
}

/* -----------------------------------------------------------
インフォメーション
----------------------------------------------------------- */

.ly_info{
  border-top: 4px solid #ccc;
}


/* -----------------------------------------------------------
マップ
----------------------------------------------------------- */
.bl_mapTop {
  position: relative;
}
.bl_mapTop iframe {
  width: 100%;
  height: 600px;
}
/* md */
@media not screen and (min-width:960px) {
  .bl_mapTop iframe {
    height: 400px;
  }
}