@charset "UTF-8";
:root {
  --white: #FFFFFF;
  --black: #000000;
  --orange: #FF6B35;
  --base-color: #333333;
  --padding-pc: 40px;
  --padding-sp: 20px;
}

:root {
  --en-font: 'Lexend', sans-serif;
  --jp-font: 'Noto Sans JP', sans-serif;
  --nav-font: 'Inter', sans-serif;
  --regular: 400;
  --bold: 700;
  --extra-bold: 800;
  --light: 300;
}

.header {
  background-color: var(--black);
  padding: 3.75rem 4.375rem;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 1.25rem 1.25rem;
  }
}

.header__inner {
  max-width: 100.625rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 12.5rem;
  font-family: var(--en-font);
  font-size: 2.5rem;
  font-weight: var(--extra-bold);
  line-height: 1;
  letter-spacing: 0.2em;
  /* letterSpacing: 200 / 1000 = 0.2em */
  color: var(--white);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 1.75rem;
  }
}

.header__nav {
  display: flex;
  gap: 2rem;
  /* グループ33内の要素間の推定間隔 */
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-item {
  font-family: var(--nav-font);
  font-size: 0.9375rem;
  font-weight: var(--light);
  line-height: 1;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .header__nav-item:hover {
    opacity: 0.7;
  }
}

.header__menu-btn {
  width: 12.5rem;
  height: 2.5rem;
  text-align: right;
  background: transparent;
  border: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .header__menu-btn {
    display: block;
  }
}

.header__menu-link {
  display: inline-block;
  cursor: pointer;
}

.ri-twitter-x-line {
  color: #fff;
  font-size: 2rem;
}

.header__menu-icon {
  width: 100%;
  height: 100%;
  position: relative;
}

.header__menu-icon::before,
.header__menu-icon::after {
  content: "";
  position: absolute;
  left: 0.1825rem;
  /* bounds x: 1642.92 - 1640 = 2.92 */
  width: 2.135625rem;
  /* bounds width: 34.1666... */
  height: 0.125rem;
  background-color: var(--white);
}

.header__menu-icon::before {
  top: 0.625rem;
  /* 上部のライン位置（推定） */
}

.header__menu-icon::after {
  bottom: 0.625rem;
  /* 下部のライン位置（推定） */
}

.hero {
  background-color: var(--black);
  padding: 3.125rem 2.5rem 3.125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero {
    padding: 1.875rem 1.25rem 0rem;
  }
}

.hero__title {
  font-family: var(--en-font);
  font-size: 4.375rem;
  font-weight: 500;
  /* SemiBold */
  line-height: 1.154;
  /* lineHeight: 90 / fontSize: 78 = 1.154 */
  letter-spacing: 0.06em;
  /* letterSpacing: 60 / 1000 = 0.06em */
  color: var(--white);
  max-width: 59.25rem;
  margin-inline: auto;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  .hero__title {
    font-size: 2.25rem;
    line-height: 1.3;
  }
}

.hero__image-wrapper {
  max-width: 81.25rem;
  margin-inline: auto;
  position: relative;
  border-radius: 0.625rem 0.625rem 0 0;
  overflow: hidden;
}
.hero__image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000 100%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .hero__image-wrapper {
    height: 15.625rem;
  }
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .hero__image {
    height: 100%;
    object-fit: cover;
  }
}

.loop {
  background-color: #000;
  overflow: hidden;
  padding: 20px 0 100px;
  position: relative;
}
.loop__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loop__coming {
  color: #6b6b6b;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.loop__inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .loop__inner {
    width: 100%;
  }
}
.loop__item {
  padding: 0 15px;
  outline: none;
}
.loop__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .loop {
    padding: 20px 0 50px;
  }
}

.card-grid {
  background-color: var(--black);
  padding: 5.3125rem 4.375rem 5.3125rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .card-grid {
    padding: 3.75rem 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .card-grid {
    padding: 2.5rem 1.25rem;
  }
}

.card-grid__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-grid__coming-box {
  width: 800px;
  height: 350px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .card-grid__coming-box {
    width: 90%;
    height: 450px;
  }
}

.card-grid__coming {
  color: #6b6b6b;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.card-grid__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .card-grid__header {
    display: block;
    margin-bottom: 1.25rem;
  }
}

.card-grid__title {
  font-family: var(--en-font);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  text-align: left;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .card-grid__title {
    font-size: 1.375rem;
    font-size: 1.375rem;
  }
}

