@charset "UTF-8";
/*リセットcss*/
::before,
::after {
  box-sizing: border-box;
  text-decoration: inherit;
  vertical-align: inherit;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  tab-size: 4;
  word-break: normal;
}
*, body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
img,
picture {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
body {
  min-height: 100vh;
}
[hidden] {
  display: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
table {
  border-color: inherit;
  text-indent: 0;
}
iframe {
  border-style: none;
}
textarea {
  overflow: auto;
  resize: vertical;
}
button, input, select, textarea {
  font: inherit;
  background-color: transparent;
  border-style: none;
}
:focus-visible {
  outline: 2px red solid;
}
[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}



/*------------------------------

共通部分

------------------------------*/
:root {
  --main-bg-color: #f0f0f0;
  --first-bg-color: #211f24;
  --footer-bg-color: #d4d4d4;
  --main-text-color: #2a2a2a;
  --white-text-color: #f0f0f0;
  --main-text-font-family: "Zen Kaku Gothic New", "zen-kaku-gothic-new", sans-serif;
  --main-text-line-height: 2.2;
  --section-title-font-family: "Shimanami", serif;
  --quote-text-font-family: "A1 Mincho", serif;
  --kaoru-main-color: #f6d1a0;
  --souma-main-color: #8c5c8b;
  --sidebar-text-font-family: "EB Garamond", "adobe-garamond-pro", serif;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  color: var(--main-text-color);
  font-family: var(--main-text-font-family);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: var(--main-text-line-height);
  background-color: var(--main-bg-color);
}
.wrapper {
  max-width: 1200px;
  padding: 0 4%;
  margin: 0 auto;
}
section {
  padding: 100px 0 120px;
}
.section-title {
  display: block;
  font-family: var(--section-title-font-family);
  font-size: 2.25rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.3rem;
  margin-block-end: 30px;
}
.section-title::after {
  content: attr(data-en);
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.1rem;
}
.section-title-decoration {
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: var(--main-text-color);
  margin-block-end: 40px;
}
.box-title {
  margin-bottom: 20px;
  text-align: center;
}
.marker-kaoru {
  background: linear-gradient(transparent 40%, var(--kaoru-main-color) 40%);
  padding: 0 6px 0 6px;
}







/*------------------------------

header

------------------------------*/
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: 0.3s;
}
#header.change-color {
  background-color: #f0f0f0bb;
  backdrop-filter: blur(2px);
}
#nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  line-height: 1.5;
}
#nav ul {
  display: flex;
}
#nav ul li a {
  display: block;
  padding: 1rem 1.2rem;
  color: var(--main-text-color);
  transition: all 0.2s;
}
#nav ul li a::after {
  content: attr(data-ja);
  font-size: 0.7rem;
  display: block;
  opacity: 0;
}
#header.change-color #nav ul li a::after {
  opacity: 1;
}
#nav ul li:not(:first-of-type).current {
  background-color: #d4d4d4bb;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  #nav ul li a:hover {
    opacity: 0.6;
    transform: scale(1.04);
  }
}

/*hamburger*/
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  position: fixed;
  top: 18px;
  right: 25px;
  z-index: 30;
  border-radius: 4px;
  background-color: var(--first-bg-color);
  cursor: pointer;
  overflow: hidden;
}
.hamburger .openbtn-area {
  transition: all 0.3s;
}
.hamburger span {
  text-align: center;
  position: absolute;
  left: 9px;
  transition: 0.3s;
}
.hamburger span:nth-child(1),
.hamburger span:nth-child(2) {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--white-text-color);
}
.hamburger span:nth-child(1) {
  top: 11px;
}
.hamburger span:nth-child(2) {
  top: 19px;
}
.hamburger span:nth-child(3) {
  top: 10px;
  left: 50%;
  translate: -50%;
}
.hamburger span:nth-child(3):after {
  content: "MENU";
  font-size: 0.5rem;
  color: var(--white-text-color);
}
.mask {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgb(80, 80, 80);
}

