:root {
  --color-key: #F4CC25;
  --color-red: #D7000F;
}

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

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  background-image: url('../image/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.container {
  width: 100%;
    max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-section {
  align-self: stretch;
  padding: 40px 16px 80px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 54px;
}

.hero-image-wrapper {
  align-self: stretch;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-image {
  width: 100%;
  height: auto;
}

.free-entry-badge {
  width: 80px;
  height: 80px;
  padding: 18px 14px;
  left: -12px;
  top: 85%;
  position: absolute;
  transform: rotate(-20deg);
  transform-origin: top left;
  background: var(--color-key);
  overflow: hidden;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.free-entry-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  text-align: center;
  color: #222222;
  font-size: 26px;
  font-family: 'Inter';
  font-weight: 900;
  line-height: 28.60px;
  word-wrap: break-word;
}

.section-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}

.section-title {
  align-self: stretch;
  height: 39px;
  padding: 6px 32px;
  background: black;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.section-title-text {
  text-align: center;
  color: white;
  font-size: 27px;
  font-family: 'Inter';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 27px;
  word-wrap: break-word;
}

.schedule-wrapper {
  width: 285px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.schedule-row {
  align-self: stretch;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.schedule-date {
  color: black;
  font-size: 20px;
  font-family: 'Inter';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
  word-wrap: break-word;
}

.day-badge-sat {
  padding: 2px 6px;
  background: #00479D;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.day-badge-sun {
  padding: 2px 6px;
  background: #E60013;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.day-badge-text {
  color: white;
  font-size: 10px;
  font-family: 'Inter';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 10px;
  word-wrap: break-word;
}

.schedule-time {
  color: black;
  font-size: 20px;
  font-family: 'Inter';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
  word-wrap: break-word;
}

.schedule-lo {
  color: black;
  font-size: 10px;
  font-family: 'Inter';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 10px;
  word-wrap: break-word;
}

.venue-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}

.venue-name {
  color: black;
  font-size: 20px;
  font-family: 'Inter';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
  word-wrap: break-word;
}

.venue-address-box {
  align-self: stretch;
  padding: 10px 16px;
  outline: 1px black solid;
  outline-offset: -1px;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.postal-code {
  color: black;
  font-size: 10px;
  font-family: 'Inter';
  font-weight: 500;
  text-transform: uppercase;
  line-height: 16px;
  word-wrap: break-word;
}

.address-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  color: black;
  font-size: 12px;
  font-family: 'Inter';
  font-weight: 400;
  text-transform: uppercase;
  line-height: 18px;
  word-wrap: break-word;
}

.venue-map {
  align-self: stretch;
  width: 100%;
  overflow: hidden;
}

.venue-map iframe {
  width: 100%;
  height: 290px;
  border: 0;
  display: block;
}

.content-section {
  align-self: stretch;
  padding: 64px 0 96px 0;
  background: black;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.content-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 72px;
}

.beer-jam-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}

.main-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.main-title-text {
  text-align: center;
  color: white;
  font-size: 32px;
  font-family: 'Inter';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  word-wrap: break-word;
}

.subtitle {
  text-align: center;
  color: white;
  font-size: 14px;
  font-family: 'Noto Sans JP';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 14px;
  word-wrap: break-word;
}

.brewery-section {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}

.countries-header {
  width: 100%;
  padding: 8px 16px;
  background: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.country-side {
  flex: 1 1 0;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.country-name {
  text-align: center;
  color: #222222;
  font-size: 16px;
  font-family: 'Noto Sans JP';
  font-weight: 700;
  line-height: 16px;
  word-wrap: break-word;
}

.flag {
  width: 32px;
  height: 21px;
  position: relative;
  overflow: hidden;
  outline: 1px black solid;
  outline-offset: -1px;
  display: block;
}

.flag-jp {
  width: 32px;
  height: 21px;
  background: white;
  position: relative;
}

.flag-jp-circle {
  width: 12px;
  height: 11.81px;
  position: absolute;
  left: 10px;
  top: 4.59px;
  background: #D80027;
}

.flag-kr {
  width: 32px;
  height: 21px;
  background: white;
  position: relative;
}

.divider-icon {
  width: 12px;
  height: 12px;
  position: relative;
  overflow: hidden;
  display: block;
}

.divider-square {
  width: 11px;
  height: 11px;
  position: absolute;
  left: 0.50px;
  top: 0.50px;
  background: #222222;
}

.divider-white {
  filter: brightness(0) invert(1);
}

.brewery-grid {
  align-self: stretch;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.brewery-row {
  align-self: stretch;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.brewery-item {
  flex: 1 1 0;
  align-self: stretch;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

.brewery-logo {
  width: auto;
  height: 46px;
  max-width: 100%;
  object-fit: contain;
}

.brewery-logo-small {
  max-width: 80%;
}

.brewery-logo-small-2 {
  max-width: 60%;
}

.brewery-name {
  text-align: center;
  color: white;
  font-size: 12px;
  font-family: 'Noto Sans JP';
  font-weight: 700;
  line-height: 14.40px;
  word-wrap: break-word;
}

.entertainment-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}

.coming-soon-wrapper {
  padding: 0 66px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.coming-soon-inner {
  width: 240px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.coming-soon-box {
  padding: 82px 38px;
  background: white;
  overflow: hidden;
  border-radius: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.coming-soon-text {
  text-align: center;
  color: black;
  font-size: 32px;
  font-family: 'Inter';
  font-weight: 700;
  line-height: 38.40px;
  word-wrap: break-word;
}

.skateboard-coming-soon {
  padding: 80px 38px;
}

.ticket-section {
  align-self: stretch;
  padding: 64px 16px 96px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
}

.ticket-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.ticket-title {
  text-align: center;
  color: black;
  font-size: 32px;
  font-family: 'Inter';
  font-weight: 900;
  text-transform: uppercase;
  line-height: 35.20px;
  letter-spacing: 0.32px;
  word-wrap: break-word;
}

.ticket-subtitle {
  text-align: center;
  color: black;
  font-size: 14px;
  font-family: 'Noto Sans JP';
  font-weight: 700;
  text-transform: uppercase;
  line-height: 14px;
  word-wrap: break-word;
}

.ticket-types {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 64px;
}

.ticket-type-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}

.ticket-type-header {
  align-self: stretch;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.divider-line {
  flex: 1 1 0;
  height: 3px;
  background: black;
}

.ticket-type-title {
  text-align: center;
  color: black;
  font-size: 24px;
  font-family: 'Noto Sans JP';
  font-weight: 900;
  line-height: 24px;
  word-wrap: break-word;
}

.ticket-period {
  font-size: 14px;
  font-family: 'Inter';
  font-weight: 700;
  line-height: 20px;
  color: #666;
  display: block;
  margin-top: 8px;
}

.ticket-cards {
  align-self: stretch;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.ticket-cards-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.ticket-card {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.ticket-card-header {
  width: 240px;
  padding: 12px 55px;
  background: var(--color-red);
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ticket-card-header-blue {
  background: #00479D;
}

.ticket-card-header-text {
  color: white;
  font-size: 20px;
  font-family: 'Noto Sans JP';
  font-weight: 700;
  line-height: 20px;
  word-wrap: break-word;
}

.ticket-card-body {
  width: 240px;
  padding: 56px 16px;
  background: white;
  overflow: hidden;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.ticket-card-body-16 {
  gap: 16px;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.price {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
}

.price-number {
  text-align: center;
  color: #222222;
  font-size: 36px;
  font-family: 'Inter';
  font-weight: 700;
  line-height: 36px;
  word-wrap: break-word;
}

.price-yen {
  text-align: center;
  color: #222222;
  font-size: 20px;
  font-family: 'Noto Sans JP';
  font-weight: 900;
  line-height: 20px;
  word-wrap: break-word;
}

.per-cup-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.per-cup-label {
  color: #222222;
  font-size: 14px;
  font-family: 'Noto Sans JP';
  font-weight: 400;
  line-height: 19.60px;
  word-wrap: break-word;
}

.per-cup-price {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.per-cup-amount {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
}

.per-cup-number {
  text-align: center;
  color: #222222;
  font-size: 17px;
  font-family: 'Inter';
  font-weight: 700;
  line-height: 17px;
  word-wrap: break-word;
}

.per-cup-yen {
  text-align: center;
  color: #222222;
  font-size: 14px;
  font-family: 'Noto Sans JP';
  font-weight: 900;
  line-height: 14px;
  word-wrap: break-word;
}

.ticket-day-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ticket-day-cards {
  padding-left: 62px;
  padding-right: 49px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  min-width: min-content;
}

.spacer {
  width: 49px;
  height: 154px;
}

.spacer-20 {
  width: 142px;
  height: 20px;
}

.ticket-button {
  width: 300px;
  padding: 16px 24px;
  background: #F4CC25;
  overflow: hidden;
  border-radius: 4px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.ticket-button-text {
  color: #222222;
  font-size: 16px;
  font-family: 'Noto Sans JP';
  font-weight: 700;
  line-height: 22.40px;
  word-wrap: break-word;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  display: block;
}

.ticket-notes {
  width: 343px;
  color: black;
  font-size: 14px;
  font-family: 'Noto Sans JP';
  font-weight: 700;
  line-height: 21px;
  word-wrap: break-word;
  padding-left: 0px;
}

.ticket-notes li {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
}

.ticket-notes li::before {
  content: "※"; /* 先頭に※を追加 */
  margin-right: 5px; /* ※とテキストの間のスペース */
  color: #000; /* ※の色を任意で設定 */
}

.footer {
  align-self: stretch;
  padding: 24px;
  background: black;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

.sponsor-section {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.sponsor-title {
  text-align: center;
  color: white;
  font-size: 16px;
  font-family: 'Inter';
  font-weight: 700;
  line-height: 16px;
  word-wrap: break-word;
}

.sponsor-logos {
  align-self: stretch;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  align-content: flex-start;
}

.sponsor-logo-box {
  width: 159px;
  height: 53px;
  background: white;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sponsor-logo-box-flex {
  flex: 1 1 0;
  height: 53px;
  background: white;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sponsor-logo-box-padded {
  flex: 1 1 0;
  height: 53px;
  padding: 0 34px;
  background: white;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sponsor-logo {
  width: auto;
  max-width: 95%;
  height: auto;
  max-height: 70%;
}

.sponsor-logo-square {
  height: 45px;
  width: auto;
  max-width: 90%;
}

.sponsor-logo-special {
  width: auto;
  height: 95%;
  max-width: 95%;
}

.sponsor-logo-bordered {
  width: 159.50px;
  height: 52.82px;
  border: 1px white solid;
}

/* 固定チケット購入ボタン */
.fixed-ticket-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 110px;
  height: 110px;
  padding: 12px;
  background: green;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.fixed-ticket-button:hover {
  transform: scale(1.05);
}

.fixed-ticket-text {
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.fixed-ticket-logo-wrapper {
    width: 60px;
    height: 24px;
  background: white;
  border-radius: 4px;
  padding: 4px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-ticket-logo {
  width: 60px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-bottom {
  align-self: stretch;
  padding: 24px 32px;
  background: black;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

.footer-link {
  width: 192px;
  text-align: center;
  color: white;
  font-size: 12px;
  font-family: 'Inter';
  font-weight: 400;
  text-decoration: underline;
  line-height: 12px;
  word-wrap: break-word;
}

.copyright {
  text-align: center;
  color: white;
  font-size: 12px;
  font-family: 'Inter';
  font-weight: 400;
  line-height: 12px;
  word-wrap: break-word;
}

/* Legal Page Styles */
.legal-container {
  background: white;
  padding: 0;
}

.legal-header {
  align-self: stretch;
  width: 100%;
  padding: 20px 16px;
  background: black;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.legal-back-button {
  display: inline-block;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 0;
  transition: opacity 0.2s ease;
}

.legal-back-button:hover {
  opacity: 0.7;
}

.legal-content {
  padding: 40px 16px 80px;
  background: white;
  color: #000;
}

.legal-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 40px;
  text-align: center;
  color: #000;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #000;
}

.legal-section-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
}

.legal-footer {
  background: black;
}
