html {
  overflow-x: hidden;
  font-size: 16px;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #f5f5f5;
  color: #000;
  font-family: "Montserrat", YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

main {
  flex: 1;
}

a {
  transition: 0.3s;
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  font-family: "Montserrat", YakuHanJP, "Noto Sans JP", sans-serif;
  color: #000;
}

picture {
  display: block;
}

small {
  font-size: 0.8em;
}

section {
  position: relative;
}

figcaption {
  font-family: "Lusitana", serif;
  font-style: italic;
  font-size: 0.8em;
  margin-top: 0.5em;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: rgba(245, 245, 245, 0.7);
}
.l-header.--home {
  background-color: transparent;
}

.l-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: 100%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .l-header__inner {
    height: 80px;
    padding: 0 3.125vw;
  }
}
@media (min-width: 1440px) {
  .l-header__inner {
    padding: 0 min(8vw, 80px);
  }
}

.l-header__title {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .l-header__title {
    font-size: 1.5rem;
  }
}

.l-header__nav-drawer {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100dvh;
  padding: 64px 40px;
  transform: translateX(100%);
  background-color: #f5f5f5;
  transition: transform 0.6s;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 50;
}
@media (min-width: 1024px) {
  .l-header__nav-drawer {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background-color: transparent;
    transform: translate(0);
    padding: 0;
    overflow: visible;
  }
}
.l-header__nav-drawer.is-active {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .l-header__nav {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .l-header__nav-list {
    display: flex;
    margin: 0 -24px;
  }
}

.l-header__nav-item {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .l-header__nav-item {
    margin: 0 24px;
    text-align: center;
  }
}
.l-header__nav-item:not(:first-child) {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .l-header__nav-item:not(:first-child) {
    margin-top: 0;
  }
}
.l-header__nav-item a {
  position: relative;
  white-space: nowrap;
}
.l-header__nav-item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #999;
  transition: all 0.5s ease;
  transform: scale(0, 1);
  transform-origin: center top;
}
@media (hover: hover) {
  .l-header__nav-item a:hover::before, .l-header__nav-item a:focus::before {
    transform: scale(1, 1);
  }
}

.l-header__hamburger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 18px;
  transition: all 0.2s;
  z-index: 51;
}
@media (min-width: 1024px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger.is-active span:nth-of-type(1) {
  transform-origin: left top;
  transform: translateY(0px) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-of-type(2) {
  display: none;
}
.l-header__hamburger.is-active span:nth-of-type(3) {
  transform-origin: left bottom;
  transform: translateY(1px) rotate(-45deg);
}

.l-header__hamburger-trigger {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  outline: none;
  transition: all 0.2s;
}
.l-header__hamburger-trigger span {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.2s;
}
.l-header__hamburger-trigger span:nth-of-type(1) {
  top: 0;
}
.l-header__hamburger-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.l-header__hamburger-trigger span:nth-of-type(3) {
  bottom: 0;
}

.l-header__drawer-bg {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 60px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 49;
  transition: 0.6s;
}
@media (min-width: 768px) {
  .l-header__drawer-bg {
    top: 100px;
  }
}
.l-header__drawer-bg.is-active {
  display: block;
}

.l-main {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .l-main {
    padding-top: 80px;
  }
}

.l-page {
  position: relative;
  padding: 40px 0 64px;
}
@media (min-width: 768px) {
  .l-page {
    padding: 80px 0;
  }
}

.l-page--pt0 {
  padding-top: 0 !important;
}

.l-page--pb0 {
  padding-bottom: 0 !important;
}

.l-container {
  width: 100%;
  margin: 0 auto;
  max-width: calc(1100px + 60px * 2);
  padding: 0 24px;
}
@media (min-width: 768px) {
  .l-container {
    padding: 0 60px;
  }
}

.l-container--narrow {
  max-width: calc(870px + 60px * 2);
}

.l-section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .l-section {
    padding: 100px 0;
  }
}

.l-footer {
  padding: 24px 16px;
}
@media (min-width: 768px) {
  .l-footer {
    padding: 32px 3.125vw;
  }
}
@media (min-width: 1440px) {
  .l-footer {
    padding-left: min(8vw, 80px);
    padding-right: min(8vw, 80px);
  }
}

.l-footer__copyright {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: right;
  color: #555;
}

.c-heading-large, .c-heading-section {
  display: block;
  font-size: 1.25rem;
  color: #000;
  font-weight: 500;
}
@media (min-width: 768px) {
  .c-heading-large, .c-heading-section {
    font-size: 2rem;
  }
}

.c-heading-medium {
  display: block;
  font-size: 1.25rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .c-heading-medium {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}

.c-heading-small {
  display: block;
  font-size: 1.125rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .c-heading-small {
    font-size: 1.25rem;
  }
}

.c-heading-section {
  display: block;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .c-heading-section {
    margin-bottom: 80px;
  }
}

.c-heading-bg {
  display: block;
  position: absolute;
  top: 20px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-weight: 500;
  color: #999;
  opacity: 0.15;
  z-index: 1;
  line-height: 1;
  font-size: 3.125rem;
}
@media (min-width: 1024px) {
  .c-heading-bg {
    font-size: 5rem;
  }
}
.c-heading-bg--left {
  left: -12px;
}
.c-heading-bg--right {
  right: -8px;
}

.c-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 80px;
}
@media (min-width: 1024px) {
  .c-btn-wrapper {
    margin-top: 160px;
  }
}

.c-btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 310px;
  text-align: center;
  border-radius: 50em;
  padding: 16px 8px;
  transition: 0.3s;
  border: 1px solid #000;
  background-color: #f5f5f5;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .c-btn {
    font-size: 1.125rem;
    max-width: 400px;
    border-width: 2px;
  }
}
@media (min-width: 1024px) {
  .c-btn {
    padding: 24px;
  }
}
@media (hover: hover) {
  .c-btn:hover, .c-btn:focus {
    background-color: rgba(0, 0, 0, 0.1);
  }
}

