@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

/* メディアクエリ準備: @include pc {}, @include sp {}の中に各設定をいれる */
/* 色定義 */
.color1 {
  background-color: #8da0b6;
}
.color1 nav {
  background-color: #8da0b6;
}
.color1 {
  color: #fefefc;
}
.color1 a, .color1 .link, .color1 .card {
  transition: color 0.4s;
  text-decoration: none;
  color: #fefefc;
  -webkit-tap-highlight-color: transparent;
}
.color1 a span, .color1 .link span, .color1 .card span {
  border-bottom: 4px solid #e0ffff;
}
.color1 a:hover, .color1 .link:hover, .color1 .card:hover {
  color: #afeed9;
}

.MV {
  scroll-snap-align: start;
}

footer {
  scroll-snap-align: end;
}

.MV {
  position: relative;
  height: 100vh;
}

.MV img.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.MV img.logo {
  filter: drop-shadow(0 0 3px rgb(0, 30, 0)) drop-shadow(0 0 6px rgb(0, 30, 0));
}

.MV img.logo {
  position: absolute;
  top: 40%;
}
@media (max-width: 768px) {
  .MV img.logo {
    top: 20%;
  }
}
.MV img.logo {
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15%;
}
@media (max-width: 768px) {
  .MV img.logo {
    width: 30%;
  }
}
.MV img.logo {
  height: auto;
  z-index: 10;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem 0 1rem;
  text-align: center;
}

header {
  text-align: center;
}
@media (min-width: 769px) {
  header {
    position: sticky;
    top: 0;
  }
}

div header {
  display: none;
}

@media (max-width: 768px) {
  nav {
    font-size: 2.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
  }
}
nav {
  padding: 1rem;
}
nav a {
  margin: 0.3rem;
}
nav article {
  display: inline;
  margin: 0.3rem;
}

#menu {
  display: none;
}

@media (min-width: 769px) {
  .menu-btn {
    display: none;
  }
}
@media (min-width: 769px) {
  .socialicons {
    display: none;
  }
}
@media (max-width: 768px) {
  body:has(#menu:checked) {
    overflow: hidden;
  }
  .menu-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-inline: 20%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
    pointer-events: none;
    z-index: 2000;
  }
  #menu:checked ~ .menu-nav {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  #menu:checked ~ img.logo {
    display: none;
  }
  .menu-btn {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    line-height: 0.9;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
  }
  .menu-btn p {
    font-size: 1.3rem;
  }
  .menu-btn {
    cursor: pointer;
  }
}
main {
  padding-top: 3rem;
  scroll-snap-align: start;
  min-height: 100vh;
}

p.honbun {
  margin-inline: 5rem;
}
@media (min-width: 769px) {
  p.honbun {
    margin-inline: 30%;
    white-space: pre-line;
  }
  p.honbun br {
    display: none;
  }
}
p.honbun {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 4px dotted #fefefc;
  font-size: 1.4rem;
  line-height: 2rem;
  display: block;
}

a.honbun {
  margin-inline: 5rem;
}
@media (min-width: 769px) {
  a.honbun {
    margin-inline: 30%;
  }
}
a.honbun {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  white-space: pre-line;
  display: block;
}

a.honbun::after {
  content: " ⧉";
}

article {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 100vh;
}
article p {
  margin: 0.5rem auto;
  max-width: 16ch;
  overflow-wrap: break-word;
}
article a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 769px) {
  .info {
    width: 60%;
  }
}
.info {
  margin: 0 auto 3rem;
  display: flex;
  /* 折り返さない */
  flex-wrap: nowrap;
  padding: 2rem 5rem;
  gap: 5rem;
  /* 横スクロール */
  overflow-x: auto;
  overflow-y: hidden;
  /* スナップ */
  scroll-snap-type: x mandatory;
  scrollbar-color: #fefefc transparent;
}

.info article {
  flex: 0 0 auto;
  scroll-snap-align: center;
  margin: auto;
}

.info article img {
  max-width: 100vw;
}
@media (min-width: 769px) {
  .info article img {
    max-width: 60vw;
  }
}
.info article img {
  height: clamp(200px, 40vh, 400px);
  -o-object-fit: contain;
     object-fit: contain;
  background: #1a1a1a;
}

@media (min-width: 769px) {
  .gallery {
    width: 80%;
  }
}
.gallery {
  margin: 0 auto 2rem;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
  padding: 2rem 3rem;
  gap: 5vw;
}

.gallery img {
  width: 25vw;
  height: auto;
  background: #1a1a1a;
  margin: auto;
}

.max, article.mv {
  width: 100%;
  margin: auto;
}

.max {
  padding-block: 2rem;
}

.max img {
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  margin-inline: auto;
}

@media (max-width: 768px) {
  body.no-scroll {
    overflow: hidden;
  }
}

dialog {
  max-width: 100vw !important;
  max-height: 100vh !important;
  border: none;
  padding: 0;
  z-index: 1000;
  position: fixed;
  inset: 0;
  overflow: auto;
}

dialog.page {
  width: 100vw;
  height: 100vh;
}
@media (min-width: 769px) {
  dialog.page {
    width: min(1000px, 80vh);
    height: 90vh;
    margin: auto;
    overflow: auto;
    border: none;
  }
}

dialog.img {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  margin: auto;
}

dialog.img img {
  display: block;
  max-width: 80vw;
  max-height: 90vh;
}

dialog.img #close {
  display: none;
}

dialog:focus {
  outline: none;
}

dialog:focus-visible {
  outline: none;
}

#close {
  position: sticky;
  top: 2rem;
  right: 2rem;
}
@media (min-width: 769px) {
  #close {
    top: 0;
    right: 0;
  }
}
#close {
  margin-left: auto;
  width: 4rem;
  height: 4rem;
  font-size: 3rem;
  background: #fefefc;
  color: #1a1a1a;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}

#close:focus {
  outline: none !important;
}

#close:focus-visible {
  outline: 2px solid rgb(79, 255, 202);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

#modalContent {
  padding: 0px;
  margin-top: -4rem;
}

dialog.img #modalContent {
  margin-top: 0;
}

@font-face {
  font-family: "Kiwi Maru";
  src: url("../fonts/Kiwi_Maru/KiwiMaru-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Kiwi Maru";
  src: url("../fonts/Kiwi_Maru/KiwiMaru-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Kiwi Maru";
  src: url("../fonts/Kiwi_Maru/KiwiMaru-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
html,
body {
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
}

html {
  margin: 0;
  padding: 0;
}
@media (min-width: 769px) {
  html {
    font-size: 75%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
html {
  scroll-snap-type: y mandatory;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: 1.5rem;
}

time {
  text-align: left;
  padding-left: 2rem;
  margin-bottom: 6rem;
  display: block;
}

h1 {
  font-weight: normal;
  text-align: center;
  margin-block: 3rem;
  white-space: pre-line;
}

h2 {
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 3rem;
  white-space: pre-line;
}

h3 {
  font-size: 2rem;
  font-weight: normal;
  padding-inline: 5rem;
}
@media (min-width: 769px) {
  h3 {
    padding-inline: 30%;
  }
}
h3 {
  margin-bottom: 1rem;
  white-space: pre-line;
}/*# sourceMappingURL=index.css.map */