/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #fff;
  --color-font-blue-gray: #355571;
  --color-bg-base: rgba(27, 69, 85, 0.7);
  --color-bg-aqua-mint: #64cfb959;
  --color-border: #fff;
  --color-focus: #5689b5;
  --color-error: #ffd966;

  /* test */
  --color-outline-focus-inside: #5689b5;
  --color-outline-focus-outside: #a8dde9;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content: 1160px;
  --width-content-l: 1640px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Shippori Mincho", serif;
  --font-family-nav: "Noto Sans JP", sans-serif;
  --font-size-h1: clamp(3.125rem, 12vw, 11.25rem); /* 50px ~ 180px */
  --font-size-h2: clamp(3.125rem, 10vw, 10.625rem); /* 50px ~ 170px */
  --font-size-h3: clamp(1.625rem, 4vw, 3.125rem); /* 26px ~ 50px */
  --font-size-h4: 16px;
  --font-size-h5: clamp(1.125rem, 0.6103rem + 2.0956vw, 3.125rem); /* 18px ~ 50px */
  --font-size-sns: clamp(45px, 30.845px + 3.602vw, 100px); /* 45px ~ 100px */
  --font-size-sns-3: clamp(40px, 24.558px + 3.929vw, 100px); /* 40px ~ 100px */
  --font-size-instagram: clamp(26px, 6.955px + 4.846vw, 100px); /* 26px ~ 100px */
  --font-size-contact: clamp(40px, 6.542px + 8.513vw, 170px); /* 40px ~ 170px */
  --font-size-subtitle: clamp(0.875rem, 0.811rem + 0.26vw, 1.125rem); /* 14px ~ 18px */
}

@font-face {
  font-family: "Antro Vectra";
  src:
    url("../fonts/antro-vectra.woff2") format("woff2"),
    url("../fonts/antro-vectra.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
}

/*!
layout > body
------------------------------
*/
html {
  overscroll-behavior: none;
}

body {
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-font-base);
  background-color: var(--color-bg-base);
  overflow-x: hidden;
}

/* 背景動画 */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-video-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .bg-video-sp {
    display: none;
  }
  .bg-video-pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

.bg-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27, 69, 85, 0.28), rgba(224, 107, 47, 0.28));
  z-index: var(--z-index-default);
  pointer-events: none;
}

.body-no-scroll {
  overflow: hidden;
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

/*!
component > button
------------------------------
*/
.c-button {
  color: var(--color-font-base);
  background-color: transparent;
  font-family: var(--font-family-base);
  font-size: var(--font-size-subtitle);
  line-height: 1.44;
  padding: 21px 33px;
  border: 1px solid var(--color-font-base);
  display: inline-block;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-button {
    padding: 18px 45px;
  }
}

@media (any-hover: hover) {
  .c-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-font-blue-gray);
  }
}

.c-button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px var(--color-outline-focus-inside) inset,
    0 0 0 2px var(--color-outline-focus-outside);
}

.c-button--link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-button--link {
    gap: 16px;
  }
}

.c-button--link2 {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  background-color: transparent;
  border: none;
  font-family: "Antro Vectra", sans-serif;
  font-size: var(--font-size-h5);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-button--link2 {
    gap: 32px;
  }
}

.c-button--link2 svg {
  width: clamp(15px, 12.684px + 0.589vw, 24px);
  height: clamp(15px, 12.684px + 0.589vw, 24px);
}

.c-button--link2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-border);
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-button--link2::after {
    bottom: 15px;
  }
}

@media (any-hover: hover) {
  .c-button--link2:hover {
    background-color: transparent;
    color: var(--color-font-base);
  }
}

@media (any-hover: hover) {
  .c-button--link2:hover::after {
    width: 100%;
  }
}

.c-button-contact {
  padding: 9px 51px;
}
@media screen and (min-width: 768px) {
  .c-button-contact {
    padding: 13px 48px;
    font-size: 25px;
  }
}

.c-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
}

.c-icon--link2 {
  width: 15px;
  height: 15px;
  display: inline-block;
  flex-shrink: 0;
}

/*!
component > title
------------------------------
*/
.c-title {
  font-family: "Antro Vectra", sans-serif;
  line-height: 1.15;
  text-align: center;
}

.c-title-level1 {
  font-size: var(--font-size-h1);
}

.c-title-level2 {
  font-size: var(--font-size-h2);
}

