html,
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #000;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

b {
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
span {
  text-wrap: pretty;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
}

.container {
  width: 90%;
  max-width: 1720px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    max-width: 800px;
  }
}

.row {
  display: flex;
}

.jcc {
  justify-content: center;
}

.aic {
  align-items: center;
}

.section-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
}
.section-heading .accent {
  color: #ff6a62;
}
@media (max-width: 1400px) {
  .section-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.5;
    margin: 0;
  }
}
@media (max-width: 820px) {
  .section-heading {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    margin: 0;
  }
}

.section-body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
}
.section-body p {
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .section-body p {
    font-size: 15px;
  }
}

section {
  padding: 80px 0;
}
@media (max-width: 820px) {
  section {
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  section {
    padding: 30px 0;
  }
}

header {
  position: sticky;
  top: 0;
  background: #000;
  z-index: 200;
}
header .row {
  justify-content: space-between;
  align-items: center;
}
header .brand {
  display: block;
  width: 200px;
}
@media (max-width: 1200px) {
  header .brand {
    width: 160px;
  }
}
@media (max-width: 820px) {
  header .brand {
    width: 140px;
  }
}
@media (max-width: 576px) {
  header .brand {
    width: 120px;
  }
}
header .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 210;
}
header .nav-toggle span {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
@media (max-width: 1200px) {
  header .nav-toggle {
    display: flex;
  }
}
header .nav-toggle.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
header .nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
header .nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1200px) {
  header nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80%, 320px);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #000;
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 205;
  }
  header nav.is-open {
    transform: translateX(0);
  }
}
header nav .nav-item {
  display: block;
  width: auto;
  color: #f9f9f9;
  text-decoration: none;
  text-align: center;
}
header nav .nav-item:hover {
  color: #a6a6a6;
}
@media (max-width: 1200px) {
  header nav .nav-item {
    margin-left: 0;
    font-size: 18px;
    text-align: left;
  }
}

.nav-backdrop {
  display: none;
}
@media (max-width: 1200px) {
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 204;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }
}

