@charset "UTF-8";
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f2f9ff;
  color: #4e6a85;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.5;
}

.hanging {
  text-indent: 1em hanging;
}

.font--pop {
  font-family: "Poppins", sans-serif;
}

.font--jak {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.font--rob {
  font-family: "Roboto", sans-serif;
}

.sp__only {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .sp__only {
    display: block !important;
  }
}

@media only screen and (max-width: 767px) {
  .pc__only {
    display: none !important;
  }
}

strong,
em {
  font-style: normal;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

@keyframes morph {
  0% {
    border-radius: 40% 60% 70% 30%/40% 50% 60% 50%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-float {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(44, 54, 63, 0.1);
}

.site .site__box {
  width: 100%;
}

.header {
  position: fixed;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  inset: 50px 0 auto;
  margin: auto;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px min(0.2083333333vw, 0.3rem) min(0.2777777778vw, 0.4rem) 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 0 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 1150px) {
  .header {
    inset: 25px 0 auto;
  }
}
.header .header__box {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 2rem;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1150px) {
  .header .header__box {
    padding: 0 1rem;
  }
}
.header .header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.5rem;
  cursor: pointer;
  max-width: 150px;
}
@media screen and (max-width: 1150px) {
  .header .header__logo {
    max-width: 120px;
  }
}
.header .header__logo img {
  width: 100%;
  height: auto;
}
.header .header__logo:hover .header__logo-icon {
  transform: scale(1.1);
}
.header .header__nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 1150px) {
  .header .header__nav {
    display: none;
  }
}
.header .header__nav-btn-icon {
  margin-right: 0.4rem;
  font-size: 0.9em;
}
.header .header__link {
  transition: color 0.3s;
}
.header .header__link:hover {
  color: #7a9ca8;
}
.header .header__btn {
  background-color: #7a9ca8;
  color: #fff;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  transition: transform 0.2s, opacity 0.2s;
}
.header .header__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.header .header__btn--toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #4e6a85;
  cursor: pointer;
}
@media screen and (max-width: 1150px) {
  .header .header__btn--toggle {
    display: block;
  }
}
.header .header__mobile-toggle {
  display: none;
}
@media screen and (max-width: 1150px) {
  .header .header__mobile-toggle {
    display: flex;
    align-items: center;
  }
}

.header.is-scrolled {
  inset: 0 0 auto;
  width: 100%;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mobile-menu {
  display: none;
}
@media screen and (max-width: 1150px) {
  .mobile-menu {
    display: block;
    position: absolute;
    top: 100%; /* ヘッダーのすぐ下に配置 */
    left: 0; /* 左端を揃える */
    /* メニュー下部の角丸（任意：ヘッダーのデザインに合わせる場合） */
    border-radius: 0 0 1rem 1rem;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid #d4dfe4;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }
}
.mobile-menu .mobile-menu__box {
  padding: 1rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu .mobile-menu__link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 700;
  border-radius: 0.75rem;
}
.mobile-menu .mobile-menu__link:hover {
  background-color: #f2f9ff;
}
.mobile-menu .mobile-menu__action {
  padding: 1rem 0.5rem 0;
}
.mobile-menu .mobile-menu__btn {
  display: block;
  text-align: center;
  background-color: #7a9ca8;
  color: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
}

.mobile-menu.is-open {
  max-height: 500px;
  opacity: 1;
}

.hero {
  min-height: 100svh;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 10rem;
  padding-bottom: 2rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/assets/images/gas_festa2026/fv.webp) center center/cover no-repeat;
  opacity: 0.8;
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .hero {
    min-height: 80svh;
    height: auto;
    padding-top: 8rem;
    padding-bottom: 2rem;
  }
}
.hero .hero__box {
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
  text-align: center;
  height: 100%;
  display: flex;
  flex: 1;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.hero .hero__content {
  position: relative;
  z-index: 5;
}
.hero .hero__title {
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: #549eff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .hero .hero__title {
    font-size: 6.5rem;
  }
}
.hero .hero__title {
  margin-top: 5%;
}
.hero .hero__title img {
  width: auto;
  height: 80svh;
  aspect-ratio: 1/1;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .hero .hero__title img {
    width: 100%;
    height: auto;
  }
}
.hero .hero__title-highlight {
  font-weight: 900;
  text-align: center;
  background: linear-gradient(to right, #549eff, #549eff);
  -webkit-background-clip: text;
  color: #549eff;
  display: inline-block;
}
.hero .hero__title-year {
  color: #549eff;
  display: inline-block;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  text-align: center;
  width: 4ch;
}
.hero [class^=hero__image] {
  position: absolute;
  overflow: hidden;
  animation: dynamic-morph 5s ease-in-out infinite alternate;
  box-shadow: 0 15px 30px -10px rgba(44, 54, 63, 0.1);
  display: none;
  will-change: border-radius;
  transform: translateZ(0);
}
@media screen and (min-width: 768px) {
  .hero [class^=hero__image] {
    display: block;
  }
}
.hero [class^=hero__image] img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero__image01 {
  height: 50%;
  aspect-ratio: 1;
  top: 0%;
  left: -1.5%;
  animation-duration: 4.5s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1300px) {
  .hero .hero__image01 {
    width: 25%;
    height: auto;
  }
}
.hero .hero__image02 {
  height: 33%;
  aspect-ratio: 1;
  bottom: 3%;
  left: 3%;
  animation-duration: 5.5s;
  animation-delay: -1.5s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1300px) {
  .hero .hero__image02 {
    width: 15%;
    height: auto;
  }
}
.hero .hero__image03 {
  height: 33%;
  aspect-ratio: 1;
  top: 3%;
  right: 3%;
  animation-duration: 5s;
  animation-delay: -2.5s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1300px) {
  .hero .hero__image03 {
    width: 15%;
    height: auto;
  }
}
.hero .hero__image04 {
  height: 50%;
  aspect-ratio: 1;
  bottom: 3%;
  right: 3%;
  animation-duration: 4s;
  animation-delay: -0.8s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1300px) {
  .hero .hero__image04 {
    width: 25%;
    height: auto;
  }
}

@keyframes dynamic-morph {
  0% {
    border-radius: 30% 70% 70% 30%/30% 40% 60% 70%;
  }
  50% {
    border-radius: 65% 35% 45% 55%/50% 60% 40% 50%;
  }
  100% {
    border-radius: 70% 30% 30% 70%/70% 35% 65% 30%;
  }
}
.welcome {
  padding: 5.5rem 0;
  background: #fff url(/assets/images/gas_festa2026/welcome_bg01.svg) center 0 repeat-x;
  background-size: 15% auto;
}
@media screen and (max-width: 767px) {
  .welcome {
    background-size: 33% auto;
  }
}
.welcome {
  position: relative;
  z-index: 20;
  border-top: 1px solid #d4dfe4;
  border-bottom: 1px solid #d4dfe4;
  text-align: center;
  overflow: hidden;
}
.welcome .welcome__box {
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}
.welcome .welcome__title-sub {
  display: inline-block;
  white-space: nowrap;
  font-size: 4.5rem;
  color: #0b5fb5;
  margin-bottom: 1.5rem;
  font-weight: 900;
  -webkit-text-stroke: 12px #fff;
  paint-order: stroke fill;
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 767px) {
  .welcome .welcome__title-sub {
    font-size: min(2.2rem, 7.5vw);
    -webkit-text-stroke: 6px #fff;
    margin-bottom: 1rem;
  }
}
.welcome .welcome__desc {
  font-size: 1.75rem;
  font-weight: 900;
  color: #17366b;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
  max-width: 1000px;
  padding: 2rem 10%;
  background-image: url(/assets/images/gas_festa2026/welcome_chara01.svg), url(/assets/images/gas_festa2026/welcome_chara02.svg), url(/assets/images/gas_festa2026/welcome_chara03.svg);
  background-position: left center, right top, right bottom;
  background-repeat: no-repeat;
  background-size: 13% auto, 9% auto, 17% auto;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__desc {
    font-size: 1.125rem;
    padding: 1rem 0 30%;
    background-position: left 10% bottom, center bottom, right 10% bottom;
    background-size: 25% auto, 20% auto, 30% auto;
  }
}
.welcome .welcome__desc .welcome__line {
  display: inline-block;
  margin-bottom: 0.5rem;
  border-bottom: 4px dotted #f8c858;
  padding-bottom: 0.2rem;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__desc .welcome__line {
    border-bottom-width: 3px;
    margin-bottom: 0.25rem;
  }
}
.welcome .welcome__desc .highlight {
  font-size: 1.3em;
  display: inline-block;
  transform: translateY(-2px);
}
.welcome .welcome__desc .highlight--pink {
  color: #e94c89;
}
.welcome .welcome__desc .highlight--green {
  color: #00a550;
}
.welcome .welcome__desc .highlight--orange {
  color: #f16522;
}
.welcome .welcome__desc .highlight--blue {
  color: #007bc7;
}
.welcome .welcome__detail {
  margin-inline: auto;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 1px solid #d4dfe4;
  padding: 1.5rem;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 60rem;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__detail {
    display: block;
    max-width: 100%;
  }
}
.welcome .welcome__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__date {
    display: block;
  }
}
.welcome .welcome__date-icon-wrap {
  width: 3rem;
  height: 3rem;
  background-color: rgba(122, 156, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1rem;
}
.welcome .welcome__date-icon {
  color: #7a9ca8;
  font-size: 1.25rem;
}
.welcome .welcome__date-label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
}
.welcome .welcome__date-text {
  border-bottom: 1px dashed #d4dfe4;
  backdrop-filter: blur(4px);
  padding: 0.75rem 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: grid;
  grid-template-columns: auto auto auto;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  justify-content: center;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__date-text {
    padding: 1.5rem 0;
  }
}
.welcome .welcome__date-text > span {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 3;
  align-items: baseline;
  font-size: 4rem;
  color: #333333;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__date-text > span {
    font-size: 2.5rem;
  }
}
.welcome .welcome__date-text > span .small {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__date-text > span .small {
    font-size: 1.25rem;
  }
}
.welcome .welcome__date-text > span:nth-child(3) {
  display: block;
  text-align: center;
}
.welcome .welcome__br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__br-sp {
    display: block;
  }
}
.welcome .welcome__location {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.welcome .welcome__location-name {
  font-size: 2rem;
  font-weight: 900;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__location-name {
    font-size: 1.6rem;
    text-align: left;
  }
}
.welcome .welcome__location-address {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__location-address {
    font-size: 1rem;
    text-align: left;
  }
}
.welcome .welcome__location-label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
}
.welcome .welcome__location-icon-wrap {
  width: 3rem;
  height: 3rem;
  background-color: rgba(122, 156, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1rem;
}
.welcome .welcome__location-icon {
  color: #7a9ca8;
  font-size: 1.25rem;
}
.welcome .welcome__location-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.welcome .welcome__location-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.welcome .welcome__location-action {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.welcome .welcome__actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__actions {
    flex-direction: column;
    padding: 0 1rem;
  }
}
.welcome .welcome__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 9999px;
  height: auto;
  flex: 1;
  max-width: 320px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__btn {
    max-width: 100%;
  }
  .welcome .welcome__btn br {
    display: none;
  }
}
.welcome .welcome__btn {
  background-color: #ffffff;
  color: #549eff;
  border: 1px solid #549eff;
  transition: all 0.3s ease;
}
.welcome .welcome__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(44, 54, 63, 0.1);
  background-color: #549eff;
  color: #ffffff;
}
.welcome .welcome__btn:hover .welcome__btn-icon {
  color: #ffffff;
}
.welcome .welcome__btn--primary,
.welcome .welcome__btn--secondary {
  background-color: #ffffff;
  color: #549eff;
  border: 1px solid #549eff;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__btn--primary,
  .welcome .welcome__btn--secondary {
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
}
.welcome .welcome__btn--primary:hover,
.welcome .welcome__btn--secondary:hover {
  background-color: #549eff;
  color: #ffffff;
}
.welcome .welcome__btn--tertiary {
  background-color: #ffffff;
  color: #549eff;
  border: 1px solid #549eff;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
}
.welcome .welcome__btn--tertiary i {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__btn--tertiary {
    width: 100%;
    justify-content: center;
  }
}
.welcome .welcome__btn--tertiary:hover {
  background-color: #549eff;
  color: #ffffff;
}
.welcome .welcome__btn--tertiary:hover i {
  color: #ffffff;
}
.welcome .welcome__btn-icon {
  margin-left: 0.75rem;
  font-size: 2em;
  color: #549eff;
  transition: color 0.3s ease;
}
.welcome .welcome__card {
  background-color: #f2f9ff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #d4dfe4;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  width: 100%;
  max-width: 60rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .welcome .welcome__card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.welcome .welcome__card .welcome__desc {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(78, 106, 133, 0.7);
  margin: 0;
  max-width: none;
  background-color: transparent;
  background-image: none;
  padding: 0;
  border-radius: 0;
  border: none;
}
.welcome .welcome__info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.welcome .welcome__title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.welcome .welcome__badge-wrap {
  flex-shrink: 0;
}
.welcome .welcome__badge {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  box-shadow: none;
  color: #4e6a85;
  display: inline-flex;
  align-items: center;
}
.welcome .welcome__badge-icon {
  color: #7a9ca8;
  margin-right: 0.5rem;
}

.confetti {
  position: absolute;
  top: -20px;
  opacity: 0;
  pointer-events: none;
  animation: fall linear infinite;
  z-index: 1;
  will-change: transform, opacity;
  transform: translateZ(0);
}

@keyframes fall {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) translateZ(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg) translateZ(0);
  }
}
.gift {
  padding: 5rem 0;
  background-color: rgba(122, 156, 168, 0.05);
  position: relative;
  border-bottom: 1px solid #d4dfe4;
  overflow: hidden;
}
.gift .gift__box {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .gift .gift__box {
    padding: 0 1rem;
  }
}
.gift .gift__bg-text {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 16rem;
  font-weight: 900;
  color: #7a9ca8;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .gift .gift__bg-text {
    font-size: 8rem;
  }
}
.gift .gift__card {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 2rem;
  padding: 3rem;
  border: 1px solid #d4dfe4;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  display: flex;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .gift .gift__card {
    flex-direction: column;
    padding: 2rem;
  }
}
.gift .gift__content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .gift .gift__content {
    text-align: center;
  }
}
.gift .gift__label {
  color: #d98a6c;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
  text-align: center;
}
.gift .gift__title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: #549eff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .gift .gift__title {
    font-size: 1.875rem;
  }
}
.gift .gift__desc {
  color: rgba(78, 106, 133, 0.7);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .gift .gift__desc {
    text-align: left;
  }
}
.gift .gift__info-box {
  display: inline-block;
  justify-content: center;
  background-color: #f2f9ff;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #d4dfe4;
  margin-bottom: 1.5rem;
  text-align: left;
}
.gift .gift__info-title {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.gift .gift__info-title i {
  color: #7a9ca8;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .gift .gift__info-title {
    text-align: left;
    font-size: 1.2rem;
  }
}
.gift .gift__info-text {
  display: block;
  color: #d98a6c;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
.gift .gift__note {
  text-align: right;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(78, 106, 133, 0.8);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .gift .gift__note {
    text-align: left;
  }
}

.about {
  padding: 8rem 0;
  background-color: #f2f9ff;
  position: relative;
  overflow: hidden;
}
.about .about__box {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .about .about__box {
    padding: 0 1rem;
  }
}
.about .about__bg-text {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 18rem;
  font-weight: 900;
  color: #4e6a85;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .about .about__bg-text {
    font-size: 12rem;
  }
}
.about .about__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #d4dfe4;
  padding-bottom: 2rem;
  margin-bottom: 6rem;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .about .about__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
    gap: 0;
  }
}
.about .about__header-left {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .about .about__header-left {
    margin-bottom: 1.5rem;
  }
}
.about .about__label {
  color: #7a9ca8;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.about .about__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #549eff;
}
@media screen and (max-width: 767px) {
  .about .about__title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .about .about__br-pc {
    display: none;
  }
}
.about .about__desc {
  color: rgba(78, 106, 133, 0.7);
  font-weight: 400;
  text-align: left;
  line-height: 1.6;
}
.about .about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 4rem;
}
@media screen and (max-width: 767px) {
  .about .about__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.about .about__item {
  position: relative;
  transition: transform 0.3s;
}
.about .about__item:hover .about__number {
  transform: translateY(-12px);
}
.about .about__number {
  position: absolute;
  top: -3rem;
  left: -2rem;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transition: transform 0.5s;
}
@media screen and (max-width: 767px) {
  .about .about__number {
    left: -1rem;
    font-size: 6rem;
  }
}
.about .about__number--blue {
  color: rgba(122, 156, 168, 0.1);
}
.about .about__number--orange {
  color: rgba(217, 138, 108, 0.1);
}
.about .about__number--green {
  color: rgba(126, 156, 138, 0.1);
}
.about .about__number--yellow {
  color: rgba(219, 199, 147, 0.1);
}
.about .about__content {
  position: relative;
  z-index: 10;
  padding-top: 1rem;
}
.about .about__item-title {
  font-size: 1.875rem;
  font-weight: 900;
  border-bottom: 4px solid;
  display: inline-block;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .about .about__item-title {
    font-size: 1.5rem;
  }
}
.about .about__item-title--blue {
  border-color: #7a9ca8;
}
.about .about__item-title--orange {
  border-color: #d98a6c;
}
.about .about__item-title--green {
  border-color: #7e9c8a;
}
.about .about__item-title--yellow {
  border-color: #dbc793;
}
.about .about__item-desc {
  color: rgba(78, 106, 133, 0.7);
  font-weight: 400;
  line-height: 1.6;
}

.events {
  padding: 6rem 0;
  background-color: #fff;
  border-top: 1px solid #d4dfe4;
  position: relative;
  overflow: hidden;
}
.events .events__box {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .events .events__box {
    padding: 0 1rem;
  }
}
.events .events__bg-text {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 14rem;
  font-weight: 900;
  color: #4e6a85;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .events .events__bg-text {
    font-size: 8rem;
  }
}
.events .events__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #d4dfe4;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .events .events__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .events .events__header-left {
    margin-bottom: 1.5rem;
  }
}
.events .events__header-right {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .events .events__header-right {
    text-align: center;
  }
}
.events .events__label {
  color: #7a9ca8;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.events .events__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  color: #549eff;
}
@media screen and (max-width: 767px) {
  .events .events__title {
    font-size: 2.25rem;
  }
}
.events .events__subtitle {
  font-size: 1.875rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #549eff;
}
@media screen and (max-width: 767px) {
  .events .events__subtitle {
    font-size: 1.5rem;
  }
}
.events .events__desc {
  color: rgba(78, 106, 133, 0.7);
  font-weight: 700;
  margin-bottom: 1rem;
}
.events .events__notice {
  display: inline-block;
  background-color: #f2f9ff;
  border: 1px solid #d4dfe4;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
}
.events .events__notice-text {
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: rgba(78, 106, 133, 0.8);
}
.events .events__notice-icon {
  color: #d98a6c;
  margin-right: 0.5rem;
}
.events .events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .events .events__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.events .events__card {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #d4dfe4;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  display: flex;
  flex-direction: column;
}
.events .events__card--featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  background-color: rgba(242, 249, 255, 0.5);
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .events .events__card--featured {
    grid-column: span 1;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
.events .events__card-img-wrap {
  overflow: hidden;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 1rem;
}
.events .events__card--featured .events__card-img-wrap {
  width: 41.666%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .events .events__card--featured .events__card-img-wrap {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}
.events .events__card-img {
  border-radius: 1rem;
  border: 1px solid #d4dfe4;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s ease;
  aspect-ratio: 16/7.5;
}
.events .events__card-img:not(:only-child) {
  width: calc(50% - 0.5rem);
  aspect-ratio: 1/1;
}
.events .events__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.events .events__card--featured .events__card-content {
  width: 58.333%;
}
@media screen and (max-width: 767px) {
  .events .events__card--featured .events__card-content {
    width: 100%;
  }
}
.events .events__card-content--food {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .events .events__card-content--food {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }
}
.events .events__card-content--food .events__card-title {
  margin-bottom: 0;
  flex: 1;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .events .events__card-content--food .events__card-title {
    margin-bottom: 0.5rem;
  }
}
.events #food02 .events__card-content--food {
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .events #food02 .events__card-content--food {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.events #food02 .events__card-content--food .events__card-title {
  flex: 0 0 100%;
  margin-right: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .events #food02 .events__card-content--food .events__card-title {
    margin-bottom: 0.5rem;
    flex: auto;
  }
}
.events #food02 .events__card-content--food .events__card-qr {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .events #food02 .events__card-content--food .events__card-qr {
    width: 100%;
  }
}
.events #events07 .events__card-img-wrap:last-child {
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.events #events07 .events__card-img-wrap:last-child .events__card-img {
  border-radius: 0;
  border: none;
  aspect-ratio: auto;
}
.events .events__card-title {
  font-size: 1.25rem;
  font-weight: 900;
  border-bottom: 4px solid;
  display: inline-block;
  padding-bottom: 0.25rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .events .events__card-title {
    font-size: 1rem;
    text-align: left;
  }
}
.events .events__card--featured .events__card-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.events .events__card--featured .events__card-title br {
  display: none;
}
@media screen and (max-width: 767px) {
  .events .events__card--featured .events__card-title br {
    display: block;
  }
}
.events .events__card-title--blue {
  border-color: #7a9ca8;
}
.events .events__card-title--orange {
  border-color: #d98a6c;
}
.events .events__card-title--yellow {
  border-color: #dbc793;
}
.events .events__card-title--pink {
  border-color: #c4979c;
}
.events .events__card-title--green {
  border-color: #7e9c8a;
}
.events .events__card-lead {
  color: rgba(78, 106, 133, 0.8);
  font-weight: 700;
}
.events .events__card-lead .events__card-lead-em {
  color: rgba(78, 106, 133, 0.8);
  font-weight: 900;
  font-size: 1.2rem;
  color: #549eff;
}
.events .events__card-lead a {
  text-decoration: underline;
  transition: all 0.3s ease;
}
.events .events__card-lead a:hover {
  color: #549eff;
}
.events .events__card-lead .events__card-lead-block {
  display: block;
  margin-bottom: 1.5em;
}
.events .events__card-lead .events__card-lead-block:last-child {
  margin-bottom: 0;
}
.events .events__card--featured .events__card-lead {
  font-size: 1.125rem;
}
.events .events__card-qr {
  flex-shrink: 0;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .events .events__card-qr {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.events .events__card-qr img {
  width: 100%;
  max-width: 160px;
  height: auto;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .events .events__card-qr img {
    display: none;
  }
}
.events .events__card-qr .events__card-qr--btn {
  display: block;
  text-align: center;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .events .events__card-qr .events__card-qr--btn {
    padding-top: 0;
    width: 100%;
  }
}
.events .events__card-qr .events__card-qr--btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1rem;
  background-color: #549eff;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
}
.events .events__card-qr .events__card-qr--btn a:hover {
  background-color: #7a9ca8;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(44, 54, 63, 0.1);
  color: #fff;
}
.events .events__card-qr-float {
  float: right;
  width: 100px;
  height: auto;
  margin: 0 0 1rem 1rem;
}
@media screen and (max-width: 767px) {
  .events .events__card-qr-float {
    float: none;
    display: block;
    margin: 0 auto 1rem;
  }
}
.events .events__card-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .events .events__card-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.events .events__card-grid .events__card-lead {
  flex: 1;
  margin-bottom: 0;
}
.events .events__card-note {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #d4dfe4;
  margin-top: 1rem;
}
.events .events__card-note-title {
  color: #d98a6c;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.events .events__card-outline {
  margin-top: 0.5rem;
}
.events .events__card-outline table {
  width: 100%;
  border-collapse: collapse;
}
.events .events__card-outline table tr {
  border-bottom: 1px dashed #d4dfe4;
}
@media screen and (max-width: 767px) {
  .events .events__card-outline table tr {
    display: flex;
    flex-direction: column;
  }
}
.events .events__card-outline table th,
.events .events__card-outline table td {
  padding: 0.75rem 0;
  text-align: left;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .events .events__card-outline table th,
  .events .events__card-outline table td {
    width: 100%;
  }
}
.events .events__card-outline table th {
  font-weight: 700;
  width: 30%;
  color: rgba(78, 106, 133, 0.9);
}
@media screen and (max-width: 767px) {
  .events .events__card-outline table th {
    padding-bottom: 0;
  }
}
.events .events__card-outline table td {
  color: rgba(78, 106, 133, 0.8);
}
@media screen and (max-width: 767px) {
  .events .events__card-outline table td {
    padding-top: 0.25rem;
  }
}
.events .events__card-outline table td ul {
  margin-top: 0.5rem;
  list-style: disc;
  padding-left: 1.25rem;
}
.events .events__card-outline table td ul li {
  margin-bottom: 0.25rem;
}
.events .events__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.875rem 2.5rem;
  background-color: #549eff;
  color: #fff;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
}
.events .events__card-btn:hover {
  background-color: #7a9ca8;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(44, 54, 63, 0.1);
  color: #fff;
}
.events {
  /* Timetable */
}
.events .events__timetable {
  margin-top: 8rem;
  position: relative;
  margin-bottom: 4rem;
}
.events .events__timetable-bg {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 16rem;
  font-weight: 900;
  color: #4e6a85;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .events .events__timetable-bg {
    font-size: 7rem;
    top: -3rem;
  }
}
.events .events__timetable-card {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 2rem;
  padding: 3rem;
  border: 1px solid #d4dfe4;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
}
@media screen and (max-width: 767px) {
  .events .events__timetable-card {
    padding: 2rem;
  }
}
.events .events__timetable-title {
  font-size: 1.875rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2.5rem;
}
.events .events__timetable-title span {
  font-size: 1.125rem;
  color: rgba(78, 106, 133, 0.5);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .events .events__timetable-title {
    font-size: 1.5rem;
  }
}
.events .events__timetable-day-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #549eff;
  border-bottom: 2px solid #d4dfe4;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  text-align: center;
}
.events .events__timetable-day-title span {
  padding-inline: 0.2em;
  font-size: 1.8rem;
}
.events .events__timetable-grid {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .events .events__timetable-grid {
    flex-direction: column;
    gap: 3rem;
  }
}
.events .events__timetable-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.events .events__timetable-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  border-bottom: 1px solid #d4dfe4;
  padding: 1rem 0.5rem 1.5rem;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.events .events__timetable-row--last {
  border-bottom: none;
}
.events .events__timetable-time {
  font-size: 1.125rem;
  font-weight: 900;
  color: #549eff;
  width: 100%;
  text-align: left;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .events .events__timetable-time {
    font-size: 1rem;
  }
}
.events .events__timetable-info {
  flex: 1;
  border-left: none;
  padding-left: 0;
  transition: border-color 0.3s;
}
.events .events__timetable-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .events .events__timetable-name {
    font-size: 1rem;
  }
}
.events .events__br-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .events .events__br-pc {
    display: none;
  }
}