.c-title-level3 {
  font-size: var(--font-size-h3);
}

.c-title-level4 {
  font-family: var(--font-family-base);
  font-size: var(--font-size-h4);
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-title-level4 {
    margin-top: 15px;
  }
}

.c-title-level5 {
  font-size: var(--font-size-h5);
  cursor: pointer;
}

.c-title-subtitle {
  font-family: var(--font-family-base);
  font-size: var(--font-size-subtitle);
  text-align: center;
}

.c-title-sns {
  font-size: var(--font-size-sns);
}

.c-title-sns-3 {
  line-height: 1.65;
  font-size: var(--font-size-sns-3);
}

.c-title-contact {
  font-size: var(--font-size-contact);
  line-height: 1.65;
}
/*!
component > post
------------------------------
*/
@media (any-hover: hover) {
  .c-post:hover .c-post-thumbnail img {
    filter: brightness(1.15);
  }
}

.c-post:focus {
  outline: none;
}

.c-post:focus-visible .c-post-thumbnail img {
  /* box-shadow: 0 0 0 2px var(--color-focus); */
  box-shadow:
    0 0 0 1px var(--color-outline-focus-inside) inset,
    0 0 0 2px var(--color-outline-focus-outside);
  border-radius: 4px;
}

.c-post {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .c-post {
    gap: 15px 0;
  }
}

.c-post-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 260 / 147;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.c-post-thumbnail--movie {
  aspect-ratio: 260 / 147;
  width: 100%;
}

.c-post-thumbnail--movie:hover {
  cursor: pointer;
}

.c-post-thumbnail--instagram {
  max-width: 400px;
  opacity: 0;
}

.c-post-thumbnail--instagram img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/*!
component > form-text
------------------------------
*/
.c-form-text {
  border: 1px solid var(--color-font-base);
  background-color: var(--color-font-base);
  padding: 6px;
  font-family: var(--font-family-base);
  color: #000;
  /* font-size: clamp(0.75rem, 0.589rem + 0.655vw, 1.375rem); */
  font-weight: bold;
  line-height: 1;
  outline: none;
  width: 100%;
  border: 2px solid transparent;
}

.c-form-text::placeholder {
  color: black;
  font-weight: normal;
}

.c-form-text:focus {
  /* border: 2px solid var(--color-focus); */
  box-shadow:
    0 0 0 1px var(--color-outline-focus-inside) inset,
    0 0 0 2px var(--color-outline-focus-outside);
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  width: min(81.9%, var(--width-content-s));
  margin-inline: auto;
}

.l-container {
  width: min(85.5%, var(--width-content-l));
  margin-inline: auto;
}

/*!
layout > header
------------------------------
*/
.l-header {
  position: fixed;
  top: -80px;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 120px 1fr;
  z-index: var(--z-index-default);
  align-items: stretch;
  padding-bottom: 9px;
}
@media screen and (min-width: 768px) {
  .l-header {
    position: absolute;
    top: -80px;
    grid-template-columns: 230px 1fr;
  }
}

.l-header.is-fixed {
  position: fixed;
  background: linear-gradient(0deg, rgba(39, 56, 78, 0) 0%, rgba(39, 56, 78, 0.3) 100%);
  background-color: rgba(256, 256, 256, 0.3);
}

.l-header-head {
  padding-top: 15px;
}

@media screen and (min-width: 768px) {
  .l-header-head {
    padding-top: 20px;
  }
}

.l-header-menu {
  border: none;
  background-color: inherit;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  background-image: url("../img/dialog-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.l-header-menu[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-header-menu {
    display: block;
    position: static;
    width: auto;
    height: auto;
    background-image: none;
  }
}

.l-header.is-fixed .l-header-menu {
  background-color: transparent;
}

.l-header-menu-button,
.l-header-menu-close-button {
  position: fixed;
  right: 2px;
  top: 2px;
  background-color: transparent;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .l-header-menu-button,
  .l-header-menu-close-button {
    display: none;
  }
}

.l-header-menu-button-line {
  display: flex;
  width: 24px;
  height: 14px;
  margin-inline: auto;
  flex-direction: column;
  justify-content: space-between;
}
.l-header-menu-button-line span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
}

.l-header-menu-nav {
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .l-header-menu-nav {
    width: auto;
  }
}

.l-header-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-header-menu-list {
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
}

