@charset "UTF-8";
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600&display=swap");
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  background: transparent;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}
/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}
/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}
/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  font-weight: bold;
  vertical-align: bottom;
}
td {
  font-weight: normal;
  vertical-align: top;
}
hr {
  border: 0;
  border-top: 1px solid #ccc;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
input[type=radio] {
  vertical-align: text-bottom;
}
input[type=checkbox] {
  vertical-align: bottom;
}
.ie7 input[type=checkbox] {
  vertical-align: baseline;
}
.ie6 input {
  vertical-align: text-bottom;
}
select, input, textarea {
  font: 99% sans-serif;
}
table {
  font: 100%;
  font-size: inherit;
}
small {
  font-size: 85%;
}
strong {
  font-weight: bold;
}
td, td img {
  vertical-align: top;
}
/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}
/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}
/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}
/* make buttons play nice in IE */
button,
input[type=button] {
  overflow: visible;
  width: auto;
}
/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}
/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
/* resset.dev • v5.0.2 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}
*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}
::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}
* {
  margin: 0;
  padding: 0; /* Reset `padding` and `margin` of all elements */
}
/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  color: inherit; /* Correct border color in Firefox. */
  height: 0; /* Add the correct box sizing in Firefox */
  overflow: visible; /* Show the overflow in Edge and IE */
}
details,
main {
  display: block; /* Render the `main` element consistently in IE. */
}
summary {
  display: list-item; /* Add the correct display in all browsers */
}
small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}
[hidden] {
  display: none; /* Add the correct display in IE */
}
abbr[title] {
  border-bottom: none; /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}