.map {
  padding: 5rem 0;
  background-color: #f2f9ff;
  border-top: 1px solid #d4dfe4;
}
.map .map__box {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .map .map__box {
    padding: 0 1rem;
  }
}
.map .map__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #549eff;
}
.map .map__title i {
  color: #7a9ca8;
  margin-right: 0.75rem;
}
@media screen and (max-width: 767px) {
  .map .map__title {
    font-size: 1.875rem;
  }
}
.map .map__desc {
  color: rgba(78, 106, 133, 0.7);
  font-weight: 700;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .map .map__desc {
    text-align: left;
  }
}
.map .map__card {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 0.75rem;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  border: 1px solid #d4dfe4;
}
.map .map__placeholder {
  aspect-ratio: 21/9;
  background-color: #f2f9ff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .map .map__placeholder {
    aspect-ratio: 4/3;
  }
}
.map .map__placeholder:hover {
  background-color: #fafafa;
}
.map .map__placeholder-icon-wrap {
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: rgba(78, 106, 133, 0.3);
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  transition: color 0.3s;
}
.map .group {
  transition: opacity 0.3s;
}
.map .group img {
  width: 100%;
  height: auto;
}
.map .group:hover {
  opacity: 0.6;
}
.map .map__placeholder-title {
  font-weight: 700;
  font-size: 1.125rem;
}
.map .map__placeholder-sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(78, 106, 133, 0.5);
  margin-top: 0.5rem;
}
.map .map__btn {
  margin-top: 2.5rem;
}
.map .map__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #549eff;
  color: #fff;
  font-weight: 700;
  padding: 1rem 3.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .map .map__btn a {
    font-size: 1rem;
    padding: 1rem;
  }
}
.map .map__btn a:hover {
  background-color: rgb(43.2, 134.8561403509, 255);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(44, 54, 63, 0.1);
}
.map .map__btn a .benefits__accordion-btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.map .map__btn a[aria-expanded=true] {
  background-color: #4e6a85;
}
.map .map__btn a[aria-expanded=true] .benefits__accordion-btn-icon {
  transform: rotate(180deg);
}