.l-header-menu-item a {
  font-family: "Antro Vectra", sans-serif;
  font-size: 24px;
  color: var(--color-font-blue-gray);
}
@media screen and (min-width: 768px) {
  .l-header-menu-item a {
    /* font-family: var(--font-family-nav); */
    font-size: 20px;
    color: var(--color-font-base);
  }
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  margin-top: 170px;
  padding: 30px 0;
  z-index: var(--z-index-default);
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 90px;
    padding: 23px 0;
  }
}

.l-footer-copyright {
  font-size: 12px;
  display: block;
  text-align: center;
}

/*!
top > kv
------------------------------
*/
.kv {
  position: relative;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-font-base);
}

.kv-logo {
  margin-bottom: 60px;
  letter-spacing: 0.1em;
  padding: 0.2em;
}

.kv-logo a {
  color: var(--color-font-base);
  text-decoration: none;
}

.kv-menu {
  margin-top: 40px;
}

.kv-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .kv-menu-list {
    flex-direction: row;
    justify-content: space-around;
    gap: 40px;
  }
}

.kv-menu-item a {
  color: var(--color-font-base);
  text-decoration: none;
  font-family: var(--font-family-base);
  font-size: var(--font-size-subtitle);
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .kv-menu-item a:hover {
    opacity: 0.7;
  }
}

/*!
top > work
------------------------------
*/
.work {
  padding-top: 160px;
}
@media screen and (min-width: 768px) {
  .work {
    padding-top: 240px;
  }
}

.work-title-group span {
  position: relative;
  top: clamp(-100px, 13.163px + -5.894vw, -10px);
}

.work-group-original {
  margin-top: 107px;
}
@media screen and (min-width: 768px) {
  .work-group-original {
    margin-top: 180px;
  }
}

.work-group-miq {
  margin-top: 260px;
}
@media screen and (min-width: 768px) {
  .work-group-miq {
    margin-top: 110px;
  }
}

.work-group-title {
  padding-bottom: 20px;
  position: relative;
  font-family: var(--font-family-base);
  font-size: clamp(20px, 14.66px + 1.424vw, 42px);
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work-group-title {
    padding-bottom: 58px;
    border-bottom: 1px solid var(--color-font-base);
    line-height: 1.47;
  }
}

.work-group-title::after {
  content: "";
  width: 20.3%;
  height: 1px;
  background-color: var(--color-border);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  .work-group-title::after {
    display: none;
  }
}

.work-text-list {
  list-style: none;
  padding: 0;
  margin: 67px auto 0 auto;
  width: 100%;
  max-width: 693px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .work-text-list {
    max-width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .work-text-list {
    margin-top: 40px;
    gap: 15px;
  }
}

.work-group-miq .work-text-list {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .work-group-miq .work-text-list {
    font-size: 16px;
  }
}

.work-group-miq > p {
  max-width: 693px;
  margin-top: 16px;
  margin-inline: auto;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .work-group-miq > p {
    max-width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .work-group-miq > p {
    font-size: 14px;
    margin-top: 20px;
  }
}

.work-group-media {
  margin-top: 95px;
}
@media screen and (min-width: 768px) {
  .work-group-media {
    margin-top: 102px;
  }
}

.work-group-media .work-text-list {
  font-size: 16px;
}

.work-text-list a {
  color: var(--color-font-base);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (any-hover: hover) {
  .work-text-list a:hover {
    text-decoration: none;
  }
}

.work-content {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  align-content: start;
  gap: 46px 16px;
  margin-inline: auto;
  max-width: var(--width-content-l);
  overflow-y: auto;
  padding: 2px; /* box-shadowが見える余白 */
  margin-inline: calc(auto - 2px); /* paddingの分を相殺 */
}
@media screen and (min-width: 768px) {
  .work-content {
    overflow-y: hidden;
    margin-top: 36px;
  }
}
@media screen and (max-width: 768px) {
  .work-content {
    max-width: 80%;
  }
}

.work-scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: -140px 12%;
}
@media screen and (min-width: 627px) {
  .work-scroll-arrow {
    display: none;
  }
}

.work-scroll-arrow span {
  font-family: "Antro Vectra", sans-serif;
  font-size: 16px;
  writing-mode: vertical-rl;
  text-orientation: sideways;
}

.work-scroll-arrow img {
  width: 1.6%;
  height: auto;
  aspect-ratio: 645 / 7863;
  right: 6px;
  position: relative;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    clip-path: inset(0% 0% 100% 0%);
  }
  50% {
    clip-path: inset(0% 0% 0% 0%);
  }
  100% {
    clip-path: inset(100% 0% 0% 0%);
  }
}

/*!
top > Profile
------------------------------
*/
.profile {
  margin-top: 133px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .profile {
    margin-top: 335px;
  }
}

@media screen and (min-width: 1024px) {
  .profile {
    margin-top: 264px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 9%;
  }
}

/* aside */
.profile-aside {
  flex-shrink: 0;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .profile-aside {
    width: 43%;
  }
}

.profile-title-group {
  position: relative;
}

.profile-title {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .profile-title {
    top: 65%;
    bottom: auto;
    left: auto;
    right: 10%;
    transform: none;
  }
}

.profile-aside-img {
  margin-top: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .profile-aside-img {
    margin-top: -20px;
  }
}

.profile-aside-img img {
  width: 80%;
  height: auto;
  aspect-ratio: 674 / 740;
  max-width: 674px;
}

@media screen and (min-width: 768px) {
  .profile-aside-img img {
    width: 100%;
  }
}

.profile-aside-img::after {
  position: absolute;
  content: "";
  width: 83%;
  aspect-ratio: 210 / 107;
  background-image: url("../img/profile_88_films.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .profile-aside-img::after {
    width: 120%;
    bottom: -30%;
    left: 20%;
    transform: none;
  }
}

/* main */
.profile-main {
  margin-top: 90px;
  margin-inline: auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .profile-main {
    margin-top: 0;
    max-width: 674px;
  }
}

.profile-main-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
  border-top: 1px solid var(--color-border);
}

