@charset "utf-8";

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

}

.bl_slide_wrap .slider {
  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;}
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); /* 拡大率 */
  }
}
.add-animation {
  animation: fadezoom 7s 0s forwards;
}

/* .bl_slide_wrap .slider {
  background-color: rgba(0,0,0,.3);
  background-blend-mode: darken;
} */

.bl_slide_wrap .sl_image img {
  width: 100%;
  object-fit: cover;
  height: calc(100svh - 60px); 
}

/* 100svhが効かなかったら */
@supports not (height: 100svh) {
  .bl_slide_wrap .sl_image img {
    height: calc(100vh - 60px); 
  }
}

/* xs */
@media not screen and (min-width:520px) {
  .bl_slide_wrap .sl_image img {
    min-height: 450px;
  }
}

/* md */
@media screen and (min-width:520px) and (max-width:959.9999px) {
  .bl_slide_wrap .sl_image img {
    height: calc(100vh - 60px);
    min-height: 700px;
  }
}

/* lg */
@media screen and (min-width:960px) {
  /* PC FV表示の時ヘッダーを下部に入れる */
  .bl_slide_wrap .sl_image img {
    height: 100vh;
    min-height: 700px;
  }
}


/* テキストとアイコンのinner */
.bl_slide_wrap_inner {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 1330px;
  margin: auto;
}

.bl_slide_wrap ._titleArea {
  position: absolute;
  width: max-content;
  height: 400px;
  inset: 0;
  margin: auto;
  z-index: 19;
  background-color: rgba(255,255,255,0.70);
  box-shadow: .2em .2em 0.3em rgb(0 0 0 / 20%);
  font-weight: bolder;
  color: #222;
  padding: 40px 20px;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  letter-spacing: .2em;
}

.bl_slide_wrap ._titleArea ._sub {
  font-size: 24px;
}
.bl_slide_wrap ._titleArea ._sub._bottom {
  text-align: right;
  font-size: 28px;
}

.bl_slide_wrap ._titleArea ._title {
  font-weight: 100;
  line-height: 1.3;
  font-size: 80px;
  text-align: center;
} 

/* .bl_slide_wrap ._titleArea ._txt {
  position: absolute;
  inset: 0;
  margin: auto;

} */


/* xs */
/* xs */
@media not screen and (min-width:520px) {
  .bl_slide_wrap ._titleArea {
    height: 250px;
    padding: 30px 15px;
  }
  .bl_slide_wrap ._titleArea ._sub {
    font-size: 16px;
  }
  .bl_slide_wrap ._titleArea ._sub._bottom {
    font-size: 20px;
  }
  
  .bl_slide_wrap ._titleArea ._title {
    font-size: 45px;
  } 

}

/***********************
背景
************************/
.sado_theme {
  background: url(../../assets/img/top/bg_sado.webp) no-repeat center center / cover;
  background-attachment: fixed;
  background-color: var(--bg_color);
  color: var(--txt_color);
  height: 500px;
}
.senkaku_theme {
  background: url(../../assets/img/top/bg_senkaku.webp) no-repeat center center / cover;
  background-attachment: scroll;
  background-color: var(--bg_color);
  color: var(--txt_color);
  height: 600px;
}

/* md */
@media not screen and (min-width:961px) {
  .sado_theme,.senkaku_theme {
    background-attachment: scroll;
    height: 350px;
  }
}



/***********************
新着情報
************************/

.un_topNews {
  display: flex;
  gap: 40px 4%;
}

.un_topNews > ._headingArea {
  flex: 0 0 20%;

}

.un_topNews > ._headingArea .el_lv2TopNews {
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  margin: auto;
  font-size: 30px;
  letter-spacing: .2em;
}

.un_topNews > ._listArea {
  position: relative;
  flex: 1;
  display: flex;
  gap: 40px 4%;
}

.un_topNews > ._listArea ._item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 8%) / 3);
  color: inherit;
  text-decoration: none;
  transition: filter .25s;
}

.un_topNews > ._listArea ._item:hover {
  filter: brightness(110%);
}

.un_topNews > ._listArea ._item ._thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.un_topNews > ._listArea ._item ._body {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.un_topNews > ._listArea ._item ._ttl {
  flex: 1;
  margin-top: 1.6rem;
  font-weight: bold;
}

.un_topNews > ._listArea ._item  ._date_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.un_topNews > ._listArea ._item ._date {
  font-size: 16px;
}
.un_topNews > ._listArea ._item ._date::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 300;
  content: "\f017";
  margin-right: 0.5em;
}