.characters {
  padding: 6rem 0;
  background-color: #fff;
  border-top: 1px solid #d4dfe4;
  overflow: hidden;
}
.characters .characters__box {
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .characters .characters__box {
    padding: 0 1rem;
  }
}
.characters .characters__card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .characters .characters__card {
    flex-direction: column;
    padding: 0 2rem;
  }
}
.characters .characters__visual {
  width: 20rem;
  height: auto;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  justify-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .characters .characters__visual {
    width: 12rem;
  }
}
.characters .characters__image {
  width: 9.5rem;
  height: 9.5rem;
}
@media screen and (max-width: 767px) {
  .characters .characters__image {
    width: 5.6rem;
    height: auto;
    aspect-ratio: 1;
  }
}
.characters .characters__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.characters .characters__image:first-child {
  grid-column: 1/-1;
}
.characters .characters__icon {
  font-size: 3rem;
  color: rgba(122, 156, 168, 0.2);
}
.characters .characters__content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .characters .characters__content {
    text-align: center;
  }
}
.characters .characters__title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #549eff;
}
@media screen and (max-width: 767px) {
  .characters .characters__title {
    font-size: 1.5rem;
  }
}
.characters .characters__desc {
  color: rgba(78, 106, 133, 0.7);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .characters .characters__desc {
    text-align: left;
  }
}
.characters .characters__actions {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .characters .characters__actions {
    flex-direction: column;
  }
}
.characters .characters__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: all 0.3s;
}
.characters .characters__btn--white {
  background-color: #fff;
  border: 1px solid #d4dfe4;
}
.characters .characters__btn--white:hover {
  background-color: #fafafa;
}
.characters .characters__btn--line {
  background-color: #06c755;
  color: #fff;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
}
.characters .characters__btn--line i {
  font-size: 1.125rem;
  margin-right: 0.5rem;
}
.characters .characters__btn--line:hover {
  background-color: #05b34c;
}