@media screen and (min-width: 768px) {
  .profile-main-wrap {
    align-items: flex-start;
    margin-top: 50px;
    padding: 35px 0 0 0;
  }
}

.profile-name {
  font-size: clamp(1.25rem, 0.671rem + 2.358vw, 3.5rem);
}

.profile-name::after {
  position: absolute;
  content: "";
  width: 85.2%;
  height: auto;
  aspect-ratio: 709 / 204;
  background-image: url("../img/profile_homma_yuya.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 1.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .profile-name::after {
    width: 100%;
    top: 10%;
    left: 0;
    transform: none;
  }
}

.profile-name-english {
  margin-top: 17px;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .profile-name-english {
    margin-top: 6px;
    font-size: 21px;
  }
}

.profile-text {
  width: 100%;
  margin: 30px 0 92px 0;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

@media screen and (min-width: 768px) {
  .profile-text {
    margin: 50px 0 32px 0;
    font-size: 16px;
  }
}

.profile-text::-webkit-scrollbar {
  display: none;
}

.profile-history-wrap {
  padding-block: 40px;
  border-top: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
}

.profile-history {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .profile-history {
    padding: 40px 0;
  }
}

.profile-history tbody {
  padding-block: 40px;
}
.profile-history tr {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.profile-history tr + tr {
  margin-top: 18px;
}

@media screen and (min-width: 768px) {
  .profile-history tr {
    gap: 30px;
    font-size: 18px;
  }

  .profile-history tr + tr {
    margin-top: 13px;
  }
}

/*!
top > greeting
------------------------------
*/
.greeting {
  margin-top: 150px;
}

.greeting-title-group {
}

.greeting-title-group .c-title-subtitle {
  margin-top: 30px;
}

.greeting-inner {
  margin-top: 100px;
  max-width: 693px;
  margin-inline: auto;
}

.greeting-text {
}

.greeting-text p {
  margin-top: 1rem;
  font-size: 14px;
  letter-spacing: 0.1em;
  overflow-wrap: break-word;
}

@media screen and (min-width: 768px) {
  .greeting-text p {
    font-size: 16px;
  }
}

.greeting-text p br {
  display: none;
}

@media screen and (min-width: 768px) {
  .greeting-text p br {
    display: block;
  }
}

/*!
top > crowdfunding
------------------------------
*/
.crowdfunding {
  margin-top: 197px;
}
@media screen and (min-width: 768px) {
  .crowdfunding {
    margin-top: 375px;
  }
}

.crowdfunding-title-group h2 {
  position: relative;
  top: 15px;
}
@media screen and (min-width: 768px) {
  .crowdfunding-title-group h2 {
    top: 55px;
  }
}

.crowdfunding-subtitle {
  margin-top: 18px;
}

.crowdfunding-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  margin-top: 86px;
}
@media screen and (min-width: 910px) {
  .crowdfunding-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6%;
  }
}
@media screen and (min-width: 1440px) {
  .crowdfunding-inner {
    grid-template-columns: auto 414px;
    gap: 8%;
    margin-top: 155px;
  }
}