.mv {
  position: relative;
  overflow: hidden;
  height: 100dvh;
}

.mv__bg-item {
  height: 100dvh;
}
.mv__bg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
}
@media (min-width: 768px) {
  .mv__scroll {
    left: 3.125vw;
    right: auto;
  }
}
@media (min-width: 1024px) {
  .mv__scroll {
    left: min(8vw, 80px);
  }
}

.mv__scroll-text {
  display: block;
  position: relative;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .mv__scroll-text {
    font-size: 0.875rem;
  }
}

.mv__scroll-arrow {
  display: block;
  height: 60px;
  width: 8px;
  position: relative;
  margin-top: 8px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .mv__scroll-arrow {
    height: 120px;
    width: 15px;
  }
}
.mv__scroll-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80%;
  background-color: #000;
  animation: scrollanimetion 3s ease-in-out infinite;
}

@keyframes scrollanimetion {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
.artWorks__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 24px;
}
@media (min-width: 768px) {
  .artWorks__list {
    gap: 80px 40px;
  }
}

.artWorks__item {
  text-align: center;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .artWorks__item {
    font-size: 2rem;
  }
}
.artWorks__item a {
  position: relative;
  white-space: nowrap;
}
.artWorks__item a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #999;
  transition: all 0.5s ease;
  transform: scale(0, 1);
  transform-origin: center top;
}
@media (hover: hover) {
  .artWorks__item a:hover, .artWorks__item a:focus {
    color: #999;
  }
  .artWorks__item a:hover::before, .artWorks__item a:focus::before {
    transform: scale(1, 1);
  }
}

.news-item {
  border-top: 1px solid #ddd;
}
.news-item:last-child {
  border-bottom: 1px solid #ddd;
}
@media (hover: hover) {
  .news-item:hover {
    background-color: rgba(153, 153, 153, 0.1);
  }
}

.news-item__link {
  display: block;
  padding: 20px 12px;
}
@media (min-width: 768px) {
  .news-item__link {
    display: flex;
    align-items: flex-start;
    padding: 18px 20px;
  }
}

.news-item__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: 8px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .news-item__title {
    flex-shrink: 1;
    margin-left: 40px;
    font-size: 1.125rem;
    width: 80%;
    margin-top: 0;
    -webkit-line-clamp: 2;
  }
}

.news__date-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
}
@media (min-width: 768px) {
  .news__date-wrapper {
    width: 40%;
    gap: 0 24px;
  }
}

.news__date {
  display: block;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .news__date {
    font-size: 1.125rem;
  }
}

.news__category {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50em;
  word-break: break-all;
  font-size: 0.625rem;
  padding: 0.2em 1em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .news__category {
    font-size: 0.875rem;
  }
}

.news__head {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .news__head {
    margin-bottom: 80px;
  }
}

.news__title {
  display: block;
  font-size: 1.25rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .news__title {
    font-size: 2rem;
  }
}

