@charset "UTF-8";

/**
 * common
 */

:root {
  interpolate-size: allow-keywords;
  --white: #fff;
  --black: #221815;
  --red: #bc1129;
  --green: #00774e;
  --blue: #003686;
  --yellow: #da9100;
  --header-height: 50px;
  --inner-width: 600px;
  --font-ryo: ryo-gothic-plusn, sans-serif;
  --font-gothic: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

@view-transition {
  navigation: auto;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;

  @media (prefers-reduced-motion: reduce) {
    scroll-behavior: auto;
  }
}

body {
  background: var(--white);
  color: var(--white);
  font-family: var(--font-gothic);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  min-height: 100svh;

  &:has(dialog[open]) {
    overflow: hidden;
  }
}


a {
  color: inherit;
  text-decoration: none;
}

a.border {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.3s;
  text-decoration-color: currentColor;

  @media (any-hover: hover) {
    &:hover {
      text-decoration-color: transparent;
      text-decoration: none;
    }
  }
}

a.opacity {
  transition: 0.3s;

  img {
    transition: 0.3s;
  }

  @media (any-hover: hover) {
    &:hover {
      opacity: 0.8;

      img {
        opacity: 0.8;
      }
    }
  }

  .c-button.-white {
    a {
      @media (any-hover: hover) {
        &:hover {
          opacity: 1;
        }
      }
    }
  }
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: middle;
}

svg {
  fill: currentColor;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
}

h1,
h2,
h3,
p.catch {
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  overflow-wrap: break-word;
  font-family: var(--font-ryo);
}

h1 {
  line-height: 1;
}

h2 {
  margin-bottom: 0.5em;
  font-size: clamp(1.625rem, 1.45rem + 0.875vw, 2.5rem);
}

h3,
p.catch {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
}

h2,
h3,
p.catch {
  margin-inline: auto;
  text-align: center;
}

p.catch {
  margin-top: 0.5em;
}

h3.gothic {
  margin-bottom: 1.5em;
}

p,
ul,
ol {
  margin: 0;
}

p {
  overflow-wrap: break-word;
  /*word-break: auto-phrase;*/
}

small {
  font-size: 0.9em;
}

ul {
  list-style: none;
}

dl {
  width: 100%;

  dt {
    font-weight: 400;
  }
}

strong {
  font-weight: 700;
}

/**
 * header
 */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  width: 100%;
  background: var(--black);
  height: var(--header-height);

  h1 {
    a {
      display: flex;
      flex-direction: row;

      span {
        padding: 0.3em;
        height: var(--header-height);
        justify-content: center;
        display: flex;
        align-items: center;
        text-align: center;
        letter-spacing: normal;
      }
    }
  }
}

.button-icon {
  position: relative;
  display: grid;
  flex: 0 0 calc(var(--header-height) - 0.5em);
  place-items: center;
  inline-size: calc(var(--header-height) - 0.5em);
  block-size: calc(var(--header-height) - 0.5em);
  border: 0;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  transition: 0.3s;
  margin: 0 0.5em 0 auto;

  @media (any-hover: hover) {
    &:hover {
      background-color: var(--white);
      color: var(--black);
    }
  }

  &::before,
  &::after {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 20px;
    background: currentColor;
    content: "";
  }
}

.button-menu {
  &::before {
    width: 20px;
    height: 2px;
    border-radius: 20px;
    background: currentColor;
    box-shadow:
      0 -6px 0 currentColor,
      0 6px 0 currentColor;
  }

  &::after {
    content: none;
  }
}

.button-close {
  transition:
    background-color 0.2s,
    rotate 0.2s ease;
  color: var(--white);

  @media (any-hover: hover) {
    &:hover {
      rotate: 90deg;
      background: var(--black);
      color: var(--white);
    }
  }

  &::before {
    rotate: 45deg;
  }

  &::after {
    rotate: -45deg;
  }
}

