@charset "UTF-8";
/*! assets/css/style */
:root {
  --z-content: 90;
  --z-footer: 100;
  --color_blue_default: 66, 104, 145;
  --color_main-300: #FCF304;
  --color_main-500: #D6CE00;
  --color_main-700: #9C9600;
  --color_black: #333;
  --color_text: #222;
  --color_white: #FFF;
  --color_bg_gray: #F5F5F5;
  --container_max_w: calc(1120px + (32px *2));
  --font-size-sm: clamp(1rem, 0.625rem + 0.78125vi, 1.125rem);
  --font-size-md: clamp(1.25rem, -0.25rem + 3.125vi, 1.75rem);
  --font-size-lg: clamp(1.625rem, -1rem + 5.46875vi, 2.5rem);
}
@media (min-width: 1024px) {
  :root {
    --l_header_padding:18px;
    --l_header_height: 80px;
  }
}
@media (max-width: 1023.98px) {
  :root {
    --l_header_padding: 0;
    --l_header_height: 46px;
  }
}
@media (min-width: 768px) {
  :root {
    --common_padding_x: 32px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --common_padding_x: 20px;
  }
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: calc(var(--l_header_padding) * 1 + var(--l_header_height));
  }
}
@media (max-width: 767.98px) {
  html {
    scroll-padding-top: var(--l_header_height);
  }
}

body[data-page-path] {
  background-color: var(--color_bg);
  color: var(--color_black);
  font-family: Noto Sans, Noto Sans JP, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body[data-page-path].is-locked {
  position: fixed;
  top: var(--scrolled_position_y, 0);
  overflow: hidden;
  width: 100%;
}
body[data-page-path] * {
  letter-spacing: var(--letter_spacing, 0);
}

section {
  position: relative;
  z-index: var(--z-content);
}

summary {
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
summary + * {
  overflow: hidden;
}

em {
  font-style: normal;
  font-weight: bolder;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color_black);
}

.u-block {
  display: block !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-inline {
  display: inline !important;
}

.u-none {
  display: none !important;
}

.u-contents {
  display: contents !important;
}

@media (min-width: 480px) {
  .u-sm\:block {
    display: block !important;
  }
  .u-sm\:inline-block {
    display: inline-block !important;
  }
  .u-sm\:inline {
    display: inline !important;
  }
  .u-sm\:none {
    display: none !important;
  }
  .u-sm\:contents {
    display: contents !important;
  }
}
@media (min-width: 768px) {
  .u-md\:block {
    display: block !important;
  }
  .u-md\:inline-block {
    display: inline-block !important;
  }
  .u-md\:inline {
    display: inline !important;
  }
  .u-md\:none {
    display: none !important;
  }
  .u-md\:contents {
    display: contents !important;
  }
}
@media (min-width: 1024px) {
  .u-lg\:block {
    display: block !important;
  }
  .u-lg\:inline-block {
    display: inline-block !important;
  }
  .u-lg\:inline {
    display: inline !important;
  }
  .u-lg\:none {
    display: none !important;
  }
  .u-lg\:contents {
    display: contents !important;
  }
}
@media (min-width: 1280px) {
  .u-xl\:block {
    display: block !important;
  }
  .u-xl\:inline-block {
    display: inline-block !important;
  }
  .u-xl\:inline {
    display: inline !important;
  }
  .u-xl\:none {
    display: none !important;
  }
  .u-xl\:contents {
    display: contents !important;
  }
}
@media (min-width: 1440px) {
  .u-xxl\:block {
    display: block !important;
  }
  .u-xxl\:inline-block {
    display: inline-block !important;
  }
  .u-xxl\:inline {
    display: inline !important;
  }
  .u-xxl\:none {
    display: none !important;
  }
  .u-xxl\:contents {
    display: contents !important;
  }
}
@media (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
}

.js-inview, .js-inview--from-left, .js-inview--fade {
  opacity: 0;
  transform: var(--inview_transform, translateY(8%));
  transition: opacity var(--inview_duration, 0.5s) var(--inview_delay, 0s) ease-out, transform var(--inview_duration, 0.5s) var(--inview_delay, 0s) ease-out;
}
.js-inview.is-inview, .is-inview.js-inview--from-left, .is-inview.js-inview--fade {
  opacity: 1;
  transform: none;
}
.js-inview--fade {
  --inview_transform: none;
}
.js-inview--from-left {
  --inview_transform: translateX(-8%);
}

.u-px-0 {
  padding-inline: 0;
}

.u-px-common {
  padding-inline: var(--common_padding_x);
}

.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  border-radius: 50px;
  background: var(--color_main-300);
  color: var(--color_text);
  font-size: clamp(1rem, -0.5rem + 3.125vi, 1.5rem);
  font-weight: 700;
  --letter_spacing: 0;
  line-height: 1.2;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.9;
  }
}
@media (min-width: 768px) {
  .c-btn {
    min-height: 100px;
    padding: 5px 44px 5px 6px;
  }
}
@media (max-width: 767.98px) {
  .c-btn {
    gap: 16px;
    width: 100%;
    min-height: 80px;
    padding: 5px 6px;
  }
}

.c-btn__badge {
  display: grid;
  place-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--color_text);
  color: var(--color_white);
  font-size: clamp(1rem, -0.125rem + 2.34375vi, 1.375rem);
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
  .c-btn__badge {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 767.98px) {
  .c-btn__badge {
    width: 66px;
    height: 66px;
  }
}

.c-btn__balloon {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: max-content;
  aspect-ratio: 327/62;
  padding-top: 2px;
  padding-inline: 20px;
  background: url("/portal/biz_music/lp_ticketpay/assets/images/common/btn_balloon.png") no-repeat center/contain;
  font-size: clamp(0.9375rem, 0.375rem + 1.171875vi, 1.125rem);
  line-height: 1;
  pointer-events: none;
  transform: translateX(-50%);
  animation: float 2s ease-in-out infinite;
}
.c-btn__balloon span {
  position: relative;
  top: 2px;
  font-size: clamp(1.6875rem, 0.75rem + 1.953125vi, 2rem);
  line-height: 1;
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
.c-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 0rem + 1.5625vi, 1rem);
  text-align: center;
}
@media (min-width: 768px) {
  .c-heading {
    padding-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .c-heading {
    padding-bottom: 30px;
  }
}

.c-heading--primary .c-heading__main {
  color: var(--color_text);
}
.c-heading--primary .c-heading__lead {
  color: var(--color_main-700);
}

.c-heading--white .c-heading__main {
  color: var(--color_white);
}
.c-heading--white .c-heading__lead {
  color: var(--color_white);
}

.c-heading__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.25rem, -0.125rem + 0.78125vi, 0.375rem);
}

