@charset "UTF-8";

/* ==========================================================================
   Loading
========================================================================== */
@view-transition { navigation: auto; }
#siteHeader { view-transition-name: siteHeader; }
#siteFooter { view-transition-name: siteFooter; }



/*  Animation
================ */
.iv { opacity: 0; transform: translateY(1.5rem); transition: .4s cubic-bezier(.39, .575, .565, 1); transition-property: opacity,transform; }
.iv.show { opacity: 1; transform: translateY(0); }

@keyframes blink {
  0%,50%,100% { opacity: 1; }
  30%,60% { opacity: 0; }
}

@keyframes down {
  0%,40% { bottom: 100%; }
  100% { bottom: 0px; }
}
@keyframes toRight {
  0%,40% { transform: translateX(0); }
  100% { transform: translateX(3rem); }
}
@keyframes fadeout {
  0% { opacity: 0; }
  50% { opacity: 1; }
  80% { opacity: 0.9; }
  100% { opacity: 0; }
}


/*  Background
================ */
.creased-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url(../img/bg.gif) no-repeat center center / cover;
}
.creased-grid canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Base
========================================================================== */
html {
  font-size: 81.3%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 389px) {
  html { font-size: 3.3419vw; }
}
@media (min-width: 576px) {
  html { font-size: min(2vw, 81.3%); }
}
@media (min-width: 768px) {
  html { font-size: min(1.5vw, 81.3%); }
}
@media (min-width: 992px) {
  html { font-size: calc(0.13vw + 75%); }
}
@media (min-width: 1200px) {
  html { font-size: calc(0.2vw + 81.3%); }
}


body {
  font-family: var(--default-font);
  line-height: 1.5;
  color: var(--black);
}
body.navOpen {
  height: 100%;
  overflow: hidden;
}


#container:not(:has(.mv)) {
  padding-top: var(--header-height);
}
#content {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Layout
========================================================================== */
.section {
  margin-top: var(--section-gy);
  margin-bottom: var(--section-gy);
}
.section_L {
  margin-top: calc(var(--section-gy)*1.5);
  margin-bottom: calc(var(--section-gy)*1.5);
}
.section-padding {
  padding-top: calc(var(--section-gy)*0.5);
  padding-bottom: calc(var(--section-gy)*0.5);
}
.content {
  margin-top: calc(var(--section-gy)*0.5);
  margin-bottom: calc(var(--section-gy)*0.5);
}


.container { 
  max-width: var(--container-base-width); 
  position: relative;
}
.container_S,
.container_M { 
  max-width: min(var(--container-base-width), calc(60rem + var(--bs-gutter-x))); 
}


.gap_XS > .row { --bs-gutter-x: 1rem; }

@media(min-width: 576px){
  .gap_XL > .row { --bs-gutter-x: 4rem; }
  .gap_L > .row { --bs-gutter-x: 2rem; }
}
@media(min-width: 992px){
  :root, .container, .row { 
    --bs-gutter-x: 2.857rem;
  }
  .container_M { 
    max-width: min(var(--container-base-width), calc(72rem + var(--bs-gutter-x))); 
  }
  .gap_XL > .row { --bs-gutter-x: 6rem; }
  .gap_L > .row { --bs-gutter-x: 3rem; }
}
@media(min-width: 1200px){
  .gap_XL > .row { --bs-gutter-x: 10rem; }
  .gap_L > .row { --bs-gutter-x: 5rem; }
}

.g-0, .gx-0 { --bs-gutter-x: 0!important; }


@media (max-width: 991px) {
  ._pc { display: none; }
}
@media (min-width: 992px) {
  ._sp { display: none; }
}

.hr {
  width: calc(100% - 3em);
  height: 1px;
  margin-right: auto;
  margin-left: auto;
  background: var(--color1);
}
.hr::before,
.hr::after {
  content: '';
  display: block;
  width: 1em;
  aspect-ratio: 3 / 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20390%20260%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m195%20260c-15.39-111.43-27.86-119.74-195-130%20167.14-10.26%20179.61-18.57%20195-130%2015.39%20111.43%2027.86%20119.74%20195%20130-167.14%2010.26-179.61%2018.57-195%20130z%22%20fill%3D%22%23fb637e%22%2F%3E%3C%2Fsvg%3E');
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-1.5rem,50%);
  transition: transform .2s;
}
.hr::after {
  left: 100%;
  transform: translate(.5rem,50%);
}


/* ==========================================================================
   Header
========================================================================== */
/* layout */
#siteHeader {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

#siteHeader .inner-header {
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}



/* logo */
#logo {
  margin: 0;
  height: 70%;
  position: relative;
}
#logo .logo-inner {
  display: block;
  height: 100%;
  color: inherit;
  position: relative;
}
#logo .logo-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: inline-block;
  vertical-align: middle;
}
#logo .logo-inner img.logo-color {
  position: absolute;
  top: 0;
  left: 0;
}




/* white */
#container:has(.mv-video) #siteHeader:not(.fixed) .nav-btn {
  color: var(--white);
}
#container:has(#mv) #siteHeader:not(.fixed) .logo-inner {
  opacity: 0;
}


/* ==========================================================================
   Global Navigation
========================================================================== */
nav a {
  display: block;
  text-decoration: none;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  margin: 0;
}
nav ul li a {
  display: block;
  color: inherit;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  padding: .5em 0;
  position: relative;
}
nav ul li a > span {
  width: 100%;
}
nav ul li a span,
nav ul li a em {
  display: block;
  font-style: normal;
}

nav ul.social {
  flex-direction: row;
  align-items: center;
  column-gap: .5em!important;
}
nav ul.social li a {
  padding: .5em;
}