.benefits {
  padding: 6rem 0;
  background-color: #d6efff;
  border-top: 1px solid #d4dfe4;
  background-image: radial-gradient(#fff 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  position: relative;
}
.benefits .benefits__box {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__box {
    padding: 0 1rem;
  }
}
.benefits .benefits__header {
  text-align: center;
  margin-bottom: 4rem;
}
.benefits .benefits__label {
  color: #7a9ca8;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.benefits .benefits__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #549eff;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__title {
    font-size: 1.875rem;
  }
}
.benefits .benefits__desc {
  color: rgba(78, 106, 133, 0.7);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__desc {
    text-align: left;
  }
}
.benefits .benefits__brands {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  border: 1px solid #d4dfe4;
  margin-bottom: 2.5rem;
}
.benefits .benefits__brands-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d4dfe4;
  padding-bottom: 0.75rem;
}
.benefits .benefits__brands-title i {
  color: #7a9ca8;
}
.benefits .benefits__brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
}
.benefits .benefits__brands-list li {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: rgba(78, 106, 133, 0.8);
}
.benefits .benefits__brands-list li i {
  color: #7a9ca8;
  margin-right: 0.5rem;
}
.benefits .benefits__brands-list li:has(img) {
  border: 1px solid #d4dfe4;
  padding: 15px;
  background-color: #fff;
  justify-content: center;
}
.benefits .benefits__brands-list li.toto {
  border: 1px solid #fff;
}
.benefits .benefits__brands-list li img {
  height: 30px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.benefits .benefits__items {
  margin-bottom: 4rem;
}
.benefits .benefits__items-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits .benefits__items-title i {
  color: #d98a6c;
  margin-right: 0.75rem;
}
.benefits .benefits__items-grid {
  display: grid;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.benefits .benefits__item {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #d4dfe4;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.benefits .benefits__item-img-wrap {
  background-color: #f2f9ff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__item-img-wrap {
    height: 8rem;
  }
}
.benefits .benefits__item-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.benefits .benefits__item-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefits .benefits__item-name {
  font-weight: 700;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__item-name {
    font-size: 0.875rem;
  }
}
.benefits .benefits__item-sub {
  font-size: 0.75rem;
  color: rgba(78, 106, 133, 0.6);
  font-weight: 400;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__item-sub {
    font-size: 0.625rem;
  }
}
.benefits .benefits__reform {
  background-color: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #d4dfe4;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  display: flex;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__reform {
    flex-direction: column;
  }
}
.benefits .benefits__reform-img-wrap {
  width: 40%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__reform-img-wrap {
    width: 100%;
    height: 14rem;
  }
}
.benefits .benefits__reform-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.benefits .group:hover .benefits__reform-img-wrap img {
  transform: scale(1.05);
}
.benefits .benefits__reform-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(122, 156, 168, 0.1);
  transition: background-color 0.3s;
}
.benefits .group:hover .benefits__reform-overlay {
  background-color: transparent;
}
.benefits .benefits__reform-content {
  width: 60%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, #f2f9ff, #fff);
}
@media screen and (max-width: 767px) {
  .benefits .benefits__reform-content {
    width: 100%;
    padding: 2rem;
  }
}
.benefits .benefits__reform-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__reform-header {
    justify-content: center;
  }
}
.benefits .benefits__reform-icon {
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #d4dfe4;
  color: #7a9ca8;
  font-size: 1.25rem;
}
.benefits .benefits__reform-title {
  font-size: 1.5rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__reform-title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .benefits .benefits__br-pc {
    display: none;
  }
}
.benefits .benefits__reform-desc {
  color: rgba(78, 106, 133, 0.8);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__reform-desc {
    text-align: left;
    font-size: 0.875rem;
  }
}
.benefits .benefits__omc {
  background: linear-gradient(to bottom right, #7a9ca8, #5b7985);
  border-radius: 2rem;
  padding: 0.375rem;
  box-shadow: 0 15px 30px -10px rgba(44, 54, 63, 0.1);
  margin: 0 auto 3rem;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__omc {
    margin: 0 auto 3rem;
  }
}
.benefits .benefits__omc-inner {
  background-color: #fff;
  border-radius: 1.75rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__omc-inner {
    padding: 1.5rem;
  }
}
.benefits .benefits__omc-bgicon {
  position: absolute;
  top: -2.5rem;
  right: -2.5rem;
  font-size: 10rem;
  color: rgba(242, 249, 255, 0.5);
  pointer-events: none;
  transition: transform 0.5s;
}
.benefits .group:hover .benefits__omc-bgicon {
  transform: scale(1.1);
}
.benefits .benefits__omc-content {
  position: relative;
  z-index: 10;
}
.benefits .benefits__omc-badge {
  display: inline-block;
  background-color: #d98a6c;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.benefits .benefits__omc-badge i {
  font-size: 1rem;
  margin-right: 0.25rem;
}
.benefits .benefits__omc-title {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__omc-title {
    font-size: 1.5rem;
  }
}
.benefits .benefits__omc-desc {
  color: rgba(78, 106, 133, 0.7);
  font-weight: 700;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.benefits .benefits__omc-desc span {
  color: #d98a6c;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__omc-desc {
    font-size: 0.875rem;
    text-align: left;
  }
}
.benefits .benefits__omc-card {
  background-color: #f2f9ff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #d4dfe4;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__omc-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 1.5rem;
  }
}
.benefits .benefits__omc-card-img {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #fff;
}
.benefits .benefits__omc-card-img img {
  width: 100%;
  height: auto;
  display: block;
}
.benefits .benefits__omc-card-info {
  text-align: left;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__omc-card-info {
    display: block;
  }
}
.benefits .benefits__omc-card-tag {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #d4dfe4;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.benefits .benefits__omc-card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__omc-card-title {
    font-size: 1.125rem;
  }
}
.benefits .benefits__omc-card-desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(78, 106, 133, 0.7);
  line-height: 1.6;
}
.benefits .benefits__omc-btn {
  flex-shrink: 0;
  background-color: #4e6a85;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .benefits .benefits__omc-btn {
    width: 100%;
  }
}
.benefits .benefits__omc-btn i {
  margin-left: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.benefits .benefits__omc-btn:hover {
  background-color: #000;
}
.benefits .benefits__omc-note {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(78, 106, 133, 0.4);
}

.access {
  padding: 6rem 0;
  background-color: #fff;
  border-top: 1px solid #d4dfe4;
}
.access .access__box {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .access .access__box {
    padding: 0 1rem;
  }
}
.access .access__header {
  text-align: center;
  margin-bottom: 3rem;
}
.access .access__label {
  color: #7a9ca8;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.access .access__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #549eff;
}
@media screen and (max-width: 767px) {
  .access .access__title {
    font-size: 1.875rem;
  }
}
.access .access__desc {
  color: rgba(78, 106, 133, 0.7);
  font-size: 1rem;
  font-weight: 400;
}
.access .access__desc span {
  font-size: 1.25rem;
  font-weight: 700;
}
.access .access__br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .access .access__br-sp {
    display: block;
  }
}
.access .access__content {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .access .access__content {
    flex-direction: column;
  }
}
.access .access__map {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .access .access__map {
    width: 100%;
  }
}
.access .access__map-card {
  background-color: #f2f9ff;
  border-radius: 1.5rem;
  border: 1px solid #d4dfe4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.75rem;
}
.access .access__map-placeholder {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 1px dashed #d4dfe4;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.access .access__map-placeholder iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 5/4;
  -o-object-fit: contain;
     object-fit: contain;
}
.access .access__map-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: #fff;
  border: 1px solid #d4dfe4;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.access .access__map-btn {
  display: block;
  text-align: center;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .access .access__map-btn {
    width: 100%;
  }
}
.access .access__map-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1rem;
  background-color: #549eff;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
}
.access .access__map-btn a:hover {
  background-color: #7a9ca8;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(44, 54, 63, 0.1);
  color: #fff;
}
.access .access__route {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .access .access__route {
    width: 100%;
  }
}
.access .access__route-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.access .access__steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.access .access__steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #d4dfe4;
}
.access .access__step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.access .access__step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #f2f9ff;
  border: 1px solid #d4dfe4;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
}
.access .access__step-number--done {
  background-color: #7a9ca8;
  color: #fff;
  border-color: #7a9ca8;
}
.access .access__step-card {
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #d4dfe4;
  flex: 1;
}
.access .access__step-card--done {
  background-color: rgba(122, 156, 168, 0.1);
  border-color: rgba(122, 156, 168, 0.2);
}
.access .access__step-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.access .access__step-title--done {
  color: #7a9ca8;
}
.access .access__step-desc {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(78, 106, 133, 0.6);
  line-height: 1.6;
}
.access .access__step-desc span {
  color: #549eff;
  font-weight: 700;
}
.access .access__note {
  margin-top: 2rem;
  background-color: #f2f9ff;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #d4dfe4;
  display: flex;
  gap: 0.75rem;
  font-size: 1rem;
}
.access .access__note i {
  color: rgba(78, 106, 133, 0.4);
  margin-top: 0.125rem;
}
.access .access__note p {
  font-weight: 400;
  color: rgba(78, 106, 133, 0.6);
  line-height: 1.6;
}

