@charset "utf-8";
#particles-js{
  position:fixed;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  pointer-events: none;
  animation: fadeIn .8s ease 0s 1 normal;
  /* mix-blend-mode: normal; */
  z-index: 9998;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.pageTransitionOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3000;
  transition: .5s;
}

body.is-pageShow .pageTransitionOverlay {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================
*
*  layout
*
========================================== */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#09f;
  z-index: 9998;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: opacity .8s ease;
  transition: top .4s ease;
  /* background: url(../../images/main/common/kv1_bg.jpg) top 20% left 0/ 100% no-repeat fixed #09f; */
  background-blend-mode: soft-light;
}
body.fadeout::after {
  /* opacity: 0; */
  top:100vh;
}
#container_inner {
  display: grid;
  grid-template-columns: minmax(260px, 18%) 1fr;
  grid-template-rows: auto;
  grid-template-areas:
    "header contents"
    "footer footer";
  /* height: 100vh; */
}

#footer {
  padding:0vw 0 0 0;
  text-align: center;
}

#header {
  grid-area: header;
  position: relative;
  /* top: 0px; */
  /* height: auto; */
  background:#0099FF;
  z-index: 0;
}

#header_inner {
  padding: 0 0% 5rem 0;
  position: sticky;
  /* top: -100px; */
}

#contents {
  grid-area: contents;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  /* overflow-y: scroll; */
  z-index: 0;
}

#contents_inner {
  position: relative;
}

@media all and (-ms-high-contrast:none) {
  #container_inner {
    display: -ms-grid;
    -ms-grid-columns: 275px 1fr;
    -ms-grid-rows: auto;
  }

  #footer {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }

  #header {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }

  #contents {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }

}

@media screen and (max-width:900px) {
  .header{
    position:relative;
    z-index:100;
  }

  #container_inner {
    display: block;
  }

  #header {
    position: fixed;
    z-index: 1300;
    top:0;
    width: 12vw;
    height: 12vw;
    right: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    transition: .3s;
    background: none;
  }

  body.is-open #header {
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
  }

  
  #footer {
    grid-area: footer;
    background: url(../../images/main/common/kv1_bg2.png) top center / 100% auto no-repeat;
    padding: 116vw 0 0 0;
  }
  body.is-open #header {
    right: 0vw;
    width: 100vw;
  }

  .navOverlay {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0099FF;
    transition: .3s;
    pointer-events: none;
    opacity: 1;
  }

  body:not(.is-open) #g_navi .header {
    opacity: 0;
    pointer-events: none;
  }

  body:not(.is-open) #g_navi .navOverlay {
    opacity: 0;
  }
}


@media screen and (max-width:767px) {
  #header_inner {
    position: static;
  }
}

/* NEWマーク
======================== */
.new_ic {
  display: flex;
  align-items: center;
}

#list_01 .new_ic>a{
  display: inline;
}

.new_ic::before {
  content:" NEW";
  background: #e23f92;
  color: #fafafa;
  font-weight: 300;
  font-size: 50%;
  padding: .3em .4em .4em;
  margin: 0 .5em 0 0;
  line-height: 1;
}


@media screen and (max-width:767px) {
  .new_ic::before {
    font-size:2.5vw;
    font-weight: 300;
    min-width: 7.5vw;
    padding: 1em 0;
    text-align: center;
  }
}


/* ページネーション（ネクストバック）
======================== */

/* ネクストバックナビ */
.nb_navi {
  text-align: center;
  margin-top: 50px;
}

/* 件数表示 */
.page {
}

/* 件数件表示（数字） */
.page>.nom {
}

/* ページネーション（リスト） */
.page_navi>ul {
  margin: 0;
  display: flex;
  justify-content: center;
}

/* ページネーション（ページ数、前、次） */
.page_navi li {
}

/* ページネーション（前、次のみ） */
.page_navi li.nb_pre,
.page_navi li.nb_nex {
  margin: 0 1em;
}

/* ページネーション（ページ数のみ） */
.page_navi li.nb_crt,
.page_navi li.nb_link {
  margin: 0 .5em;
}

/* ページネーション（ページ数 カレント） */
.page_navi li.nb_crt {
}

/* ページネーション（リンク） */
.page_navi a {
  text-decoration: none;
}

.page_navi a:hover {
}

/* ページネーション リンクなし */
.page_navi li>span {
  opacity: .2;
}

/* バナーユニット
======================== */

[id^="bnu_001_"] {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 100px 0 0;
}

[id^="bnu_001_"]>p {
  width: 80%;
  max-width: 400px;
  margin: 0 10px 20px;
}