.marquee {
  background: #c8161e;
}
.marquee .marquee__track {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 5px 0;
}
@media (max-width: 1200px) {
  .marquee .marquee__track {
    width: 95%;
    max-width: 1100px;
  }
}
.marquee span {
  font-size: 14px;
  color: #f9f9f9;
  padding: 0 1%;
}
@media (max-width: 1200px) {
  .marquee span:nth-child(1), .marquee span:nth-child(4) {
    display: none;
  }
}
@media (max-width: 576px) {
  .marquee span {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .marquee {
    display: none;
  }
}

.btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  border: 2px solid #ffffff;
  cursor: pointer;
  text-decoration: none;
}
.btn--map {
  background-color: #c8161e;
  font-weight: 700;
  font-size: 1.67vw;
  color: #ffffff;
  padding: 10px 50px;
}
.btn--map:hover {
  background-color: #b00b12;
}
@media (max-width: 1200px) {
  .btn--map {
    font-size: 24px;
    padding: 8px 36px;
  }
}
@media (max-width: 576px) {
  .btn--map {
    font-size: 20px;
    padding: 5px 20px;
  }
}
.btn__arrow {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.btn__arrow::before, .btn__arrow::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn__arrow::before {
  width: 5px;
  height: 24px;
}
.btn__arrow::after {
  width: 24px;
  height: 5px;
}
@media (max-width: 576px) {
  .btn__arrow {
    font-size: 20px;
  }
  .btn__arrow::before {
    width: 3px;
    height: 16px;
  }
  .btn__arrow::after {
    width: 16px;
    height: 3px;
  }
}

.kv {
  position: relative;
  aspect-ratio: 1920/850;
  background-image: url(../images/kv.jpg?v2);
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
}
@media (max-width: 1400px) {
  .kv {
    background-size: cover;
    background-position: center;
  }
}
@media (max-width: 820px) {
  .kv {
    aspect-ratio: 1080/1280;
    min-height: auto;
    background-image: url(../images/kv_m.jpg?v2);
    background-repeat: no-repeat;
    background-size: contain;
    padding: 2rem 0;
  }
}
.kv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.kv__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-100%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  width: 32vw;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .kv__content {
    transform: translate(-90%, -50%);
    width: 40vw;
  }
}
@media (max-width: 820px) {
  .kv__content {
    position: static;
    transform: none;
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .kv__content {
    gap: 10px;
  }
}
.kv__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 4.7vw;
  line-height: 1;
  margin: 0;
}
@media (max-width: 1200px) {
  .kv__title {
    font-size: 48px;
  }
}
@media (max-width: 820px) {
  .kv__title {
    font-size: 11vw;
  }
}
@media (max-width: 576px) {
  .kv__title {
    font-size: 12vw;
  }
}
.kv__title-white {
  color: #ffffff;
}
.kv__title-gradient {
  background-image: linear-gradient(90.15deg, rgb(223, 0, 0) 9.16%, rgb(255, 127, 115) 29.82%, rgb(223, 0, 0) 50%, rgb(255, 106, 98) 74.51%, rgb(223, 0, 0) 88.45%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.kv__tagline {
  font-weight: 700;
  font-size: 2vw;
  line-height: 1.5;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .kv__tagline {
    width: 100%;
    font-size: 22px;
  }
}
@media (max-width: 820px) {
  .kv__tagline {
    font-size: 4.2vw;
  }
}
@media (max-width: 576px) {
  .kv__tagline {
    font-size: 4vw;
  }
}
.kv__dates {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
@media (max-width: 576px) {
  .kv__dates {
    gap: 5px;
  }
}
.kv__date-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}
@media (max-width: 576px) {
  .kv__date-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
  }
}
.kv__date-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 10.42vw;
  padding: 0.5vw 10px;
  font-weight: 700;
  font-size: 1.25vw;
  color: #ffffff;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .kv__date-tag {
    width: 120px;
    padding: 8px 10px;
    font-size: 15px;
  }
}
@media (max-width: 820px) {
  .kv__date-tag {
    width: 115px;
  }
}
@media (max-width: 576px) {
  .kv__date-tag {
    width: 100px;
    font-size: 3vw;
    padding: 5px 8px;
  }
}
.kv__date-tag--business {
  background-color: #7d7d7d;
}
.kv__date-tag--public {
  background-color: #4a4a4a;
}
.kv__date-text {
  font-weight: 700;
  font-size: 1.67vw;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .kv__date-text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .kv__date-text {
    font-size: 15px;
  }
}
.kv__location {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  border-radius: 100px;
  padding: 10px 25px;
}
@media (max-width: 576px) {
  .kv__location {
    padding: 5px 12px;
  }
}
.kv__location-icon {
  width: 2.5vw;
  height: 2.5vw;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .kv__location-icon {
    width: 24px;
    height: 24px;
  }
}
.kv__location-text {
  font-weight: 700;
  font-size: 1.67vw;
  color: #000000;
}
@media (max-width: 1200px) {
  .kv__location-text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .kv__location-text {
    font-size: 15px;
  }
}
.kv__location-code {
  color: #c8161e;
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  background: url(../images/bg2.jpg) no-repeat;
  background-size: contain;
  background-position: top center;
}
.about__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 1200px) {
  .about__container {
    flex-direction: column;
  }
}
.about__image {
  width: 55%;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .about__image {
    width: 100%;
    order: 2;
  }
}
.about__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  width: 45%;
}
@media (max-width: 1200px) {
  .about__text {
    gap: 20px;
    width: 100%;
    order: 1;
  }
}
@media (max-width: 820px) {
  .about__heading {
    font-size: 32px;
  }
}
.about__heading .accent {
  color: #ff6a62;
}

.activity {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 40px;
}
.activity__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .activity__title {
    font-size: 24px;
  }
}
@media (max-width: 820px) {
  .activity__title {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .activity__title {
    font-size: 18px;
  }
}
.activity__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1200px) {
  .activity__row {
    flex-direction: column;
  }
}