@media screen and (max-width: 42rem) {
  .hamburger {
    display: block;
  }
  .hamburger.active .openbtn-area {
    transform: rotateX(360deg);
  }
  .hamburger.active span:nth-child(1) {
    width: 18px;
    top: 15px;
    left: 12px;
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2) {
    width: 18px;
    top: 15px;
    left: 12px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(3):after {
    content: "CLOSE";
  }

  #nav {
    width: 60%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -105%;
    z-index: 20;
    justify-content: start;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--main-bg-color);
    transition: all 0.5s;
  }
  #nav.active {
    left: 0;
  }
  #header .wrapper {
    padding: 0;
  }
  #nav ul {
    flex-direction: column;
    align-items: start;
    text-align: start;
    width: 100%;
  }
  #nav ul li {
    width: 100%;
    padding-left: 20%;
  }
  #nav ul li a {
    padding: 1rem 0;
  }

  .mask.active {
    display: block;
    opacity: 0.7;
    cursor: pointer;
  }
}

/*------------------------------

mainvisual

------------------------------*/
#mainvisual .flex-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  background-color: var(--first-bg-color);
}
#mainvisual img {
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}
#mainvisual .text-box {
  flex: 1;
  position: relative;
}
#mainvisual .text-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--first-bg-color);
  opacity: 0.6;
}
#mainvisual .text-box .img-01 {
  position: absolute;
  bottom: max(100px, 84% - 300px);
  right: max(200px, 100% - 480px);
  width: 480px;
  max-width: none;
  height: 300px;
  object-view-box: inset(864px  1175px 1460px 0);
  overflow: hidden;
}
#mainvisual .text-box .img-02 {
  position: absolute;
  bottom: 0;
  right: max(120px, 100% - 560px);
  width: 175px;
  max-width: none;
  height: 425px;
  object-view-box: inset(1670px 300px 0 1040px);
  overflow: hidden;
}
#mainvisual .text-box > .text {
  position: absolute;
  bottom: 20%;
  left: 20%;
  z-index: 10;
  white-space: nowrap;
  color: #f0f0f0;
  font-family: var(--section-title-font-family);
  letter-spacing: 0.3rem;
}
#mainvisual .site-title {
  font-size: clamp(48px, 6px + 7.5vw, 96px);
  line-height: 1.4;
  text-shadow: 1px 1px 5px #211f2475;
}
#mainvisual .img-box {
  width: fit-content;
  min-width: 50%;
  height: 100%;
}
#mainvisual .img-box picture {
  width: auto;
  height: 96%;
}
#mainvisual .img-box img {
  aspect-ratio: auto;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
@media screen and (aspect-ratio < 148 / 210) {
  #mainvisual .flex-box {
    height: auto;
  }
  #mainvisual .text-box {
    display: none;
  }
  #mainvisual .img-box {
    width: 100%;
    height: auto;
  }
}

/*------------------------------

first

------------------------------*/
#first .wrapper {
  text-align: center;
  container-type: inline-size;
}
#first p:not(:first-of-type) {
  margin-top: 30px;
}
@container (max-width: 31rem) {
  #first .sp-none {
    display: none;
  }
}