.card-grid__container {
  width: 100%;
  margin-inline: auto;
}
.card-grid__container.list-view {
  grid-template-columns: 1fr;
  gap: 0.9375rem;
}
.card-grid__container.list-view .card-grid__link {
  min-height: auto;
  padding: 0.9375rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .card-grid__container.list-view .card-grid__link {
    padding: 0.9375rem;
  }
}
.card-grid__container.list-view .card-grid__icon {
  width: 3.75rem;
  height: 3.75rem;
}
.card-grid__container.list-view .card-grid__content {
  display: grid;
  grid-template-columns: 2fr 1fr 0.5fr 1fr;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .card-grid__container.list-view .card-grid__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3125rem;
  }
}
.card-grid__container.list-view .card-grid__address {
  margin-bottom: 0;
}
.card-grid__container.list-view .card-grid__name {
  margin-bottom: 0;
  font-size: 1rem;
}
.card-grid__container.list-view .card-grid__tag {
  margin-bottom: 0;
}
.card-grid__container.list-view .card-grid__stats {
  justify-self: end;
}
@media screen and (max-width: 768px) {
  .card-grid__container.list-view .card-grid__stats {
    justify-self: start;
  }
}

.card-grid__item {
  width: 100%;
  container-type: inline-size;
}

.card-grid__link {
  width: 100%;
  background-color: #121212;
  border: 1px solid #262626;
  border-radius: 0.625rem;
  padding: clamp(0.625rem, 4cqw, 0.9375rem);
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}
.card-grid__link:hover {
  background-color: #212121;
}
.card-grid__link {
  gap: clamp(0.625rem, 5cqw, 1.25rem);
  min-height: 9.375rem;
}
@media screen and (max-width: 768px) {
  .card-grid__link {
    min-height: auto;
  }
}

.card-grid__icon {
  width: clamp(5rem, 30cqw, 7.5rem);
  height: clamp(5rem, 30cqw, 7.5rem);
  border-radius: 0.625rem;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.998;
  /* opacity: 0.9979760050773621 */
}

.card-grid__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  min-width: 0;
}

.card-grid__address {
  font-size: clamp(0.625rem, 3cqw, 0.75rem);
  color: #717171;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  min-width: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.card-grid__address:hover {
  opacity: 0.7;
}

.card-grid__address-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-grid__name {
  font-family: var(--nav-font);
  font-size: clamp(0.875rem, 5cqw, 1.125rem);
  font-weight: 600;
  /* SemiBold */
  color: var(--white);
  line-height: 1;
}

.card-grid__tag {
  font-family: var(--nav-font);
  font-size: 0.75rem;
  font-weight: 400;
  color: #656565;
  line-height: 1;
  opacity: 0.8;
}

.card-grid__stats {
  font-size: 0.75rem;
  color: #656565;
}

.card-grid__stats dl {
  display: flex;
  gap: 0.25rem;
}

.card-grid__stats dl dt {
  width: 20px;
}

.card-grid__stats dl dd {
  color: var(--white);
}

.card-grid__stats dl dd span {
  color: #656565;
  display: inline-block;
  margin: 0 0 0 5px;
}

.controlls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .controlls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }
}

.controlls__items {
  display: flex;
  gap: 0.3125rem;
}

.controlls__item {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.controlls__item:hover {
  background-color: #212121;
}
.controlls__item.active {
  background-color: #212121;
}

.controlls__item i {
  font-size: 1.25rem;
  color: var(--white);
}

@media screen and (max-width: 768px) {
  .filter {
    width: 100px;
  }
}

.filter i {
  font-size: 1.25rem;
  color: var(--white);
}

.filter span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.3125rem 1.5625rem;
  border-radius: 100px;
  transition: background-color 0.3s;
  background-color: #212121;
  cursor: pointer;
}
.filter span:hover {
  background-color: #212121;
}
.filter span.active {
  background-color: #212121;
}

.card-select__image {
  width: auto;
  height: 35px;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .card-select__image {
    width: 100%;
    height: auto;
  }
}

.card-grid__image {
  width: 100%;
}

.government {
  background-color: var(--black);
  padding: 3.125rem 2.5rem 3.125rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .government {
    padding: 3.75rem 1.25rem;
  }
}

.government__bg-text {
  font-family: var(--en-font);
  font-size: clamp(2.5rem, 14vw, 15rem);
  font-weight: 600;
  /* SemiBold */
  line-height: 1.55;
  /* lineHeight: 372 / fontSize: 240 = 1.55 */
  color: #2A2A2A;
  /* 黒背景用に調整 */
  margin-bottom: 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .government__bg-text {
    margin-bottom: 1.25rem;
  }
}

.government__label {
  font-family: var(--en-font);
  font-size: 2.625rem;
  font-weight: 600;
  /* SemiBold */
  line-height: 2.143;
  /* lineHeight: 90 / fontSize: 42 = 2.143 */
  letter-spacing: 0.03em;
  /* letterSpacing: 30 / 1000 = 0.03em */
  color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .government__label {
    font-size: 1.75rem;
  }
}

