@charset "UTF-8";

/* --------------
     layout 
--------------*/
html,
body {
  overflow-anchor: none;
}

.wrapper {
  margin: 3.5rem auto 0;
  max-width: 110rem;
  width: 100%;
}

.wrapper-middle {
  margin: 3.5rem auto 0;
  max-width: 80rem;
  width: 100%;
}

.wrapper-small {
  margin: 3.5rem auto 0;
  max-width: 75rem;
  width: 100%;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.content-wrap {
  padding: 0 2.8rem;
}

.contents-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  text-align: center;
  line-height: 1.4;
}

.flex-row {
  display: flex;
  flex-flow: row wrap;
}

:root {
  --header-expanded: 14rem;
  --header-compact: 7.4rem;
  --header-h: var(--header-expanded);
}

body.is-header-compact {
  --header-h: var(--header-compact);
}

.header-wrap {
  top: var(--wp-admin--admin-bar--height, 0px);
}

.header-inner {
  min-height: var(--header-h);
}

.header-spacer {
  height: var(--header-h);
}

@media (max-width: 768px) {

  .wrapper-middle,
  .wrapper-small,
  .wrapper {
    padding: 0 2.8rem;
  }
}

/* --------------
  header
--------------*/
.header-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 100;
  background:
    url("../img/site-bg.png") repeat,
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 30%);
}

.header-inner {
  max-width: 128rem;
  width: 100%;
  min-height: 14rem;
  padding: 2.8rem clamp(1.6rem, 1.6vw, 7rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 1rem;
  transition: min-height .25s ease, padding .25s ease, column-gap .25s ease;
}

.header-logo {
  width: clamp(20rem, 28vw, 28rem);
  justify-self: center;
  transition: max-width .25s ease;
}

.header-logo img {
  display: block;
  width: 100%;
  height: auto;
}

body.is-header-compact .header-inner {
  min-height: 7.4rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

body.is-header-compact .header-logo {
  max-width: 20rem;
}

.header-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu a {
  color: #08131a;
  font-size: 1.6rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.header-menu a+a {
  border-left: .1rem solid #08131a;
  padding-left: 1.6rem;
  margin-left: 1.6rem;
}

.pc-only {
  display: block;
}

.sp-only,
.sp-drawer {
  display: none;
}

/* SP */
@media (max-width:850px) {
  .header-wrap {
    justify-content: flex-start;
  }

  .header-inner {
    grid-template-columns: 44px 1fr 44px;
    min-height: 7.4rem;
    padding: 0 1.6rem;
  }

  .header-inner::after {
    content: "";
    grid-column: 3;
    width: 44px;
    height: 44px;
  }

  .header-logo {
    grid-column: 2;
    justify-self: center;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline-flex;
    font-size: 2.2rem;
    border: none;
    background: none;
    cursor: pointer;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  body.is-menu-open .sp-only.header-burger {
    visibility: hidden;
  }

  .sp-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
  }

  .sp-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .sp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    transition: opacity .2s ease;
  }

  .sp-drawer.is-open .sp-overlay {
    opacity: 1;
  }

  .sp-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 32rem;
    height: 100%;
    background:
      url("../img/site-bg.png") repeat,
      radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), transparent 30%);
    padding: 4rem 2.8rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .25s ease;
    will-change: transform;
  }

  .sp-drawer.is-open .sp-drawer__panel {
    transform: translateX(0);
  }

  .sp-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    margin-top: 6rem;
  }

  .sp-drawer__nav a {
    display: block;
    color: #08131a;
    font-size: 2rem;
    line-height: 1.2;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0;
  }

  .sp-drawer__nav a:visited {
    color: #08131a;
  }

  .sp-drawer__close {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    background: none;
    color: #08131a;
    border: 0.2rem solid #08131a;
    border-radius: 2rem;
    padding: 0.8rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .08rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .sp-drawer__close i {
    font-size: 1.4rem;
    line-height: 1;
  }

  .sp-drawer__close:hover {
    background: #08131a;
    color: #FFF8ED;
  }

  .sp-drawer__close:hover i {
    color: #FFF8ED;
  }

  .sp-drawer__close:focus-visible {
    outline: 2px solid #08131a;
    outline-offset: 3px;
  }
}

/* --------------
     button 
--------------*/
.btn-small-wh {
  display: flex;
  flex-flow: row;
  gap: 0.6rem;
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 400;
  box-shadow: inset 0 0 0 0.1rem #08131a;
  border-radius: 9rem;
  width: fit-content;
  padding: 1.4rem 4rem;
  letter-spacing: 0.08rem;
  color: #08131a;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  background: #fff;
}

.btn-small-wh:hover,
.btn-small-wh:active,
.btn-large-wh:hover,
.btn-large-wh:active {
  background-color: #08131a;
  color: #fff;
}

.btn-large-wh {
  display: flex;
  flex-flow: row;
  gap: 0.6rem;
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 400;
  box-shadow: inset 0 0 0 0.1rem #08131a;
  border-radius: 4rem;
  width: fit-content;
  padding: 1.4rem 4rem;
  letter-spacing: 0.08rem;
  color: #08131a;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  background: #fff;

}