.activity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1 0 0;
  max-width: 520px;
  background-color: #c8161e;
  border-radius: 10px;
  padding: 25px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.activity-card:hover, .activity-card:focus-visible {
  opacity: 0.95;
}
.activity-card:hover .activity-card__arrow, .activity-card:focus-visible .activity-card__arrow {
  opacity: 0.95;
}
.activity-card:nth-child(2) {
  background-color: #ff6a62;
}
.activity-card:nth-child(3) {
  background-color: #b00b12;
}
@media (max-width: 1400px) {
  .activity-card {
    width: 100%;
    max-width: none;
    gap: 5px;
    padding: 20px;
  }
}
@media (max-width: 1200px) {
  .activity-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .activity-card {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
}
@media (max-width: 1200px) {
  .activity-card .img {
    flex: 1;
  }
}
@media (max-width: 576px) {
  .activity-card .img {
    flex: 1;
  }
}
.activity-card .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.activity-card .text p {
  color: #f9f9f9;
  text-align: center;
  margin-bottom: 10px;
}
.activity-card .text ul {
  margin-bottom: 10px;
}
.activity-card .text ul li {
  color: #fff;
}
.activity-card .text ul li span {
  font-size: 110%;
  font-weight: bold;
  color: #ffd36b;
  margin-right: 5px;
}
@media (max-width: 1200px) {
  .activity-card .text {
    flex: 2;
  }
}
@media (max-width: 576px) {
  .activity-card .text {
    flex: 2;
  }
  .activity-card .text p {
    font-size: 15px;
  }
  .activity-card .text ul li {
    text-align: center;
  }
}
.activity-card__eyebrow {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 1400px) {
  .activity-card__eyebrow {
    font-size: 20px;
  }
}
@media (max-width: 820px) {
  .activity-card__eyebrow {
    font-size: 18px;
  }
}
.activity-card__title {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 1400px) {
  .activity-card__title {
    font-size: 24px;
  }
}
@media (max-width: 820px) {
  .activity-card__title {
    font-size: 20px;
  }
}
.activity-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #c8161e;
  background: #fff;
  width: fit-content;
  padding: 5px 20px;
  border-radius: 50px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .activity-card__cta {
    justify-content: flex-start;
    margin: 0 0 0 auto;
  }
}
.activity-card__arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #c8161e;
  border-right: 2px solid #c8161e;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.styles-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  background-color: #000000;
}
.styles-section__mascot {
  width: 180px;
}
@media (max-width: 1400px) {
  .styles-section__mascot {
    width: 150px;
  }
}
@media (max-width: 1200px) {
  .styles-section__mascot {
    width: 120px;
  }
}
.styles-section__heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 820px) {
  .styles-section__heading {
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .styles-section__heading {
    flex-direction: column;
    text-align: center;
  }
}

.product-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .product-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 820px) {
  .product-row {
    row-gap: 24px;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex: 1 0 0;
  aspect-ratio: 3/2;
}
@media (max-width: 1200px) {
  .product-card {
    flex: 0 0 48%;
  }
}
@media (max-width: 576px) {
  .product-card {
    flex: 0 0 100%;
  }
}
.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.product-card__image > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}
.product-card__image img {
  width: 70%;
}
.product-card__image:hover > div {
  opacity: 0;
}
.product-card .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  color: #ffffff;
  line-height: 1.5;
}
.product-card .text h4 {
  font-size: 20px;
}
@media (max-width: 1400px) {
  .product-card .text h4 {
    font-size: 18px;
  }
}
@media (max-width: 820px) {
  .product-card .text h4 {
    font-size: 16px;
  }
}
.product-card .text h3 {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  color: #ff6a62;
  line-height: 1.5;
}
@media (max-width: 1400px) {
  .product-card .text h3 {
    font-size: 20px;
  }
}
@media (max-width: 820px) {
  .product-card .text h3 {
    font-size: 18px;
  }
}
.product-card .text p {
  text-align: center;
}

.special-events {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  background: url(../images/bg3.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.special-events__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.special-events__intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
@media (max-width: 820px) {
  .special-events__intro {
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .special-events__intro h2 {
    font-size: 36px;
  }
}
@media (max-width: 820px) {
  .special-events__intro h2 {
    font-size: 24px;
  }
}

.event-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.event-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  flex: 1 0 0;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 25px;
}
.event-card .img {
  flex: 1;
}
.event-card .text {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
.event-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 820px) {
  .event-card {
    flex: none;
  }
}
@media (max-width: 576px) {
  .event-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
  .event-card .img,
  .event-card .text {
    width: 100%;
  }
}
.event-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #a6a6a6;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 10px;
}
.event-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
  color: #c8161e;
  margin-top: 4px;
}
@media (max-width: 820px) {
  .event-card__title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
  }
}
.event-card__speaker {
  font-weight: 700;
  font-size: 20px;
  color: #6e6e6e;
}
@media (max-width: 820px) {
  .event-card__speaker {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
  }
}
.event-card__notes {
  list-style: disc;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}
.event-card__notes li {
  line-height: 1.5;
}
@media (max-width: 820px) {
  .event-card__notes {
    font-size: 15px;
  }
}

.sns {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  background-color: #262626;
  background-image: url(../images/elena_bg_l.jpg), url(../images/elena_bg_r.jpg?v2);
  background-repeat: no-repeat, no-repeat;
  background-size: 30vw, 30vw;
  background-position: top 2vw left -2vw, top 2vw right -2vw;
  overflow: hidden;
}
.sns__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72%;
  object-fit: cover;
  z-index: 0;
}
.sns__intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
@media (max-width: 820px) {
  .sns__intro {
    gap: 30px;
  }
}
.sns__eyebrow {
  display: inline-block;
  width: 100%;
  font-weight: 700;
  font-size: 32px;
  color: #ff6a62;
}
@media (max-width: 820px) {
  .sns__eyebrow {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .sns__eyebrow {
    font-size: 20px;
  }
}

.step-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .step-list {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 820px) {
  .step-list {
    row-gap: 20px;
  }
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  flex: 1 0 0;
  background-color: #ffffff;
  border: 1px solid #c8161e;
  border-radius: 10px;
  padding: 20px;
}
@media (max-width: 1200px) {
  .step-card {
    flex: 0 0 48%;
  }
}
@media (max-width: 576px) {
  .step-card {
    flex: 0 0 100%;
  }
}
.step-card__num {
  font-weight: 700;
  font-size: 24px;
  color: #c8161e;
  text-align: center;
  width: 100%;
}
@media (max-width: 820px) {
  .step-card__num {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
  }
}
.step-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
  color: #000000;
  text-align: center;
  width: 100%;
}
@media (max-width: 820px) {
  .step-card__title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
  }
}
.step-card__image {
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
}
@media (max-width: 820px) {
  .step-card__image {
    width: 80%;
  }
}
.step-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-card__desc {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 820px) {
  .step-card__desc {
    font-size: 15px;
  }
}

