@charset "UTF-8";
* {
  margin: 0;
  padding: 0; }

a {
  color: inherit;
  text-decoration: none; }

ul {
  list-style: none; }

.sp_only {
  display: inherit; }
  @media screen and (min-width: 768px) {
    .sp_only {
      display: none; } }

.pc_only {
  display: none; }
  @media screen and (min-width: 1024px) {
    .pc_only {
      display: block; } }

p.scroll_down {
  color: #fafafa;
  text-shadow: 0px 0px 12px #000000;
  position: absolute;
  z-index: 10;
  bottom: 30%;
  left: 50%;
  width: 100px;
  text-align: center;
  transform: translate(-50%, -50%);
  font-style: italic;
  text-align: center;
  animation: textfade 3s ease-in-out infinite; }
  @media screen and (min-width: 1024px) {
    p.scroll_down {
      bottom: 10%; } }
  p.scroll_down::after {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    width: 1px;
    height: 20px;
    background: #eee;
    animation: pathmove 1.5s ease-in-out infinite;
    opacity: 0; }
@keyframes textfade {
  0% {
    opacity: 0; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes pathmove {
  0% {
    height: 0px;
    top: 50px;
    opacity: 0; }
  30% {
    height: 20px; }
  35% {
    top: 30px; }
  50% {
    opacity: 1; }
  100% {
    height: 0;
    top: 30px;
    opacity: 0; } }
html {
  font-family: 'helvetica-neue-world','hiragino-kaku-gothic-pron', sans-serif;
  font-size: 14px;
  scroll-behavior: smooth; }
  @media screen and (min-width: 1024px) {
    html {
      font-size: 16px; } }

@keyframes img_zoom {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(1.2); } }
.wrapper {
  width: calc(100% - 20px);
  margin: 0 auto; }
  @media screen and (min-width: 768px) {
    .wrapper {
      width: 80%;
      max-width: 960px; } }

body.over {
  overflow: hidden; }

.container {
  overflow: auto;
  scroll-snap-type: y mandatory;
  height: 100vh;
  top: 0;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  overscroll-behavior: none;
  scroll-behavior: smooth; }
  .container .snap_child {
    scroll-snap-align: start; }
  .container .snap_child:last-child {
    scroll-snap-align: end; }

/*Google Chrome、Safariへの対応*/
.container::-webkit-scrollbar {
  display: none; }

p.copyright {
  margin-top: 40px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 10px; }

ul.sns {
  margin-top: 20px;
  width: 200px;
  display: flex;
  justify-content: space-between; }
  ul.sns li img {
    width: 42px;
    height: auto;
    display: block;
    transition: filter .4s ease; }
  @media screen and (min-width: 1024px) {
    ul.sns li:hover img {
      filter: brightness(0) invert(1) drop-shadow(0 0px 8px rgba(0, 0, 0, 0.9)); } }
  ul.sns li span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    line-height: 1; }
    ul.sns li span > i {
      color: black;
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: opacity .4s ease;
      opacity: 0; }
      @media screen and (min-width: 1024px) {
        ul.sns li span > i {
          opacity: 1; } }
    ul.sns li span.x::after {
      content: "\e61b";
      /* Instagram unicode */
      font-family: "Font Awesome 6 Brands";
      font-weight: 400;
      position: absolute;
      inset: 0;
      font-size: inherit;
      background: linear-gradient(90deg, #1da1f2 32%, #0f1419 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      opacity: 1;
      transition: opacity .4s ease; }
      @media screen and (min-width: 1024px) {
        ul.sns li span.x::after {
          opacity: 0; } }
    ul.sns li span.ins::after {
      content: "\f16d";
      /* Instagram unicode */
      font-family: "Font Awesome 6 Brands";
      font-weight: 400;
      position: absolute;
      inset: 0;
      font-size: inherit;
      background: linear-gradient(359deg, #ffd600 0%, #ff7a00 18%, #ff0069 50%, #d300c5 75%, #7638fa 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      opacity: 1;
      transition: opacity .4s ease; }
      @media screen and (min-width: 1024px) {
        ul.sns li span.ins::after {
          opacity: 0; } }
  @media screen and (min-width: 1024px) {
    ul.sns li:hover span::after {
      opacity: 1; }
    ul.sns li:hover span i {
      opacity: 0; } }

ul.hum_menu {
  position: fixed;
  bottom: 1vh;
  right: 3vw;
  width: 40px;
  height: 40px;
  background-color: rgba(30, 30, 30, 0.5);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: all .4s ease; }
  @media screen and (min-width: 1024px) {
    ul.hum_menu {
      bottom: 3vh; } }
  ul.hum_menu.is-visible {
    opacity: .8;
    pointer-events: auto;
    cursor: pointer; }
  ul.hum_menu li {
    position: absolute;
    left: 5px;
    width: 30px;
    height: 2px;
    background-color: #fafaff;
    transition: all 0.5s cubic-bezier(0.19, 0.81, 0.14, 0.98); }
    ul.hum_menu li:first-child {
      top: 9px; }
    ul.hum_menu li:nth-child(2) {
      top: 19px; }
    ul.hum_menu li:nth-child(3) {
      top: 29px; }
    ul.hum_menu li:nth-child(4) {
      opacity: 0;
      top: 20px;
      transform: rotateZ(45deg); }
    ul.hum_menu li:nth-child(5) {
      opacity: 0;
      top: 20px;
      transform: rotateZ(-45deg); }
  ul.hum_menu.is-active li:first-child {
    opacity: 0;
    transform: translateY(8px); }
  ul.hum_menu.is-active li:nth-child(2) {
    opacity: 0; }
  ul.hum_menu.is-active li:nth-child(3) {
    opacity: 0;
    transform: translateY(-8px); }
  ul.hum_menu.is-active li:nth-child(4) {
    opacity: 1; }
  ul.hum_menu.is-active li:nth-child(5) {
    opacity: 1; }

nav.navi_menu {
  position: fixed;
  bottom: 0;
  right: -100vw;
  width: 100vw;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.5);
  z-index: 5;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.19, 0.81, 0.14, 0.98); }
  @media screen and (min-width: 1024px) {
    nav.navi_menu {
      right: -33vw;
      width: 33vw; } }
  nav.navi_menu a {
    display: block;
    transition: all .4s ease; }
    nav.navi_menu a:hover {
      color: #000000; }
  nav.navi_menu h2 {
    font-family: "Libertinus Sans", sans-serif;
    font-weight: normal;
    font-style: italic;
    color: #fafaff;
    font-size: 32px;
    margin: 0 auto;
    margin-top: 20px;
    padding-bottom: 5px;
    width: 80%;
    border-bottom: #fafaff 1px solid; }
  nav.navi_menu ul.news {
    margin: 0 auto;
    color: #fafaff;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-bottom: 20px;
    width: 80%; }
    nav.navi_menu ul.news li time {
      font-size: 12px; }
    nav.navi_menu ul.news li h3 {
      font-size: 14px;
      height: 20px;
      line-height: 20px; }
      @media screen and (min-width: 1024px) {
        nav.navi_menu ul.news li h3 {
          font-size: 16px; } }
  nav.navi_menu ul.sns {
    margin: 0 auto;
    margin-top: 40px;
    width: 80%;
    justify-content: left; }
    nav.navi_menu ul.sns > li:not(:first-child) {
      margin-left: 10%; }
  nav.navi_menu > h2.BtT {
    position: absolute;
    bottom: 3vh;
    left: 10%;
    font-size: 20px;
    border-bottom: none;
    width: fit-content;
    display: inline-block; }
  nav.navi_menu.is-active {
    right: 0;
    opacity: 1; }

body.home {
  background-color: #fafaff; }

body.home > .container > section {
  scroll-snap-align: start;
  height: auto;
  min-height: 100vh;
  background-color: #fafaff;
  overflow: hidden;
  position: relative; }
  body.home > .container > section h1 {
    font-family: "Libertinus Sans", sans-serif;
    font-weight: normal;
    font-style: italic;
    text-align: center;
    font-size: 40px;
    line-height: 10vh;
    padding: 45vh 0;
    text-shadow: 1px 1px 10px rgba(250, 250, 255, 0.5); }
  body.home > .container > section h2.headline {
    font-family: "Libertinus Sans", sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 40px;
    text-align: center;
    padding-top: 40px; }
  body.home > .container > section.hero {
    position: relative; }
    body.home > .container > section.hero h2 {
      position: absolute;
      left: 50vw;
      transform: translateX(-50%);
      z-index: 2;
      color: #fafaff;
      text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); }
    body.home > .container > section.hero div.disc {
      position: absolute;
      top: 100px;
      left: 0;
      padding: 0px 10px;
      z-index: 2; }
      @media screen and (min-width: 1024px) {
        body.home > .container > section.hero div.disc {
          top: 90%; } }
      body.home > .container > section.hero div.disc h3 {
        font-size: 20px;
        line-height: 1;
        font-weight: bold;
        text-align: left;
        color: #fafaff;
        margin-bottom: 10px;
        text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); }
        @media screen and (min-width: 768px) {
          body.home > .container > section.hero div.disc h3 {
            bottom: 45px;
            left: 20px;
            font-size: 24px; } }
      body.home > .container > section.hero div.disc p {
        font-size: 14px;
        line-height: 1;
        font-weight: bold;
        text-align: left;
        color: #fafaff;
        text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); }
        @media screen and (min-width: 768px) {
          body.home > .container > section.hero div.disc p {
            bottom: 20px;
            left: 20px;
            font-size: 16px; } }
    body.home > .container > section.hero > a img {
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      object-fit: cover;
      position: absolute;
      z-index: 1;
      animation: img_zoom linear 60s; }
  body.home > .container > section p.copyright {
    position: absolute;
    bottom: 20px;
    right: 50vw;
    padding-bottom: 0px;
    transform: translateX(50%);
    text-align: center;
    font-size: 10px; }