.government__title {
  font-family: var(--jp-font);
  font-size: clamp(1rem, 4vw, 2.5rem);
  font-weight: var(--bold);
  line-height: 1.625;
  /* lineHeight: 65 / fontSize: 40 = 1.625 */
  color: var(--white);
  max-width: 47.375rem;
  margin-inline: auto;
  margin-bottom: 1.875rem;
  margin-inline: auto;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .government__title {
    line-height: 1.5;
    margin-bottom: 1.375rem;
  }
}

.government__description {
  font-family: var(--jp-font);
  font-size: clamp(0.8125rem, 2vw, 1.125rem);
  font-weight: 500;
  /* Medium */
  line-height: 2.778;
  /* lineHeight: 50 / fontSize: 18 = 2.778 */
  color: var(--white);
  max-width: 27rem;
  margin-inline: auto;
  margin-bottom: 3.5rem;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .government__description {
    line-height: 2;
  }
}

.government__slider {
  margin-bottom: 3.75rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.government__slider.slick-initialized {
  opacity: 1;
}

.government__slide {
  outline: none;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
  bottom: 0rem;
}
.slick-dots li {
  margin: 0;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.slick-dots li button:hover {
  opacity: 0.7;
}
.slick-dots li.slick-active button {
  opacity: 1;
}

.government__button {
  display: inline-block;
  padding: 1.5rem 5.3125rem;
  background-color: var(--white);
  color: var(--black);
  font-family: var(--nav-font);
  font-size: 0.875rem;
  font-weight: 500;
  /* Medium */
  letter-spacing: 0.1em;
  /* letterSpacing: 100 / 1000 = 0.1em */
  text-align: center;
  border-radius: 6.25rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .government__button:hover {
    opacity: 0.8;
  }
}

.committee {
  background-color: var(--black);
  padding: 3.125rem 2.5rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .committee {
    padding: 1.25rem 1.25rem;
  }
}

.committee__container {
  max-width: 100rem;
  margin-inline: auto;
  text-align: center;
  background-color: #191919;
  padding: 3.125rem 2.5rem 3.125rem;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .committee__container {
    padding: 1.875rem 1.25rem;
  }
}

.committee__subtitle {
  font-family: var(--en-font);
  font-size: 1.5rem;
  font-weight: 600;
  /* SemiBold */
  letter-spacing: 0.03em;
  /* letterSpacing: 30 / 1000 = 0.03em */
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .committee__subtitle {
    font-size: 1.125rem;
  }
}

.committee__title {
  font-family: var(--en-font);
  font-size: 2.625rem;
  font-weight: 600;
  /* SemiBold */
  line-height: 2.143;
  /* lineHeight: 90 / fontSize: 42 = 2.143 */
  letter-spacing: 0.03em;
  /* letterSpacing: 30 / 1000 = 0.03em */
  color: var(--white);
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .committee__title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
  }
}

.committee__members {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .committee__members {
    flex-direction: column;
  }
}

.committee__member {
  background-color: var(--black);
  border-radius: 0.625rem;
  padding: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 23.75rem;
  height: 9.375rem;
}
@media screen and (max-width: 768px) {
  .committee__member {
    width: 100%;
    gap: 1.25rem 0.625rem;
    height: auto;
  }
}

.committee__avatar {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .committee__avatar {
    width: 5rem;
    height: 5rem;
  }
}

.committee__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.3125rem;
}

.committee__name {
  font-family: var(--nav-font);
  font-size: 1.125rem;
  font-weight: 600;
  /* SemiBold */
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.0625rem;
}

.committee__country {
  font-family: var(--nav-font);
  font-size: 0.625rem;
  font-weight: 600;
  /* SemiBold */
  color: #717171;
  line-height: 1;
  margin-bottom: 0.4375rem;
}

.committee__stats {
  font-family: var(--nav-font);
  font-size: 0.6875rem;
  font-weight: 600;
  /* SemiBold */
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3125rem;
}

.committee__start-time {
  font-family: var(--nav-font);
  font-size: 0.6875rem;
  font-weight: 600;
  /* SemiBold */
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

.committee__icon {
  width: 0.875rem;
  height: 0.875rem;
  fill: #717171;
}

.footer {
  background-color: var(--black);
  padding: 0rem 2.5rem 1.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 1.875rem 1.25rem;
  }
}