.crowdfunding-images img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.crowdfunding-text {
  width: 100%;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .crowdfunding-text {
    max-width: 414px;
    font-size: 16px;
  }
}

.crowdfunding-text p:not(:first-of-type) {
  margin-top: 1rem;
}

.crowdfunding-button {
  margin-top: 40px;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .crowdfunding-button {
    margin-top: 40px;
    gap: 10px;
  }
}

/*!
top > sns
------------------------------
*/
.sns {
  margin-top: 180px;
}

@media screen and (min-width: 768px) {
  .sns {
    margin-top: 200px;
  }
}

@media screen and (min-width: 768px) {
  .sns-spBR {
    display: none;
  }
}

.sns-category {
  margin-top: clamp(104px, 65.652px + 9.758vw, 253px);
}

.sns-category:nth-child(2) {
  margin-top: clamp(120px, 71.1px + 12.443vw, 215px);
}

.sns-block {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sns-block {
    margin-top: 38px;
  }
}

.sns-block:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .sns-block:not(:first-of-type) {
    margin-top: 265px;
  }
}

.sns-account-link {
  display: inline-flex;
  position: relative;
}

.sns-account-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-border);
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .sns-account-link:hover::after {
    width: 100%;
  }
}

.sns-category-link {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(120px, 71.1px + 12.443vw, 310px);
}
@media screen and (min-width: 768px) {
  .sns-category-link {
    margin-top: 50px;
  }
}

.sns-group {
  margin-top: 29px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .sns-group {
    margin-top: 67px;
    gap: 40px 16px;
  }
}

.sns-logo-instagram {
  width: 40px;
  height: 40px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sns-logo-instagram {
    width: 80px;
    height: 80px;
  }
}

.sns-logo-others {
  width: 40px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .sns-logo-others {
    width: 80px;
  }
}

.sns-others-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 93px;
}
@media screen and (min-width: 768px) {
  .sns-others-group {
    flex-direction: row;
    gap: 185px;
  }
}

.sns-others-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--color-font-base);
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .sns-others-item {
    gap: 38px;
  }
}

.sns-others-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Antro Vectra", sans-serif;
  font-size: var(--font-size-h5);
  position: relative;
}

.sns-others-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-border);
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .sns-others-item:hover .sns-others-label::after {
    width: 100%;
  }
}

/*!
top > contact
------------------------------
*/
.contact {
  margin-top: clamp(140px, 132.13px + 12.181vw, 326px);
}

.contact-title-group p {
  position: relative;
  top: -11px;
}

.contact-inner {
  padding: 0;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact-inner {
    max-width: 1000px;
  }
}

.contact-note:first-of-type {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .contact-note:first-of-type {
    margin-top: 59px;
  }
}

.contact-note,
.contact-attention {
  font-size: clamp(14px, 11.169px + 0.72vw, 25px);
}

.contact-note span {
  display: block;
}

.contact-attention {
  text-align: center;
  line-height: 2;
}

.contact-attention a {
  color: var(--color-font-base);
  text-decoration: underline;
}

@media (any-hover: hover) {
  .contact-attention a:hover {
    text-decoration: none;
  }
}

.contact-form {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  gap: 54px;
}
@media screen and (min-width: 768px) {
  .contact-form {
    margin-top: 125px;
    gap: 63px;
  }
}

.contact-item {
  display: flex;
}

.contact-item p {
  display: contents;
}

.contact-label {
  width: 36%;
  margin-right: 10px;
  font-size: clamp(14px, 11.169px + 0.72vw, 25px);
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .contact-label {
    width: 26%;
    margin-right: 4%;
  }
}

.contact-label--var {
  width: 26%;
}
@media screen and (min-width: 768px) {
  .contact-label--var {
    width: 20%;
  }
}