ul.news_top {
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  ul.news_top li {
    position: relative;
    width: 100%;
    margin-bottom: 10px; }
    @media screen and (min-width: 768px) {
      ul.news_top li {
        width: 50%;
        min-height: 30vh;
        box-sizing: border-box;
        padding: 10px 1%; } }
    ul.news_top li a {
      display: block; }
      ul.news_top li a > span {
        display: block;
        background-color: #000000;
        width: 100%;
        overflow: hidden; }
        ul.news_top li a > span > img {
          display: block;
          width: 100%;
          height: 15vh;
          object-fit: cover;
          opacity: 0.6;
          transition: opacity 0.3s,transform 0.3s; }
          @media screen and (min-width: 768px) {
            ul.news_top li a > span > img {
              height: auto;
              opacity: 1;
              aspect-ratio: 2.35 / 1; } }
      ul.news_top li a time {
        position: absolute;
        top: 0px;
        left: 10px;
        z-index: 2;
        color: #fafaff;
        font-size: 12px;
        text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); }
        @media screen and (min-width: 768px) {
          ul.news_top li a time {
            position: unset;
            color: #000000;
            display: block;
            font-size: 14px;
            line-height: 1.2;
            margin-top: 10px;
            opacity: .7;
            text-shadow: none; } }
      ul.news_top li a h3 {
        font-size: 16px;
        line-height: 1.5;
        display: none; }
        @media screen and (min-width: 768px) {
          ul.news_top li a h3 {
            display: block;
            font-size: 20px; } }
      ul.news_top li a p {
        display: none; }
        @media screen and (min-width: 768px) {
          ul.news_top li a p {
            position: unset;
            display: block;
            color: #000000;
            text-shadow: none;
            font-size: 14px;
            line-height: 1.2; } }
      @media screen and (min-width: 768px) {
        ul.news_top li a:hover > span > img {
          opacity: 0.8;
          transform: scale(1.05, 1.05);
          transition: opacity 0.3s,transform 0.3s; } }