.btn-small-bk {
  display: flex;
  flex-flow: row;
  gap: 0.6rem;
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 400;
  border-radius: 4rem;
  width: fit-content;
  padding: 1.4rem 4rem;
  letter-spacing: 0.08rem;
  color: #fff;
  background-color: #08131a;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-large-bk {
  display: flex;
  flex-flow: row;
  gap: 0.6rem;
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 400;
  border-radius: 4rem;
  width: fit-content;
  padding: 1.4rem 4rem;
  letter-spacing: 0.08rem;
  color: #fff;
  background-color: #08131a;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-small-bk:hover,
.btn-small-bk:active,
.btn-large-bk:hover,
.btn-large-bk:active {
  box-shadow: inset 0 0 0 0.1rem #08131a;
  background: none;
  color: #08131a;
}

@media (max-width: 768px) {
  .btn-large-bk {
    padding: 1.4rem 3.2rem;
  }
}


/* --------------
     title
--------------*/
.content__title-wrap {
  margin-top: 10rem;
}

.contents-title {
  text-align: center;
}

.contents-title span {
  display: block;
  max-width: 2.4rem;
  height: 0.3rem;
  background-color: #08131a;
  margin: 2rem auto 0;
}

/* --------------
     pager
--------------*/
.pager-wrapper {
  margin: 2.4rem auto 0;
}

.pager {
  justify-content: center;
  gap: 0.8rem;
}

.page-numbers {
  width: 3.3rem;
  height: 3.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.2rem;
  color: #08131a;
  text-decoration: none;
}

.pager .current {
  color: #fff;
  background-color: #08131a;
  border-radius: 0.8rem;
  padding-left: 0.3rem;
}

/* --------------
     note
--------------*/
.note__normal {
  font-size: 1.8rem;
  line-height: 3.2rem;
}

.note__small {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.annotation {
  font-size: 1rem;
  line-height: 1.2rem;
}

@media (max-width: 768px) {

  .note__normal,
  .note-small {
    font-size: 1.6rem;
  }
}

/* --------------
     tag
--------------*/
.tag {
  font-size: 12px;
  line-height: 1;
  border: solid 0.1rem #08131a;
  border-radius: 2rem;
  padding: 0.2rem 0.7rem 0.2rem 0.8rem;
  width: fit-content;
  height: 20px;
  display: flex;
  align-items: center;
}

/* --------------
     date
--------------*/
.date {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}

/* --------------
     video
--------------*/
.video-block iframe {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  aspect-ratio: 16 / 9;
}

/* --------------
     border
--------------*/

.block__border-thin.is-sp,
.block__border.is-sp {
  display: none;
}

.block__border {
  width: 100%;
  height: 1.5rem;
  background: url("../img/about-contena__border.png") center / cover no-repeat;
}

.block__border-thin {
  width: 100%;
  height: 0.18rem;
  background: url("../img/about-contena__border-thin.png") center / cover no-repeat;
}

@media (max-width: 768px) {

  .block__border-thin.is-sp,
  .block__border.is-sp {
    display: block;
  }

  .block__border-thin.is-pc,
  .block__border.is-pc {
    display: none;
  }
}

/* --------------
     footer
--------------*/
.footer-wrap {
  padding: 10rem 2.8rem 4rem;
}

.footer-wrap__inner {
  max-width: 100rem;
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 0 auto;
  gap: 6rem;
}

.footer-img {
  border-top: 0.1rem solid #08131a;
  width: 100%;
  padding-top: 6rem;
  display: flex;
  justify-content: center;
}

.footer-img img {
  display: block;
  max-width: 11.6rem;
  width: 100%;
}

.footer-column,
.footer-social {
  display: flex;
  flex-flow: column;
  gap: 2.4rem;
  align-items: center;
}

.footer-logo img {
  width: clamp(18rem, 28vw, 28rem);
  display: block;
  margin: 0 auto;
}

.footer-contents__note {
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-align: center;
}

.footer-contents__link {
  font-size: 1.4rem;
  display: block;
  padding: 0.1rem 0.8rem 0.4rem;
  border: 1px solid #08131a;
  border-radius: 0.2rem;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  color: #08131a;
}

.footer-social__icons {
  justify-content: center;
  gap: 1.6rem;
}

.footer-social__icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  background-color: #08131a;
  border-radius: 50%;
  transition: background-color .2s ease;
}

.footer-social__icons a img {
  display: block;
  width: 50%;
  height: auto;
  transition: filter .2s ease;
}

.footer-social__icons a:hover {
  background-color: #FFF8ED;
  border: 0.2rem solid #08131a;
}

.footer-social__icons a:hover img {
  filter: invert(1);
}

.footer-social__icons .note img {
  max-width: 4rem;
  width: 100%;
}

.footer-social__icons .youtube img {
  max-width: 3.2rem;
  width: 100%;
}

.footer-social__note {
  font-size: 1.2rem;
  line-height: 1.2rem;
}

@media (max-width: 768px) {
  .footer-wrap {
    padding: 8rem 2.8rem 4rem;
  }

  .footer-wrap__inner {
    gap: 4rem;
  }

  .footer-img {
    padding-top: 4rem;
  }
}


/* --------------------
     maintenance
--------------------*/
.maintenance-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.maintenance-page_inner {
  width: 100%;
  max-width: 65rem;
  margin: 0 auto;
}

.maintenance__block {
  text-align: center;
}

.maintenance__block img {
  width: clamp(24rem, 40vw, 40rem);
  display: block;
  margin: 0 auto;
}

.maintenance {
  margin-top: 1.6rem;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1.4;
}

/* scroll */

@media (max-width: 768px) {
  :root {
    --header-offset: 12rem;
  }

  #next-works,
  #todays-contena,
  #blog-contents,
  #top-profile {
    scroll-margin-top: var(--header-offset);
  }

}