/*------------------------------

concept

------------------------------*/
#concept .quote-box {
  margin: 0 auto;
  font-family: var(--quote-text-font-family);
  font-size: min(9vw, 8.1rem);
  font-weight: bold;
  line-height: 1.2;
  overflow: hidden;
}
#concept .quote-kaoru {
  color: transparent;
  -webkit-text-stroke: 0.1vw var(--main-text-color);
  text-shadow: 4px 2px 0 var(--kaoru-main-color);
}
#concept .quote-souma {
  margin-block-start: 60px;
  text-align: end;
  color: transparent;
  -webkit-text-stroke: 0.1vw var(--main-text-color);
  text-shadow: -4px 2px 0 var(--souma-main-color);
}
@media screen and (orientation: portrait) {
  #concept .quote-box {
    writing-mode: vertical-rl;
    font-size: 8.8vh;
  }
  #concept .quote-kaoru {
    -webkit-text-stroke: 0.1vh var(--main-text-color);
  }
  #concept .quote-souma {
    -webkit-text-stroke: 0.1vh var(--main-text-color);
  }
}
#concept .flex-box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  container-type: inline-size;
}
#concept .text-box {
  width: 50%;
  margin-left: 20px;
}
#concept .text-box .section-title {
  text-align: start;
}
#concept .section-title::after {
  margin-inline-start: 0.4rem;
}
#concept .section-title-decoration {
  margin-inline-start: 0.4rem;
}
#concept .text-box p:not(:first-of-type) {
  margin-top: 30px;
}
#concept .sp-none {
  display: none;
}
@container (min-width: calc(61px + 26.074rem)) {
  #concept .text-box {
    display: flex;
    justify-content: space-around;
  }
  #concept h2 {
    display: flex;
    flex-direction: row-reverse;
  }
  #concept .section-title {
    writing-mode: vertical-rl;
  }
  #concept .section-title::after {
    margin-inline-start: 0.7rem;
  }
  #concept .section-title-decoration {
    width: 1px;
    height: 60px;
    margin-block-start: 0.7rem;
    margin-inline-start: 0;
  }
  #concept .text {
    margin-inline-start: 30px;
  }
  #concept .sp-none {
    display: inline;
  }
}
#concept .img-box {
  width: 50%;
  position: relative;
}
#concept .img-box::before {
  content: "";
  width: 104%;
  height: 104%;
  background-color: var(--souma-main-color);
  position: absolute;
  top: 2%;
  right: 4%;
  z-index: -1;
}
#concept .img-box .screenshot:not(:first-of-type) {
  margin-top: 30px;
}
#concept figcaption {
  font-size: 0.9rem;
  color: var(--white-text-color);
}
#concept figcaption::before {
  content: "▲";
}
@media screen and (max-width: 1200px) {
  #concept .flex-box {
    flex-direction: column;
  }
  #concept .text-box {
    width: 100%;
    max-width: 600px;
    margin: 0 0 50px 0;
  }
  #concept .img-box {
    width: 100%;
    max-width: 600px;
  }
}

/*------------------------------

outline

------------------------------*/
#outline h2 {
  text-align: center;
}
#outline .flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
#outline .img-box {
  flex: 1;
  max-width: 512px;
}
#outline .text-box {
  width: calc(40px + 27rem);
  max-width: 512px;
  padding-left: 50px;
  container-type: inline-size;
}
#outline dl {
  margin-bottom: 40px;
  border-bottom: solid 1px #c8c8c8;
   div {
    border-top: solid 1px #c8c8c8;
    padding: 6px 0;
  }
}

@container (min-width: calc(88rem / 3)) {
  #outline dl {

     div {
      display: grid;
      grid-template-columns: 25% 1fr;
      dt {
        grid-column-start: 1;
        grid-column-end: auto;
      }
      dd {
        grid-column-start: 2;
        grid-column-end: auto;
      }
    }
  }
}
@media screen and (max-width: 1024px) {
  #outline .flex-box {
    flex-direction: column;
  }
  #outline .img-box {
    width: 100%;
  }
  #outline .text-box {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
  }
}

/*------------------------------

members

------------------------------*/
#members {
  text-align: center;
}
.members-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 80px 6%;
}
.members-card {
  margin: 0 auto;
}
.members-thumbnail {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: -3px -3px 6px #fff, 3px 3px 6px rgb(0 0 0 / 12%);
  transition: 0.4s all;
}
.members-thumbnail img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  transition: 0.4s all;
}
.members-name {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  margin-block-start: 30px;
}
.members-circle::before {
  content: url(../img/house.svg);
  line-height: 0;
  display: inline-block;
  width: 1rem;
  height: auto;
  padding-inline-end: 4px;
}
.members-card .sns-list {
  line-height: 0;
  display: inline-block;
  width: 2rem;
  height: auto;
  margin: 0 auto;
}
@media (hover: hover) {
  .members-thumbnail:hover {
    box-shadow: -6px -6px 12px #fff, 6px 6px 12px rgb(0 0 0 / 12%);
  }
  .members-thumbnail img:hover {
    transform: scale(1.04);
  }
  .members-card .sns-list:hover {
    opacity: 0.6;
    transform: scale(1.04);
  }
}