section#about {
  position: relative; }
  section#about > ul.slick li {
    overflow: hidden;
    height: 100vh; }
  section#about > ul.slick li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 30s ease; }
  section#about > ul.slick .slick-active img {
    transform: scale(1.1); }
  section#about > h1 {
    font-family: "Libertinus Sans", sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    section#about > h1 img {
      width: 80vw; }
      @media screen and (min-width: 1024px) {
        section#about > h1 img {
          width: 30vw; } }

section#about_content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity .8s ease; }
  section#about_content.is-visible {
    opacity: 1; }
  section#about_content h2 {
    color: #fafaff; }

div.flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }
  div.flex img.prof {
    width: auto;
    height: 40vh;
    object-fit: contain; }
    @media screen and (min-width: 1024px) {
      div.flex img.prof {
        width: 40%;
        height: auto; } }
  div.flex p.prof {
    width: 100%;
    color: #fafaff;
    margin-top: 5%; }
    @media screen and (min-width: 1024px) {
      div.flex p.prof {
        width: 50%;
        margin-top: 0;
        margin-left: 5%; } }
  div.flex section {
    width: 100%;
    margin-top: 5%; }
    @media screen and (min-width: 1024px) {
      div.flex section {
        width: 50%;
        margin-top: 0;
        margin-left: 5%; } }
  div.flex.top {
    margin-top: 40px; }
  div.flex.profile {
    padding-top: 40px; }