.footer {
  background-color: #99b2d6;
  color: #f2f9ff;
  padding: 4rem 0;
  border-top: 1px solid #d4dfe4;
}
.footer .footer__box {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .footer .footer__box {
    padding: 0 1rem;
  }
}
.footer .footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .footer .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer__col:first-child {
    margin-bottom: 1rem;
  }
}
.footer .footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.footer .footer__logo i {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer__address {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}
.footer .footer__desc {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.footer .footer__title {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.footer .footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.footer .footer__list a {
  transition: color 0.3s;
}
.footer .footer__list a:hover {
  color: #fff;
}
.footer .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.footer .footer__copyright {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}
.footer .footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer .footer__social {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.footer .footer__social--insta:hover {
  background-color: #fff;
  color: #4e6a85;
  border-color: #fff;
}
.footer .footer__social--line:hover {
  background-color: #06c755;
  color: #fff;
  border-color: #06c755;
}

.benefits__accordion-trigger-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

.benefits__accordion-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #549eff;
  color: #fff;
  font-weight: 700;
  padding: 1.5rem 3.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  transition: all 0.3s ease;
}
.benefits__accordion-btn .benefits__accordion-btn-text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .benefits__accordion-btn .benefits__accordion-btn-text {
    font-size: 1.125rem;
  }
}
.benefits__accordion-btn:hover {
  background-color: rgb(43.2, 134.8561403509, 255);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(44, 54, 63, 0.1);
}
.benefits__accordion-btn .benefits__accordion-btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.benefits__accordion-btn[aria-expanded=true] {
  background-color: #4e6a85;
}
.benefits__accordion-btn[aria-expanded=true] .benefits__accordion-btn-icon {
  transform: rotate(180deg);
}

.benefits__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  margin-bottom: 2rem;
}
.benefits__accordion-content[aria-expanded=true], .benefits__accordion-content[aria-hidden=false] {
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sale-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .sale-category-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}
.sale-category-nav .events__card-qr--btn {
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sale-category-nav .events__card-qr--btn {
    width: 100%;
  }
}
.sale-category-nav .events__card-qr--btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1rem;
  background-color: #549eff;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
}
@media screen and (max-width: 767px) {
  .sale-category-nav .events__card-qr--btn a {
    width: 100%;
    box-sizing: border-box;
  }
}
.sale-category-nav .events__card-qr--btn a:hover {
  background-color: #7a9ca8;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(44, 54, 63, 0.1);
  color: #fff;
}