.c-heading__main {
  font-size: clamp(1.75rem, -0.5rem + 4.6875vi, 2.5rem);
  font-weight: 900;
  line-height: 1.4;
}

.c-heading__lead {
  font-size: clamp(0.875rem, 0.125rem + 1.5625vi, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
}

.c-heading__line {
  display: block;
  width: clamp(2.5rem, -1.25rem + 7.8125vi, 3.75rem);
  height: clamp(0.25rem, -0.125rem + 0.78125vi, 0.375rem);
  border-radius: 3px;
  background-color: var(--color_main-500);
}

.c-flow-card {
  position: relative;
  display: flex;
  gap: 7px;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .c-flow-card {
    flex-direction: column;
  }
}

.c-flow-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  background-color: var(--color_white);
}
@media (max-width: 767.98px) {
  .c-flow-card__inner {
    flex-flow: row wrap;
    gap: 0 10px;
    padding: 0 10px 10px;
  }
}

.c-flow-card__icon {
  width: 60px;
  height: 60px;
}
.c-flow-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-flow-card__badge {
  width: 100%;
  padding: 5px;
  background-color: var(--color_main-300);
  color: var(--color_white);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .c-flow-card__badge {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .c-flow-card__badge {
    width: fit-content;
  }
}

.c-flow-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px;
}
@media (max-width: 767.98px) {
  .c-flow-card__content {
    display: contents;
  }
}

.c-flow-card__title {
  color: var(--color_main-500);
  font-size: clamp(1rem, 0.625rem + 0.78125vi, 1.125rem);
  font-weight: 700;
  line-height: 1.6;
}

.c-flow-card__description {
  width: 100%;
  font-size: clamp(0.875rem, 0.5rem + 0.78125vi, 1rem);
  line-height: 1.6;
}
.c-flow-card__description a {
  color: var(--color_main-500);
  text-decoration: underline;
}

.c-flow-card__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-flow-card__arrow svg {
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .c-flow-card__arrow {
    transform: rotateZ(90deg);
  }
}

.c-service-card {
  height: 100%;
  padding: 15px;
  border-radius: 20px;
  background-color: var(--color_white);
  box-shadow: 0 0 20px 0 rgba(97, 136, 188, 0.3);
}

.c-service-card__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-service-card__image {
  overflow: hidden;
  border-radius: 10px;
}
.c-service-card__image img,
.c-service-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-service-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.c-service-card__link:hover {
  transform: translateY(-4px);
}

.c-service-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.c-service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.c-service-card__tag {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.c-service-card__tag--bgm {
  background-color: #e2f9ff;
  color: #00b0f2;
}
.c-service-card__tag--video {
  background-color: #f8f2ff;
  color: #6d43cf;
}
.c-service-card__tag--network {
  background-color: #e4fffc;
  color: #009182;
}
.c-service-card__tag--support {
  background-color: #dce2e9;
  color: #566c7f;
}

.c-service-card__logo img {
  display: block;
  width: auto;
  height: 25px;
}

.c-service-card__description {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}

.c-function-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .c-function-card {
    width: 100%;
  }
}