.contact-textarea {
  min-height: 200px;
  field-sizing: content;
  border: 2px solid transparent;
}
@media screen and (min-width: 768px) {
  .contact-textarea {
    min-height: 380px;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.contact-button-wrap {
  text-align: center;
}

.wpcf7-spinner {
  visibility: hidden;
  display: none !important;
}

.wpcf7-spinner::before {
  display: none;
}

/* checkbox */

.checkbox-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* 以下を追加・変更 */

.wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 4px 0; /* CF7デフォルトのmarginをリセット */
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item {
    margin: 11px 0;
  }
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-input input[type="checkbox"],
.wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #fff;
  margin-right: 1em;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.checkbox-input input[type="checkbox"]:checked::after,
.wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.wpcf7-list-item-label {
  cursor: pointer;
  font-size: clamp(0.75rem, 0.589rem + 0.655vw, 1.375rem);
}

/*  */
@media screen and (min-width: 768px) {
  .wpcf7 form .wpcf7-response-output {
    text-align: center;
  }
}

.wpcf7-not-valid-tip {
  color: var(--color-error);
  font-weight: bold;
}

.wpcf7 form .wpcf7-response-output {
  border-color: var(--color-error);
  color: var(--color-error);
  background-color: rgba(0, 0, 0, 0.2);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--color-font-base);
}

.wpcf7 form .wpcf7-response-output {
  margin: 5em 0.5em 1em;
}

/*  */
.wpcf7-acceptance {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*!
top > post-modal
------------------------------
*/
.post-modal {
  padding: 40px 20px 20px 20px;
  border: 1px solid var(--color-border);
  max-width: min(92vw, 800px);
  width: 100%;
  background-color: #fff;
  color: var(--color-font-blue-gray);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.post-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}

.post-modal .c-post {
  width: 100%;
  max-width: 100%;
  margin: 0;
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
  outline: none;
}

.post-modal .c-post-thumbnail {
  height: auto;
  overflow: hidden;
}

.post-modal .c-post-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.post-modal .c-post-thumbnail video {
  display: block;
  width: 100%;
  height: 100%;
  /* background-color: #000;
  max-height: 60svh;
  margin: 0 auto;
  transform: translateZ(0);
  will-change: transform;
  z-index: 1;
  position: relative; */
  object-fit: contain;
}

.post-modal .c-post-thumbnail--movie {
  aspect-ratio: 1650 / 720;
}

.post-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .post-modal-close:hover {
    opacity: 0.7;
  }
}

.post-modal-close img {
  width: 16px;
  height: 16px;
}

/* モーダル表示中のヘッダー制御 */
.post-modal[open] ~ .l-header {
  display: none;
}

/* モーダル表示中のbody制御 */
body:has(.post-modal[open]) {
  overflow: hidden;
}

.post-modal:not([open]) {
  display: none !important;
}

/*!
privacy >
------------------------------
*/
/* プライバシーページではヘッダーを固定表示・最初から見える位置に */
body:has(.privacy) .l-header {
  position: fixed;
  top: 0;
}

.privacy {
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 100dvh;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding-top: 100px;
  }
}

.privacy-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.privacy-header {
  text-align: center;
  margin-bottom: 60px;
}

.privacy-body {
  max-width: 693px;
  margin-inline: auto;
  line-height: 1.9;
}

.privacy-intro {
  margin-bottom: 48px;
}

.privacy-article {
  margin-bottom: 40px;
}

.privacy-article-title {
  font-size: var(--font-size-h4);
  font-weight: bold;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}

.privacy-list {
  list-style: disc;
  padding-left: 1.5em;
  margin-top: 8px;
}

.privacy-list li + li {
  margin-top: 4px;
}

.privacy-contact {
  margin-top: 16px;
}

.privacy-contact-row {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-contact-row dt {
  font-weight: bold;
}

.privacy-contact-note {
  margin-top: 20px;
}

.privacy-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .privacy-link:hover {
    opacity: 0.7;
  }
}

.privacy-date {
  text-align: right;
  font-size: 0.875rem;
}

.privacy-date :first-child {
  margin-top: 60px;
}

.privacy-back {
  text-align: center;
  margin-top: 64px;
}

/*!
404 >
------------------------------
*/
.error-404 {
}

.error-404-wrap {
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.error-404-wrap h1,
.error-404-wrap p {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .error-404-wrap h1,
  .error-404-wrap p {
    font-size: 32px;
  }
}