.benefits__accordion-inner {
  padding: 1rem 0;
}

.sale-category {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #d4dfe4;
  box-shadow: 0 4px 20px -5px rgba(44, 54, 63, 0.05);
  margin-bottom: 2rem;
}
.sale-category__header {
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #f2f9ff;
  padding-bottom: 0.75rem;
}
.sale-category__title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #549eff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.sale-category__title i {
  color: #d98a6c;
}
.sale-category__note {
  font-size: 0.75rem;
  color: rgba(78, 106, 133, 0.7);
  margin-top: 0.25rem;
}
.sale-category__desc {
  margin-bottom: 2rem;
  color: rgba(78, 106, 133, 0.7);
  font-weight: 700;
}
.sale-category__options {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px dashed #d4dfe4;
}
.sale-category__options-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #4e6a85;
  margin-bottom: 1.5rem;
  text-align: center;
}
.sale-category__options__note {
  font-size: 0.75rem;
  color: #d9534f;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.sale-category__options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
  justify-content: center;
}
.sale-category__option-item {
  width: calc(25% - 0.75rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sale-category__option-item {
    width: calc(50% - 0.67rem);
  }
}
.sale-category__option-item img {
  width: 100%;
  max-width: 120px;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 1px solid #d4dfe4;
  margin-bottom: 0.5rem;
  background-color: #fff;
}
.sale-category__option-item p {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(78, 106, 133, 0.9);
}

.sale-category__desc {
  margin-bottom: 2rem;
  color: rgba(78, 106, 133, 0.7);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sale-category__desc {
    text-align: left;
  }
}

.sale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .sale-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.sale-card {
  border: 1px solid #d4dfe4;
  border-radius: 0.875rem;
  overflow: hidden;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 9;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .sale-card {
    display: flex;
    flex-direction: column;
    grid-template-rows: auto;
    grid-row: auto;
  }
}
.sale-card__header {
  background-color: rgba(242, 249, 255, 0.8);
  padding: 0.5rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #d4dfe4;
  grid-row: 1;
}
.sale-card__num {
  background-color: #4e6a85;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
}
.sale-card__tag {
  background-color: rgba(122, 156, 168, 0.4);
  color: #4e6a85;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
}
.sale-card__brand {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(78, 106, 133, 0.8);
}
.sale-card__body {
  padding: 0.875rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 8;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .sale-card__body {
    display: flex;
    flex-direction: column;
  }
}
.sale-card__image {
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.sale-card__image img {
  width: 100%;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .sale-card__image img {
    height: 200px;
  }
}
.sale-card__title {
  grid-row: 2;
  text-align: left;
  font-size: 1rem;
  font-weight: 900;
  color: #4e6a85;
  margin-bottom: 0.25rem;
}
.sale-card__model {
  grid-row: 3;
  text-align: left;
  font-size: 0.8rem;
  font-family: monospace;
  color: #4e6a85;
  margin-bottom: 0.375rem;
}
.sale-card__color {
  grid-row: 4;
  align-self: start;
  text-align: left;
  font-size: 0.8rem;
  color: #4e6a85;
  background-color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
  border: 1px solid #d4dfe4;
}
.sale-card__specs {
  grid-row: 5;
  list-style: none;
  font-size: 0.8rem;
  color: #4e6a85;
  margin-bottom: 0.75rem;
  text-align: left;
}
.sale-card__specs li {
  position: relative;
  padding-left: 10px;
}
.sale-card__specs li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4e6a85;
}
.sale-card__accessories-title {
  grid-row: 6;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  align-self: start;
}
.sale-card__accessories-title + ul {
  grid-row: 7;
  list-style: none;
  font-size: 0.8rem;
  color: #4e6a85;
  margin-bottom: 0.75rem;
  text-align: left;
}
.sale-card__accessories-title + ul li {
  position: relative;
  padding-left: 10px;
}
.sale-card__accessories-title + ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4e6a85;
}
.sale-card__price-box {
  grid-row: 8;
  margin-top: auto;
  background-color: #fff;
  border: 1px solid #ffcdd2;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}

.price-row--original {
  text-align: left;
  font-size: 0.65rem;
  color: rgba(78, 106, 133, 0.6);
  margin-bottom: 2px;
}
.price-row--sale {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sale-badge {
  background-color: #e53935;
  color: #fff;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
}

.sale-price {
  font-size: 1.125rem;
  font-weight: 900;
  color: #e53935;
}
.sale-price small {
  font-size: 0.7rem;
  margin-left: 2px;
}