.c-function-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 60px;
  background: linear-gradient(90deg, rgb(255, 245, 238) 0%, rgb(221, 241, 255) 100%);
}
.c-function-card__icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.c-function-card__title {
  color: var(--color_main-500);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.c-function-card__description {
  color: var(--color_black);
  font-size: clamp(0.9375rem, 0.75rem + 0.390625vi, 1rem);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.c-reasons-card {
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(97, 136, 188, 0.2);
}
@media (min-width: 768px) {
  .c-reasons-card {
    padding: 50px 15px;
  }
}
@media (max-width: 767.98px) {
  .c-reasons-card {
    height: 100%;
    padding: 20px 14px;
  }
}

.c-reasons-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.c-reasons-card__title {
  color: var(--color_main-500);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  white-space: pre-line;
}
@media (min-width: 768px) {
  .c-reasons-card__title {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .c-reasons-card__title {
    font-size: 20px;
  }
}

.c-reasons-card__graphic {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.c-feature-card {
  display: flex;
  gap: 40px;
  height: 100%;
  padding: 40px;
  border-radius: 20px;
  background-color: var(--color_white);
}
@media (max-width: 767.98px) {
  .c-feature-card {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
}

.c-feature-card__image {
  overflow: hidden;
  flex-shrink: 0;
  width: 242px;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .c-feature-card__image {
    order: 2;
    width: 100%;
    max-width: 170px;
    margin: 0 auto;
  }
}
.c-feature-card__image img,
.c-feature-card__image picture {
  display: block;
  width: 100%;
  height: auto;
}

.c-feature-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .c-feature-card__content {
    display: contents;
  }
}

.c-feature-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .c-feature-card__info {
    order: 1;
    padding-top: 0;
  }
}

.c-feature-card__title {
  color: var(--color_text);
  font-size: clamp(1.125rem, 0rem + 2.34375vi, 1.5rem);
  font-weight: 900;
}

.c-feature-card__divider {
  margin: 0;
  border: none;
  border-top: 1px solid #D2D2D2;
}

.c-feature-card__text {
  color: var(--color_text);
  font-size: clamp(0.875rem, 0.5rem + 0.78125vi, 1rem);
  font-weight: 400;
}

.c-feature-card__supplement {
  margin-top: 8px;
  color: var(--color_text);
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .c-feature-card__preview {
    order: 3;
  }
}
.c-feature-card__preview img,
.c-feature-card__preview picture {
  display: block;
}
.c-feature-card__preview video {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .c-feature-card__preview video {
    height: 80%;
  }
}

.c-lineup-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
}
@media (max-width: 767.98px) {
  .c-lineup-card {
    width: 100%;
  }
}

.c-lineup-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 5px 15px 7px;
  border-radius: 20px;
  background-color: var(--color_black);
  color: var(--color_white);
  font-size: clamp(0.75rem, 0.375rem + 0.78125vi, 0.875rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}

.c-lineup-card__image {
  overflow: hidden;
  border-radius: 10px;
  background-color: #DDD;
}
.c-lineup-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.c-lineup-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-lineup-card__title {
  margin: 0;
  color: var(--color_text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.p-faq-accordion {
  border-radius: 20px;
  background-color: var(--color_white);
}
@media (min-width: 768px) {
  .p-faq-accordion {
    padding-inline: 20px;
  }
}
@media (max-width: 767.98px) {
  .p-faq-accordion {
    padding-inline: 10px;
  }
}
.p-faq-accordion.is-opened .js-summary .icon::before {
  opacity: 0;
  transform: rotate(90deg);
}

.p-faq-accordion__summary,
.p-faq-accordion__content {
  position: relative;
  display: flex;
}
@media (min-width: 768px) {
  .p-faq-accordion__summary,
  .p-faq-accordion__content {
    column-gap: 15px;
  }
}
@media (max-width: 767.98px) {
  .p-faq-accordion__summary,
  .p-faq-accordion__content {
    grid-template-columns: 21px 1fr;
    column-gap: 10px;
  }
}
.p-faq-accordion__summary::before,
.p-faq-accordion__content::before {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  font-size: clamp(1.0625rem, -3.25rem + 8.984375vi, 2.5rem);
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-faq-accordion__summary::before,
  .p-faq-accordion__content::before {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767.98px) {
  .p-faq-accordion__summary::before,
  .p-faq-accordion__content::before {
    width: 35px;
    height: 35px;
  }
}

.p-faq-accordion__summary {
  font-size: clamp(1rem, -0.5rem + 3.125vi, 1.5rem);
  font-weight: 700;
  /* Safariで表示されるデフォルトの三角形アイコンを非表示 */
}
@media (min-width: 768px) {
  .p-faq-accordion__summary {
    align-items: center;
    padding-right: 80px;
    padding-block: 17px 13px;
  }
}
@media (max-width: 767.98px) {
  .p-faq-accordion__summary {
    padding-right: 29px;
    padding-block: 10px;
  }
}
.p-faq-accordion__summary::-webkit-details-marker {
  display: none;
}
.p-faq-accordion__summary::before {
  content: "Q";
  background-color: var(--color_main-500);
  color: var(--color_white);
}
.p-faq-accordion__summary .icon {
  position: absolute;
  color: var(--color_black);
  transition: transform 0.2s ease-out;
}
@media (min-width: 768px) {
  .p-faq-accordion__summary .icon {
    right: 20px;
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 767.98px) {
  .p-faq-accordion__summary .icon {
    top: 18px;
    right: 0;
    width: 20px;
    height: 20px;
  }
}
.p-faq-accordion__summary .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-radius: 20px;
  background-color: currentcolor;
  transform: translateY(-50%);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
@media (min-width: 768px) {
  .p-faq-accordion__summary .icon::after {
    height: 4px;
  }
}
@media (max-width: 767.98px) {
  .p-faq-accordion__summary .icon::after {
    height: 3px;
  }
}
.p-faq-accordion__summary .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  border-radius: 20px;
  background-color: currentcolor;
  transform: translateX(-50%);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
@media (min-width: 768px) {
  .p-faq-accordion__summary .icon::before {
    width: 4px;
  }
}
@media (max-width: 767.98px) {
  .p-faq-accordion__summary .icon::before {
    width: 3px;
  }
}
@media (max-width: 767.98px) {
  .p-faq-accordion__summary {
    line-height: 1.625;
  }
}

.p-faq-accordion__content {
  will-change: height, opacity;
  font-size: clamp(0.875rem, 0.125rem + 1.5625vi, 1.125rem);
}
@media (min-width: 768px) {
  .p-faq-accordion__content {
    align-items: center;
    padding-block: 20px;
  }
}
@media (max-width: 767.98px) {
  .p-faq-accordion__content {
    align-items: flex-start;
    padding-block: 5px 15px;
  }
}
.p-faq-accordion__content::before {
  content: "A";
  border: 2px solid var(--color_main-500);
  color: var(--color_main-700);
}

.p-cta {
  position: relative;
}
@media (min-width: 768px) {
  .p-cta {
    padding-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .p-cta {
    padding-top: 74px;
  }
}
@media (min-width: 768px) {
  .p-cta--last {
    padding-bottom: 96px;
  }
}
@media (max-width: 767.98px) {
  .p-cta--last {
    padding-bottom: 58px;
  }
}

.p-cta__bg {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}
.p-cta__bg img {
  width: 100%;
  object-fit: contain;
}
@media (min-width: 1720px) {
  .p-cta__bg img {
    max-height: 720px;
    object-fit: fill;
  }
}

.p-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .p-cta__inner {
    justify-content: space-between;
    align-items: flex-end;
    gap: 100px;
  }
}
@media (max-width: 767.98px) {
  .p-cta__inner {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .p-cta__content {
    flex: 0 0 auto;
    max-width: 610px;
  }
}
@media (max-width: 767.98px) {
  .p-cta__content {
    display: contents;
  }
}

.p-cta__subtitle {
  margin-bottom: 8px;
  color: var(--color_main-300);
  font-size: clamp(1rem, -1.625rem + 5.46875vi, 1.875rem);
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .p-cta__subtitle {
    order: 1;
    width: 100%;
  }
}

.p-cta__title {
  color: var(--color_white);
  font-size: clamp(1.875rem, -3rem + 10.15625vi, 3.5rem);
  font-weight: 900;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-cta__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .p-cta__title {
    order: 2;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .p-cta__button-wrapper {
    margin-top: 88px;
  }
}
@media (max-width: 767.98px) {
  .p-cta__button-wrapper {
    order: 4;
    width: 100%;
    margin-top: -64px;
  }
}

@media (max-width: 767.98px) {
  .p-cta__image {
    order: 3;
  }
}

.p-carousel {
  position: relative;
}
@media (min-width: 768px) {
  .p-carousel {
    --carousel_width: 380px;
    --carousel_gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .p-carousel {
    --carousel_width: 320px;
    --carousel_gap: 16px;
  }
}

.p-carousel__inner {
  overflow: hidden;
}

.p-carousel__list {
  display: grid;
  grid-auto-flow: column;
}
@media (min-width: 768px) {
  .p-carousel__list {
    grid-auto-columns: calc(var(--carousel_width) + var(--carousel_gap));
  }
}
@media (max-width: 767.98px) {
  .p-carousel__list {
    grid-auto-columns: calc(var(--carousel_width) + var(--carousel_gap));
  }
}

.p-carousel__item {
  margin-right: var(--carousel_gap);
}

.p-carousel__navigation {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container_max_w);
  margin-inline: auto;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .p-carousel__navigation {
    column-gap: 40px;
    margin-top: 22px;
  }
}
@media (max-width: 767.98px) {
  .p-carousel__navigation {
    column-gap: 30px;
    margin-top: 10px;
  }
}
.p-carousel__navigation button {
  display: grid;
  place-content: center;
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 50%;
  background-color: var(--color_black);
  color: #FFF;
  transition: opacity 0.2s ease-out;
}
@media (any-hover: hover) {
  .p-carousel__navigation button:hover {
    opacity: 0.7;
  }
}
.p-carousel__navigation button::before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: currentcolor;
  mask: no-repeat center/contain url("/portal/biz_music/lp_ticketpay/assets/images/common/icon_chevron.svg");
}
.p-carousel__navigation button:first-of-type {
  transform: rotateZ(180deg);
}
.p-carousel__navigation button:last-of-type {
  transform: rotateZ(0deg);
}
.p-carousel__navigation button:disabled {
  background-color: #EAEAEA;
  box-shadow: 0 0 10px 0 rgba(97, 136, 188, 0.2);
}

.p-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.2s ease-out;
}
@media (any-hover: hover) {
  .p-carousel__arrow:hover {
    opacity: 0.7;
  }
}
.p-carousel__arrow--prev {
  left: 0;
}
@media (max-width: 767.98px) {
  .p-carousel__arrow--prev {
    left: -10px;
  }
}
.p-carousel__arrow--next {
  right: 0;
}
@media (max-width: 767.98px) {
  .p-carousel__arrow--next {
    right: -10px;
  }
}
.p-carousel__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.p-carousel__arrow img {
  display: block;
}

.p-carousel__indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 767.98px) {
  .p-carousel__indicators {
    gap: 8px;
    margin-top: 16px;
  }
}

.p-carousel__indicator {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  background-color: #D2D2D2;
  cursor: pointer;
  transition: all 0.3s ease;
  transition: opacity 0.2s ease-out;
}
@media (any-hover: hover) {
  .p-carousel__indicator:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767.98px) {
  .p-carousel__indicator {
    width: 10px;
    height: 10px;
  }
}
.p-carousel__indicator--active {
  background-color: var(--color_black);
}

.l-container {
  width: min(100%, var(--container_max_w, 1080px));
  margin-right: auto;
  margin-left: auto;
  padding-inline: var(--common_padding_x);
}

.l-footer {
  position: relative;
  z-index: calc(var(--z-footer));
  padding: 52px var(--common_padding_x) 70px;
  background-color: #000;
  color: #FFF;
  text-align: center;
}

.l-footer__contents {
  display: grid;
  justify-items: center;
}

.l-footer__logo {
  width: min(100%, 254px);
}

.l-footer__copyright {
  margin-top: 8px;
  font-size: 0.625rem;
  line-height: 1.5;
}

.l-footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: calc(var(--z-footer) + 1);
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.l-footer-cta.is-active {
  opacity: 1;
  pointer-events: auto;
}

.l-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  width: 100%;
  max-width: 1440px;
  padding: var(--l_header_padding);
  transform: translateX(-50%);
}
@media (max-width: 1023.98px) {
  .l-header {
    overflow-x: hidden;
  }
  [data-drawer=open] .l-header {
    overflow-x: inherit;
  }
}

.l-header__inner {
  align-items: center;
  height: var(--l_header_height);
  border-radius: 80px;
  background-color: #FFF;
  box-shadow: 0 0 30px 0 rgba(97, 136, 188, 0.2);
}
@media (min-width: 1024px) {
  .l-header__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1180px;
    margin-inline: auto;
    padding: 16px 25px 16px 49px;
  }
}
@media (max-width: 1023.98px) {
  .l-header__inner {
    display: flex;
    padding-left: 10px;
    border-radius: 0;
  }
}

.l-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .l-header__logo {
    width: 200px;
  }
}
@media (max-width: 1023.98px) {
  .l-header__logo {
    width: 199px;
  }
}

.l-header__logo-img {
  width: 100%;
  height: auto;
}

.l-header__request {
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .l-header__request {
    width: 270px;
  }
}
@media (max-width: 1023.98px) {
  .l-header__request {
    display: none;
  }
}

.l-header__request-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 3px 5px;
  border-radius: 80px;
  background: var(--color_main-300);
  font-weight: 700;
  transition: opacity 0.2s ease-out;
}
@media (any-hover: hover) {
  .l-header__request-btn:hover {
    opacity: 0.8;
  }
}

.l-header__request-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 41px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color_black);
  color: var(--color_white);
  font-size: 0.875rem;
  font-weight: 700;
}