.news__contents {
  margin-top: 64px;
  line-height: 2;
}
.news__contents > * + * {
  margin-top: 2em;
}
.news__contents p a {
  text-decoration: underline;
  color: #555;
}
@media (hover: hover) {
  .news__contents p a:hover, .news__contents p a:focus {
    color: #000;
  }
}
.news__contents table {
  width: 100%;
}
.news__contents table tr {
  border-top: 1px solid #ddd;
}
.news__contents table tr:last-child {
  border-bottom: 1px solid #ddd;
}
.news__contents table th {
  padding: 2em 1em;
  text-align: left;
  font-weight: 500;
  width: 25%;
}
@media (max-width: 768px) {
  .news__contents table th {
    display: block;
    width: 100%;
    padding: 1em;
  }
}
.news__contents table td {
  padding: 2em;
}
@media (max-width: 768px) {
  .news__contents table td {
    display: block;
    width: 100%;
    padding: 0 1em 1em;
  }
}

.news__btn-wrapper {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .news__btn-wrapper {
    margin-top: 160px;
  }
}

.artWorks-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
}
@media (min-width: 768px) {
  .artWorks-list {
    gap: 80px 64px;
  }
}

.artWorks-item__link {
  display: block;
}
@media (hover: hover) {
  .artWorks-item__link:hover, .artWorks-item__link:focus {
    opacity: 0.7;
  }
}

.artWorks-item__title {
  margin-top: 8px;
  font-weight: 500;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .artWorks-item__title {
    font-size: 1rem;
    margin-top: 16px;
  }
}

.artWorks__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .artWorks__title {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}

.artWorks__materials {
  font-family: "Lusitana", serif;
  font-style: italic;
  color: #555;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .artWorks__materials {
    font-size: 1rem;
  }
}

.artWorks__contents {
  margin-top: 24px;
}
@media (min-width: 1024px) {
  .artWorks__contents {
    margin-top: 40px;
  }
}
.artWorks__contents > * + * {
  margin-top: 2em;
}
@media (min-width: 768px) {
  .artWorks__contents > * + * {
    margin-top: 4em;
  }
}
.artWorks__contents p {
  line-height: 2;
}
.artWorks__contents p + p {
  margin-top: 2em;
}

.bio__head {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
@media (min-width: 768px) {
  .bio__head {
    flex-direction: row;
    gap: 0 64px;
  }
}

.bio__head-text-wrapper {
  order: 2;
}
@media (min-width: 768px) {
  .bio__head-text-wrapper {
    width: 70%;
  }
}

.bio__name {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .bio__name {
    font-size: 2rem;
  }
}
.bio__name span {
  display: block;
  font-size: 0.875rem;
  color: #555;
}
@media (min-width: 768px) {
  .bio__name span {
    font-size: 1.125rem;
  }
}

.bio__career-list {
  margin-top: 2em;
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .bio__career-list {
    margin-top: 2.5em;
    font-size: 1rem;
  }
}
.bio__career-list.--en {
  margin-top: 1.5em;
}
@media (min-width: 768px) {
  .bio__career-list.--en {
    margin-top: 2em;
  }
}
.bio__career-list li {
  margin-top: 0.4em;
}

.bio__head-img {
  order: 1;
}
@media (min-width: 768px) {
  .bio__head-img {
    width: 30%;
  }
}

.bio__contents {
  margin-top: 80px;
}

.bio__contents-text p {
  line-height: 2;
}
.bio__contents-text p + p {
  margin-top: 1.8em;
}

.bio__gallery {
  margin: 40px 0;
}
@media (min-width: 768px) {
  .bio__gallery {
    margin: 80px 0;
  }
}

.bio__gallery-inner {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .bio__gallery-inner {
    flex-wrap: nowrap;
  }
}
.bio__gallery-inner div {
  width: 50%;
}
@media (min-width: 768px) {
  .bio__gallery-inner div {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .u-disp-sm {
    display: none;
  }
}

@media (min-width: 1024px) {
  .u-disp-sm-md {
    display: none;
  }
}

.u-disp-md {
  display: none;
}
@media (min-width: 768px) {
  .u-disp-md {
    display: initial;
  }
}

.u-disp-lg {
  display: none;
}
@media (min-width: 1024px) {
  .u-disp-lg {
    display: initial;
  }
}

.u-anime-fadeIn {
  opacity: 0;
  visibility: hidden;
  transition: 1.8s;
}
.u-anime-fadeIn.is-show {
  opacity: 1;
  visibility: visible;
}

.u-anime-fadeIn-memberName {
  opacity: 0;
  visibility: hidden;
  transition: 1.8s;
}
.u-anime-fadeIn-memberName.is-show {
  opacity: 1;
  visibility: visible;
}

.u-anime-mvFadeIn {
  opacity: 0;
  visibility: hidden;
  transition: 1.8s;
}
.u-anime-mvFadeIn.is-show {
  opacity: 1;
  visibility: visible;
}

.u-anime-fadeUp {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 50px);
  transition: 0.5s;
}
.u-anime-fadeUp.is-show {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

/*# sourceMappingURL=style.css.map */