.un_topNews > ._listArea ._item .el_button {
  color: #000;
  background-color: var(--sub_color);
  padding: .3em 2em;
}

/* md */
@media not screen and (min-width:961px) {
  .un_topNews {
    flex-direction: column;
    row-gap: 30px;
  }
  .un_topNews > ._headingArea .el_lv2TopNews {
    -webkit-writing-mode: initial;
    writing-mode: initial;
    text-align: center;
  }

  .un_topNews > ._listArea {
    flex-direction: column;
    width: 90%;
    margin: auto;
  }
  .un_topNews > ._listArea ._item {
    width: 100%;
  }
}

/* xs */
@media not screen and (min-width:521px) {
  .un_topNews > ._listArea {
    width: 100%;
  }
}



  /* -----------------------------------------------------------
こだわり
----------------------------------------------------------- */

.ly_points {
  padding: 100px 15px;
}

/* md */
@media not screen and (min-width:960px) {
  .ly_points {
    padding: 60px 15px;
  }
}

.bl_point_item_wrap {
  position: relative;
}

.bl_point_item {
  position: relative;
  z-index: 20;
  max-width: 1200px;
  margin: 50px auto 100px;
  display: flex;
}

.bl_point_item._rev {
  flex-direction: row-reverse;
}

.bl_point_item ._thumb {
  width: 50%;
  align-self: flex-start;
}

.bl_point_item ._thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bl_point_item ._body {
  flex: 1;
  padding: 2em 4%;
  background: #fff;
}

.bl_point_item._rev ._body {
  padding: 2em 4%;
}

.bl_point_item + .bl_background {
  position: absolute;
  z-index: 10;
  background: #eee;
  width: calc(50% - 30px);
  height: auto;
  left: -15px;
  top: 50px;
  bottom: -50px;
}

.bl_point_item._rev + .bl_background {
  left: auto;
  right: -15px;
}

.bl_point_item ._ttl {
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  font-size: 32px;
  margin-bottom: 1.2em;
}

.bl_point_item p {
  line-height: 2;
  margin-bottom: 1.5em;
}
/*スマホ*/

/* md */
@media not screen and (min-width:960px) {
  .bl_point_item, .bl_point_item._rev {
    max-width: 80%;
    margin: 60px auto;
    flex-direction: column;
  }
  .bl_point_item ._thumb {
    width: 100%;
    margin-bottom: 0;
  }
  .bl_point_item ._body {
    padding: 2em 2em;
  }
  .bl_point_item+.bl_background {
    width: calc(100% + 30px); 
    top: -30px;
    bottom: -30px;
  }
  .bl_point_item._rev+.bl_background {
    left: auto;
  }

  .bl_point_item ._ttl {
    text-align: center;
    font-size: 24px;
  }
}

/* xs */
@media not screen and (min-width:520px) {
  .bl_point_item, .bl_point_item._rev {
    max-width: none;
  }
  .bl_point_item ._body {
    padding: 15px;
  }
}

/* -----------------------------------------------------------
アニメーション
----------------------------------------------------------- */

.bl_point_item + .bl_background {
  width: 0.01%;
  opacity: 0;
}
/*PC*/

/* lg */
@media screen and (min-width:960px) {
  .is_active .bl_point_item + .bl_background {
    animation: bl_background_pc 2s 0s cubic-bezier(0.5, 0, 0, 1) both;
  }
  @keyframes bl_background_pc {
    100% {
      width: calc(50% - 30px);
      opacity: 1;
    }
  }
}

/* md */
@media not screen and (min-width:960px) {
  .is_active .bl_point_item + .bl_background {
    animation: bl_background_sp 2s 0s cubic-bezier(0.5, 0, 0, 1) both;
  }
  @keyframes bl_background_sp {
    100% {
      width: calc(100% + 30px);
      opacity: 1;
    }
  }
}

.bl_point_item ._thumb {
  opacity: 0;
}

.is_active .bl_point_item ._thumb {
  animation: bl_point_item_image 2s 0.5s cubic-bezier(0.5, 0, 0, 1) both;
}

@keyframes bl_point_item_image {
  100% {
    opacity: 1;
  }
}

.bl_point_item ._body {
  opacity: 0;
}

.is_active .bl_point_item ._body {
  animation: bl_point_item_txt 2s 1.0s cubic-bezier(0.5, 0, 0, 1) both;
}

@keyframes bl_point_item_txt {
  100% {
    opacity: 1;
  }
}

/* -----------------------------------------------------------
マップ
----------------------------------------------------------- */
.bl_mapTop {
  position: relative;
}
.bl_mapTop iframe {
  width: 100%;
  height: 600px;

}