.l-header__request-text {
  letter-spacing: 0;
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 30px;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 1023.98px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: -110%;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    width: 220px;
    height: 100vh;
    margin-left: 0;
    padding: 78px 20px 20px;
    background: var(--color_white);
    transition: right 0.3s ease-in-out;
  }
  :root[data-drawer=open] .l-header__nav {
    right: 0;
  }
}

.l-header__anchor {
  padding-bottom: 2px;
  border-bottom: 2px solid rgb(from var(--color_black) r g b/0%);
  transition: border-color 0.2s ease-out;
}
@media (max-width: 1023.98px) {
  .l-header__anchor {
    text-align: right;
  }
}
.l-header__anchor.is-current {
  border-color: var(--color_black);
}
@media (any-hover: hover) {
  .l-header__anchor:hover {
    border-color: var(--color_black);
  }
}

.l-header__drawer-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 40px;
  height: 26px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.l-header__drawer-btn::before, .l-header__drawer-btn::after,
.l-header__drawer-btn i {
  content: "";
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: var(--color_main-500);
  transition: 0.2s ease-out;
  transition-property: transform opacity;
}
.l-header__drawer-btn::before {
  top: 0;
}
.l-header__drawer-btn::after {
  bottom: 0;
  width: 27px;
}
.l-header__drawer-btn i {
  top: 50%;
  transform: translateY(-50%);
}
:root[data-drawer=open] .l-header__drawer-btn::before, :root[data-drawer=open] .l-header__drawer-btn::after {
  top: 50%;
  bottom: auto;
  left: 50%;
  background-color: var(--color_main-500);
}
:root[data-drawer=open] .l-header__drawer-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
:root[data-drawer=open] .l-header__drawer-btn::after {
  width: 45px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
:root[data-drawer=open] .l-header__drawer-btn i {
  opacity: 0;
}
@media (min-width: 1024px) {
  .l-header__drawer-btn {
    display: none;
  }
}

.l-main {
  overflow: hidden;
  background: no-repeat fixed center top/100% auto;
}
@media (min-width: 768px) {
  .webp .l-main {
    background-image: url("/portal/biz_music/lp_ticketpay/assets/images/mv/bg-pc.webp");
  }
  .avif .l-main {
    background-image: url("/portal/biz_music/lp_ticketpay/assets/images/mv/bg-pc.avif");
  }
  .no-webp .l-main, .no-avif .l-main {
    background-image: url("/portal/biz_music/lp_ticketpay/assets/images/mv/bg-pc.jpg");
  }
}
@media (max-width: 767.98px) {
  .webp .l-main {
    background-image: url("/portal/biz_music/lp_ticketpay/assets/images/mv/bg-sp.webp");
  }
  .avif .l-main {
    background-image: url("/portal/biz_music/lp_ticketpay/assets/images/mv/bg-sp.avif");
  }
  .no-webp .l-main, .no-avif .l-main {
    background-image: url("/portal/biz_music/lp_ticketpay/assets/images/mv/bg-sp.jpg");
  }
}

.l-bg-gray {
  background-color: var(--color_bg_gray);
}

.p-mv {
  position: relative;
  z-index: 2;
}
.p-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
  .p-mv::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 68.75%);
    aspect-ratio: 1440/800;
  }
}
@media (max-width: 767.98px) {
  .p-mv::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
    aspect-ratio: 390/676;
  }
}
@media (min-width: 768px) {
  .p-mv {
    padding-block: 150px 290px;
  }
}
@media (max-width: 767.98px) {
  .p-mv {
    padding-block: 85px 190px;
  }
}

