@charset "UTF-8";
body {
  background: white;
}

.hero-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
}

.card {
  display: none;
}

.hero-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/can-you-say/card-bg-monochrome.webp");
  opacity: 0.05;
  pointer-events: none;
  background-size: 100px;
  background-repeat: repeat;
  z-index: 0;
}

.hero-title {
  text-align: center;
  background: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0.5));
  padding-bottom: 1.5rem;
  background-clip: text;
  display: block;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.youtube-video {
  width: auto;
  display: block;
  height: 500px;
  aspect-ratio: 9/16;
  margin: 0 auto;
}

.instagram-media {
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 100%;
}

.instagram-media iframe {
  margin: 0 !important;
}

.event-types {
  padding: 50px 16px 56px;
  background: linear-gradient(180deg, #43bdff 0%, #75dfff 45%, #4edfff 100%);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.event-types-title {
  max-width: 960px;
  margin: 0 auto 32px;
  text-align: center;
}

.event-types-title h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.event-types-lead {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* 本体レイアウト */
.event-types-body {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== タブ部分 ===== */
.event-types-tab-nav {
  padding-bottom: 4px;
  display: block;
  justify-content: center;
  z-index: 0;
}

.event-types-tab-list {
  list-style: none;
  padding: 0.75rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 8px;
  max-width: 880px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.event-types-tab-nav::-webkit-scrollbar {
  height: 4px;
}

.event-types-tab-nav::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

.event-types-tab-item {
  display: flex;
  justify-content: center;
}

.br-mobile {
  display: inline;
}

.event-types-tab {
  appearance: none;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background-color: transparent;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.event-types-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #4edfff;
  opacity: 0.8;
}

.event-types-tab:hover {
  background: rgba(167, 234, 255, 0.16); /* アクア系の薄色 */
  color: #111;
  box-shadow: 0 6px 14px rgba(67, 189, 255, 0.25);
  transform: translateY(-2px);
  border-color: rgba(67, 189, 255, 0.5);
}

/* すでに is-active のときのホバーは少し強め */
.event-types-tab.is-active:hover {
  box-shadow: 0 8px 16px rgba(67, 189, 255, 0.35);
  transform: translateY(-3px);
}

.event-types-tab.is-active {
  background: linear-gradient(90deg, #75dfff, #43bdff);
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.35);
  transform: translateY(-1px);
}

.event-types-tab.is-active::before {
  border-color: transparent;
}

/* ===== パネル全体 ===== */
.event-types-panels {
  margin-top: 12px;
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 0.1fr 5fr 0.1fr;
}

.event-types-panel {
  background-color: #fff;
  border-radius: 18px;
  padding: 20px 20px 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  grid-column: 2;
}

.event-types-panel[hidden] {
  display: none;
}

.event-types-panel-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #43bdff;
  margin-bottom: 12px;
  text-align: center;
}

/* ===== カード部分 ===== */
.event-types-card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.event-types-card {
  border-radius: 14px;
  border: 2px solid #bfe7ff;
  background-color: #fbfeff;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.event-types-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #27a6ea;
}

.event-types-card-text {
  font-size: 13px;
  line-height: 1.7;
  color: #444;
}

.event-list {
  width: 70%;
  font-size: 1rem;
  display: block;
  justify-content: center;
  background: black;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  color: white;
  border: 2px solid black;
}

.event-list:hover {
  background: white;
  color: black;
  border: 2px solid black;
}

.card-2 {
  margin-bottom: 1rem;
}

.event-types-panels::before {
  content: "";
  position: absolute;
  grid-column: 1;
  left: 5%;
  width: 35vw;
  max-width: 200px;
  height: 35vw;
  max-height: 200px;
  transform: rotate(15deg);
  background-image: url("/assets/images/illustration/本気のパンチ.webp");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

/* シオリン：右下（パネル基準） */
.event-types-panels::after {
  content: "";
  position: absolute;
  grid-column: 3;
  bottom: -20px;
  right: 5%;
  width: 30vw;
  max-width: 200px;
  height: 30vw;
  max-height: 200px;
  transform: rotate(15deg);
  background-image: url("/assets/images/illustration/シオリンマリガン.webp");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 350px) {
  .br-mini-mobile {
    display: none;
  }
  .event-types-tab-item {
    width: calc(50% - 1rem - 16px);
  }
  .event-types-tab-list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 600px) {
  .event-types-tab-item {
    width: 20%;
  }
  .event-types-panels::before {
    left: 5%;
    width: 45vw;
    height: 45vw;
    max-width: 350px;
    z-index: 1;
  }
  .event-types-panels::after {
    max-width: 160px;
    bottom: -30px;
  }
  .card {
    display: block;
    width: 150px;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .nobunaga {
    top: 30rem;
    left: 75%;
    transform: rotate(15deg);
    z-index: -1;
  }
  .ryoma {
    top: 15rem;
    left: 3%;
    transform: rotate(-5deg);
    z-index: -2;
  }
}
@media (min-width: 880px) {
  .card {
    width: 25vw;
    max-width: 250px;
  }
  .ryoma {
    left: 5%;
  }
  .youtube-video {
    aspect-ratio: 9/16;
    height: 650px;
  }
  .event-types-panel-label {
    font-size: 1.5rem;
  }
  .event-types-tab-nav {
    display: block;
    padding-bottom: 9px;
  }
  .event-types {
    padding: 80px 24px 70px;
  }
  .event-types-tab-list {
    gap: 10px;
    margin: 0 auto;
    border-radius: 999px;
  }
  .event-types-panel {
    padding: 24px 26px 28px;
  }
  .event-types-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .card-1 {
    text-align: center;
  }
  .card-2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  .card-3 {
    text-align: center;
  }
  .event-types-tab {
    font-size: 18px;
  }
  .event-types-card-title {
    font-size: 1.2rem;
  }
  .event-types-card-text {
    font-size: 1rem;
  }
  .event-types-tab.is-active {
    background: #75dfff;
    color: #fff;
    border-color: #75dfff;
    box-shadow: none;
    transform: none;
  }
  .br-mobile {
    display: none;
  }
}
.big-event-container {
  padding: 72px 16px 56px;
  background: white;
  position: relative;
  overflow: hidden;
}

.big-event-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/can-you-say/card-bg-monochrome.webp");
  opacity: 0.05;
  pointer-events: none;
  background-size: 100px;
  background-repeat: repeat;
  z-index: 0;
}

.big-event-title {
  text-align: center;
  color: #17a3ef;
  padding-bottom: 2rem;
  font-size: 2rem;
}

.event-list-usage-container {
  padding: 72px 16px 56px;
  color: black;
  background: linear-gradient(180deg, #e8f6ff 0%, #dff3ff 60%, #d5f0ff 100%);
  position: relative;
  overflow: hidden;
}

.event-list-usage-title {
  text-align: center;
  color: black;
  padding-bottom: 1.5rem;
}

.event-list-usage-text {
  text-align: center;
  color: black;
  padding-bottom: 1.5rem;
}

.event-list-usage-lead {
  text-align: center;
  padding-bottom: 1rem;
}

.search-ilast {
  display: block;
  width: 25vw;
  position: absolute;
  z-index: 0;
}

.hama {
  top: -1rem;
  left: 0;
  transform: rotate(15deg);
  max-width: 160px;
}

.shio {
  top: 55%;
  left: 78%;
  transform: rotate(15deg);
  max-width: 160px;
}

.jump-to-event-container {
  padding: 72px 16px 56px;
  background: white;
  color: black;
}

.event-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.event-button {
  display: block;
  max-width: 400px;
  margin: 1rem auto;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.event-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.participate-event-container {
  text-align: center;
  padding-bottom: 1.5rem;
}

.event-title {
  color: #17a3ef;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.follow-event-container {
  text-align: center;
  padding-bottom: 1.5rem;
}

.friend-event-container {
  text-align: center;
  padding-bottom: 1.5rem;
}

@media (min-width: 500px) {
  .shio {
    top: 45%;
  }
}
@media (min-width: 880px) {
  .big-event-title {
    font-size: 2.5rem;
  }
  .event-list-usage-lead {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .event-list-usage-button {
    max-width: 600px;
  }
  .hama {
    left: 5%;
    width: 20vw;
    max-width: 200px;
  }
  .shio {
    top: 25%;
    left: 80%;
    width: 20vw;
    max-width: 200px;
  }
  .participate-event-container {
    margin-bottom: 3rem;
  }
  .event-title {
    font-size: 2rem;
  }
  .event-button {
    max-width: 600px;
  }
}

/*# sourceMappingURL=event-guide.css.map */