#content::before {
  content: '';
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.8);
  z-index: 30;
  opacity: 0;
  transition: .2s;
  pointer-events: none;
}
body.gNavon #content::before {
  backdrop-filter: blur(10px);
  opacity: 1;
  pointer-events: auto;
}

.gNav{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
.gNav-inner {
  width: 100%;
  height: 100vh;
  color: var(--black);
  position: absolute;
  top: 0;
  right: 0;
  
  pointer-events: none;
  opacity: 0;
  transition: .4s;
  transition-property: opacity;
}
.gNav nav {
  font-size: 1.125em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
  width: 100%;
  height: 100%;
  padding: var(--header-height) 0 calc(var(--header-height)/2);
  opacity: 0;
  transform: translateY(1em);
  transition: .4s;
  transition-property: opacity, transform;
}
.gNav nav ul {
  display: block;
  column-gap: 2em;
  margin: 0 auto;
}
.gNav nav ul li a {
  display: flex;
}
.gNav nav ul li a span {
  display: flex;
  gap: .5em;
}
.gNav nav ul.main-nav > li > a {
  font-size: 1.375em;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
.gNav nav ul.main-nav > li > a::before {
  content: '';
  display: block;
  width: 1em;
  aspect-ratio: 2 / 3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20260%20390%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m260%20195c-111.43%2015.39-119.74%2027.86-130%20195-10.26-167.14-18.57-179.61-130-195%20111.43-15.39%20119.74-27.86%20130-195%2010.26%20167.14%2018.57%20179.61%20130%20195z%22%20fill%3D%22%23fb637e%22%2F%3E%3C%2Fsvg%3E');
  position: absolute;
  top: 50%;
  right: calc(100% + .25em);
  transform: translateY(-50%);
  transition: transform .2s;
}

.gNav nav ul.social {
  display: flex;
}

@media (min-width: 992px) {
  .gNav nav ul {
    display: flex;
    flex-direction: row;
    column-gap: 3em;
  }
  .gNav nav ul.main-nav > li > a {
    font-size: 1.125em;
  }
  .gNav nav ul li a:hover {
    color: var(--color1);
  }
  .gNav nav ul li a:hover:before {
    transform: translateY(-50%) scale(1.3);
  }
}


/* OPEN */
.gNav._on .gNav-inner{
  opacity: 1;
  pointer-events: auto;
  transition: .6s;
}
.gNav._on nav {
  opacity: 1;
  transform: translateX(0);
  transition: .4s .2s;
}

/* Nav Btn */
.nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(10em, 28vw);
  height: var(--header-height);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  transition: .2s;
}
.nav-btn::before {
  content: 'MENU';
  font-family: var(--font1);
  font-weight: 600;
  letter-spacing: .04em;
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(-50%);
}
.nav-btn._on::before {
  content: 'CLOSE';
}
.nav-btn i {
  color: var(--color1);
  display: block;
  background: currentColor;
  width: 24px;
  height: 2px;
  position: absolute;
  left: calc(50% + 12px);
  margin: -1px auto 0;
  transition: transform .2s;
}
.nav-btn i:nth-of-type(1){
  top: 50%;
}
.nav-btn i:nth-of-type(2){
  top: calc(50% - 8px);
}
.nav-btn i:nth-of-type(3){
  top: calc(50% + 8px);
}
.nav-btn._on i:nth-of-type(1){
  transform: scaleX(0);
}
.nav-btn._on i:nth-of-type(2){
  top: 50%;
  transform: rotate(45deg);
}
.nav-btn._on i:nth-of-type(3){
  top: 50%;
  transform: rotate(135deg);
}
@media (min-width: 992px) {
  .nav-btn:hover{
    color: var(--color1);
  }
}


/* ==========================================================================
   Sidebar
========================================================================== */
.sidebar > * {
  margin-bottom: 1.25em;
}
.sidebar .post-list ul li {
  border-bottom: 1px solid var(--border1);
}
.sidebar .post-list ul li .card > a {
  font-size: 0.929em;
  flex-direction: row;
  align-items: flex-start;
  column-gap: 1.25em;
  padding: 1.25em 0;
}
.sidebar .post-list ul li .card .card-img {
  flex: 0 0 11em;
  margin-bottom: 0;
  aspect-ratio: 73 / 46;
}
.sidebar .post-list ul li .card .ttl {
  font-size: 1em;
}

/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  clear: both;
  overflow: hidden;
}

#siteFooter #footer-logo {
  text-align: center;
}
#siteFooter .logo-inner {
  width: 8rem;
  display: inline-block;
  color: inherit;
}

#siteFooter .footer-bottom {
  font-size: .813rem;
}
#siteFooter .footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 1em;
  column-gap: 1.5em;
}
#siteFooter .foot-menu {
  display: flex;
  gap: 1.5em;
  list-style-type: none;
}
#siteFooter .copyright {
  text-align: center;
  font-size: .714rem;
}

@media(min-width: 992px){
  #siteFooter #footer-logo {
    text-align: left;
  }
}



/* ==========================================================================
   Footer Navigation
========================================================================== */
.fNav nav {
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
.fNav nav ul {
  column-gap: 2em;
}
.fNav nav ul.main-nav > li > a {
  font-size: 1.25em;
  font-weight: 400;
  white-space: nowrap;
}


@media(max-width: 575px){
  .fNav nav ul {
    flex-direction: column;
  }
}
@media(min-width: 576px){
  .fNav nav {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
@media(min-width: 992px){
  .fNav {
    width: 100%;
  }
  .fNav nav {
    align-items: flex-end;
  }
  .fNav nav ul {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .fNav nav ul.main-nav li a:hover {
    color: var(--color1);
  }
  .fNav nav ul.social li a:hover {
    color: var(--color1);
  }
}