.p-mv__inner {
  position: relative;
  display: grid;
}
@media (min-width: 768px) {
  .p-mv__inner {
    grid-template-columns: 610px 1fr;
    grid-template-areas: "content image";
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .p-mv__inner {
    grid-template-columns: 95px 1fr;
    grid-template-areas: "header header" "features image" "cta cta";
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .p-mv__content {
    grid-area: content;
  }
}
@media (max-width: 767.98px) {
  .p-mv__content {
    display: contents;
  }
}

.p-mv__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-area: header;
  width: 100%;
}
@media (max-width: 767.98px) {
  .p-mv__header {
    gap: 12px;
  }
}

.p-mv__subtitle {
  color: var(--color_main-300);
  font-size: clamp(1rem, -1.625rem + 5.46875vi, 1.875rem);
  font-weight: 400;
  line-height: 1;
}

.p-mv__title {
  margin: 0;
  color: var(--color_white);
  font-size: clamp(2rem, -2.5rem + 9.375vi, 3.5rem);
  font-weight: 900;
  line-height: 1.4;
}

.p-mv__features {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-area: features;
}
@media (min-width: 768px) {
  .p-mv__features {
    gap: 24px;
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .p-mv__features {
    flex-direction: column;
    gap: 3px;
  }
}

.p-mv__feature-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
}
@media (max-width: 767.98px) {
  .p-mv__feature-item {
    width: 100px;
    height: 100px;
  }
}

.p-mv__feature-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-mv__feature-text {
  position: relative;
  z-index: 1;
  color: var(--color_white);
  font-size: clamp(0.875rem, 0.5rem + 0.78125vi, 1rem);
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}

.p-mv__image {
  grid-area: image;
}
@media (max-width: 767.98px) {
  .p-mv__image {
    margin-right: -18px;
  }
}

.p-mv__cta-wrapper {
  grid-area: cta;
}
@media (min-width: 768px) {
  .p-mv__cta-wrapper {
    margin-top: 88px;
  }
  .p-mv__cta-wrapper .c-btn {
    width: 560px;
  }
}
@media (max-width: 767.98px) {
  .p-mv__cta-wrapper {
    margin-top: -64px;
  }
}

.p-about {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .p-about {
    margin-top: -100px;
  }
}
@media (max-width: 767.98px) {
  .p-about {
    margin-top: -140px;
  }
}
.p-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(245, 245, 245, 0) 0, var(--color_bg_gray) 445px, var(--color_bg_gray) 100%);
}

.p-about__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.p-about__header {
  border-radius: 20px 20px 0 0;
  background: #000;
  backdrop-filter: blur(4px);
  color: var(--color_white);
}
@media (min-width: 768px) {
  .p-about__header {
    padding: 10px 72px 17px 71px;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .p-about__header {
    display: grid;
    align-items: center;
    grid-template-columns: 80px auto;
    padding: 14px 6px 9px 0;
    border-radius: 12px 12px 0 0;
  }
}

.p-about__header-image picture,
.p-about__header-image image {
  width: 100%;
}

.p-about__title {
  color: var(--color_white);
  font-size: clamp(1.125rem, -1.125rem + 4.6875vi, 1.875rem);
  font-weight: 900;
  line-height: 1.4;
}

.p-about__title-number {
  color: var(--color_main-300);
  font-size: clamp(1.5rem, -1.5rem + 6.25vi, 2.5rem);
}

.p-about__subtitle {
  color: var(--color_white);
  font-size: clamp(0.875rem, 0.5rem + 0.78125vi, 1rem);
  font-weight: 400;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-about__subtitle {
    margin-top: 10px;
  }
}
@media (max-width: 767.98px) {
  .p-about__subtitle {
    margin-top: 8px;
  }
}

.p-about__content {
  position: relative;
  background-color: var(--color_white);
}

@media (min-width: 768px) {
  .p-about__modes .p-carousel__inner {
    overflow: visible;
  }
  .p-about__modes .p-carousel__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-about__modes .p-carousel__item {
    width: 100%;
  }
  .p-about__modes .p-carousel__navigation {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .p-about__modes .p-carousel__item {
    --carousel_width: 350px;
    --carousel_gap: 0;
  }
  .p-about__modes .p-carousel__navigation {
    width: calc(100% + 34px);
  }
}

.p-about__mode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-about__mode--left {
    padding: 32px 168px 32px 72px;
  }
  .p-about__mode--right {
    padding: 32px 72px 32px 168px;
    background: rgba(221, 221, 221, 0.8);
    backdrop-filter: blur(4px);
  }
}
@media (max-width: 767.98px) {
  .p-about__mode {
    padding: 24px 20px;
  }
  .p-about__mode--right {
    background: rgba(221, 221, 221, 0.8);
    backdrop-filter: blur(4px);
  }
}

.p-about__mode-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.p-about__mode-title {
  color: var(--color_text);
  font-size: clamp(1.25rem, 0.5rem + 1.5625vi, 1.5rem);
  font-weight: 900;
  line-height: 1.4;
}

.p-about__mode-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  height: 26px;
  padding: 2px 17px 2px 19px;
  border-radius: 13px;
  background-color: #DDD;
  color: var(--color_text);
  font-size: clamp(0.875rem, 0.5rem + 0.78125vi, 1rem);
  font-weight: 400;
  line-height: 1.4;
}
.p-about__mode-badge--white {
  background-color: var(--color_white);
}

.p-about__mode-image {
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}
.p-about__mode-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-about__mode-text {
  width: 100%;
  color: var(--color_text);
  font-size: clamp(0.875rem, 0.5rem + 0.78125vi, 1rem);
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 767.98px) {
  .p-about__decoration {
    display: none;
  }
}
@media (min-width: 768px) {
  .p-about__decoration {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 233px;
    transform: translateX(-50%);
  }
}
.p-about__decoration img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.l-feature {
  background-color: var(--color_bg_gray);
}
@media (min-width: 768px) {
  .l-feature {
    padding-block: 60px 30px;
  }
}
@media (max-width: 767.98px) {
  .l-feature {
    padding-block: 40px 58px;
  }
}