.menu-dialog {
  --menu-interaction-delay: 0s;
  position: fixed;
  display: grid;
  gap: 1em;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--black);
  interactivity: inert;
  pointer-events: none;
  transition:
    opacity 0.4s,
    translate 0.4s ease,
    display 0.4s allow-discrete,
    overlay 0.4s allow-discrete,
    interactivity 0s var(--menu-interaction-delay) allow-discrete,
    pointer-events 0s var(--menu-interaction-delay) allow-discrete;
  transition-behavior: allow-discrete;

  &:not([open]):not(:popover-open) {
    display: none;
  }

  &::backdrop {
    background: rgb(32 32 32 / 30%);
    opacity: 0;
    transition: opacity 0.4s;
  }

  &[open],
  &:popover-open {
    --menu-interaction-delay: 0.4s;
    interactivity: auto;
    opacity: 1;
    pointer-events: auto;
    translate: 0 0;
    width: 100%;
    height: 100%;
    margin-left: auto;
    max-width: 18rem;

    &::backdrop {
      opacity: 1;
    }

    @starting-style {
      interactivity: inert;
      opacity: 0;
      pointer-events: none;

      &::backdrop {
        opacity: 0;
      }
    }
  }
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-list {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;

  a,
  summary {
    cursor: pointer;
    font-weight: bold;
  }

  >a,
  summary {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding-inline: 16px;
    border-radius: 8px;
    transition: background-color 0.2s;

    @media (any-hover: hover) {
      &:hover {
        background-color: var(--white);
      }
    }
  }
}

.menu-full {
  inset: 0;
  grid-template-rows: var(--header-height) minmax(0, 1fr);
  gap: 0;
  width: 100%;
  max-width: 18rem;
  margin-left: auto;
  height: 100dvh;
  overflow-y: auto;
  padding-block: 0;
  padding-inline: 0;
  overscroll-behavior-y: contain;
  opacity: 0;
  translate: 24px 0;

  &::backdrop {
    background: transparent;
  }

  &[open] {
    opacity: 1;
    translate: 0 0;

    @starting-style {
      opacity: 0;
      translate: 24px 0;
    }
  }

  .menu-list {
    overflow: visible;
    overscroll-behavior-y: auto;
  }

  .menu-header {
    min-height: var(--header-height);
    justify-content: flex-end;
  }
}

.menu-fullscreen {
  grid-template-rows: var(--header-height) minmax(0, 1fr);
  overflow-y: auto;

  &[open],
  &:popover-open {
    .menu-fullscreen-nav {
      a {
        @starting-style {
          opacity: 0;
          translate: calc((var(--menu-index) - 1) * 24px) 0;
        }
      }
    }
  }

  .menu-fullscreen-nav {
    counter-reset: fullscreen-item;
    display: grid;
    align-content: start;
    gap: 0;
    padding-block: 0;
    max-width: var(--inner-width);
    margin-inline: auto;
    height: fit-content;
    margin: var(--header-height) auto;
    color: var(--white);

    a {
      --menu-index: sibling-index();
      counter-increment: fullscreen-item;
      gap: 0.5em;
      display: flex;
      flex-direction: row;
      align-items: center;
      /* display: grid;
      grid-template-columns: minmax(0, 1fr);
      align-items: baseline;*/
      padding-block: 0.5em;
      border-radius: 0;
      font-size: 1.4rem;
      font-weight: 700;
      line-height: 1;
      translate: 0 0;
      transition:
        opacity 0.4s ease,
        translate 0.4s ease,
        background-color 0.2s,
        padding-inline 0.2s;
      transition-delay:
        calc((var(--menu-index) - 1) * 50ms),
        calc((var(--menu-index) - 1) * 50ms),
        0s,
        0s;

      &:hover {
        opacity: 0.7;
      }
    }

    .arrow {
      color: currentColor;
      line-height: 1;
      width: 0;
      height: 0;
      border-style: solid;
      border-color: transparent;
      border-width: 0.3em 0.5em;
      border-left-color: currentColor;
      border-right: 0;
      margin-top: -0.1em;
    }
  }
}

/**
 * pagetop
 */
#pagetop {
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 99;
  display: block;
  display: grid;
  flex: 0 0 calc(var(--header-height) - 0.5em);
  place-items: center;
  inline-size: calc(var(--header-height) - 0.5em);
  block-size: calc(var(--header-height) - 0.5em);
  cursor: pointer;
  background: var(--black);
  opacity: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;

  &.visible {
    opacity: 1;
    pointer-events: auto;
  }

  @media (any-hover: hover) {
    &:hover {
      background: var(--white);

      span {
        border-color: var(--black);
      }
    }
  }

  span {
    transition: 0.3s;
    width: 0.8em;
    height: 0.8em;
    border-top: 3px solid var(--white);
    border-right: 3px solid var(--white);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 0.3em;
  }
}