.modal-window {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background-color: transparent;
  border: none;
  align-items: center;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.modal-window::backdrop {
  background-color: rgba(80, 80, 80, 0.7);
}
.modal-window img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 10px auto;
}
.modalInputArea {
  width: fit-content;
  margin: 0 auto;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 25px;
  width: 42px;
  height: 42px;
  background-color: var(--main-text-color);
  border-radius: 4px;
  cursor: pointer;
}
.modal-close span:nth-child(1){
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--white-text-color);
  text-align: center;
  position: absolute;
  top: 15px;
  left: 12px;
  transform: rotate(-45deg);
}
.modal-close span:nth-child(2){
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--white-text-color);
  text-align: center;
  position: absolute;
  top: 15px;
  left: 12px;
  transform: rotate(45deg);
}
.modal-close span:nth-child(3) {
  position: absolute;
  top: 10px;
  left: 50%;
  translate: -50%;
}
.modal-close span:nth-child(3):after {
  content: "CLOSE";
  font-size: 0.5rem;
  color: var(--white-text-color);
}


/*------------------------------

distribution

------------------------------*/
#distribution {
  text-align: center;
}
#distribution .flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#distribution .event-box {
  width: fit-content;
}
#distribution .event-box ul {
  text-align: start;
}
#distribution .event-name a {
  display: inline-block;
  width: fit-content;
  padding: 0 8px 3px;
  background-color: var(--main-text-color);
  color: var(--white-text-color);
  line-height: 1.4;
  white-space: nowrap;
  border-radius: 6px;
  transition: all 0.2s;
}
#distribution .event-name .link-icon {
  width: 1rem;
  height: auto;
  padding-left: 4px;
  fill: var(--white-text-color);
}
@media (hover: hover) {
  #distribution .event-name a:hover {
    opacity: 0.6;
    transform: scale(1.04);
  }
}
#distribution .online-box {
  width: fit-content;
  padding-left: 200px;
}
@media screen and (max-width: calc(25rem + 200px)) {
  #distribution .flex-box {
    flex-direction: column;
  }
  #distribution .online-box {
    padding: 60px 0 0 0;
  }
}

/*------------------------------

footer

------------------------------*/
#footer {
  width: 100%;
  background-color: var(--footer-bg-color);
  container-type: inline-size;
  container-name: footer;
}
#footer .flex-box {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  container-type: inline-size;
  container-name: flex-box;
}
#footer .footer-logo img {
  max-width: 260px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(0%) saturate(0%) hue-rotate(199deg) brightness(97%) contrast(90%);
}
#footer .footer-nav {
  margin-left: 60px;
  display: flex;
  justify-content: center;
}
.footer-nav div:not(:first-of-type) {
  margin-left: 60px;
}
.footer-nav-title {
  font-weight: bold;
}
.footer-nav .site-map {
  margin-bottom: 20px;
}
.footer-nav > div > ul > li {
  padding: 0 20px;
  border-left: solid 1px var(--white-text-color);
}
.footer-nav .link .banner-list li {
  width: fit-content;
}
.footer-nav .link .banner-list img {
  padding: 10px 0;
}
.footer-nav .link p {
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-nav .sns-list {
  margin-top: 30px;
  line-height: 0;
}
.footer-nav .sns-list a {
  display: inline-block;
  width: 2rem;
  height: auto;
}
@media (hover: hover) {
  .footer-nav .sns-list a:hover {
    opacity: 0.6;
    transform: scale(1.04);
  }
}
.footer-bottom {
  background-color: var(--first-bg-color);
  color: var(--white-text-color);
}
#footer .copyright {
  font-size: 0.8rem;
  padding: 10px 0;
  text-align: end;
}
@container footer (max-width: calc(1050px + 5.5rem)) {
  #footer .flex-box {
    flex-direction: column;
    justify-content: center;
  }
  #footer .footer-logo {
    display: none;
  }
  #footer .footer-nav {
    margin-left: 0;
  }
}
@container flex-box (max-width: calc(642px + 5rem)) {
  #footer .footer-nav {
    flex-direction: column;
  }
  .footer-nav div:not(:first-of-type) {
    margin-left: 0;
    margin-top: 30px;
  }
}