a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}
pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}
b,
strong {
  font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
}
/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  border-color: inherit; /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0; /* Remove text indentation in Chrome, Edge, and Safari */
}
iframe {
  border-style: none;
}
/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */
}
[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */
}
textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}
button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}
optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}
button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}
button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}
/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}
/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}
/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}
/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}
select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}
select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}
legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
}
::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}
/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}
/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}
/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}
/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}
/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}
/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}
/**
 * Swiper 12.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 28, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  box-sizing: content-box;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}
/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: var(--swiper-centered-offset-after);
      min-width: 1px;
      width: 100%;
    }
  }
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    fill: currentColor;
       object-fit: contain;
    pointer-events: none;
    transform-origin: center;
  }
}
.swiper-button-lock {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}
body.page #main {
  padding-block-end: 236px;
  padding-block-start: clamp(125px, 100dvh - 750px, 150px);
}
body.page #main .inner {
  display: grid;
  grid-template-columns: 38px 1fr minmax(auto, 1022px) 1fr 38px;
  grid-template-rows: auto auto;
  row-gap: 100px;
}
body.page #main .inner a {
  text-decoration: underline;
}
body.page #main .head,
body.page #main .data {
  grid-column: 3/4;
  grid-row: 1/2;
}
body.page #main .title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  margin-block: 84px 78px;
}
body.page #main .content.jp {
  font-family: "Zen Old Mincho", serif;
  padding-inline-end: 5px;
  text-align: justify;
}
body.page #main .content.en h4 {
  margin-block: 3em -0.9em;
}
body.page #main .content.en ul {
  margin-block: -0.875em;
}
body.page #main .content.en ul li {
  margin-block: 0.075em;
}
body.page #main .content h3,
body.page #main .content h4 {
  line-height: 150%;
}
body.page #main .content h3 {
  font-size: 17px;
  margin-block-end: 3em;
}
body.page #main .content h4 {
  font-size: 15px;
  margin-block: 2.815em -0.45em;
}
body.page #main .content p {
  font-size: 14px;
  line-break: strict;
  line-height: 150%;
  margin-block: 1.5em;
  text-align: justify;
}
body.page #main .content p:first-child {
  margin-block-start: 0;
}
body.page #main .content p:last-child {
  margin-block-end: 0;
}
body.page #main .content ul {
  margin-block: -0.45em 1em;
}
body.page #main .content ul li {
  font-size: 14px;
  line-break: strict;
  line-height: 150%;
  margin-block: 0.7125em;
  padding-inline-start: 1.5em;
  position: relative;
  text-align: justify;
}
body.page #main .content ul li:before {
  aspect-ratio: 1/1;
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  display: block;
  left: 8px;
  position: absolute;
  top: 9px;
  width: 4.5px;
}
#main {
  padding-block: 150px 115px;
}
#main .year,
#main .status {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  padding-block: 34px 36px;
}
#main .post {
  align-items: flex-end;
  display: grid;
  gap: 23px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  margin-inline-start: auto;
  padding-block-start: 29px;
}
#main .post + .post {
  margin-block-start: 70px;
}
#main .post .image {
  aspect-ratio: 852/564;
  grid-column: 1/3;
}
#main .post .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#main .post .title {
  margin-block: 4px 5px;
}
#main .meta > * {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  line-height: 129%;
}
#main .subtitle {
  font-size: 18.25px;
  font-weight: 500;
}
#main .title {
  font-size: 18.5px;
  margin-block: 0 4px;
}
#main .period {
  font-size: 15px;
  opacity: 0.5;
}
#main .link {
  padding-block-end: 2px;
}
#main .link a {
  display: inline-block;
  line-height: 1;
  position: relative;
}
#main .link a:after {
  background-color: currentColor;
  bottom: 1px;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  transition: width 0.4s ease;
  width: 100%;
}
#main .archive:not(:first-of-type) .year:before {
  background-color: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0.1;
  position: absolute;
  top: 0;
  width: 100%;
}
#main .archive:not(:last-of-type) .posts:after {
  content: "";
  display: block;
  height: 100px;
  width: 100%;
}
#main .archive.is-open .posts .post {
  opacity: 1;
}
#main .archive.is-open .year .arrow {
  transform: rotate(-180deg);
}
#main .archive .posts {
  height: 0;
  overflow: hidden;
}
#main .archive .posts .post {
  opacity: 0;
  transition: opacity 0.6s ease;
}
#main .archive .year {
  cursor: pointer;
  position: relative;
}
#main .archive .year .arrow {
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  right: 23px;
  top: calc(50% - 6px);
  transition: transform 0.6s ease;
  width: 14px;
}
#main .archive .year .arrow .wrap {
  display: block;
  height: 100%;
  transform: scale(0.975, 1.05);
  width: 100%;
}
#main .archive .year .arrow .wrap:after {
  border: 1.5px solid currentColor;
  border-left: none;
  border-top: none;
  content: "";
  display: block;
  height: 100%;
  transform: rotate(45deg) translate(-22.5%, -22.5%);
  width: 100%;
}
#header {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
#header .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-block: 54px 0;
  padding-inline: 38px;
}
#header .logo {
  width: 195px;
}
#header .logo a {
  align-items: center;
  display: flex;
  justify-content: center;
}
#header .logo svg {
  aspect-ratio: 195/18;
  width: 100%;
}
#header .logo svg path {
  fill: currentColor;
}
#header .menu {
  display: flex;
  gap: 39px;
}
#header .menu li label,
#header .menu li a {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}
#header .menu li label {
  cursor: pointer;
}
#header .menu li:has(.name) .name {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  top: -1px;
}
#header .menu li:has(.name) .name:after {
  background-color: currentColor;
  content: "";
  display: inline-block;
  height: 1px;
  margin-inline: 11px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 16px;
}
#footer {
  bottom: 33px;
  left: 33.5px;
  padding-inline-start: 150px;
  position: fixed;
  writing-mode: vertical-rl;
  z-index: 8;
}
#footer .information {
  align-items: flex-end;
  display: flex;
  -moz-column-gap: 33px;
       column-gap: 33px;
}
#footer .information > p {
  font-size: 14px;
}
#footer .information .description {
  flex-shrink: 2;
  max-height: 304px;
}
#footer .information .address {
  flex-shrink: 1;
}
html,
body {
  color: #000;
  font-family: "garamond-premier-pro", "Zen Old Mincho", serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
@property --screensaver-bg {
  syntax: "<color>";
  inherits: true;
  initial-value: #ffffff;
}
body {
  antialiased: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--screensaver-bg, #FFF);
  font-feature-settings: "palt";
}
svg,
source,
img {
  vertical-align: top;
}
a {
  color: currentColor;
  text-decoration: none;
  transition: opacity 0.4s;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.side-content {
  background-color: transparent;
  container-type: inline-size;
  height: 100%;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 0.3s, pointer-events 0.3s;
  width: 100%;
  z-index: 20;
}
.side-content:has(input[id*=switch-]:not([id=switch-inquiry]):checked) {
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: all;
}
.side-content:has(input[id*=switch-]:not([id=switch-inquiry]):checked) .side-content-panel {
  transform: translateX(0);
}
.side-content:has(input[id*=switch-]:not([id=switch-inquiry]):checked) .side-content-panel .logo-upper {
  transform: translateX(0);
}
.side-content#collection .side-content-inner {
  overflow: hidden;
  position: relative;
  transition: height 0.6s ease;
}
.side-content#collection .side-content-inner section {
  min-height: 0;
  transition: transform 0.6s ease;
  width: 100%;
}
.side-content#collection .side-content-inner section.collection {
  position: relative;
  transform: translateY(0);
}
.side-content#collection .side-content-inner section.inquiry {
  left: 0;
  position: absolute;
  top: 0;
  transform: translateY(100%);
  width: 100%;
}
.side-content#collection:has(#switch-inquiry:checked) .side-content-panel {
  background-color: #000;
  color: #FFF;
}
.side-content#collection:has(#switch-inquiry:checked) .side-content-panel .btn-close {
  opacity: 0;
  pointer-events: none;
}
.side-content#collection:has(#switch-inquiry:checked) .side-content-panel .btn-back {
  opacity: 1;
  pointer-events: all;
}
.side-content#collection:has(#switch-inquiry:checked) .logo-upper span {
  color: #FFF;
}
.side-content#collection:has(#switch-inquiry:checked) .side-content-inner section.collection {
  transform: translateY(-100%);
}
.side-content#collection:has(#switch-inquiry:checked) .side-content-inner section.inquiry {
  transform: translateY(0);
}
.side-content#collection:has(#switch-inquiry:checked) .side-content-inner section.inquiry input,
.side-content#collection:has(#switch-inquiry:checked) .side-content-inner section.inquiry button,
.side-content#collection:has(#switch-inquiry:checked) .side-content-inner section.inquiry select,
.side-content#collection:has(#switch-inquiry:checked) .side-content-inner section.inquiry textarea {
  color: #FFF;
}
.side-content#collection:has(#switch-inquiry:checked) .side-content-inner {
  overflow: visible;
}
.side-content-container {
  height: 100%;
  width: 100%;
}
.side-content-panel {
  background-color: #FFF;
  color: #000;
  height: 100%;
  margin-inline: auto 0;
  max-width: 1023px;
  overflow: hidden;
  position: relative;
  transform: translateX(100%);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  width: 100%;
}
.side-content-panel .logo-upper {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
  width: 100%;
  z-index: 2;
}
.side-content-panel .logo-upper span {
  align-items: center;
  color: #000;
  display: flex;
  justify-content: center;
  left: calc(38px + 100% - 100cqi);
  position: absolute;
  top: 54.5px;
  transition: color 0.3s;
  width: 195px;
}
.side-content-panel .logo-upper svg {
  aspect-ratio: 195/18;
  width: 100%;
}
.side-content-panel .logo-upper svg path {
  fill: currentColor;
}
.side-content-panel input[id*=switch-] {
  display: none;
}
.side-content-panel label.btn-back, .side-content-panel label.btn-close {
  align-items: center;
  aspect-ratio: 1/1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  right: 31.5px;
  top: 46px;
  transition: opacity 0.3s, pointer-events 0.3s;
  width: 32px;
  z-index: 1;
}
.side-content-panel label.btn-back span, .side-content-panel label.btn-close span {
  position: absolute;
  visibility: hidden;
}
.side-content-panel label.btn-close:before, .side-content-panel label.btn-close:after {
  background: url(../images/arrow01.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 12px;
  width: 19px;
}
.side-content-panel label.btn-close:before {
  margin-block-end: -1.5px;
  transform: scaleY(-1);
}
.side-content-panel label.btn-back {
  opacity: 0;
  pointer-events: none;
}
.side-content-panel label.btn-back:before {
  background: url(../images/arrow02.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 12px;
  width: 19px;
}
.side-content-scroll {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior-y: none;
  padding-inline: 38px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.side-content-scroll::-webkit-scrollbar {
  display: none;
}
.side-content-inner section {
  min-height: 100vh;
}
.side-content-inner .inner {
  margin-inline: auto;
  max-width: 760px;
  padding-block: 156px;
}
.side-content-inner .inner > .title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  margin-block-end: 79px;
}
.wpcf7 {
  padding-inline-start: 12.25%;
}
.wpcf7-form {
  margin-inline: auto;
  max-width: 512px;
  overflow: hidden;
}
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form dl {
  display: flex;
  margin-block-end: 27.5px;
}
.wpcf7-form dl dt {
  flex-basis: 33.3984375%;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.3;
}
.wpcf7-form dl dt .req {
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
  line-height: 0;
}
.wpcf7-form dl dd {
  flex-basis: 66.6015625%;
}
.wpcf7-form input,
.wpcf7-form button,
.wpcf7-form select,
.wpcf7-form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid rgb(133, 133, 133);
  border-radius: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  vertical-align: top;
  width: 100%;
}
.wpcf7-form input,
.wpcf7-form textarea {
  padding: 0.3em 0.75em 0.475em;
}
.wpcf7-form input[type=checkbox] {
  border-radius: 2px;
  cursor: pointer;
  height: 20px;
  padding: 0;
  width: 20px;
}
.wpcf7-form input[type=submit] {
  font-family: "garamond-premier-pro", "Zen Old Mincho", serif;
  padding-block: 0.3875em;
}
.wpcf7-form textarea {
  height: 176px;
  resize: none;
}
.wpcf7-form .title .wpcf7-form-control-wrap,
.wpcf7-form .name .wpcf7-form-control-wrap,
.wpcf7-form .email .wpcf7-form-control-wrap,
.wpcf7-form .tel .wpcf7-form-control-wrap {
  height: 34px;
}
.wpcf7-form .title .wpcf7-form-control-wrap input,
.wpcf7-form .name .wpcf7-form-control-wrap input,
.wpcf7-form .email .wpcf7-form-control-wrap input,
.wpcf7-form .tel .wpcf7-form-control-wrap input {
  border: 1.1428571429px solid rgb(133, 133, 133);
  font-size: 16px;
  transform: scale(0.875);
  transform-origin: top left;
  width: 114.2857142857%;
}
.wpcf7-form .message .wpcf7-form-control-wrap {
  height: 154px;
}
.wpcf7-form .message .wpcf7-form-control-wrap textarea {
  border: 1.1428571429px solid rgb(133, 133, 133);
  font-size: 16px;
  transform: scale(0.875);
  transform-origin: top left;
  width: 114.2857142857%;
}
.wpcf7-form .agree {
  padding-block-start: 3.5px;
  text-align: right;
}
.wpcf7-form .agree .wpcf7-list-item {
  margin-inline-start: auto;
}
.wpcf7-form .agree .wpcf7-list-item input[type=checkbox]:checked {
  background: linear-gradient(to bottom right, transparent calc(50% - 0.5px), rgb(133, 133, 133) calc(50% - 0.5px), rgb(133, 133, 133) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.wpcf7-form .agree label {
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  font-size: 13px;
  gap: 12px;
  letter-spacing: 0;
}
.wpcf7-form .agree label .jp {
  font-size: 12px;
}
.wpcf7-form .agree label .slash {
  margin-inline-end: 0.5em;
}
.wpcf7-form .agree label a {
  text-decoration: underline;
}
.wpcf7-form .submit {
  margin-block-start: 31px;
}
.wpcf7-form .submit input {
  color: currentColor;
  display: block;
  margin-inline: auto 0;
  max-width: 97px;
  transition: background-color 0.3s, color 0.3s;
}
.wpcf7-form .submit input[disabled] {
  opacity: 0.5;
}
.wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  bottom: -1.5em;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  right: 0;
  text-align: right;
  width: 100%;
}
.wpcf7 .wpcf7-form .wpcf7-spinner {
  display: none;
}
.wpcf7 .wpcf7-form .wpcf7-response-output {
  border: none;
  color: currentColor;
  font-size: 13px;
  line-height: 1.4;
  margin: 3em 0 0;
  padding: 0;
}
.wpcf7 .wpcf7-form .wpcf7-response-output__ja, .wpcf7 .wpcf7-form .wpcf7-response-output__en {
  display: block;
}
.grecaptcha-badge {
  visibility: hidden;
}
#single #main {
  padding-block-end: 253px;
}
#single #main .inner {
  display: grid;
  grid-template-columns: 38px 1fr 38px minmax(auto, 682px) 38px 1fr 38px;
}
#single #main .images {
  grid-column: 4/7;
}
#single #main .images .image {
  overflow: hidden;
}
#single #main .images .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
#single #main .images .main .image {
  aspect-ratio: 1022/717;
}
#single #main .images .thumbs {
  margin-block-start: 5px;
}
#single #main .images .thumbs .image {
  aspect-ratio: 1/1;
  cursor: pointer;
  margin-inline: 0 5px;
  max-width: 74px;
  transition: opacity 0.4s;
}
#single #main .images .thumbs .image.swiper-slide-thumb-active {
  opacity: 0.2;
}
#single #main .contents {
  grid-column: 4/7;
  margin-block-start: 101.5px;
}
#single #main .contents .text {
  margin-block-start: 75px;
  max-width: 852px;
}
#single #main .content.jp {
  font-family: "Zen Old Mincho", serif;
}
#single #main .content.en {
  margin-block-start: 74px;
}
#single #main .content p {
  font-size: 15px;
  line-break: strict;
  line-height: 153%;
  margin-block: 1.5em;
}
#single #main .content a {
  text-decoration: underline;
}
#single #main .related-artist {
  display: grid;
  gap: 103px 39px;
  grid-template-columns: repeat(2, 1fr);
  margin-block-start: 120px;
  max-width: 852px;
  padding-block-end: 43px;
}
#single #main .related-artist:has(> :only-child) {
  grid-template-columns: minmax(auto, 512px);
  justify-content: end;
  max-width: 852px;
}
#single #main .related-artist-item {
  max-width: 512px;
  width: 100%;
}
#single #main .related-artist-item a {
  pointer-events: none;
}
#single #main .related-artist-item .image {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  margin-block-end: 25px;
  max-height: 512px;
  max-width: 512px;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
}
#single #main .related-artist-item .image img {
  height: auto;
  max-height: 512px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left top;
     object-position: left top;
  pointer-events: all;
  width: auto;
}
#single #main .related-artist-item .label,
#single #main .related-artist-item .name {
  display: block;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 136%;
  pointer-events: all;
  width: -moz-fit-content;
  width: fit-content;
}
#single #main .related-artist-item .label {
  color: rgb(133, 133, 133);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  line-height: 1.2;
}
#home #contents {
  display: grid;
  grid-template-columns: 38px 1fr 38px minmax(auto, 682px) 38px 1fr 38px;
}
#home #contents > * {
  display: flex;
  grid-column: 4/7;
  margin-block-start: 150px;
  position: relative;
}
#home #contents > *:before {
  background-color: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0.1;
  position: absolute;
  top: 0;
  width: 100%;
}
#home #contents > *:first-of-type:before {
  display: none;
}
#home #contents > * .status {
  flex-basis: 16.715542522%;
  flex-shrink: 0;
}
#home #contents > * .status + * {
  width: 100%;
}
#home #contents > * .status + .posts .post:first-of-type {
  padding-block-start: 117px;
}
#home #contents > * .archives {
  min-height: 440px;
}
body#artist.archive #main {
  min-height: 480px;
  padding-block: 0;
  position: relative;
}
body#artist.archive #main .container-fixed, body#artist.archive #main .container-wheel {
  margin-inline: auto;
  max-width: 1270px;
  padding-inline: 38px;
  width: 100%;
}
body#artist.archive #main .container-fixed {
  container-type: size;
  height: max(480px, 100dvh);
  left: 0;
  padding-block: clamp(125px, 100dvh - 750px, 150px) clamp(244px, 100dvh - 750px, 238px);
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 4;
}
body#artist.archive #main .container-fixed > * {
  margin-inline: auto;
  width: 100%;
}
body#artist.archive #main .container-fixed .swiper {
  pointer-events: auto;
}
body#artist.archive #main .container-wheel {
  pointer-events: none;
  position: relative;
  z-index: 2;
}
body#artist.archive #main .head {
  max-width: 1022px;
}
body#artist.archive #main .title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  margin-block: 84px 78px;
}
body#artist.archive #main .images {
  margin-inline: auto 0;
  max-width: 42.8810720268%;
}
body#artist.archive #main .images-container {
  aspect-ratio: 1/1;
  height: auto;
  margin-inline: auto;
  overflow: hidden;
  width: min(512px, 100%, 100cqh);
}
body#artist.archive #main .images .swiper-slide {
  pointer-events: none;
}
body#artist.archive #main .images .swiper-slide a {
  pointer-events: none;
}
body#artist.archive #main .images .swiper-slide.swiper-slide-active {
  pointer-events: auto;
}
body#artist.archive #main .images .swiper-slide.swiper-slide-active a {
  pointer-events: auto;
}
body#artist.archive #main .images .image {
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
body#artist.archive #main .images .image a {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
body#artist.archive #main .images .image img {
  display: block;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  width: 100%;
}
body#artist.archive #main .names {
  --image-top: 0px;
  --image-bottom: 100dvh;
  padding-inline-end: 42.8810720268%;
  pointer-events: none;
}
body#artist.archive #main .names::before, body#artist.archive #main .names::after {
  background-color: var(--screensaver-bg, #FFF);
  content: "";
  left: 0;
  pointer-events: none;
  position: fixed;
  right: calc(38px + min(512px, 42.8810720268%));
  z-index: 3;
}
body#artist.archive #main .names::before {
  height: max(0px, var(--image-top));
  mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 18px), transparent 100%);
  top: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 18px), transparent 100%);
}
body#artist.archive #main .names::after {
  bottom: 0;
  mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 100%);
  top: var(--image-bottom);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 18px, #000 100%);
}
body#artist.archive #main .names-list {
  --name-item-height: calc(18px * 1.36);
  --artist-viewport-h: max(480px, 100dvh);
  --active-center-y: calc(var(--artist-viewport-h) / 2);
  --active-pad-top: calc(var(--active-center-y) - (var(--name-item-height) / 2));
  --active-pad-bottom: calc(var(--artist-viewport-h) - var(--active-center-y) - (var(--name-item-height) / 2));
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-inline: auto 67px;
  max-width: 52.6392961877%;
  padding-block-end: var(--active-pad-bottom);
  padding-block-start: var(--active-pad-top);
  pointer-events: auto;
}
body#artist.archive #main .names-list-item {
  font-size: 18px;
  font-weight: 500;
  line-height: 136%;
  opacity: 0;
  transition: opacity 0.25s ease;
}
body#privacy-policy #main .inner {
  row-gap: 0;
}
body#privacy-policy #main .contents {
  display: grid;
  grid-column: 3/4;
  grid-row: 2/3;
  grid-template-columns: 1fr;
}
body#privacy-policy #main .contents a#english {
  position: relative;
  top: -60px;
}
body#privacy-policy #main .contents .text {
  display: flex;
  flex-direction: column;
  margin-inline: auto 0;
  max-width: 852px;
  row-gap: 79px;
}
body#privacy-policy #main .contents .foot {
  margin-block-start: 79.5px;
}
body#privacy-policy #main .contents .foot .wrap {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}
body#privacy-policy #main .contents .foot p {
  margin-block-start: 1.5em;
}
body#about #main .contents {
  display: grid;
  grid-column: 3/4;
  grid-row: 2/3;
  grid-template-columns: 1fr;
}
body#about #main .contents .text {
  display: flex;
  flex-direction: column;
  margin-inline: auto 0;
  max-width: 852px;
  row-gap: 48px;
}
body#about #main .address {
  font-size: 14px;
}
body#about #main .contact {
  margin-block-start: 14px;
}
body#about #main .contact li {
  font-size: 15px;
  margin-block-start: 1px;
}
body#about #main .content p {
  font-size: 15px;
  line-height: 154%;
}
#single.single-artist #main {
  padding-block-end: 253px;
}
#single.single-artist #main .inner {
  display: grid;
  grid-template-columns: 38px minmax(38px, 1fr) 38px minmax(auto, 1194px) 38px;
}
#single.single-artist #main .inner > * {
  grid-column: 4/5;
  margin-inline: auto 0;
  max-width: 1194px;
  position: relative;
  width: 100%;
}
#single.single-artist #main .inner > *:before {
  background-color: currentColor;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  opacity: 0.1;
  position: absolute;
  top: 0;
  width: 100%;
}
#single.single-artist #main .inner > * > .title {
  grid-column: 1/5;
  padding-block: 32px 54.5px;
}
#single.single-artist #main .inner > section:not(:first-of-type) {
  margin-block-start: 150px;
}
#single.single-artist #main h2.title {
  padding-block: 83px 78px;
}
#single.single-artist #main h2.title:before {
  display: none;
}
#single.single-artist #main .profile {
  display: grid;
  grid-template-columns: 1fr minmax(42.797319933%, 511px) minmax(38px, 78px) minmax(36.3484087102%, 434px);
  grid-template-rows: auto 1fr;
}
#single.single-artist #main .profile .images {
  grid-column: 4/5;
  grid-row: 2/3;
  padding-block-start: 6px;
  padding-inline-start: 0;
}
#single.single-artist #main .profile .images .image {
  aspect-ratio: 434/455;
  max-width: 434px;
  overflow: hidden;
  width: 100%;
}
#single.single-artist #main .profile .images .image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top right;
     object-position: top right;
  width: 100%;
}
#single.single-artist #main .profile .text {
  grid-column: 2/3;
  grid-row: 2/3;
}
#single.single-artist #main .profile .text p {
  line-break: strict;
  line-height: 153.75%;
  margin-block: 1.5em;
}
#single.single-artist #main .profile .text p:first-child {
  margin-block-start: 0;
}
#single.single-artist #main .profile .text p:last-child {
  margin-block-end: 0;
}
#single.single-artist #main .content.jp {
  font-family: "Zen Old Mincho", serif;
}
#single.single-artist #main .content.jp p {
  text-align: justify;
}
#single.single-artist #main .content.en {
  margin-block-start: 49px;
}
#single.single-artist #main .content p {
  font-size: 15px;
  line-break: strict;
  line-height: 153%;
  margin-block: 1.5em;
}
#single.single-artist #main .content a {
  text-decoration: underline;
}
#single.single-artist #main .exhibition > .title {
  padding-block-end: 30px;
}
#single.single-artist #main .exhibition .posts {
  height: auto;
  margin-inline: auto 0;
  max-width: 852px;
}
#single.single-artist #main .exhibition .posts:after {
  display: none;
}
#single.single-artist #main .exhibition .posts .post {
  opacity: 1;
}
#single.single-artist #main .works-list {
  display: grid;
  gap: 103px 39px;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: auto 0;
  max-width: 1023px;
  padding-block: 4px 10px;
}
#single.single-artist #main .works-list .work label {
  cursor: pointer;
  transition: opacity 0.3s;
}
#single.single-artist #main .works-list .work .image img {
  height: auto;
  width: 100%;
}
#single.single-artist #main .works-list .work .title,
#single.single-artist #main .works-list .work .year {
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
#single.single-artist #main .works-list .work .title {
  font-size: 18px;
  line-height: 136%;
  margin-block-start: 11px;
}
#single.single-artist #main .works-list .work .year {
  color: rgb(133, 133, 133);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  margin-block-start: 5px;
  padding-block: 0;
}
#single.single-artist .collection .inner {
  padding-block: 108px;
}
#single.single-artist .collection .swiper {
  position: relative;
}
#single.single-artist .collection .swiper .swiper-wrapper .image {
  aspect-ratio: 760/550;
  margin-block-end: 21px;
  overflow: hidden;
  width: 100%;
}
#single.single-artist .collection .swiper .swiper-wrapper .image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
#single.single-artist .collection .swiper .swiper-wrapper .text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  padding-inline-end: 90px;
}
#single.single-artist .collection .swiper .swiper-wrapper .text > * {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 136%;
}
#single.single-artist .collection .swiper .swiper-wrapper .text .title {
  margin-block-end: 0;
}
#single.single-artist .collection .swiper .swiper-wrapper .text .size,
#single.single-artist .collection .swiper .swiper-wrapper .text .material {
  margin-block: 0;
}
#single.single-artist .collection .swiper .swiper-wrapper .text p {
  margin-block: 0.75em;
}
#single.single-artist .collection .swiper .swiper-wrapper .text p:first-child {
  margin-block-start: 0;
}
#single.single-artist .collection .swiper .swiper-wrapper .text p:last-child {
  margin-block-end: 0;
}
#single.single-artist .collection .swiper .swiper-wrapper .text .btn-inquiry {
  align-self: flex-start;
  display: inline-block;
  margin-block-start: 0.75em;
  text-decoration: underline;
  transition: opacity 0.3s;
}
#single.single-artist .collection .swiper-nav {
  bottom: 0;
  -moz-column-gap: 36px;
       column-gap: 36px;
  display: flex;
  position: absolute;
  right: 0;
  z-index: 2;
}
#single.single-artist .collection .swiper-button-prev, #single.single-artist .collection .swiper-button-next {
  bottom: 0;
  height: 20px;
  left: auto;
  margin-block: 0;
  position: relative;
  right: 0;
  top: auto;
  transition: opacity 0.3s;
  width: 12px;
}
#single.single-artist .collection .swiper-button-prev:before, #single.single-artist .collection .swiper-button-next:before {
  background: url(../images/arrow03.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
#single.single-artist .collection .swiper-button-prev span, #single.single-artist .collection .swiper-button-next span {
  position: absolute;
  visibility: hidden;
}
#single.single-artist .collection .swiper-button-prev svg, #single.single-artist .collection .swiper-button-next svg {
  display: none;
}
#single.single-artist .collection .swiper-button-prev:before {
  transform: scaleX(-1);
}
#single.single-artist .inquiry .inner {
  display: grid;
  grid-template-columns: 512px 1fr 151px;
  padding-block: 122px 150px;
}
#single.single-artist .inquiry .inner > .title {
  grid-column: 1/4;
}
#single.single-artist .inquiry .wpcf7 {
  grid-column: 1/2;
  margin-block-start: -12.5px;
}
#single.single-artist .inquiry .wpcf7 dl {
  flex-direction: column;
  margin-block-end: 30px;
  margin-inline: auto 0;
}
#single.single-artist .inquiry .wpcf7 dt {
  margin-block-end: 7.5px;
}
#single.single-artist .inquiry .wpcf7 .agree {
  margin-block-start: -2px;
}
#single.single-artist .inquiry .preview {
  grid-column: 3/4;
  margin-block-start: 31px;
}
#single.single-artist .inquiry .preview .text {
  margin-block-start: 24px;
}
#single.single-artist .inquiry .preview .text > * {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 136%;
}
@media (max-width: 980px) {
  #footer {
    display: none;
  }
  #single #main .images {
    grid-column: 2/7;
  }
  #single #main .contents {
    grid-column: 2/7;
  }
  #home #contents > * {
    grid-column: 2/7;
  }
  body#privacy-policy #main .contents {
    -moz-column-gap: 38px;
         column-gap: 38px;
  }
  body#about #main .contents {
    -moz-column-gap: 38px;
         column-gap: 38px;
  }
  #single.single-artist #main .inner {
    grid-template-columns: 38px 1fr 38px;
  }
  #single.single-artist #main .inner > * {
    grid-column: 2/3;
  }
}
@media (max-width: 767px) {
  body.page #main {
    padding-block-end: 150px;
  }
  body.page #main .inner {
    grid-template-columns: 25px 1fr minmax(auto, 1022px) 1fr 25px;
    row-gap: 50px;
  }
  body.page #main .head .title {
    font-size: 16px; /***????***/
    margin-block: 25px 75px;
  }
  body.page #main .title {
    font-size: 14px;
    margin-block: 23px 58px;
  }
  body.page #main .content.jp {
    padding-inline-end: 0;
  }
  body.page #main .content.en h4 {
    margin-block-start: 1.666em;
  }
  body.page #main .content.en p {
    text-align: left;
  }
  body.page #main .content h4 {
    margin-block-start: 1.7em;
  }
  #main .year,
  #main .status {
    padding-block: 20px;
  }
  #main .post {
    -moz-column-gap: 0;
         column-gap: 0;
    padding-block-start: 12px;
    row-gap: 31px;
  }
  #main .post + .post {
    margin-block-start: 64px;
  }
  #main .post .link {
    display: none;
  }
  #main .post .image {
    aspect-ratio: 323/248;
  }
  #main .post .meta {
    margin-inline-start: auto;
    max-width: 60%;
    width: 100%;
  }
  #main .post .subtitle,
  #main .post .title {
    font-size: 18px;
    letter-spacing: 0.01em;
  }
  #main .post .title {
    margin-block: 6px 9px;
  }
  #main .post .period {
    font-size: 13px;
    line-height: 110%;
  }
  #main .title {
    margin-block: 0 3.5px;
  }
  #main #archive .year,
  #main #archive .status {
    padding-block: 15px;
  }
  #main #archive .status {
    position: absolute;
  }
  #main .archive:not(:last-of-type) .posts:after {
    height: 80px;
  }
  #main .archive .year {
    margin-inline-start: auto;
    max-width: 60%;
  }
  #main .archive .year .arrow {
    right: 15px;
    top: calc(50% - 7px);
  }
  #header {
    background-color: var(--screensaver-bg, #FFF);
  }
  #header .inner {
    line-height: 1;
    padding-block: 25.5px 22.5px;
    padding-inline: 14.5px 15px;
  }
  #header .logo {
    max-width: 126px;
    padding-block-end: 3.5px;
  }
  #header .logo svg {
    aspect-ratio: 125/11.48;
  }
  #header .menu {
    gap: 15.5px;
  }
  #header .menu li label,
  #header .menu li a {
    font-size: 12px;
  }
  #header .menu li:has(.name) .name {
    font-size: 13px;
    top: -0.5px;
  }
  #header .menu li:has(.name) .name:after {
    margin-inline: 10px;
    width: 12px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .side-content-panel .logo-upper span {
    left: calc(15px + 100% - 100cqi);
    max-width: 126px;
    top: 26px;
    width: min(126px, 100%);
  }
  .side-content-panel .logo-upper svg {
    aspect-ratio: 125/11.48;
  }
  .side-content-panel label.btn-back, .side-content-panel label.btn-close {
    right: 8.5px;
    top: 15px;
  }
  .side-content-scroll {
    padding-inline: 25px;
  }
  .side-content-inner .inner {
    padding-block: 150px;
  }
  .side-content-inner .inner > .title {
    margin-block-end: 75px;
    margin-inline: -4px;
  }
  .wpcf7 {
    padding-inline-start: 0;
  }
  .wpcf7-form dl {
    flex-direction: column;
    margin-block-end: 30px;
  }
  .wpcf7-form dl dt {
    margin-block-end: 7.5px;
  }
  .wpcf7-form .agree {
    text-align: center;
  }
  .wpcf7-form .agree .wpcf7-list-item-label {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    text-align: left;
  }
  .wpcf7-form .agree label {
    gap: 22px;
  }
  .wpcf7-form .agree label .slash {
    display: none;
  }
  .wpcf7-form .submit {
    margin-block: 45px 7px;
  }
  .wpcf7-form .submit input {
    margin-inline: auto;
  }
  .wpcf7 .wpcf7-form .wpcf7-response-output {
    text-align: center;
  }
  #single #main {
    padding-block-end: 108px;
  }
  #single #main .inner {
    grid-template-columns: 25px 1fr 25px minmax(auto, 682px) 25px 1fr 25px;
  }
  #single #main .images {
    grid-column: 1/8;
    padding-block-start: 1px;
  }
  #single #main .images .main .image {
    aspect-ratio: 375/248;
  }
  #single #main .images .thumbs {
    padding-inline: 5px;
  }
  #single #main .images .thumbs .image {
    margin-inline: 1px;
    max-width: 64px;
  }
  #single #main .contents {
    margin-block-start: 51px;
  }
  #single #main .contents .text {
    margin-block-start: 52px;
  }
  #single #main .content.jp p {
    text-align: justify;
  }
  #single #main .content.en {
    margin-block-start: 50px;
  }
  #single #main .related-artist {
    margin-block-start: 112px;
  }
  #home #main {
    padding-block: 64px 206px;
  }
  #home #contents {
    grid-template-columns: 25px 1fr 25px minmax(auto, 682px) 25px 1fr 25px;
    padding-block-start: 5px;
  }
  #home #contents > * {
    flex-direction: column;
    margin-block-start: 110px;
  }
  #home #contents > * .status {
    flex-basis: auto;
    flex-shrink: 1;
  }
  #home #contents > * .status + .posts .post:first-of-type {
    padding-block-start: 12px;
  }
  #home #contents > * .archives {
    min-height: 96px;
  }
  #home #contents > * .archives .archive .posts .post:first-of-type {
    padding-block-start: 18px;
  }
  body#artist.archive #main .container-fixed, body#artist.archive #main .container-wheel {
    padding-inline: 25px;
  }
  body#artist.archive #main .container-fixed {
    padding-block: 148px;
  }
  body#artist.archive #main .head .title {
    font-size: 14px;
    margin-block: 0 65px;
  }
  body#artist.archive #main .title {
    font-size: 14px;
    margin-block: -2px 58px;
  }
  body#artist.archive #main .names::before, body#artist.archive #main .names::after {
    right: calc(25px + min(512px, 42.8810720268%));
  }
  body#privacy-policy #main .contents .text {
    max-width: inherit;
    row-gap: 49px;
  }
  body#privacy-policy #main .contents .foot {
    margin-block-start: 50px;
  }
  body#privacy-policy #main .contents .foot .wrap {
    display: block;
  }
  body#privacy-policy #main .contents .foot .wrap .block {
    flex-basis: 100%;
  }
  body#privacy-policy #main .contents .foot .wrap .block:nth-child(2) p {
    margin-block-start: 1em;
  }
  body#about #main .contents {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 50px;
  }
  body#about #main .contents .text {
    max-width: inherit;
    row-gap: 50px;
  }
  body#about #main .contact {
    margin-block-start: 10px;
  }
  #single.single-artist #main {
    padding-block-end: 142px;
    padding-block-start: 147px;
  }
  #single.single-artist #main .inner {
    grid-template-columns: 25px 1fr 25px;
  }
  #single.single-artist #main .inner > * > .title {
    padding-block: 12px 39.5px;
  }
  #single.single-artist #main .inner > section:not(:first-of-type) {
    margin-block-start: 110px;
  }
  #single.single-artist #main h2.title {
    padding-block: 0 45.5px;
  }
  #single.single-artist #main .profile {
    display: block;
  }
  #single.single-artist #main .profile .images {
    margin-block-end: 50px;
  }
  #single.single-artist #main .profile .images .image {
    aspect-ratio: 325/243;
  }
  #single.single-artist #main .profile .images .image img {
    -o-object-position: top left;
       object-position: top left;
  }
  #single.single-artist #main .content.en {
    margin-block-start: 50px;
  }
  #single.single-artist #main .exhibition .posts {
    margin-block-start: -22px;
  }
  #single.single-artist #main .works-list {
    padding-block-start: 18px;
  }
  #single.single-artist #main .works-list .work .title {
    font-size: 14px;
    margin-block: 8.5px 2.5px;
  }
  #single.single-artist #main .works-list .work .year {
    font-size: 13px;
    margin-block-start: 0;
  }
  #single.single-artist .collection .inner {
    margin-inline: auto;
    max-width: 512px;
    padding-block: calc(108px - (100lvh - 100dvh)) 108px;
  }
  #single.single-artist .collection .swiper .swiper-wrapper .image {
    aspect-ratio: 325/326;
    margin-block-end: 0;
  }
  #single.single-artist .collection .swiper .swiper-wrapper .text {
    min-height: 147px;
  }
  #single.single-artist .inquiry .inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-block: 92px 150px;
  }
  #single.single-artist .inquiry .wpcf7 {
    margin-block-start: 50px;
    order: 3;
  }
  #single.single-artist .inquiry .preview {
    align-items: flex-end;
    display: flex;
    gap: 16px;
    margin-block-start: 0;
    margin-inline: auto;
    max-width: 512px;
    order: 2;
    width: 100%;
  }
  #single.single-artist .inquiry .preview .image {
    flex: 0 1 auto;
    max-height: 176px;
    max-width: 50%;
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content;
  }
  #single.single-artist .inquiry .preview .image img {
    display: block;
    height: auto;
    max-height: 176px;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: top left;
       object-position: top left;
    width: auto;
  }
  #single.single-artist .inquiry .preview .text {
    flex: 1 1 auto;
    margin-block: 0 -4.5px;
    min-width: 0;
  }
}
@media (max-width: 520px) {
  body#artist.archive #main .names-list {
    margin-inline: auto 0;
    max-width: 220px;
  }
}
@media (max-width: 480px) {
  #main .post .meta {
    max-width: 64.6153846154%;
  }
  #main .archive .year {
    max-width: 64.6153846154%;
  }
  #header .menu li:has(.name) .name {
    display: none;
  }
  body#artist.archive #main .container-fixed, body#artist.archive #main .container-wheel {
    padding-inline: 25px 15px;
  }
  body#artist.archive #main .images {
    max-width: 54.328358209%;
  }
  body#artist.archive #main .images-container {
    width: min(182px, 100%, 100cqh);
  }
  body#artist.archive #main .names {
    padding-inline-end: 54.328358209%;
  }
  body#artist.archive #main .names-list {
    gap: 10.75px;
    margin-inline: 0;
  }
  #single.single-artist #main .works-list {
    gap: 62px 25px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) and (min-height: 668px) {
  #single.single-artist .collection .inner {
    padding-block: calc(165px - (100lvh - 100dvh)) 108px;
  }
}
@media (min-width: 768px) {
  body.page #main .head .title {
    margin-block-end: 61px;
  }
  #main .archive .posts {
    display: flex;
    flex-direction: column;
  }
  #main .archive .posts .post {
    gap: 24px;
    grid-template-columns: 1fr 60.0938967136%;
    grid-template-rows: auto 1fr 12.75%;
  }
  #main .archive .posts .post .link {
    grid-column: 1/2;
    grid-row: 2/3;
    max-width: 236px;
    text-align: right;
  }
  #main .archive .posts .post .image {
    grid-column: 2/3;
    grid-row: 1/4;
  }
  .wpcf7 .wpcf7-form .wpcf7-response-output {
    text-align: right;
  }
  .wpcf7 .wpcf7-form .wpcf7-response-output__ja--ends-fullwidth-punct {
    left: 0.5em;
    position: relative;
  }
  #single #main .images .thumbs .image:last-child {
    margin-inline-end: 0;
  }
  body#artist.archive #main .head .title {
    margin-block-end: -19.2px;
  }
  body#privacy-policy #main .contents .foot .wrap .block:nth-child(2) p {
    text-align: right;
  }
  #single.single-artist #main .works-list .work .title,
  #single.single-artist #main .works-list .work .year {
    letter-spacing: 0;
  }
  #single.single-artist .inquiry .wpcf7 dl {
    max-width: 341px;
  }
}
@media (min-width: 981px) and (min-height: 710px) {
  #home #main {
    padding-block-start: calc(100dvh - 560px);
  }
}
@media (min-width: 981px) {
  #home #contents > *:first-of-type {
    margin-block-start: -36px;
  }
}
@media (hover: hover) {
  body.page #main .inner a:hover {
    text-decoration: none;
  }
  #main .link a:hover:after {
    width: 0;
  }
  a:hover {
    opacity: 0.5;
  }
  .side-content#collection:has(#switch-inquiry:checked) .side-content-panel .btn-back:hover {
    opacity: 0.5;
  }
  .side-content-panel label.btn-back:hover, .side-content-panel label.btn-close:hover {
    opacity: 0.5;
  }
  .wpcf7-form .agree label a:hover {
    text-decoration: none;
  }
  .wpcf7-form .submit input:not([disabled]):hover {
    background-color: #302833;
    color: #FFF;
  }
  #single #main .images .thumbs .image:hover {
    opacity: 0.5;
  }
  body#artist.archive #main .names-list-item.is-active a:hover {
    opacity: 1;
  }
  #single.single-artist #main .works-list .work label:hover {
    opacity: 0.5;
  }
  #single.single-artist .collection .swiper .swiper-wrapper .text .btn-inquiry:hover {
    opacity: 0.5;
    text-decoration: none;
  }
  #single.single-artist .collection .swiper-button-prev:hover, #single.single-artist .collection .swiper-button-next:hover {
    opacity: 0.5;
  }
  #single.single-artist .inquiry .wpcf7 .submit input:not([disabled]):hover {
    background-color: #FFF;
    color: #000 !important;
  }
}