a.btn {
  display: block;
  position: relative;
  width: fit-content;
  font-family: "Libertinus Sans", sans-serif;
  font-weight: normal;
  font-style: italic;
  text-align: center;
  font-size: 30px;
  color: #000000;
  background-color: #fafaff;
  line-height: 30px;
  height: 30px;
  padding: 5px 10px;
  margin: 0 auto;
  margin-top: 60px;
  transition: all 0.5s cubic-bezier(0, 0.72, 0.14, 0.98); }
  a.btn::before {
    background-color: #fafaff;
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    width: 0px;
    height: 1px;
    top: 0px;
    left: 0px;
    transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
  a.btn::after {
    background-color: #fafaff;
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    width: 0px;
    height: 1px;
    bottom: 0px;
    right: 0px;
    transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
  a.btn > span::before {
    background-color: #fafaff;
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    width: 1px;
    height: 0px;
    top: 0px;
    right: 0px;
    transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
  a.btn > span::after {
    background-color: #fafaff;
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    width: 1px;
    height: 0px;
    bottom: 0px;
    left: 0px;
    transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
  a.btn:hover {
    color: #fafaff;
    background-color: transparent;
    transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
    a.btn:hover::before, a.btn:hover::after {
      width: 100%;
      transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
    a.btn:hover > span::before, a.btn:hover > span::after {
      height: 100%;
      transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
  a.btn.contact {
    margin-top: 10px;
    color: #fafaff;
    background-color: #000000; }
    a.btn.contact::before {
      background-color: #000000;
      content: '';
      display: block;
      position: absolute;
      z-index: 10;
      width: 0px;
      height: 1px;
      top: 0px;
      left: 0px;
      transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
    a.btn.contact::after {
      background-color: #000000;
      content: '';
      display: block;
      position: absolute;
      z-index: 10;
      width: 0px;
      height: 1px;
      bottom: 0px;
      right: 0px;
      transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
    a.btn.contact > span::before {
      background-color: #000000;
      content: '';
      display: block;
      position: absolute;
      z-index: 10;
      width: 1px;
      height: 0px;
      top: 0px;
      right: 0px;
      transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
    a.btn.contact > span::after {
      background-color: #000000;
      content: '';
      display: block;
      position: absolute;
      z-index: 10;
      width: 1px;
      height: 0px;
      bottom: 0px;
      left: 0px;
      transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
    a.btn.contact:hover {
      color: #000000;
      background-color: transparent; }
      a.btn.contact:hover::before, a.btn.contact:hover::after {
        width: 100%;
        transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
      a.btn.contact:hover > span::before, a.btn.contact:hover > span::after {
        height: 100%;
        transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }

p.contact {
  margin-top: 30vh;
  text-align: center; }

section#about.hero {
  min-height: 100vh;
  background-color: #fafaff;
  overflow: hidden;
  display: grid;
  place-items: center; }
  section#about.hero > h1 {
    font-family: "Libertinus Sans", sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2; }
    section#about.hero > h1 > img {
      display: block;
      filter: drop-shadow(0 0px 8px #fafaff); }
  section#about.hero ul.slick {
    position: absolute;
    inset: 0;
    z-index: 1; }

p.name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px; }
  p.name span {
    font-family: "Libertinus Sans", sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 16px;
    margin-left: 10px; }

body.about section.contents h2 {
  font-style: italic;
  font-size: 20px;
  margin-top: 20px; }
body.about section.contents h3 {
  position: relative;
  cursor: pointer;
  color: #fafaff;
  height: 30px;
  line-height: 26px;
  padding-top: 5px;
  position: relative;
  background: linear-gradient(90deg, #8c8676 0%, #ccc091 100%);
  background-size: 200% 100%;
  background-position: left;
  transition: background-position .4s ease;
  margin-bottom: 2px;
  padding-left: 5px; }
  body.about section.contents h3:hover {
    background-position: right; }
body.about section.contents ul {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
  body.about section.contents ul > li {
    line-height: 20px;
    border-bottom: 1px solid #000000;
    padding-bottom: 10px;
    padding-top: 10px; }
    body.about section.contents ul > li:last-child {
      border-bottom: none; }
    body.about section.contents ul > li span {
      font-size: 10px; }
body.about section.contents p {
  height: 20px;
  line-height: 20px; }

section.single_fv {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: #000000; }
  section.single_fv > .fv_disc {
    position: absolute;
    z-index: 2;
    bottom: 50vh;
    left: 50vw;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fafaff;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); }
    section.single_fv > .fv_disc > h1 {
      font-size: 20px;
      line-height: 1; }
      @media screen and (min-width: 1024px) {
        section.single_fv > .fv_disc > h1 {
          font-size: 32px; } }
    section.single_fv > .fv_disc > time {
      font-size: 14px;
      text-align: left; }
      @media screen and (min-width: 1024px) {
        section.single_fv > .fv_disc > time {
          font-size: 16px; } }
  section.single_fv img {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    animation: img_zoom linear 60s;
    opacity: 0.8; }

article {
  padding: 20px 0;
  scroll-snap-align: none; }
  article a {
    text-decoration: underline; }
  article figure.wp-block-image > img {
    display: block;
    width: 80%;
    height: auto;
    margin: 0 auto; }
  article .wp-block-columns {
    margin-top: 20px; }
  article h2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px; }
    article h2 span {
      font-size: 14px;
      display: block;
      color: #8c8676; }
      article h2 span.subtitle {
        font-size: 14px;
        color: #000000;
        display: inline; }
      @media screen and (min-width: 1024px) {
        article h2 span {
          font-size: 16px; } }
  article blockquote, article q, article pre {
    font-style: italic; }
  article p {
    line-height: 1.5;
    margin-bottom: 10px; }
  article h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 5px 5px;
    height: 14px;
    line-height: 14px;
    font-size: 14px;
    width: fit-content;
    border: 1px solid #000000; }
    @media screen and (min-width: 1024px) {
      article h3 {
        font-size: 16px;
        height: 16px;
        line-height: 16px; } }
    article h3 + p {
      font-weight: bold;
      font-size: 20px; }
      article h3 + p > a {
        font-size: 16px; }
  article iframe {
    width: 100%;
    display: block;
    max-width: 600px; }
    article iframe.youtube {
      aspect-ratio: 16 / 9; }
  article ul {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px; }
    article ul li {
      font-weight: bold;
      font-size: 20px;
      line-height: 1.3; }
      article ul li > span {
        font-weight: normal;
        font-size: 16px;
        display: block; }
        article ul li > span.ex {
          display: block;
          height: 10px;
          line-height: 10px;
          font-size: 10px; }
    article ul.ex {
      margin-top: 10px;
      display: block; }
      article ul.ex li {
        font-size: 12px;
        line-height: 1.2; }
    article ul.sch {
      display: block; }
      article ul.sch li {
        font-size: 14px; }
        @media screen and (min-width: 768px) {
          article ul.sch li {
            font-size: 16px; } }
  article h4 {
    font-size: 20px;
    margin-bottom: 10px; }

hr {
  margin-top: 20px;
  margin-bottom: 20px; }

h2.headline {
  font-family: "Libertinus Sans", sans-serif;
  font-weight: normal;
  font-style: italic;
  font-size: 40px;
  text-align: center; }

h4.tags {
  font-family: "Libertinus Sans", sans-serif;
  font-weight: normal;
  font-style: italic;
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px; }

ul.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center; }
  ul.post-tags li {
    font-family: "Libertinus Sans", sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 14px;
    color: #fafaff;
    height: 20px;
    line-height: 20px;
    padding: 2px 10px;
    border-radius: 20px;
    background: #ccc091;
    transition: all .4s ease; }
    ul.post-tags li:hover {
      opacity: .5; }

nav.post-nav {
  position: relative;
  margin-top: 20px;
  height: 20px;
  font-family: "Libertinus Sans", sans-serif;
  font-weight: normal;
  font-style: italic;
  font-size: 20px; }
  nav.post-nav > .next {
    position: absolute;
    left: 0; }
  nav.post-nav > .prev {
    position: absolute;
    right: 0; }

ul.recent_news {
  margin-top: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  ul.recent_news li {
    box-sizing: border-box;
    height: 15vh;
    width: 100%;
    margin-top: 1.5vh;
    background-color: #000000;
    position: relative;
    overflow: hidden; }
    @media screen and (min-width: 768px) {
      ul.recent_news li {
        width: 24%;
        aspect-ratio: 2 / 3;
        height: auto;
        margin-top: 0; } }
    ul.recent_news li time {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 14px;
      line-height: 1;
      font-weight: bold;
      color: #fafaff;
      z-index: 2;
      text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5); }
      @media screen and (min-width: 768px) {
        ul.recent_news li time {
          font-size: 16px; } }
    ul.recent_news li h3 {
      position: absolute;
      bottom: 10px;
      right: 10px;
      font-size: 16px;
      line-height: 1;
      font-weight: bold;
      text-align: right;
      color: #fafaff;
      z-index: 2; }
      @media screen and (min-width: 768px) {
        ul.recent_news li h3 {
          font-size: 16px; } }
    ul.recent_news li > a img {
      width: 100%;
      height: 100%;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      object-fit: cover;
      position: absolute;
      z-index: 1; }
      @media screen and (min-width: 768px) {
        ul.recent_news li > a img {
          opacity: 1;
          transform: scale(1, 1);
          transition: opacity 0.3s,transform 0.3s; } }
    @media screen and (min-width: 768px) {
      ul.recent_news li > a:hover img {
        opacity: 0.8;
        transform: scale(1.05, 1.05);
        transition: opacity 0.3s,transform 0.3s; } }

h2.VAN {
  font-family: "Libertinus Sans", sans-serif;
  font-weight: normal;
  font-style: italic;
  font-size: 30px;
  text-align: center;
  width: fit-content;
  padding: 5px 10px;
  margin: 0 auto;
  background-color: #000000;
  color: #fafaff;
  position: relative;
  transition: all 0.5s cubic-bezier(0, 0.72, 0.14, 0.98); }
  h2.VAN::before {
    background-color: #000000;
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    width: 0px;
    height: 2px;
    top: 0px;
    left: 0px;
    transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
  h2.VAN::after {
    background-color: #000000;
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    width: 2px;
    height: 0px;
    top: 0px;
    right: -1px;
    transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
  h2.VAN > span::before {
    background-color: #000000;
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    width: 0px;
    height: 2px;
    bottom: 0px;
    right: 0px;
    transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
  h2.VAN > span::after {
    background-color: #000000;
    content: '';
    display: block;
    position: absolute;
    z-index: 10;
    width: 2px;
    height: 0px;
    bottom: 0px;
    left: -1px;
    transition: all 0.2s cubic-bezier(0, 0.72, 0.14, 0.98); }
  h2.VAN:hover {
    color: #000000;
    background-color: #fafaff; }
    h2.VAN:hover::before {
      width: 100%; }
    h2.VAN:hover::after {
      height: 100%; }
    h2.VAN:hover > span::before {
      width: 100%; }
    h2.VAN:hover > span::after {
      height: 100%; }

h1#archive {
  font-family: "Libertinus Sans", sans-serif;
  font-weight: normal;
  font-style: italic;
  font-size: 40px;
  text-align: center;
  padding-top: 40px; }

h2.archive-title {
  font-family: "Libertinus Sans", sans-serif;
  font-weight: normal;
  font-style: italic;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  margin-top: 20px;
  font-size: 20px;
  padding: 5px 10px;
  border: 1px solid #000000; }

ul.news_archive {
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  justify-content: left;
  flex-wrap: wrap; }
  ul.news_archive li {
    position: relative;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #acacac;
    min-height: 45vh; }
    @media screen and (min-width: 768px) {
      ul.news_archive li {
        width: calc( 100% / 3);
        min-height: 30vh;
        box-sizing: border-box;
        padding: 10px 1%;
        margin-bottom: 20px;
        border-bottom: none; } }
    ul.news_archive li a {
      display: block; }
      ul.news_archive li a > span {
        display: block;
        background-color: #000000;
        width: 100%;
        overflow: hidden; }
        ul.news_archive li a > span > img {
          display: block;
          width: 100%;
          height: auto;
          aspect-ratio: 16 / 9;
          object-fit: cover;
          transition: opacity 0.3s,transform 0.3s; }
      ul.news_archive li a time {
        display: block;
        font-size: 12px;
        font-weight: bold;
        color: #000000;
        line-height: 1;
        margin-top: 5px; }
        @media screen and (min-width: 768px) {
          ul.news_archive li a time {
            font-size: 14px; } }
      ul.news_archive li a h3 {
        font-size: 16px;
        line-height: 2;
        display: block; }
        @media screen and (min-width: 768px) {
          ul.news_archive li a h3 {
            display: none;
            font-size: 20px; } }
      ul.news_archive li a p {
        font-size: 12px; }
        @media screen and (min-width: 768px) {
          ul.news_archive li a p {
            position: unset;
            color: #000000;
            text-shadow: none;
            font-size: 14px;
            line-height: 1.2;
            margin-top: 10px; } }
      @media screen and (min-width: 768px) {
        ul.news_archive li a:hover > span > img {
          opacity: 0.8;
          transform: scale(1.05, 1.05);
          transition: opacity 0.3s,transform 0.3s; } }

nav.navigation h2.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }
nav.navigation div.nav-links {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  font-family: "Libertinus Sans", sans-serif;
  font-weight: normal;
  font-style: italic;
  font-size: 20px;
  font-weight: bold;
  gap: 20px; }
  nav.navigation div.nav-links > a {
    display: inline-block; }
  nav.navigation div.nav-links > .prev {
    position: absolute;
    left: 0; }
  nav.navigation div.nav-links > .next {
    position: absolute;
    right: 0; }
  nav.navigation div.nav-links > .current {
    color: #fafaff;
    text-shadow: 0 0px 8px rgba(0, 0, 0, 0.9); }

section.archive_contents_wrapper {
  min-height: 80vh; }