.footer__copyright {
  font-family: var(--nav-font);
  font-size: 0.75rem;
  font-weight: 400;
  /* SemiBold */
  line-height: 6.429;
  /* lineHeight: 90 / fontSize: 14 = 6.429 */
  letter-spacing: 0.1em;
  /* letterSpacing: 100 / 1000 = 0.1em */
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--jp-font);
  color: var(--base-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

button:focus {
  outline: none;
}

.sections-wrapper {
  position: relative;
}

.sections-wrapper__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sections-wrapper__coming-box {
  width: 95%;
  height: 100%;
  background-color: rgba(2, 15, 56, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sections-wrapper__coming-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 100%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  transform: skewX(-40deg);
  animation: shine 2.5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .sections-wrapper__coming-box {
    width: 92%;
    height: 100%;
  }
  .sections-wrapper__coming-box::before {
    left: -150%;
    animation: shine-sp 2.5s ease-in-out infinite;
  }
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
@keyframes shine-sp {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
.sections-wrapper__coming {
  color: #FFFFFF;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

/* ================================================================
   Wallet Connect styles  (generated from _wallet.scss)
   ================================================================ */

.wallet-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0.25rem;
  color: #fff;
  font-family: var(--nav-font);
  font-size: 0.8125rem;
  font-weight: var(--regular);
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, opacity .25s ease;
  white-space: nowrap;
}
.wallet-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}
.wallet-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.wallet-btn--connected {
  border-color: rgba(255,255,255,0.6);
  gap: 0.625rem;
}
.wallet-btn__dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: #14f195;
  flex-shrink: 0;
  animation: wallet-pulse 2.4s ease-in-out infinite;
}
.wallet-btn__spinner {
  width: 0.875rem;
  height: 0.875rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wallet-spin 0.7s linear infinite;
  flex-shrink: 0;
  display: none;
}
.wallet-btn__spinner.is-visible { display: block; }

@keyframes wallet-pulse {
  0%,100% { opacity:1; }
  50%      { opacity:0.35; }
}
@keyframes wallet-spin {
  to { transform: rotate(360deg); }
}

.wallet-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: 17.5rem;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.7);
  z-index: 200;
  opacity: 0;
  transform: translateY(-0.5rem);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.wallet-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wallet-dropdown__label {
  font-family: var(--nav-font);
  font-size: 0.625rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.wallet-dropdown__address {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  word-break: break-all;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wallet-dropdown__balance-value {
  font-family: var(--en-font);
  font-size: 1.625rem;
  font-weight: var(--extra-bold);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.wallet-dropdown__balance-value span {
  font-size: 0.8125rem;
  font-weight: var(--regular);
  color: rgba(255,255,255,0.45);
  margin-left: 0.25rem;
}
.wallet-dropdown__balance-sub {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}
.wallet-dropdown__disconnect {
  width: 100%;
  padding: 0.625rem 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.25rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--nav-font);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.wallet-dropdown__disconnect:hover {
  border-color: rgba(255,80,80,0.6);
  color: rgba(255,100,100,0.9);
}

.header__wallet-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.wallet-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.5rem;
  padding: 0.875rem 1.5rem;
  color: #fff;
  font-family: var(--nav-font);
  font-size: 0.8125rem;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.wallet-toast a {
  color: #9945ff;
  margin-left: 0.5rem;
  text-decoration: underline;
  pointer-events: auto;
}
.wallet-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media screen and (max-width: 768px) {
  .wallet-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    gap: 0.375rem;
  }
  .wallet-dropdown {
    right: -1.25rem;
    width: 16.25rem;
  }
}

/* ================================================================
   Reown AppKit <appkit-button> カスタムスタイル
   ================================================================ */

/* ヘッダー内ウォレットラップ */
.header__wallet-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* AppKit ボタンのシャドウDOM外側を上書き */
appkit-button {
  --w3m-accent:              #9945ff;
  --w3m-background-color:    #111111;
  --w3m-font-family:         'Inter', sans-serif;
  --w3m-border-radius-master: 2px;
}

/* モーダルの z-index をヘッダーより前面に */
w3m-modal,
wui-flex {
  z-index: 9999 !important;
}

/* ================================================================
   Wallet Modal (モバイル誘導 / Phantom未インストール)
   ================================================================ */

.wallet-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wallet-modal-overlay.is-open {
  display: flex;
}

.wallet-modal {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 22rem;
  position: relative;
  animation: modalIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(1rem) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wallet-modal__close {
  position: absolute;
  top: 0.875rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.wallet-modal__close:hover {
  color: #fff;
}

.wallet-modal__title {
  font-family: var(--en-font);
  font-size: 0.875rem;
  font-weight: var(--bold);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.wallet-modal__option {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 0.625rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.wallet-modal__option:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.wallet-modal__icon {
  font-size: 1.375rem;
  flex-shrink: 0;
}

.wallet-modal__name {
  flex: 1;
  font-family: var(--nav-font);
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 500;
}

.wallet-modal__arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  transition: color 0.2s, transform 0.2s;
}

.wallet-modal__option:hover .wallet-modal__arrow {
  color: #fff;
  transform: translateX(3px);
}

.wallet-modal__note {
  margin-top: 1rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  line-height: 1.6;
  font-family: var(--nav-font);
}