/**
 * fadein
 */
.js-scroll {
  opacity: 0;
  transition: opacity 500ms;

  &.scrolled {
    opacity: 1;

    &.fadein {
      animation: fade-in-bottom 0.8s ease-in-out both;
    }
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/**
 * details
 */
details {
  div {
    overflow: hidden;
  }

  summary {
    /*list-style: none;*/
    cursor: pointer;

    &::-webkit-details-marker {
      /* display: none;*/
    }
  }

  &::details-content {
    content-visibility: unset;
    display: block grid;

    @media (prefers-reduced-motion: no-preference) {
      transition-duration: 300ms;
      transition-property: grid-template-rows;
    }
  }

  &:not([open])::details-content {
    grid-template-rows: 0fr;
  }

  &[open]::details-content {
    grid-template-rows: 1fr;
  }
}

/**
 * main
 */

.u-flex {
  display: flex;
  gap: 2em 1em;
}

.u-grid {
  display: grid;
  gap: 1.5em 1em;

  &.u-grid_2 {
    grid-template-columns: repeat(2, 1fr);
  }

  &.u-grid_3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.u-pc {
  display: none;

  @media screen and (min-width: 768px) {
    display: flex;
  }
}

.u-sp {
  display: flex;

  @media screen and (min-width: 768px) {
    display: none;
  }
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  font-size: 0.85em !important;
  color: currentColor;
  margin-left: 0.3em;
  vertical-align: text-top;
}

.red-bg {
  background: var(--red);
}

.blue-bg {
  background: var(--blue);
}

.green-bg {
  background: var(--green);
}

.yellow-bg {
  background: var(--yellow);
}

.black-bg {
  background: var(--black);
}

.gothic {
  font-family: var(--font-gothic);
}

.ryo {
  font-family: var(--font-ryo);
}

.c-button {

  a,
  .link {
    position: relative;
    border-radius: 5em;
    /*border: 2px solid var(--white);*/
    font-weight: 700;
    max-width: 12rem;
    width: 100%;
    margin: 1em auto;
    padding: 0.5em 2em;
    background: transparent;
    text-align: center;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 0.3em;
    color: #fff;
    box-shadow: rgba(6, 24, 44, 0.3) 0px 0px 0px 1px, rgba(6, 24, 44, 0.5) 0px 4px 6px -1px, rgba(255, 255, 255, 0.05) 0px 1px 0px inset;

    .arrow {
      color: currentColor;
      line-height: 1;
      width: 0;
      height: 0;
      border-style: solid;
      border-color: transparent;
      border-width: 0.25em 0.4em;
      border-left-color: currentColor;
      border-right: 0;
      position: absolute;
      right: 0.8em;
    }

    .material-symbols-outlined {
      position: absolute;
      right: 0.8em;
    }

    @media (any-hover: hover) {
      &:hover {
        transform: translateY(3px);
        /*background: var(--white);
        box-shadow: 0 -3px 0 #d8d8d8 inset !important;*/
      }
    }
  }

  &.-top {
    margin-top: 5em;
  }

  &.-red {
    a {
      background: linear-gradient(0deg, #760202, #800409, #89060f, #930814, #9d0a19, #a70d1e, #b20f23, var(--red));
      /*box-shadow: 0 -5px 0 #870b1e inset;*/

      @media (any-hover: hover) {
        &:hover {
          background: linear-gradient(180deg, #760202, #800409, #89060f, #930814, #9d0a19, #a70d1e, #b20f23, var(--red));
        }
      }
    }
  }

  &.-yellow {
    a {
      background: linear-gradient(0deg, #da700c, #da7509, #da7a06, #db7e04, #db8302, #da8801, #da8c00, var(--yellow));
      /*box-shadow: 0 -5px 0 #a16e0b inset;*/

      @media (any-hover: hover) {
        &:hover {
          background: linear-gradient(180deg, #da700c, #da7509, #da7a06, #db7e04, #db8302, #da8801, #da8c00, var(--yellow));
        }
      }
    }
  }


  &.-blue {
    a {
      background: linear-gradient(0deg, var(--blue), #003a90, #003e9b, #0043a5, #0047b0, #004bba, #0050c5, #0054d0);
      /*box-shadow: 0 -5px 0 #06162d inset;*/

      @media (any-hover: hover) {
        &:hover {
          background: linear-gradient(180deg, var(--blue), #003a90, #003e9b, #0043a5, #0047b0, #004bba, #0050c5, #0054d0);
        }
      }
    }
  }

  &.-green {
    a {
      background: linear-gradient(0deg, var(--green), #007c53, #008158, #00865e, #008b63, #009069, #00956e, #009a74);

      /* box-shadow: 0 -5px 0 #024b32 inset;*/
      @media (any-hover: hover) {
        &:hover {
          background: linear-gradient(180deg, var(--green), #007c53, #008158, #00865e, #008b63, #009069, #00956e, #009a74);
        }
      }
    }
  }

  &.-blue_border {
    a {
      border: none;
      color: var(--blue);
      background: var(--white);
      box-shadow: 0 -5px 0 #d8d8d8 inset;
      padding: 0.5em 0.3em 0.7em;
      font-size: 0.9em;
      line-height: 1.5;

      @media (any-hover: hover) {
        &:hover {
          color: var(--blue);
          background: var(--white);
          box-shadow: 0 -3px 0 #d8d8d8 inset !important;
        }
      }
    }
  }

  &.-white {

    a,
    .link {
      border: none;
      color: currentColor;
      background: var(--white);
      height: 100%;
      display: flex;
      align-items: center;
      max-width: 9rem;
      margin: 0.5em auto;
      padding: 0.3em 0.5em 0.5em;
      box-shadow: 0 -5px 0 #d8d8d8 inset !important;

      @media (any-hover: hover) {
        &:hover {
          border: none;
          background: var(--white);
          box-shadow: 0 -5px 0 #d8d8d8 inset !important;
          transform: none;
        }
      }

      .material-symbols-outlined {
        color: #999;
        position: absolute;
        right: 0.6em;
        margin: auto;
        line-height: 1;
        font-size: 0.7em !important;
      }

      img {
        aspect-ratio: auto !important;
        object-fit: contain !important;
        max-height: 2rem;
        min-height: 2rem;
        max-width: 6rem;
        width: 100%;
        height: 100%;
        display: block;
        margin: auto;
      }
    }
  }
}

.inner,
.u-flex,
.u-grid {
  width: 95%;
  margin-inline: auto;
  max-width: var(--inner-width);
}

.inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  max-width: var(--inner-width);
  padding: 4em 0;
}

.l-main {
  min-height: 100vh;

  section {
    position: relative;
  }
}

.l-footer {
  background: var(--white);
  position: relative;
  z-index: 10;
  color: var(--black);

  .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2em;
    padding: 4em 0 3em;
  }

  h2,
  h3 {
    margin: auto;
  }

  .message {
    p {
      color: var(--black);
      text-align: left;

      @media screen and (min-width: 541px) {
        text-align: center;
      }

      &:not(:last-child) {
        margin-bottom: 1em;
      }
    }
  }

  .logo {
    margin: 1em auto 2em;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 2em;
    flex-direction: column;

    @media (min-width: 361px) {
      align-items: flex-end;
      flex-direction: row;
    }

    a {
      width: fit-content;
      display: flex;
      flex-direction: column;
      justify-content: center;

      img {
        margin: auto;
        display: block;
        height: 100px;
        object-fit: contain;
      }

      small {
        margin-top: 0.8em;
      }
    }
  }

  dl {
    text-align: center;

    dt {
      font-weight: 700;
    }

    dd {
      p {
        &:not(:last-child) {
          margin-bottom: 1em;
        }
      }

      ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0 1em;
        justify-content: center;

        &:not(:last-child) {
          margin-bottom: 1em;
        }
      }

      details {
        width: fit-content;
        margin: 0.5em auto;

        summary {
          max-width: 6rem;
          width: 100%;
          border-radius: 5em;
          background: var(--black);
          color: var(--white);
          padding: 0.2em 1em 0.1em;
          font-size: 0.9em;
          font-weight: 700;
          margin: 0 auto;
          text-align: left;
        }

        &[open] {
          >div {
            margin: 0.5em auto 1em;
          }
        }

      }
    }
  }

  #copyright {
    display: block;
    width: 95%;
    margin-inline: auto;
    padding-bottom: 2em;
    font-size: min(0.9em, 2.5vw);
    white-space: nowrap;
    text-align: center;
  }
}

.cocodoco-button {
  a {
    background: #2ba1e2;
    color: var(--white);
    text-align: center;
    border-radius: 5px;
    display: block;
    text-decoration: none;
    font-weight: 700;
    padding: 1em 2em 0.9em;
    width: fit-content;
    margin: auto;
  }

  .arrow {
    display: inline-block;
    vertical-align: middle;
    color: currentColor;
    line-height: 1;
    position: relative;
    width: 1em;
    height: 1em;
    transform: translateX(-25%) rotate(45deg);

    &::before,
    &::after {
      content: '';
      position: absolute;
      background: currentColor;
      border-radius: 0.1em;
    }

    &::before {
      top: 0;
      left: 0;
      right: 0;
      height: 0.1em;
    }

    &::after {
      top: 0;
      right: 0;
      bottom: 0;
      width: 0.1em;
    }
  }
}

.p-top {
  .l-header {
    background: none;

    h1 {
      display: none;
    }
  }

  #pagetop {
    display: none;
  }

  h1 {
    font-size: clamp(3.4375rem, 2.875rem + 2.8125vw, 6.25rem);
    margin-inline: auto;
    text-align: center;
  }


  .l-main {
    section {
      text-align: center;

      .parallax-bg {
        position: sticky;
        top: 0;
        width: 100%;
        height: 100vh;
        margin-bottom: -100vh;
        z-index: 0;
      }

      .inner {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .fukidashi {
        background: url("../images/fukidashi.png") no-repeat center / contain;
        padding: 8em 8em 7em 8em;
        width: 100%;
        max-width: 360px;
        margin: auto;

        @media (min-width: 768px) {
          padding: 12em 13.8em 10em;
          max-width: var(--inner-width);
        }

        img {
          width: 100%;
          max-width: 15rem;
          margin: auto;
        }
      }

      &.ekikara {
        z-index: 1;
        min-height: 100vh;
        display: flex;
        flex-direction: column;

        .inner {
          margin: auto;
        }

        .fukidashi {
          padding: 9em 7.7em 7.5em;
          animation: fade-in-bottom 0.8s ease-in-out both;

          @media (min-width: 768px) {
            padding: 15em 13em 12.5em;
          }
        }

        .parallax-bg {

          .parallax-bg__top,
          .parallax-bg__bottom {
            position: absolute;
            inset: 0;
            z-index: -1;

            &::before,
            &::after {
              position: absolute;
              content: "";
              width: 50%;
              height: 50%;
            }

            &::before {
              left: 0;
            }

            &::after {
              right: 0;
            }
          }

          .parallax-bg__top {

            &::before,
            &::after {
              top: 0;
            }

            &::before {
              background: var(--red);
            }

            &::after {
              background: var(--yellow);
            }
          }

          .parallax-bg__bottom {

            &::before,
            &::after {
              bottom: 0;
            }

            &::before {
              background: var(--green);
            }

            &::after {
              background: var(--blue);
            }
          }
        }

        p.catch {
          margin-bottom: 1em;
        }
      }

      &.art {
        z-index: 2;

        .parallax-bg {
          background: var(--black);
        }
      }

      &.kyun {
        z-index: 3;

        .parallax-bg {
          background: var(--red);
        }
      }

      &.guuguu {
        z-index: 4;

        .parallax-bg {
          background: var(--yellow);
        }
      }


      &.ikiiki {
        z-index: 5;

        .parallax-bg {
          background: var(--blue);
        }
      }

      &.suisui {
        z-index: 6;

        .parallax-bg {
          background: var(--green);
        }

        .fukidashi {
          padding: 8em;

          @media (min-width: 768px) {
            padding: 11em 14.5em 11em;
          }
        }
      }
    }
  }
}

.p-page {
  .l-main {
    margin-top: var(--header-height);

    .inner {
      padding: 3em 0 6em;
    }
  }

  .bread {
    .bread__list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 1em;
      font-size: 0.9em;
      line-height: 1;

      .bread__list-item {
        display: flex;
        align-items: center;

        +.bread__list-item::before {
          content: ">";
          margin: 0 0.5em;
          line-height: 1;
          margin-top: -0.2em;
        }

        &[aria-current="page"] {
          cursor: default;
        }
      }
    }
  }

  &.p-art {
    figcaption {
      margin-top: 0.5em;
    }

    .p-art__list {
      .bread {
        position: absolute;

        .bread__list {
          z-index: 1;
        }
      }

      .u-grid {
        gap: 0;
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(1, 1fr);

        @media (min-width: 768px) {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      figure {
        display: flex;
        flex-direction: column;
        gap: 0.5em;
        justify-content: center;
        align-items: center;
        padding: 5em 2em;

        >a {
          width: fit-content;
        }

        figcaption {
          text-align: center;
        }

        img {
          aspect-ratio: 12 / 8;
          object-fit: cover;
          display: block;
          margin: auto;
          max-width: 30rem;
          width: 100%;
        }

        .c-button {
          width: 100%;
        }
      }
    }

    .p-art__main {
      margin: 0 auto 3em;

      figcaption {
        text-align: center;
        margin-inline: auto;
        letter-spacing: 0.05rem;
      }
    }

    .p-art__about {
      width: 100%;
      padding: 0 1em;
      align-items: flex-end;

      .p-art__about-img {
        flex: 0.5;

        figcaption {
          font-size: 0.9em;
        }
      }

      .p-art__about-name {
        flex: 1;

        .name {
          display: flex;
          flex-direction: column;
          margin-bottom: 2em;
          line-height: 1.3;
          gap: 0.5em;
          letter-spacing: 0.05rem;

          ruby {
            font-size: 1.8em;
            letter-spacing: 0.1rem;

            rt {
              margin-bottom: 0.3em;
              text-align: center;
              font-size: 40%;
            }
          }

          span {
            font-size: 0.9em;
          }
        }
      }
    }

    dl.border-line {
      margin-top: 3.5em;
      padding: 0 1em;

      >dt {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5em;
        font-weight: 700;
        letter-spacing: 0.05rem;
        margin-bottom: 1em;

        .line {
          background: var(--white);
          height: 1px;
          width: 100%;
          flex: 1;
        }
      }
    }

    .timeline_text {
      margin: 1em 0;
      padding: 0 1em;

      p {
        &:not(:last-child) {
          margin-bottom: 1em;
        }
      }
    }

    dl.timeline {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5em;
      align-items: baseline;
      margin-bottom: 1em;

      dt {
        width: 20%;
      }

      dd {
        width: calc(80% - 1em);
      }
    }
  }


  .c-button {
    a {
      max-width: 13rem;
    }
  }

  .u-grid {
    a.opacity {
      &:hover {
        .c-button.-white {

          a,
          .link {
            transform: translateY(3px);
            box-shadow: 0 -3px 0 #d8d8d8 inset !important;
          }
        }
      }
    }
  }

  .u-grid_2 {
    li {
      img {
        object-fit: cover;
        aspect-ratio: 12 / 7;
        margin-inline: auto;
      }
    }
  }

  .u-grid_3 {
    li {
      img {
        object-fit: cover;
        aspect-ratio: 12 / 9;
        margin-inline: auto;
      }
    }
  }

  &.ikiiki {
    .u-grid {
      li {
        img {
          display: none;
        }

        .c-button {
          a {
            margin: auto;
            max-width: 100%;
            height: 4em;
            display: flex;
            align-items: center;
            justify-content: center;
          }
        }
      }
    }
  }

  .magazine-bg {
    background: url("../images/book.svg") no-repeat center bottom / contain;
    padding: 0.5em 1em 0;
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;

    img {
      aspect-ratio: auto !important;
      object-fit: contain !important;
      max-height: 2rem;
      min-height: 2rem;
      max-width: 5rem;
      width: 100%;
      height: 100%;
      display: block;
      margin: auto;
      mix-blend-mode: multiply;
    }
  }

  .archives {
    width: 100%;

    figure {
      figcaption {
        text-align: center;
        margin-top: 0.3em;
      }

      >a {
        img {
          object-fit: cover;
          aspect-ratio: 12 / 7;
        }
      }
    }
  }


  .glightbox-clean .gslide-title {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;

    small {
      font-size: 0.8em;
    }
  }
}