.p-feature-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .p-feature-nav {
    flex-direction: column;
    gap: 12px;
  }
}

.p-feature-nav__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 13.3333333333px);
  border-radius: 30px;
  background-color: var(--color_black);
  color: var(--color_white);
  font-size: clamp(1rem, 0.625rem + 0.78125vi, 1.125rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .p-feature-nav__item {
    padding: 15px 32px 16px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-nav__item {
    width: 100%;
    height: 54px;
    padding: 12px 40px;
  }
}
.p-feature-nav__item::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 8L0.73686 0.5L10.2631 0.5L5.5 8Z' fill='white'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .p-feature-nav__item::after {
    right: 20px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-nav__item::after {
    right: 16px;
  }
}

@media (min-width: 768px) {
  .p-feature-content {
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-content {
    margin-top: 40px;
  }
}

@media (min-width: 768px) {
  .p-feature-item:not(:first-child) {
    margin-top: 80px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-item:not(:first-child) {
    margin-top: 60px;
  }
}

.p-feature-item__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .p-feature-item__header {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-item__header {
    margin-bottom: 16px;
  }
}

.p-feature-item__badge {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: url("/portal/biz_music/lp_ticketpay/assets/images/feature/point-badge.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .p-feature-item__badge {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-item__badge {
    width: 80px;
    height: 80px;
  }
}

.p-feature-item__number {
  margin: 0;
  color: var(--color_text);
  font-family: Roboto Condensed, sans-serif;
  font-size: clamp(3.125rem, -0.625rem + 7.8125vi, 4.375rem);
  font-weight: 900;
  line-height: 1;
}

.p-feature-item__title {
  margin: 0;
  color: var(--color_text);
  font-size: clamp(1.25rem, 0.5rem + 1.5625vi, 1.5rem);
  font-weight: 900;
  line-height: 1.6;
}

.p-feature-item__description {
  color: var(--color_text);
  font-size: clamp(0.875rem, 0.5rem + 0.78125vi, 1rem);
  font-weight: 400;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-feature-item__description {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-item__description {
    margin-bottom: 30px;
  }
}

.p-feature-carousel {
  margin-inline: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .p-feature-carousel {
    --carousel_width: 812px;
    --carousel_gap: 60px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-carousel {
    --carousel_width: 310px;
    --carousel_gap: 20px;
  }
}
.p-feature-carousel .p-carousel__navigation {
  max-width: 940px;
}

.p-feature-mode {
  display: flex;
  border-radius: 20px;
  background-color: var(--color_white);
}
@media (min-width: 768px) {
  .p-feature-mode {
    flex-direction: row;
    height: 510px;
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-mode {
    flex-direction: column;
    height: auto;
    padding: 24px;
  }
}

.p-feature-mode__image {
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .p-feature-mode__image {
    width: 242px;
    height: 430px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-mode__image {
    width: 100%;
    height: auto;
    aspect-ratio: 242/430;
  }
}
.p-feature-mode__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-feature-mode__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-feature-mode__content {
    margin-left: 40px;
    padding-top: 29px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-mode__content {
    margin-top: 20px;
  }
}

.p-feature-mode__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-feature-mode__name {
  margin: 0;
  color: var(--color_text);
  font-size: clamp(1.25rem, 0.5rem + 1.5625vi, 1.5rem);
  font-weight: 900;
  line-height: 1.6;
}

.p-feature-mode__divider {
  margin: 0;
  border: none;
  border-top: 1px solid #D2D2D2;
}

.p-feature-mode__text {
  margin: 0;
  color: var(--color_text);
  font-size: clamp(0.875rem, 0.5rem + 0.78125vi, 1rem);
  font-weight: 400;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .p-feature-mode__preview {
    width: 450px;
    height: 125px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-mode__preview {
    width: 100%;
    height: auto;
  }
}
.p-feature-mode__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .p-feature-mode__image-editor {
    width: 360px;
    height: 236px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-mode__image-editor {
    width: 100%;
    height: auto;
  }
}
.p-feature-mode__image-editor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-feature-mode__caption {
  margin: 0;
  color: var(--color_text);
  font-size: clamp(0.75rem, 0.375rem + 0.78125vi, 0.875rem);
  font-weight: 400;
  line-height: 1.6;
}

.p-feature-mode__main {
  display: flex;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .p-feature-mode__main {
    flex-direction: column;
    gap: 20px;
  }
}

.p-feature-mode__details {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
}

.p-feature-mode__templates {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-feature-mode__template-row {
  display: flex;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .p-feature-mode__template-row {
    flex-wrap: wrap;
  }
}

.p-feature-mode__template {
  flex: 1;
  min-width: 0;
  padding: 10px 15px 15px;
  border: 1px solid var(--color_black);
  border-radius: 5px;
}

.p-feature-mode__template-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.p-feature-mode__template-label {
  margin: 0;
  color: var(--color_black);
  font-size: clamp(1rem, 0.625rem + 0.78125vi, 1.125rem);
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
}

.p-feature-compact {
  display: grid;
  grid-template-columns: 67% 33%;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .p-feature-compact {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.p-feature-compact__video {
  overflow: hidden;
  border-radius: 15px;
}
.p-feature-compact__video video {
  width: 100%;
  object-fit: contain;
}

.p-feature-compact__types {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-feature-compact__types {
    width: 326px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-compact__types {
    width: 100%;
  }
}

.p-feature-compact__tabs {
  position: relative;
  display: flex;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  background-color: #D2D2D2;
}

.p-feature-compact__tab {
  z-index: 1;
  flex: 1;
  border-radius: 30px;
  background: transparent;
  color: var(--color_white);
  font-size: clamp(1rem, 0.625rem + 0.78125vi, 1.125rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease;
}
.p-feature-compact__tab.is-active {
  background-color: var(--color_black);
}

.p-feature-compact__tab-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 296/358;
}

.p-feature-compact__tab-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  justify-content: center;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 767.98px) {
  .p-feature-compact__tab-content {
    flex-direction: column;
    gap: 20px;
  }
}
.p-feature-compact__tab-content.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-feature-compact__type {
  display: flex;
  align-items: center;
  gap: 5px;
}
.p-feature-compact__type img {
  width: 100%;
}

@media (min-width: 768px) {
  .p-feature-functions {
    --feature-functions-height: 472px;
    --feature-functions-menu-width: clamp(260px, 36%, 398px);
    position: relative;
    display: grid;
    align-items: start;
    grid-template-columns: var(--feature-functions-menu-width) minmax(0, 1fr);
    min-height: var(--feature-functions-height);
  }
  .p-feature-functions::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--feature-functions-menu-width);
    border-radius: 20px 0 0 20px;
    background-color: var(--color_black);
  }
}
@media (max-width: 767.98px) {
  .p-feature-functions {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border-radius: 20px;
    background-color: var(--color_black);
  }
}

@media (min-width: 768px) {
  .p-feature-functions__item {
    display: contents;
  }
  .p-feature-functions__item:first-child .p-feature-functions__menu-button {
    border-radius: 20px 0 0;
  }
  .p-feature-functions__item:last-child .p-feature-functions__menu-button {
    border-radius: 0 0 0 20px;
  }
}
@media (max-width: 767.98px) {
  .p-feature-functions__item {
    position: relative;
    display: grid;
    padding: 15px;
    background-color: var(--color_black);
  }
  .p-feature-functions__item::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 0;
    left: 15px;
    height: 1px;
    background-color: #a2a2a2;
  }
  .p-feature-functions__item:last-child::after {
    display: none;
  }
}

.p-feature-functions__menu-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  background-color: var(--color_black);
  color: var(--color_white);
  font-size: clamp(1rem, 0.625rem + 0.78125vi, 1.125rem);
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .p-feature-functions__menu-button {
    position: relative;
    z-index: 1;
    grid-column: 1;
    min-height: calc(var(--feature-functions-height) / 6);
    padding: 12px 30px 12px 20px;
    border-radius: 0;
  }
  .p-feature-functions__menu-button::after {
    content: "";
    flex-shrink: 0;
    width: 8px;
    height: 11px;
    background: url("/portal/biz_music/lp_ticketpay/assets/images/common/icon-triangle.svg") no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
  }
  .p-feature-functions__menu-button::before {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 50%;
    z-index: -1;
    width: calc(100% - 32px);
    height: 15px;
    background-color: var(--color_main-500);
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
  }
  .p-feature-functions__menu-button.is-active::before {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .p-feature-functions__menu-button::after {
    content: "";
    flex-shrink: 0;
    width: 11px;
    height: 8px;
    background: url("/portal/biz_music/lp_ticketpay/assets/images/common/icon-triangle.svg") no-repeat center;
    background-size: contain;
    transform: rotate(90deg);
  }
  .p-feature-functions__menu-button[aria-expanded=true]::after {
    transform: rotate(270deg);
  }
}
@media (any-hover: hover) {
  .p-feature-functions__menu-button:hover {
    opacity: 0.8;
  }
  .p-feature-functions__menu-button:hover::after {
    transform: translateX(4px);
  }
}

.p-feature-functions__content {
  background-color: var(--color_white);
  transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
}
@media (min-width: 768px) {
  .p-feature-functions__content {
    position: absolute;
    top: 0;
    right: 0;
    visibility: hidden;
    overflow: hidden;
    box-sizing: border-box;
    align-self: start;
    grid-column: 2;
    width: 100%;
    min-height: 100%;
    max-height: var(--feature-functions-height);
    padding: 36px clamp(24px, 5vw, 56px) 34px;
    border-radius: 0 20px 20px 0;
    opacity: 0;
    pointer-events: none;
  }
  .p-feature-functions__content.is-active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 767.98px) {
  .p-feature-functions__content {
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
    border-radius: 20px;
    opacity: 0;
  }
  .p-feature-functions__content.is-active {
    visibility: visible;
    max-height: 1000px;
    margin-top: 20px;
    padding: 15px;
    opacity: 1;
  }
}
.p-feature-functions__content video {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}
.p-feature-functions__content img {
  max-width: 100%;
  height: auto;
}

.p-feature-functions__lead {
  margin-bottom: 36px;
  color: var(--color_text);
  font-size: clamp(0.875rem, 0.5rem + 0.78125vi, 1rem);
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .p-feature-functions__lead {
    margin-bottom: 24px;
  }
}

.p-feature-functions__images {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.p-feature-functions__brands {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-feature-functions__brands {
    gap: 20px;
    padding-inline: 32px;
  }
}

.p-feature-functions__brands-title {
  margin: 0 0 16px;
  color: var(--color_black);
  font-size: clamp(0.75rem, -0.75rem + 3.125vi, 1.25rem);
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .p-feature-functions__brands-title {
    margin-bottom: 12px;
  }
}

.l-faq {
  padding-bottom: 70px;
}

.l-faq__list {
  display: grid;
}
@media (min-width: 768px) {
  .l-faq__list {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .l-faq__list {
    gap: 10px;
  }
}

.l-faq__campaign {
  margin-top: 60px;
}

@media (min-width: 768px) {
  .l-service {
    padding-bottom: 110px;
  }
}

@media (max-width: 767.98px) {
  .l-service__heading {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .l-service__carousel .p-carousel__inner {
    padding: 22px;
  }
}
@media (max-width: 767.98px) {
  .l-service__carousel .p-carousel__inner {
    padding: 20px;
  }
}

.l-support {
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  .l-support {
    padding-block: 126px 48px;
  }
}
@media (max-width: 767.98px) {
  .l-support {
    padding-block: 31px 47px;
  }
}

.p-support-list {
  display: grid;
}
@media (min-width: 768px) {
  .p-support-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .p-support-list {
    grid-template-columns: 1fr;
  }
}

.p-support-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .p-support-card {
    left: var(--margin, 0);
    width: 410px;
  }
}
@media (max-width: 767.98px) {
  .p-support-card {
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .p-support-card:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .p-support-card:nth-child(2n) .p-support-card__content {
    justify-content: flex-end;
    margin-right: -30px;
    margin-left: 0;
    padding-inline: 20px 40px;
  }
}

.p-support-card__icon {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 58px;
  background-color: var(--color_main-300);
}
@media (min-width: 768px) {
  .p-support-card__icon {
    width: 116px;
    height: 116px;
    padding: 18px;
  }
}
@media (max-width: 767.98px) {
  .p-support-card__icon {
    width: 80px;
    height: 80px;
    padding: 12px;
    border-radius: 40px;
  }
}
.p-support-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-support-card__content {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  border-radius: 40px;
  background-color: var(--color_black);
}
@media (min-width: 768px) {
  .p-support-card__content {
    height: 80px;
    margin-left: -50px;
    padding: 0 30px 0 60px;
  }
}
@media (max-width: 767.98px) {
  .p-support-card__content {
    height: 60px;
    margin-left: -30px;
    padding-inline: 40px 20px;
    border-radius: 30px;
  }
}

.p-support-card__title {
  color: var(--color_white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-support-card__title {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .p-support-card__title {
    font-size: clamp(0.875rem, 0.5rem + 0.78125vi, 1rem);
  }
}

.p-support-carousel {
  margin-top: 50px;
}

.p-lineup {
  border-radius: 20px;
  background-color: var(--color_white);
}
@media (min-width: 768px) {
  .p-lineup {
    padding: 40px 65px;
  }
}
@media (max-width: 767.98px) {
  .p-lineup {
    padding: 25px 0;
  }
}

.p-lineup__title {
  font-size: clamp(1.125rem, -1.125rem + 4.6875vi, 1.875rem);
  font-weight: 700;
  text-align: center;
}

.p-lineup__carousel {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-lineup__carousel {
    --carousel_width: 175px;
    --carousel_gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .p-lineup__carousel {
    --carousel_width: 140px;
    --carousel_gap: 10px;
  }
}
@media (max-width: 767.98px) {
  .p-lineup__carousel .p-carousel__inner {
    padding-left: 15px;
  }
}
.p-lineup__carousel .p-carousel__navigation {
  width: calc(100% + 60px);
}

.p-floating {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 100;
}

.p-floating__link {
  position: relative;
  display: block;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .p-floating__link {
    width: 166px;
    height: 166px;
  }
}
@media (max-width: 767.98px) {
  .p-floating__link {
    width: 88px;
    height: 88px;
  }
}
.p-floating__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  transform: translate(-50%, -50%);
  animation: text-rotation 28s linear infinite;
}
@media (min-width: 768px) {
  .p-floating__link::before {
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    background: url("/portal/biz_music/lp_ticketpay/assets/images/common/floating-text.svg") top left/cover;
  }
}
@media (max-width: 767.98px) {
  .p-floating__link::before {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: url("/portal/biz_music/lp_ticketpay/assets/images/common/floating-text-sp.svg") top left/cover;
  }
}

@keyframes text-rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (min-width: 768px) {
  .l-configuration {
    padding-block: 126px;
  }
}
@media (max-width: 767.98px) {
  .l-configuration {
    padding-block: 65px 55px;
  }
}
.l-configuration.is-modal-open {
  z-index: calc(var(--z-footer) + 20);
}

.l-configuration .c-heading {
  padding-bottom: 0;
}

.p-configuration-shop {
  position: relative;
}
@media (max-width: 767.98px) {
  .p-configuration-shop {
    margin-top: 60px;
  }
}

@media (min-width: 768px) {
  .p-configuration-shop__image {
    width: 71.6071428571%;
    margin-inline: auto;
  }
}
@media (max-width: 767.98px) {
  .p-configuration-shop__image {
    width: 295px;
    margin-left: 8px;
  }
}

.p-configuration-shop__place {
  position: absolute;
  width: 27.1428571429%;
}
@media (max-width: 767.98px) {
  .p-configuration-shop__place {
    width: 34.2857142857%;
  }
}
.p-configuration-shop__place--floor {
  top: 58px;
  left: 0;
}
.p-configuration-shop__place--floor .p-configuration-item:not(.is-modal-open) .p-configuration-item__tag {
  top: 0;
}
@media (max-width: 767.98px) {
  .p-configuration-shop__place--floor .p-configuration-item:not(.is-modal-open) .p-configuration-item__tag {
    top: -24px;
    left: 42%;
  }
}
.p-configuration-shop__place--kitchen {
  top: 23px;
  right: 0;
}
@media (max-width: 767.98px) {
  .p-configuration-shop__place--kitchen {
    top: 0;
    right: -4px;
  }
}
.p-configuration-shop__place--front {
  right: 18.3035714286%;
  bottom: 16px;
}
@media (max-width: 767.98px) {
  .p-configuration-shop__place--front {
    right: 24px;
    bottom: 18px;
  }
}

.p-configuration-shop__arrow {
  position: absolute;
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-configuration-shop__arrow {
    top: 40%;
    left: 50%;
    width: 48.2142857143%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767.98px) {
  .p-configuration-shop__arrow {
    top: 33%;
    left: 46%;
    width: 168px;
    transform: translate(-50%, -50%);
  }
}

.p-configuration-item {
  position: relative;
}

.p-configuration-item__tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: #ddd;
  font-size: clamp(1rem, 0.625rem + 0.78125vi, 1.125rem);
  font-weight: bold;
  white-space: nowrap;
}

.p-configuration-item:not(.is-modal-open) .p-configuration-item__tag {
  position: absolute;
  top: -20px;
  left: 50%;
  padding: 6px 28px 6px 25px;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-configuration-item:not(.is-modal-open) .p-configuration-item__tag {
    pointer-events: none;
  }
}
@media (max-width: 767.98px) {
  .p-configuration-item:not(.is-modal-open) .p-configuration-item__tag {
    top: -14px;
    cursor: pointer;
  }
  .p-configuration-item:not(.is-modal-open) .p-configuration-item__tag::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    flex-shrink: 0;
    width: 8px;
    height: 11px;
    background: var(--color_text);
    background-size: contain;
    transform: translateY(-50%);
    transition: background 0.3s ease;
    mask: url("/portal/biz_music/lp_ticketpay/assets/images/common/icon-triangle.svg") no-repeat center;
  }
}

.p-configuration-item.is-modal-open .p-configuration-item__tag {
  position: absolute;
  top: -20px;
  left: 50%;
  padding: 6px 28px 6px 25px;
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .p-configuration-item.is-modal-open .p-configuration-item__tag {
    top: -14px;
  }
}

.p-configuration-item__close {
  display: none;
}
@media (max-width: 767.98px) {
  .p-configuration-item__close {
    position: absolute;
    top: -46px;
    right: -10px;
    display: block;
    width: 36px;
    aspect-ratio: 1;
  }
  .p-configuration-item__close::before, .p-configuration-item__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background-color: var(--color_white);
  }
  .p-configuration-item__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .p-configuration-item__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.p-configuration-item__modal-tag {
  display: none;
}
@media (max-width: 767.98px) {
  .p-configuration-item__modal-tag {
    position: absolute;
    top: -24px;
    left: 50%;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 144px;
    min-height: 48px;
    padding: 6px 24px;
    border-radius: 999px;
    background-color: #ddd;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    transform: translateX(-50%);
  }
}

@media (max-width: 767.98px) {
  .p-configuration-item__content {
    position: fixed;
    z-index: calc(var(--z-footer) + 10);
    inset: 0;
    display: grid;
    visibility: hidden;
    place-items: center;
    padding: 56px 20px;
    background-color: rgba(0, 0, 0, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  }
  .p-configuration-item__content picture {
    display: block;
    border-radius: inherit;
  }
  .p-configuration-item__content img {
    display: block;
    width: 100%;
    border-radius: inherit;
  }
}

@media (max-width: 767.98px) {
  .p-configuration-item__modal {
    position: relative;
    width: min(100%, 520px);
    max-height: calc(100dvh - 112px);
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 767.98px) {
  .p-configuration-item.is-modal-open .p-configuration-item__content {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}