.sns__follow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 100px;
  padding: 20px 25px;
}
.sns__follow::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: url(../images/finger.png) no-repeat;
  background-size: contain;
}
.sns__follow:hover {
  background: #f5f5f5;
}
.sns__follow:hover::before {
  display: none;
}
.sns__follow img {
  width: 20px;
  height: 20px;
}
.sns__follow span {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
}

.sns__hashtag {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 576px) {
  .sns__hashtag {
    flex-direction: column;
    gap: 8px;
  }
}
.sns__hashtag-label {
  font-size: 16px;
  color: #ffffff;
}
.sns__hashtag-copy {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.sns__hashtag-copy p {
  font-size: 16px;
  color: #2ec0f5;
}
.sns__hashtag-copy img {
  width: 24px;
  height: 24px;
}
.sns__hashtag-copy.is-copied p {
  color: #c8161e;
}

.notice {
  width: 90%;
  max-width: 800px;
  position: relative;
  z-index: 1;
  border-left: 5px solid #b00b12;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.notice__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
}
.notice ul {
  color: #f9f9f9;
}
.notice ul li {
  margin-bottom: 2px;
}
.notice .fst_list {
  margin-left: 1.5rem;
}
.notice .fst_list > li {
  list-style: square;
}
.notice .sec_list {
  margin-left: 1.5rem;
}
.notice .sec_list > li {
  list-style: circle;
}
.notice .copy_area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
@media (max-width: 576px) {
  .notice {
    padding-left: 5px;
  }
  .notice__title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
  }
  .notice ul li {
    font-size: 15px;
  }
  .notice .copy_area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
  }
}

.goods {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  padding: 80px 0;
  background: url(../images/bg4.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.goods__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.goods::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #262626 0%, rgba(38, 38, 98, 0) 34.6%);
  z-index: 0;
}
.goods__intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
.goods__intro h2 span {
  color: #ff6a62;
}
@media (max-width: 820px) {
  .goods__intro {
    gap: 30px;
  }
}
.goods__products {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  border: 2px solid #c8161e;
  overflow: hidden;
  width: 90%;
  max-width: 1200px;
}
@media (max-width: 1200px) {
  .goods__products {
    max-width: 800px;
  }
}

.corporate {
  background: #000;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(64, 10, 10) 100%);
}
.corporate__intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}
@media (max-width: 820px) {
  .corporate__intro {
    gap: 30px;
  }
}
.corporate .logo_list {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.corporate .logo_list .group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  flex-wrap: wrap;
  width: calc(50% - 10px);
  max-width: 500px;
}
.corporate .logo_list .group p {
  font-size: 14px;
}
@media (max-width: 820px) {
  .corporate .logo_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .corporate .logo_list .group {
    width: 90%;
  }
}
.corporate h2,
.corporate p {
  text-align: center;
  color: #f9f9f9;
}

.information {
  padding: 2rem 0 1rem;
}
.information h2 {
  font-size: 32px;
  font-weight: 900;
  color: #ff6a62;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .information h2 {
    font-size: 22px;
  }
}
.information p {
  font-size: 16px;
  color: #f9f9f9;
  text-align: center;
  margin-bottom: 5px;
}
@media (max-width: 576px) {
  .information p {
    font-size: 14px;
  }
}
.information p span {
  color: #a6a6a6;
  margin-right: 10px;
}

footer {
  background: #000;
  padding: 1rem 0;
}
footer p {
  color: #f9f9f9;
  text-align: center;
  font-size: 14px;
}

.map-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}
.map-modal.is-open {
  display: flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.map-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.map-modal__panel {
  position: relative;
  z-index: 1;
  width: 95%;
  max-width: 1000px;
  max-height: 85vh;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 60px 20px 20px;
  overflow: auto;
}
@media (max-width: 576px) {
  .map-modal__panel {
    padding: 52px 16px 16px;
  }
}
.map-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background-color: #c8161e;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.map-modal__close:hover {
  background-color: #b00b12;
}
.map-modal__image {
  width: 100%;
  height: auto;
  display: block;
}/*# sourceMappingURL=tgs2026.css.map */