@charset "UTF-8";
/* --------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 共通ページ用
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
-------------------------------------------------- */
/* 画面サイズが768px未満はここを読み込む */
/* stylelint-disable-next-line */
@media (max-width: 767.9px) {
  /* ------------------------------
    base SP
  ------------------------------ */
  html {
    background: #fff;
  }
  html.is-fixed {
    height: 100%;
    overflow: hidden;
  }
  body {
    box-sizing: border-box;
    color: #191919;
    font-family: "Hiragino Kaku Gothic Pro", meiryo, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    word-wrap: break-word;
    overflow-wrap: break-word;
    image-rendering: auto;
  }
  .is-fixed body {
    position: fixed;
    width: 100%;
  }
  *:focus-visible {
    border-radius: 4px;
    outline: 4px solid #17349c;
  }
  img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    image-rendering: auto;
  }
  a {
    transition: 0.3s all;
  }
  button {
    transition: 0.3s all;
  }
  button:hover {
    cursor: pointer;
  }
  ::placeholder {
    color: #afafaf;
  }
  .only-pc {
    display: none !important;
  }
  .only-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    pointer-events: none;
  }
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
  }
  .main {
    flex: 1;
  }
  /* ------------------------------
    header SP
  ------------------------------ */
  .header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  }
  .header__inner {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 53px;
    padding: 8px 20px;
    gap: 10px;
  }
  .header__logo {
    display: block;
    width: 106px;
  }
  .header__logo img {
    width: 100%;
    height: auto;
  }
  .header__name {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0 auto;
    font-size: 12px;
    line-height: 1.5;
    gap: 4px;
  }
  .header__name::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: url("../images/icon/black/ico_person.svg") no-repeat center center/contain;
  }
  .header__name span {
    font-weight: 700;
  }
  .header-nav__button {
    display: none;
    position: relative;
    width: 40px;
    padding: 22px 0 0;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .header-nav__button.is-show {
    display: block;
  }
  .header-nav__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translateX(-50%);
    background: url("../images/icon/black/ico_close.svg") no-repeat center center/100% 100%;
  }
  .header-nav__list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .header-nav:has(> .is-show) .header-nav__item {
    display: none;
  }
  .header-nav:has(> .is-show) .header-nav__item:has(> .is-open) {
    display: block;
  }
  .header-nav__link {
    display: block;
    position: relative;
    width: 40px;
    padding: 22px 0 0;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .header-nav:has(> .is-show) .header-nav__link {
    display: none;
  }
  .header-nav__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
  }
  .header-nav__link--search::before {
    background-image: url("../images/icon/black/ico_search.svg");
  }
  .header-nav__link--login::before {
    background-image: url("../images/icon/black/ico_login.svg");
  }
  .header-nav__link--menu::before {
    background-image: url("../images/icon/black/ico_menu.svg");
  }
  .header-nav__open span {
    position: absolute;
    top: 0;
    right: 8px;
    box-sizing: border-box;
    width: 8px;
    height: 8px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #ed2769;
    font-size: 0;
  }
  .header-nav__close {
    display: none;
  }
  .header-overlay {
    display: none !important;
  }
  .header-menu {
    display: none;
    position: fixed;
    z-index: 6;
    top: 53px;
    right: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    max-height: calc(100svh - 53px);
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.3s all;
    background: #f6f6f6;
  }
  .header-menu.is-open {
    transform: translateX(0);
  }
  .header-search__head {
    margin-bottom: 16px;
    padding: 8px 20px 24px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .header-search-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .header-search-list__item {
    margin-bottom: 16px;
    padding: 24px 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .header-search-list__item:last-child {
    margin-bottom: 0;
  }
  .header-search-list__toggle {
    display: block;
    position: relative;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }
  .header-search-list__toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 2px;
    transform: translateY(-50%);
    border-radius: 2px;
    background: #191919;
  }
  .header-search-list__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 7px;
    width: 2px;
    height: 18px;
    transform: translateY(-50%);
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .header-search-list__item.is-open .header-search-list__toggle::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .header-search-list__panel {
    display: none;
    padding: 16px 0 0 16px;
  }
  .header-search-child-list {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style-type: none;
    gap: 16px;
  }
  .header-search-child-list__link {
    display: block;
    position: relative;
    padding-right: 26px;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
  }
  .header-search-child-list__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/main/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .header-account__inner {
    margin-bottom: 16px;
    padding: 8px 20px 24px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .header-account__name {
    position: relative;
    margin: 0 0 16px;
    padding: 0 0 16px 28px;
    border-bottom: 1px solid #dedede;
  }
  .header-account__name::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../images/icon/main/ico_person.svg") no-repeat center center/contain;
  }
  .header-account__name span {
    margin-right: 4px;
    font-weight: 700;
  }
  .header-account-list {
    display: flex;
    flex-direction: column;
    margin: 0 0 16px;
    padding: 0;
    list-style-type: none;
    gap: 16px;
    background: #fff;
  }
  .header-account-list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .header-account-list__link {
    display: inline-flex;
    position: relative;
    align-items: center;
    padding-left: 28px;
    color: #191919;
    gap: 4px;
    text-decoration: none;
  }
  .header-account-list__link::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
  }
  .header-account-list__link--top::before {
    background-image: url("../images/icon/main/ico_home.svg");
  }
  .header-account-list__link--ticket::before {
    background-image: url("../images/icon/main/ico_qr.svg");
  }
  .header-account-list__link--history::before {
    background-image: url("../images/icon/main/ico_history.svg");
  }
  .header-account-list__link--favorite::before {
    background-image: url("../images/icon/main/ico_favorite.svg");
  }
  .header-account-list__link--news::before {
    background-image: url("../images/icon/main/ico_notifications.svg");
  }
  .header-account-list__link--inquiry::before {
    background-image: url("../images/icon/main/ico_chat.svg");
  }
  .header-account-list__link--setting::before {
    background-image: url("../images/icon/main/ico_setting.svg");
  }
  .header-account-list__link--mail::before {
    background-image: url("../images/icon/main/ico_mail_close.svg");
  }
  .header-account-list__link--login-history::before {
    background-image: url("../images/icon/main/ico_lock.svg");
  }
  .header-account-list__number {
    padding: 3px 6px;
    border-radius: 100px;
    background: #ed2769;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
  }
  .header-account-logout {
    padding: 0 20px;
  }
  .header-account-logout__link {
    display: inline-block;
    position: relative;
    padding: 0 0 0 28px;
    border: 0;
    background: transparent;
    color: #191919;
    line-height: 1.65;
    text-decoration: none;
  }
  .header-account-logout__link::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../images/icon/main/ico_logout.svg") no-repeat center center/100% 100%;
  }
  .header-top {
    display: flex;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: center;
    height: 64px;
    padding-top: 12px;
    overflow: hidden;
  }
  .header-top::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 50%;
    width: 446px;
    height: 373px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #fff;
  }
  .header-top__logo {
    display: block;
    width: 150px;
  }
  .header-top__logo img {
    width: 100%;
    height: auto;
  }
  /* ------------------------------
    button SP
  ------------------------------ */
  .button-paramount {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 8px;
    border: 1px solid transparent;
    gap: 8px;
    border-radius: 2px;
    background: #ed2769;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .button-paramount--small {
    width: 150px;
    padding: 14px 12px;
  }
  .button-paramount[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-primary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 8px;
    border: 1px solid transparent;
    gap: 8px;
    border-radius: 2px;
    background: #08b5ae;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .button-primary--small {
    width: 150px;
    padding: 14px 12px;
  }
  .button-primary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-secondary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 8px;
    border: 1px solid transparent;
    gap: 8px;
    border-radius: 2px;
    background: #fff;
    color: #08b5ae;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 1px solid #08b5ae;
  }
  .button-secondary--small {
    width: 150px;
    padding: 14px 12px;
  }
  .button-secondary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-tertiary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 8px;
    border: 1px solid transparent;
    gap: 8px;
    border-radius: 2px;
    background: #def2ef;
    color: #08b5ae;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .button-tertiary--small {
    width: 150px;
    padding: 14px 12px;
  }
  .button-tertiary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-quaternary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 8px;
    border: 1px solid transparent;
    gap: 8px;
    border-radius: 2px;
    background: #f6f6f6;
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 1px solid #dedede;
  }
  .button-quaternary--small {
    width: 150px;
    padding: 14px 12px;
  }
  .button-quaternary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-owner-primary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 8px;
    border: 1px solid transparent;
    gap: 8px;
    border-radius: 2px;
    background: #17349c;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .button-owner-primary--small {
    width: 150px;
    padding: 14px 12px;
  }
  .button-owner-primary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-owner-secondary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 8px;
    border: 1px solid transparent;
    gap: 8px;
    border-radius: 2px;
    background: #fff;
    color: #17349c;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 1px solid #17349c;
  }
  .button-owner-secondary--small {
    width: 150px;
    padding: 14px 12px;
  }
  .button-owner-secondary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-function-primary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    gap: 4px;
    padding: 7px 15px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #191919;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .button-function-primary--large {
    min-width: 180px;
    padding: 11px 15px;
  }
  .button-function-primary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-function-secondary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    gap: 4px;
    padding: 7px 15px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #fff;
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 1px solid #535353;
  }
  .button-function-secondary--large {
    min-width: 180px;
    padding: 11px 15px;
  }
  .button-function-secondary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-function-main-primary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    gap: 4px;
    padding: 7px 15px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #08b5ae;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .button-function-main-primary--large {
    min-width: 180px;
    padding: 11px 15px;
  }
  .button-function-main-primary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-function-main-primary:hover {
    background: #0f7f7b;
  }
  .button-function-main-secondary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    gap: 4px;
    padding: 7px 15px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #fff;
    color: #08b5ae;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 1px solid #08b5ae;
  }
  .button-function-main-secondary--large {
    min-width: 180px;
    padding: 11px 15px;
  }
  .button-function-main-secondary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-function-main-secondary:hover {
    border-color: #def2ef;
    background: #edfaf8;
  }
  .button-arrow-right {
    padding: 14px 30px;
  }
  .button-arrow-right::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 7px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/white/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .button-secondary.button-arrow-right::before {
    background-image: url("../images/icon/main/ico_arrow_right.svg");
  }
  .button-tertiary.button-arrow-right::before {
    background-image: url("../images/icon/main/ico_arrow_right.svg");
  }
  .button-quaternary.button-arrow-right::before {
    background-image: url("../images/icon/gray/ico_arrow_right02.svg");
  }
  .button-owner-secondary.button-arrow-right::before {
    background-image: url("../images/icon/owner/ico_arrow_right.svg");
  }
  [aria-disabled=true].button-arrow-right::before {
    opacity: 0;
  }
  .button-arrow-left {
    padding: 14px 30px;
  }
  .button-arrow-left::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 7px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/white/ico_arrow_left.svg") no-repeat center center/contain;
  }
  .button-secondary.button-arrow-left::before {
    background-image: url("../images/icon/main/ico_arrow_left.svg");
  }
  .button-tertiary.button-arrow-left::before {
    background-image: url("../images/icon/main/ico_arrow_left.svg");
  }
  .button-quaternary.button-arrow-left::before {
    background-image: url("../images/icon/gray/ico_arrow_left02.svg");
  }
  .button-owner-secondary.button-arrow-left::before {
    background-image: url("../images/icon/owner/ico_arrow_left.svg");
  }
  [aria-disabled=true].button-arrow-left::before {
    opacity: 0;
  }
  .button-icon {
    width: 30px;
    height: 30px;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .button-icon--small {
    width: 24px;
    height: 24px;
  }
  .button-sns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 2px;
  }
  .button-sns--x {
    background: #000;
  }
  .button-sns--line {
    background: #06c755;
  }
  .button-sns--fb {
    background: #1877f2;
  }
  .button-sns img {
    width: 40px;
  }
  .button-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 16px;
  }
  .button-box__item {
    width: 100%;
  }
  /* ------------------------------
    icon SP
  ------------------------------ */
  [class^=icon-] {
    flex-shrink: 0;
    font-size: 0;
  }
  .icon-share {
    display: block;
    width: 30px;
    height: 30px;
    background: url("../images/icon/black/ico_share.svg") no-repeat 0 0/100% 100%;
  }
  .button-icon--small .icon-share {
    width: 24px;
    height: 24px;
  }
  .icon-blank {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 2px;
    background: url("../images/icon/black/ico_blank.svg") no-repeat center center/contain;
    font-size: 0;
    vertical-align: text-top;
  }
  .icon-blank--small {
    width: 14px;
    height: 14px;
  }
  .text-link-inline .icon-blank {
    background-image: url("../images/icon/owner/ico_blank.svg");
  }
  .button-primary .icon-blank {
    position: static;
    width: 18px;
    height: 18px;
    margin: 0;
    background-image: url("../images/icon/white/ico_blank.svg");
  }
  .button-secondary .icon-blank {
    position: static;
    width: 18px;
    height: 18px;
    margin: 0;
    background-image: url("../images/icon/main/ico_blank.svg");
  }
  .icon-alert {
    position: absolute;
    top: 2px;
    left: 0;
    width: 14px;
    height: 14px;
    background: url("../images/icon/pink/ico_alert.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .message-box--alert .icon-alert {
    width: 18px;
    height: 18px;
    background-image: url("../images/icon/pink/ico_alert.svg");
  }
  .icon-info {
    position: absolute;
    top: 1px;
    left: 0;
    width: 16px;
    height: 16px;
    background: url("../images/icon/orange/ico_info.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .message-box--important .icon-info {
    top: 2px;
    width: 18px;
    height: 18px;
    background-image: url("../images/icon/orange/ico_info_line.svg");
  }
  .inquiry-intro__title .icon-info {
    top: 3px;
    width: 18px;
    height: 18px;
    background-image: url("../images/icon/orange/ico_info_line.svg");
  }
  .icon-error {
    position: absolute;
    top: 1px;
    left: 0;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    background: url("../images/icon/red/ico_error.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .icon-hint {
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    background: url("../images/icon/orange/ico_hint.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .icon-favorite {
    display: block;
    width: 30px;
    height: 30px;
    transition: 0.3s all;
    background: url("../images/icon/black/ico_favorite.svg") no-repeat 0 0/100% 100%;
  }
  .icon-favorite.is-registered {
    background-image: url("../images/icon/black/ico_favorite_filled.svg");
  }
  .icon-mail {
    width: 18px;
    height: 18px;
    background: url("../images/icon/white/ico_mail.svg") no-repeat center center/contain;
  }
  .button-secondary .icon-mail {
    background-image: url("../images/icon/main/ico_mail.svg");
  }
  .icon-line {
    width: 22px;
    height: 22px;
    background: url("../images/icon/white/ico_line.svg") no-repeat center center/contain;
  }
  .icon-download {
    width: 24px;
    height: 24px;
    margin: -1px 5px 0 0;
    background: url("../images/icon/black/ico_download.svg") no-repeat center center/contain;
  }
  .icon-pc {
    width: 18px;
    height: 18px;
    background: url("../images/icon/white/ico_pc.svg") no-repeat center center/contain;
  }
  .button-secondary .icon-pc {
    background-image: url("../images/icon/main/ico_pc.svg");
  }
  .icon-tel {
    width: 18px;
    height: 18px;
    background: url("../images/icon/main/ico_tel.svg") no-repeat center center/contain;
  }
  .icon-copy {
    width: 18px;
    height: 18px;
    background: url("../images/icon/main/ico_copy.svg") no-repeat center center/contain;
  }
  .icon-seat {
    width: 18px;
    height: 18px;
    margin-top: -2px;
    background: url("../images/icon/white/ico_chair.svg") no-repeat center center/contain;
  }
  .icon-add {
    width: 20px;
    height: 20px;
    margin-top: -2px;
    background: url("../images/icon/white/ico_add.svg") no-repeat center center/contain;
  }
  .icon-edit {
    width: 18px;
    height: 18px;
    margin-top: -3px;
    background: url("../images/icon/black/ico_edit.svg") no-repeat center center/contain;
  }
  .button-function-secondary--large .icon-edit {
    width: 24px;
    height: 24px;
    margin-top: -4px;
  }
  .icon-search {
    width: 18px;
    height: 18px;
    margin-top: -3px;
    background: url("../images/icon/white/ico_search.svg") no-repeat center center/contain;
  }
  .icon-qr {
    width: 20px;
    height: 20px;
    margin-top: -2px;
    background: url("../images/icon/white/ico_qr.svg") no-repeat center center/contain;
  }
  .icon-close {
    width: 20px;
    height: 20px;
    background: url("../images/icon/white/ico_close.svg") no-repeat center center/contain;
  }
  .icon-return {
    width: 20px;
    height: 20px;
    background: url("../images/icon/white/ico_arrow_response.svg") no-repeat center center/contain;
  }
  .icon-movie {
    width: 20px;
    height: 20px;
    background: url("../images/icon/white/ico_movie.svg") no-repeat center center/contain;
  }
  .icon-text-copy {
    width: 18px;
    height: 18px;
    margin-top: -1px;
    background: url("../images/icon/black/ico_text_copy.svg") no-repeat center center/contain;
  }
  /* ------------------------------
    input PC
  ------------------------------ */
  .input-text {
    position: relative;
    max-width: 100%;
  }
  .input-text__input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 11px;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  .input-text__input:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
  }
  .input-text__input.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-text__input:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-textarea {
    position: relative;
    max-width: 100%;
  }
  .input-textarea__input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 120px;
    padding: 11px;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  .input-textarea__input:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
  }
  .input-textarea__input.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-textarea__input:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-select {
    position: relative;
    max-width: 335px;
  }
  .input-select.is-hide {
    display: none;
  }
  .input-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_down.svg") no-repeat 0 0/100% 100%;
    pointer-events: none;
  }
  .input-select:has(:disabled)::after {
    background-image: url("../images/icon/gray/ico_arrow_down.svg");
  }
  .input-select:has(.is-error)::after {
    background-image: url("../images/icon/red/ico_arrow_down.svg");
  }
  .input-select--medium {
    width: 180px;
  }
  .input-select--small {
    width: 85px;
  }
  .input-select__select {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 11px 40px 11px 15px;
    overflow: hidden;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    color: #191919;
    font-size: 16px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    appearance: none;
  }
  .input-select__select:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
    color: #afafaf;
  }
  .input-select__select.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-select__select:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-radio {
    display: inline-block;
    position: relative;
  }
  .input-radio__input {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    appearance: none;
  }
  .input-radio__text {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    color: #191919;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
  }
  .input-radio__input:disabled + .input-radio__text {
    color: #afafaf;
    pointer-events: none;
  }
  .input-radio__text::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #08b5ae;
    border-radius: 50%;
    background: #fff;
  }
  .input-radio__input:disabled + .input-radio__text::before {
    border-color: #dedede;
  }
  .input-radio__input.is-error + .input-radio__text::before {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-radio__text::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 3px;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    transform: scale(0);
    transition: 0.3s all;
    border-radius: 50%;
    background: #08b5ae;
  }
  .input-radio__input:checked + .input-radio__text::after {
    transform: scale(1);
  }
  .input-radio__input:disabled + .input-radio__text::after {
    background: #dedede;
  }
  .input-check {
    display: inline-block;
    position: relative;
  }
  .input-check--block {
    display: block;
    padding: 15px;
    transition: 0.3s all;
    border: 1px solid #08b5ae;
    border-radius: 2px;
    background: #fff;
  }
  .input-check--block:has(.is-error) {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-check--block:not(:has(.is-error)):has(:checked) {
    background: #edfaf8;
  }
  .input-check__input {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    appearance: none;
  }
  .input-check__text {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    color: #191919;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
  }
  .input-check__input:disabled + .input-check__text {
    color: #535353;
    pointer-events: none;
  }
  .input-check__text::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #08b5ae;
    border-radius: 4px;
    background: #fff;
  }
  .input-check__input:disabled + .input-check__text::before {
    border-color: #dedede;
    background: #f6f6f6;
  }
  .input-check__input.is-error + .input-check__text::before {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-check--block .is-error + .input-check__text::before {
    background: #fff;
  }
  .input-check__text::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 0;
    height: 20px;
    transition: 0.3s all;
    background: url("../images/icon/main/ico_check.svg") no-repeat 0 0/auto 100%;
  }
  .input-check__input:checked + .input-check__text::after {
    width: 20px;
  }
  .input-check__input:disabled + .input-check__text::after {
    background-image: url("../images/icon/gray/ico_check.svg");
  }
  .input-date {
    display: inline-block;
    position: relative;
    width: 163px;
  }
  .input-date::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_calendar.svg") no-repeat 0 0/100% 100%;
    pointer-events: none;
  }
  .input-date:has(:disabled)::before {
    background-image: url("../images/icon/gray/ico_calendar.svg");
  }
  .input-date__input {
    box-sizing: border-box;
    width: 100%;
    height: 44px;
    padding: 11px 44px 11px 11px;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    color: #191919;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    appearance: none;
  }
  .input-date__input::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .input-date__input:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
    color: #afafaf;
    pointer-events: none;
  }
  .input-date__input.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-date__input:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-password {
    position: relative;
    max-width: 100%;
  }
  .input-password__input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 11px 44px 11px 11px;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  .input-password__input::-ms-reveal {
    display: none;
  }
  .input-password__input:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
  }
  .input-password__input.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-password__input:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-password__button {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    width: 24px;
    height: 24px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    font-size: 0;
  }
  .input-password__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/icon/black/ico_visibility_off.svg") no-repeat center center/contain;
  }
  .is-visible .input-password__button::before {
    background-image: url("../images/icon/black/ico_visibility.svg");
  }
  .input-search {
    position: relative;
    max-width: 100%;
  }
  .input-search__input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 11px 44px 11px 11px;
    overflow: hidden;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .input-search__input[type=search] {
    -webkit-appearance: none;
    appearance: none;
  }
  .input-search__input::-webkit-search-cancel-button {
    appearance: none;
  }
  .input-search__input:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
  }
  .input-search__input.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-search__input:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-search__button {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    width: 24px;
    height: 24px;
    padding: 0;
    transform: translateY(-50%);
    transition: 0.3s all;
    border: 0;
    background: url("../images/icon/black/ico_search.svg") no-repeat 0 0/100% 100%;
    font-size: 0;
  }
  .input-switch {
    display: inline-block;
    position: relative;
  }
  .input-switch__input {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    appearance: none;
  }
  .input-switch__input:focus-visible {
    border-radius: 25px;
    outline-offset: 0;
  }
  .input-switch__button {
    display: block;
    position: relative;
    width: 50px;
    height: 24px;
    transition: 0.3s all;
    border-radius: 25px;
    background: #dedede;
    font-size: 0;
    cursor: pointer;
  }
  .input-switch__input:checked + .input-switch__button {
    background: #def2ef;
  }
  .input-switch__button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 28px;
    box-sizing: border-box;
    width: 28px;
    height: 28px;
    transform: translate(-100%, -50%);
    transition: 0.3s all;
    border: 1px solid #535353;
    border-radius: 50%;
    background: #fff url("../images/icon/white/ico_check.svg") no-repeat center center/24px 24px;
    box-shadow: 0 0 10px rgba(25, 25, 25, 0.1);
  }
  .input-switch__input:checked + .input-switch__button::before {
    left: 100%;
    border-color: #08b5ae;
    background-color: #08b5ae;
  }
  .input-sort {
    display: inline-block;
    position: relative;
    flex-shrink: 0;
  }
  .input-sort::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_sort.svg") no-repeat 0 0/100% 100%;
    pointer-events: none;
  }
  .input-sort__select {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 7px 15px 7px 35px;
    transition: 0.3s all;
    border: 1px solid #535353;
    border-radius: 2px;
    background: #fff;
    color: #191919;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    appearance: none;
  }
  /* ------------------------------
    flatpickr SP
  ------------------------------ */
  .flatpickr-current-month .numInputWrapper {
    width: 75px !important;
  }
  /* ------------------------------
    label SP
  ------------------------------ */
  .label-info {
    display: inline-block;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 11px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50px;
    border-color: transparent;
    background: #535353;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .label-important {
    display: inline-block;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 11px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50px;
    border-color: transparent;
    background: #ed2769;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .label-order {
    display: inline-block;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 11px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50px;
    border-color: transparent;
    background: #008577;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .label-lottery {
    display: inline-block;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 11px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50px;
    border-color: #008577;
    background: #fff;
    color: #008577;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  /* ------------------------------
    tag SP
  ------------------------------ */
  .tag-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #17349c;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #17349c;
    background: #fff;
    color: #17349c;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-tertiary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #edf3ff;
    color: #17349c;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-tertiary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-error-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #ed0f00;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-error-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-error-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #ed0f00;
    background: #fff;
    color: #ed0f00;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-error-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-error-tertiary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #ffe5e2;
    color: #ed0f00;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-error-tertiary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-alert-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #ed2769;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-alert-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-alert-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #ed2769;
    background: #fff;
    color: #ed2769;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-alert-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-alert-tertiary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #ffe8f0;
    color: #ed2769;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-alert-tertiary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-important-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #cc4100;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-important-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-important-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #cc4100;
    background: #fff;
    color: #cc4100;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-important-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-info {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #dedede;
    background: #fff;
    color: #191919;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    min-width: 74px;
    font-weight: normal;
    text-align: center;
  }
  .tag-info--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-info-large {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #f6f6f6;
    color: #191919;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    font-size: 14px;
    font-weight: normal;
  }
  .tag-info-large--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-normal-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #535353;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-normal-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-normal-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #dedede;
    color: #535353;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-normal-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-other-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #008577;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-other-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-other-primary--code {
    padding-left: 22px;
  }
  .tag-other-primary--code::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 6px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background: url("../images/icon/white/ico_key.svg") no-repeat center center/contain;
  }
  .tag-other-primary--fan-club {
    padding-left: 22px;
  }
  .tag-other-primary--fan-club::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 6px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background: url("../images/icon/white/ico_star.svg") no-repeat center center/contain;
  }
  .tag-other-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    min-height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #008577;
    background: #fff;
    color: #008577;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .tag-other-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-area {
    padding: 0 20px;
  }
  .tag-area__block {
    margin-bottom: 24px;
  }
  .tag-area__block:last-child {
    margin-bottom: 0;
  }
  .tag-area__text {
    margin: 0 0 8px;
    color: #535353;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
  }
  .tag-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .tag-list__link {
    display: block;
    padding: 3px 12px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    color: #191919;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
  }
  /* ------------------------------
    pagination SP
  ------------------------------ */
  .pagination {
    display: flex;
    flex-direction: column;
    max-width: 375px;
    margin: 24px auto 0;
    gap: 8px;
  }
  .pagination:first-child {
    margin-top: 0;
  }
  .pagination__set {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: space-between;
  }
  .pagination__pages {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 4px;
  }
  .pagination__button {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #6e6e6e;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
  }
  .pagination__button[aria-current=page] {
    color: #191919;
    pointer-events: none;
  }
  .pagination__button[aria-current=page]::before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 18px;
    height: 1px;
    transform: translateX(-50%);
    background: #191919;
  }
  .pagination__arrow {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px 18px;
    font-size: 0;
  }
  .pagination__arrow[aria-disabled=true] {
    pointer-events: none;
  }
  .pagination__arrow--prev {
    background-image: url("../images/icon/black/ico_arrow_left.svg");
  }
  .pagination__arrow--prev[aria-disabled=true] {
    background-image: url("../images/icon/gray/ico_arrow_left.svg");
  }
  .pagination__arrow--next {
    background-image: url("../images/icon/black/ico_arrow_right.svg");
  }
  .pagination__arrow--next[aria-disabled=true] {
    background-image: url("../images/icon/gray/ico_arrow_right.svg");
  }
  .pagination__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    font-size: 14px;
  }
  .pagination-number {
    font-size: 12px;
    text-align: center;
  }
  /* ------------------------------
    breadcrumb SP
  ------------------------------ */
  .breadcrumb {
    position: relative;
    border-top: 1px solid #dedede;
    background: #fff;
  }
  .breadcrumb__list {
    display: flex;
    margin: 0;
    padding: 8px 20px;
    gap: 8px;
    overflow-x: auto;
    list-style-type: none;
  }
  .breadcrumb__item {
    display: flex;
    position: relative;
    align-items: center;
    color: #191919;
    font-size: 12px;
    line-height: 1.5;
    white-space: nowrap;
    gap: 8px;
  }
  .breadcrumb__item::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-top: -1px;
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat 0 0/100% 100%;
  }
  .breadcrumb__item:last-child::after {
    content: none;
  }
  .breadcrumb__link {
    color: #6e6e6e;
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
  }
  .breadcrumb__item:first-child .breadcrumb__link {
    padding-left: 18px;
  }
  .breadcrumb__item:first-child .breadcrumb__link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    margin-top: -1px;
    transform: translateY(-50%);
    background: url("../images/icon/gray/ico_home.svg") no-repeat 0 0/100% 100%;
  }
  /* ------------------------------
    message SP
  ------------------------------ */
  .message {
    margin: 0 0 40px;
    padding: 16px;
    background: #ffe8f0;
    color: #ed2769;
  }
  .message:last-child {
    margin: 0;
  }
  .message--important {
    background: #fff2eb;
    color: #cc4100;
  }
  .message--error {
    background: #ffe5e2;
    color: #ed0f00;
  }
  .message__title {
    margin: 0 0 4px;
    font-weight: 700;
    line-height: 1.5;
  }
  .message__title:last-child {
    margin: 0;
  }
  .message__text {
    margin: 0;
    line-height: 1.5;
  }
  .message__button-box {
    margin-top: 8px;
  }
  .message-box {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 2px;
    background: #f6f6f6;
  }
  .message-box--alert {
    background: #ffe8f0;
  }
  .message-box--important {
    background: #fff2eb;
  }
  .message-box__title {
    position: relative;
    margin: 0 0 16px;
    padding-left: 22px;
    color: #535353;
    font-weight: 700;
    line-height: 1.5;
  }
  .message-box__title:last-child {
    margin: 0;
  }
  .message-box--alert .message-box__title {
    color: #ed2769;
  }
  .message-box--important .message-box__title {
    color: #cc4100;
  }
  .message-box__text {
    margin: 0 0 16px;
  }
  .message-box__name {
    margin: 0 0 8px;
    font-weight: 700;
    line-height: 1.5;
  }
  .message-box__button-box {
    margin-bottom: 8px;
  }
  .message-box__button-box:last-child {
    margin: 0;
  }
  .message-box__sub-text {
    margin: 0;
    font-size: 14px;
  }
  /* ------------------------------
    text SP
  ------------------------------ */
  .text {
    margin: 0 0 8px;
  }
  .text--center {
    text-align: center;
  }
  .text:last-child {
    margin-bottom: 0;
  }
  .text-link {
    position: relative;
    padding-right: 20px;
    color: #6e6e6e;
    text-align: right;
    text-decoration: none;
    word-break: break-all;
  }
  .text-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/gray/ico_arrow_right03.svg") no-repeat center center/100% 100%;
  }
  .text-link[target=_blank] {
    padding: 0;
    color: #191919;
    text-align: left;
  }
  .text-link[target=_blank]::before {
    content: none;
  }
  .text .text-link {
    padding-right: 0;
  }
  .text .text-link::before {
    content: none;
  }
  .text-link-inline {
    color: #17349c;
  }
  .text-alert {
    position: relative;
    margin: 0 0 8px;
    padding-left: 18px;
    color: #ed2769;
    font-size: 14px;
    line-height: 1.35;
  }
  .text-alert:last-child {
    margin-bottom: 0;
  }
  .text-important {
    position: relative;
    margin: 0 0 8px;
    padding-left: 20px;
    color: #cc4100;
    font-size: 14px;
    line-height: 1.35;
  }
  .text-important:last-child {
    margin-bottom: 0;
  }
  .text-hint {
    position: relative;
    margin: 0;
    padding-left: 20px;
    color: #cc4100;
    font-size: 14px;
  }
  .text-note {
    margin: 0 0 8px;
    padding-left: 1.2em;
    color: #ed2769;
    font-size: 14px;
    line-height: 1.35;
    text-indent: -1.2em;
  }
  .text-note:last-child {
    margin-bottom: 0;
  }
  .text-note::before {
    content: "※";
    margin-right: 0.2em;
  }
  .text-note--sub {
    color: #535353;
  }
  .text-note--small {
    font-size: 14px;
  }
  .text-note--important {
    color: #cc4100;
  }
  /* ------------------------------
    toast SP
  ------------------------------ */
  .toast {
    position: fixed;
    z-index: 7;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 24px 40px;
    border-radius: 2px;
    background: #008577;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.24);
  }
  .toast.is-hide {
    display: none;
  }
  .toast--error {
    background: #ed0f00;
  }
  .toast__text {
    margin: 0;
    color: #fff;
    text-align: center;
  }
  .toast__button {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 18px;
    height: 18px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    background: url("../images/icon/white/ico_close.svg") no-repeat center center/contain;
    font-size: 0;
  }
  /* ------------------------------
    search PC
  ------------------------------ */
  .search {
    display: flex;
    flex-direction: column;
    margin: 0 auto 40px;
    margin-bottom: 40px;
    padding: 24px 20px;
    background: #f6f6f6;
    gap: 16px;
  }
  .search__title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .search__keyword-input {
    margin-bottom: 16px;
  }
  .search__button {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0 20px 0 0;
    border: 0;
    background: none;
    color: #191919;
    font-weight: 700;
    line-height: 1.5;
  }
  .search__button::before {
    content: "";
    position: absolute;
    top: 11px;
    right: 0;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #191919;
  }
  .search__button::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 5px;
    width: 2px;
    height: 12px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .is-open .search__button::after {
    transform: rotate(-90deg);
  }
  .search__panel {
    display: none;
    padding-top: 16px;
    border-top: 1px dashed #afafaf;
  }
  .search__panel.is-open {
    display: block;
  }
  .search__section {
    margin-bottom: 16px;
  }
  .search__heading {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .search__button-box {
    display: flex;
    justify-content: center;
  }
  .search-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 16px 32px;
  }
  .search-list__item {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  /* ------------------------------
    banner SP
  ------------------------------ */
  .banner-sp {
    position: relative;
  }
  .banner-sp--large {
    padding: 0 20px;
  }
  .banner-pc {
    display: none;
  }
  .banner {
    display: block;
    overflow: hidden;
    border-radius: 2px;
  }
  .banner img {
    width: 100%;
    height: auto;
  }
  .banner-slider {
    display: flex;
    margin: -12px 0;
    padding: 12px 48px;
    overflow: hidden;
  }
  .banner-slider--small {
    padding: 12px 32px;
  }
  .banner-slider.swiper-initialized .swiper-wrapper {
    gap: 0;
    justify-content: flex-start;
  }
  .banner-slider .swiper-wrapper {
    gap: 8px;
    justify-content: center;
  }
  .banner-slider .swiper-notification {
    display: none;
  }
  .banner-slider__banner {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1.91/1;
  }
  .banner-slider--small .banner-slider__banner {
    width: calc(50% - 4px) !important;
  }
  .banner-slider__banner.swiper-slide-prev {
    opacity: 0.5;
  }
  .banner-slider--small .swiper-slide-next + .banner-slider__banner {
    opacity: 0.5;
  }
  .banner-slider__banner.swiper-slide-next {
    opacity: 0.5;
  }
  .banner-slider--small .banner-slider__banner.swiper-slide-next {
    opacity: 1;
  }
  .banner-slider__banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .banner-slider-control {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .swiper-initialized + .banner-slider-control {
    display: flex;
  }
  /* ------------------------------
    slider SP
  ------------------------------ */
  .slider-button-prev {
    width: 20px;
    height: 20px;
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/100% 100%;
    cursor: pointer;
    transform: rotate(-180deg);
  }
  .slider-button-next {
    width: 20px;
    height: 20px;
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/100% 100%;
    cursor: pointer;
  }
  .slider-pagination {
    display: flex;
    align-items: center;
    width: auto !important;
    gap: 12px;
  }
  .slider-pagination .swiper-pagination-bullet {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    margin: 0 !important;
    opacity: 1;
    background: transparent;
  }
  .slider-pagination .swiper-pagination-bullet::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    transition: 0.3s all;
    border-radius: 50%;
    background: #dedede;
  }
  .slider-pagination .swiper-pagination-bullet-active::before {
    scale: 1.5;
    background: #6e6e6e;
    pointer-events: none;
  }
  .slider-button-stop {
    box-sizing: border-box;
    width: 28px;
    height: 20px;
    margin-left: 2px;
    border: 1px solid #6e6e6e;
    border-radius: 2px;
    background: #fff url("../images/icon/gray/ico_pause.svg") no-repeat center center/16px 16px;
    font-size: 0;
  }
  .slider-button-stop.is-pause {
    background-image: url("../images/icon/gray/ico_play.svg");
  }
  /* ------------------------------
    event-card SP
  ------------------------------ */
  .event-card {
    display: flex;
    position: relative;
    padding: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    gap: 16px;
  }
  .event-card--sp-column, .event-card--pin {
    display: block;
    height: 100%;
    padding: 0;
    box-shadow: none;
  }
  .event-card--finished {
    box-sizing: border-box;
    height: 100%;
  }
  .event-card__tag {
    position: absolute;
    top: 0;
    left: 0;
  }
  .event-card--sp-column .event-card__tag, .event-card--pin .event-card__tag {
    top: auto;
    bottom: 0;
  }
  .event-card__image-box {
    flex: 0 0 auto;
  }
  .event-card--sp-column .event-card__image-box, .event-card--pin .event-card__image-box {
    position: relative;
    margin-bottom: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .event-card--pin .event-card__image-box {
    max-width: 335px;
    margin: 0 auto 16px;
  }
  .event-card__image {
    box-sizing: border-box;
    width: 100px;
    height: 100px;
  }
  .event-card--sp-column .event-card__image {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
  }
  .event-card--pin .event-card__image {
    width: 100%;
    height: 236px;
    overflow: hidden;
    border-radius: 4px;
  }
  .event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .event-card__title {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .event-card--sp-column .event-card__title {
    min-height: 48px;
  }
  .event-card__text {
    display: -webkit-box;
    position: relative;
    margin: 0 0 4px;
    padding-left: 22px;
    overflow: hidden;
    color: #191919;
    font-size: 14px;
    line-height: 1.35;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .event-card--pin .event-card__text {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-height: 1.65;
  }
  .event-card__text--date {
    display: block;
  }
  .event-card--pin .event-card__text--cast {
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .event-card__text:last-child {
    margin-bottom: 0;
  }
  .event-card__text span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .event-card--pin .event-card__text span {
    top: 2px;
  }
  .event-card__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .event-card__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .event-card__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .event-card__cast {
    background-image: url("../images/icon/black/ico_person.svg");
  }
  .event-card__desc {
    display: none;
  }
  .event-card-schedule {
    display: block;
    position: relative;
    padding: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
  }
  .event-card-schedule__tag {
    margin-bottom: 4px;
  }
  .event-card-schedule__title {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: #191919;
    font-size: 16px;
    font-weight: 400;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .event-card-schedule__text {
    display: -webkit-box;
    position: relative;
    margin: 0 0 4px;
    padding-left: 23px;
    overflow: hidden;
    color: #191919;
    font-size: 14px;
    line-height: 1.35;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .event-card-schedule__text:last-child {
    margin-bottom: 0;
  }
  .event-card-schedule__text span {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .event-card-schedule__text--date {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-card-schedule__text--place {
    font-weight: 700;
  }
  .event-card-schedule__date {
    top: 2px;
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .event-card-schedule__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .event-card-schedule__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .event-card-schedule__cast {
    background-image: url("../images/icon/black/ico_person.svg");
  }
  .event-card-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .event-card-list__item {
    margin-bottom: 16px;
  }
  .event-card-list__item:last-child {
    margin-bottom: 0;
  }
  .event-card-list-finished {
    position: relative;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .event-card-list-finished__item {
    margin-bottom: 16px;
  }
  .event-card-list-finished__item:last-child {
    margin-bottom: 0;
  }
  .event-card-list-finished::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 70px;
    transition: 0.3s all;
    opacity: 0;
    background: linear-gradient(180deg, transparent 0%, #fff 60%);
    pointer-events: none;
  }
  .event-card-list-finished:has(.is-hidden)::after {
    opacity: 1;
  }
  .event-card-list-finished-button {
    display: flex;
    position: relative;
    align-items: center;
    margin: -8px auto 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 16px;
    line-height: 1;
  }
  .event-card-list-finished-button::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/icon/black/ico_add.svg") no-repeat center center/contain;
  }
  .event-card-link {
    display: flex;
    position: relative;
    align-items: center;
    padding: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    color: #191919;
    text-decoration: none;
    gap: 16px;
  }
  .event-card-link__icon {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 16px;
    height: 16px;
    background: url("../images/icon/black/ico_blank.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .event-card-link__image {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 2px;
  }
  .event-card-link__image img {
    width: 100%;
  }
  .event-card-link__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-card-link__text {
    margin: 0;
    font-size: 14px;
  }
  /* ------------------------------
    modal SP
  ------------------------------ */
  .modal {
    box-sizing: border-box;
    width: 100%;
    max-width: calc(100% - 48px);
    height: 100%;
    max-height: calc(100% - 48px);
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .modal:focus {
    outline: none;
  }
  .modal--half {
    max-width: none;
    height: fit-content;
    max-height: none;
    margin: auto 0 0;
  }
  .modal.is-open {
    opacity: 1;
  }
  .modal::backdrop {
    transition: 0.3s all;
    opacity: 0;
    background: rgba(25, 25, 25, 0.4);
  }
  .is-open.modal::backdrop {
    opacity: 1;
  }
  .is-initial-open.modal::backdrop {
    opacity: 1;
  }
  .modal__inner {
    display: flex;
    position: absolute;
    top: 28%;
    left: 50%;
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
    max-height: calc(100svh - 48px);
    padding: 0 24px 24px;
    overflow: hidden;
    transform: translate(-50%, -28%);
    border-radius: 8px;
    background: #fff;
  }
  .modal:focus-visible .modal__inner {
    border-radius: 4px;
    outline: 6px solid #17349c;
  }
  .modal--half .modal__inner {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 100%);
    transition: 0.3s all;
    border-radius: 8px 8px 0 0;
  }
  .is-open.modal--half .modal__inner {
    transform: translateY(0);
  }
  .is-preview .modal__inner {
    max-height: calc(100svh - 170px);
  }
  .modal__content {
    flex: 1;
    margin: 0 -24px;
    padding: 24px 24px 0;
    overflow-y: auto;
  }
  .modal__content.is-simple-bar {
    display: flex;
    padding: 0 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .modal__content.is-simple-bar::-webkit-scrollbar {
    display: none;
  }
  .modal__content.is-simple-bar .simplebar-wrapper {
    flex: 1;
  }
  .modal__title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .modal__title:last-child {
    margin: 0;
  }
  .is-simple-bar .modal__title {
    margin-top: 24px;
  }
  .modal__text {
    margin: 0 0 10px;
  }
  .modal__text:last-child {
    margin: 0;
  }
  .modal__image img {
    width: 100%;
  }
  .modal__close {
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    background: url("../images/icon/gray/ico_close.svg") no-repeat center center/100% 100%;
    font-size: 0;
  }
  .modal__bottom {
    margin-top: 24px;
  }
  .modal__toast {
    display: none;
  }
  .modal-button-box {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
  }
  .input-check + .modal-button-box {
    margin-top: 24px;
  }
  .modal-button-box:first-child {
    margin-top: 0;
  }
  .modal-button-box__item {
    width: 100%;
    text-align: center;
  }
  .modal-half-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: url("../images/icon/gray/ico_close.svg") no-repeat center center/100% 100%;
    font-size: 0;
  }
  .modal-share {
    display: flex;
    margin: 0 0 8px;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .modal-share--column {
    flex-direction: column;
  }
  .modal-share:last-child {
    margin-bottom: 0;
  }
  .modal-share__item {
    flex: 1;
  }
  .modal-image {
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: 0 0 24px;
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .modal-image.is-open {
    opacity: 1;
  }
  .modal-image::backdrop {
    transition: 0.3s all;
    opacity: 0;
    background: #fff;
  }
  .is-open.modal-image::backdrop {
    opacity: 1;
  }
  .modal-image__content {
    height: calc(100svh - 96px);
  }
  .modal-image__image {
    height: 100%;
  }
  .modal-image__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .modal-image__bottom {
    margin-top: 16px;
  }
  .modal-image-slider {
    display: flex;
    position: relative;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    max-width: 450px;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  .modal-image-slider.swiper-initialized {
    padding-bottom: 41px;
  }
  .modal-image-slider__item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-image-slider__item img {
    width: auto;
    height: auto;
  }
  .modal-image-slider .swiper-notification {
    display: none;
  }
  .modal-image-slider-control {
    display: none;
    position: absolute;
    z-index: 1;
    bottom: 5px;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
  }
  .swiper-initialized > .modal-image-slider-control {
    display: flex;
  }
  /* ------------------------------
    footer SP
  ------------------------------ */
  .footer__button-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .footer__copyright {
    display: block;
    padding: 16px 20px;
    background: #08b5ae;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }
  .footer-page-top {
    text-align: center;
  }
  .footer-page-top__link {
    display: inline-block;
    position: relative;
    padding: 8px 16px 8px 40px;
    border-radius: 10px 10px 0 0;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
    color: #191919;
    font-size: 14px;
    text-decoration: none;
  }
  .footer-page-top__link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_up.svg") no-repeat center center/contain;
  }
  .footer-top__link {
    display: block;
    text-decoration: none;
  }
  .footer-top__image-area {
    position: relative;
    height: 220px;
    background: linear-gradient(rgba(23, 52, 156, 0.5), rgba(23, 52, 156, 0.5)), url("../images/bg_footer_sp.webp") no-repeat center/cover;
  }
  .footer-top__image {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-top__image img {
    width: 130px;
    height: 254px;
  }
  .footer-top__list {
    display: none;
  }
  .footer-top__text {
    margin: 0;
    color: #fff;
    font-weight: 700;
    text-align: center;
  }
  .footer-top__copy-area {
    display: flex;
    position: relative;
    z-index: 1;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    background: #edf3ff;
  }
  .footer-top__copy {
    margin: 0;
    color: #191919;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .footer-top__copy-sub {
    display: block;
  }
  .footer-top__button-area {
    width: 100%;
    margin-top: 16px;
  }
  .footer-top__button {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    padding: 18px 32px 16px;
    background: #17349c;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  .footer-top__button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 7px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/white/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .footer-bottom {
    position: relative;
    background: #fff;
  }
  .footer-bottom--bg {
    background: #f6f6f6;
  }
  .footer-bottom__inner {
    padding: 32px 20px;
  }
  .footer-bottom__text {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
  }
  .footer-bottom__text:last-child {
    margin-bottom: 0;
  }
  .footer-sns {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #dedede;
  }
  .footer-sns__title {
    margin: 0 0 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .footer-sns__list {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .footer-sns__link {
    display: block;
    width: 24px;
  }
  .footer-sns__link img {
    width: 100%;
    height: auto;
  }
  .footer-sns__link-hover {
    display: none;
  }
  .footer-nav {
    margin-bottom: 40px;
    font-size: 14px;
  }
  .footer-nav__title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 0 32px;
    padding: 0;
    list-style-type: none;
  }
  .footer-nav__link {
    position: relative;
    padding-right: 20px;
    color: #191919;
    text-decoration: none;
  }
  .footer-nav__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .footer-link {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0;
    padding: 32px 0;
    list-style-type: none;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    gap: 16px;
    font-size: 14px;
  }
  .footer-link__link {
    position: relative;
    padding-right: 20px;
    color: #191919;
    text-decoration: none;
  }
  .footer-link__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  /* ------------------------------
    notice SP
  ------------------------------ */
  .top__notice .notice {
    overflow: hidden;
    border-radius: 4px;
  }
  .notice__title {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 8px 20px;
    background: #ed2769;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
  }
  .notice__title::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url("../images/icon/white/ico_alert.svg") no-repeat center center/contain;
  }
  .notice-list {
    margin: 0;
    padding: 16px;
    list-style-type: none;
    background: #ffe8f0;
  }
  .notice-list__item {
    margin-bottom: 8px;
  }
  .notice-list__item:last-child {
    margin-bottom: 0;
  }
  .notice-list__link {
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
  }
  .notice-list__link span {
    flex-shrink: 0;
  }
  .notice-list__title {
    display: -webkit-inline-box;
    position: relative;
    margin: 0;
    padding-right: 16px;
    overflow: hidden;
    transition: 0.3s all;
    color: #191919;
    font-size: 12px;
    line-height: 1.35;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
  }
  .notice-list__title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background: url("../images/icon/pink/ico_arrow_right.svg") no-repeat center center/100% 100%;
  }
  /* ------------------------------
    ly SP
  ------------------------------ */
  .ly-container {
    padding: 32px 0 64px;
  }
  .ly-form-container {
    padding: 32px 0 64px;
  }
  .ly-top-container {
    padding-bottom: 64px;
  }
  .ly-section {
    margin-bottom: 40px;
  }
  .ly-section:last-child {
    margin-bottom: 0;
  }
  /* ------------------------------
    event-detail SP
  ------------------------------ */
  .event-detail {
    margin-bottom: 48px;
    padding: 0 20px;
  }
  .event-detail:last-child {
    margin-bottom: 0;
  }
  .event-detail__content {
    margin-bottom: 64px;
  }
  .event-detail__column {
    margin-top: 48px;
  }
  .event-detail__side {
    margin: 0 -20px 64px;
    padding: 32px 20px 16px;
    background: #f6f6f6;
  }
  .event-detail__head {
    margin-bottom: 24px;
  }
  .event-detail__message {
    margin-bottom: 24px;
  }
  .event-detail__message:last-child {
    margin-bottom: 0;
  }
  .event-detail-section {
    margin-bottom: 64px;
  }
  .event-detail-section:last-child {
    margin-bottom: 0;
  }
  .event-detail-child-section {
    margin-bottom: 40px;
  }
  .event-detail-child-section:last-child {
    margin-bottom: 0;
  }
  .event-detail-child-section__heading {
    margin: 0 0 8px;
    color: #535353;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .event-detail-top__schedule {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 4px;
    padding: 2px 8px;
    background: #f6f6f6;
    font-size: 14px;
    line-height: 1.35;
  }
  .event-detail-top__schedule::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/icon/black/ico_list.svg") no-repeat center center/contain;
  }
  .event-detail-status {
    margin-bottom: 4px;
  }
  .event-detail-share {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
  }
  .event-detail-slider {
    position: relative;
  }
  .event-detail-slider__inner {
    margin: -10px -10px 0;
    padding: 10px;
    overflow: hidden;
    opacity: 0;
    aspect-ratio: 1/1;
  }
  .event-detail-slider__inner.is-single, .event-detail-slider__inner.swiper-initialized {
    opacity: 1;
    aspect-ratio: auto;
  }
  .event-detail-slider__item {
    display: block;
    aspect-ratio: 1/1;
  }
  .event-detail-slider__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .event-detail-slider__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .event-detail-slider__button {
    display: inline-flex;
    position: absolute;
    right: 8px;
    bottom: 8px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff url("../images/icon/black/ico_zoom.svg") no-repeat center center/18px 18px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    font-size: 0;
  }
  .event-detail-slider-control {
    display: none;
    position: absolute;
    bottom: -6px;
    left: 50%;
    align-items: center;
    transform: translate(-50%, 100%);
    gap: 10px;
  }
  .swiper-initialized + .event-detail-slider-control {
    display: flex;
  }
  .event-detail-nav {
    position: sticky;
    z-index: 2;
    top: 0;
    margin: 0 -20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(25, 25, 25, 0.04);
  }
  .event-detail-nav__list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0 20px;
    list-style-type: none;
    gap: 18px;
  }
  .event-detail-nav__link {
    display: block;
    position: relative;
    padding: 10px 0;
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
  }
  .event-detail-nav__link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: 0.3s all;
    opacity: 0;
    background: #191919;
  }
  .event-detail-nav__link.is-current::before {
    opacity: 1;
  }
  .event-detail-info__list {
    margin: 0;
  }
  .event-detail-info__block {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
  }
  .event-detail-info--border .event-detail-info__block {
    padding-top: 16px;
    border-top: 1px solid #dedede;
  }
  .event-detail-info__block:last-child {
    margin-bottom: 0;
  }
  .event-detail-info--border .event-detail-info__block:last-child {
    padding-bottom: 16px;
    border-bottom: 1px solid #dedede;
  }
  .event-detail-info__title span {
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .event-detail-info__data {
    width: 100%;
    margin: 0;
  }
  .event-detail-info__data span {
    display: block;
  }
  .event-detail-info__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .event-detail-info__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .event-detail-info__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .event-detail-info__cast {
    background-image: url("../images/icon/black/ico_person.svg");
  }
  .event-detail-info__owner {
    background-image: url("../images/icon/black/ico_apartment.svg");
  }
  .event-detail-info__transportation {
    background-image: url("../images/icon/black/ico_traffic.svg");
  }
  .event-detail-info__link {
    color: #191919;
    text-decoration: underline;
  }
  .event-detail-info__link-box {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
  }
  .event-detail-info__button {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }
  .event-detail-info__sub-time {
    display: flex;
    gap: 0 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  .event-detail-info__event-name {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #191919;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    gap: 4px;
  }
  .event-detail-info__event-name::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/100% 100%;
  }
  .event-detail-info-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .event-detail-info-list__item {
    position: relative;
    padding-right: 16px;
  }
  .event-detail-info-list__item::after {
    content: "/";
    position: absolute;
    right: 5px;
  }
  .event-detail-info-list__item:last-child::after {
    content: none;
    margin-left: 0;
  }
  .event-detail-info-list__link {
    color: #191919;
    text-decoration: underline;
  }
  .event-detail-info-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    color: #535353;
    font-size: 14px;
    gap: 0 4px;
  }
  .event-detail-info-time--large {
    color: #191919;
    font-size: 16px;
  }
  .event-detail-info-time__date {
    margin: 0;
  }
  .event-detail-toggle {
    display: flex;
    position: relative;
    flex-direction: column;
  }
  .event-detail-toggle__text {
    max-height: 40vh;
    margin: 0;
    overflow: hidden;
    transition: 0.3s all;
  }
  .event-detail-toggle__text * {
    margin: 0;
  }
  .event-detail-toggle__button {
    display: block;
    z-index: 1;
    align-items: center;
    margin: 8px auto 0;
    padding: 0;
    border: 0;
    opacity: 0;
    background: transparent;
    color: #191919;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
    text-decoration: none;
  }
  .event-detail-toggle__button::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    transition: 0.3s all;
    background: linear-gradient(180deg, transparent 0%, #fff 60%);
    pointer-events: none;
  }
  .is-open.event-detail-toggle__button::before {
    opacity: 0;
  }
  .event-detail-toggle__button > span {
    display: block;
    position: relative;
    padding-right: 20px;
  }
  .event-detail-toggle__button > span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 2px;
    transform: translateY(-50%);
    border-radius: 2px;
    background: #191919;
  }
  .event-detail-toggle__button > span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 2px;
    height: 12px;
    transform: translateY(-50%);
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .is-open.event-detail-toggle__button > span::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .event-detail-toggle__button.is-open .event-detail-toggle__open {
    display: none;
  }
  .event-detail-toggle__close {
    display: none;
  }
  .event-detail-toggle__button.is-open .event-detail-toggle__close {
    display: block;
  }
  .event-detail-youtube iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .event-detail-link {
    margin-bottom: 40px;
  }
  .event-detail-link:last-child {
    margin-bottom: 0;
  }
  .event-detail-link__title {
    margin: 0 0 8px;
    color: #535353;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-link__link {
    margin-bottom: 10px;
  }
  .event-detail-link__link:last-child {
    margin-bottom: 0;
  }
  .event-detail-link__button-box {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .event-detail-link__button {
    display: block;
    width: 24px;
  }
  .event-detail-link__button img {
    width: 100%;
    height: auto;
  }
  .event-detail-link__button-hover {
    display: none;
  }
  .event-detail-link-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .event-detail-link-list__item {
    margin-bottom: 16px;
  }
  .event-detail-link-list__item:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket {
    margin: 0 -20px;
    padding: 0;
    list-style-type: none;
    border-radius: 10px;
  }
  .event-detail-ticket__item {
    margin-bottom: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .event-detail-ticket__item:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-button {
    padding: 13px 32px;
    font-size: 18px;
  }
  .event-detail-ticket-note {
    margin-bottom: 16px;
  }
  .event-detail-ticket-alert {
    margin-bottom: 16px;
  }
  .event-detail-ticket-head {
    display: block;
    position: relative;
    padding: 24px 20px;
    transition: 0.3s all;
    font-size: 14px;
    text-decoration: none;
  }
  .event-detail-ticket-head::before {
    content: "";
    position: absolute;
    top: 32px;
    right: 20px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #191919;
  }
  .event-detail-ticket-head::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 28px;
    width: 2px;
    height: 18px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .is-open > .event-detail-ticket-head::after {
    transform: rotate(-90deg);
  }
  .event-detail-ticket-head__status {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
  }
  .event-detail-ticket-head__title {
    display: flex;
    align-items: flex-start;
    margin: 0 0 8px;
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    gap: 8px;
  }
  .event-detail-ticket-head__title span {
    margin-top: 1px;
  }
  .event-detail-ticket-head__list {
    display: flex;
    margin: 0 0 8px;
  }
  .event-detail-ticket-head__list:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-head__list-title {
    display: flex;
    color: #535353;
    white-space: nowrap;
  }
  .event-detail-ticket-head__list-title::after {
    content: "：";
  }
  .event-detail-ticket-head__list-data {
    margin: 0;
    color: #535353;
    text-align: left;
  }
  .event-detail-ticket-body {
    display: none;
    padding: 0 20px 24px;
  }
  .event-detail-ticket-body.is-open {
    display: block;
  }
  .event-detail-ticket-body__sub-text {
    margin: 0 0 24px;
  }
  .event-detail-ticket-body__note {
    margin-bottom: 24px;
  }
  .event-detail-ticket-body__button {
    margin-bottom: 16px;
  }
  .event-detail-ticket-body__button:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-body-list {
    margin: 0 0 24px;
    background: #fff;
  }
  .event-detail-ticket-body-list__block {
    margin-bottom: 10px;
  }
  .event-detail-ticket-body-list__block:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-body-list__title {
    margin-bottom: 4px;
    color: #535353;
    font-weight: 700;
  }
  .event-detail-ticket-body-list__data {
    margin: 0;
    line-height: 1.5;
  }
  .event-detail-ticket-body-list__payment {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .event-detail-ticket-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
  .event-detail-ticket-card-wrap:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-card {
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 8px;
  }
  .event-detail-ticket-card__block {
    padding: 16px;
    background: #fff;
  }
  .event-detail-ticket-card__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-ticket-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  .event-detail-ticket-card__info:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-card__status {
    display: flex;
    gap: 4px;
  }
  .event-detail-ticket-card__price {
    margin: 0;
    font-size: 10px;
  }
  .event-detail-ticket-card__price span {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-ticket-card__toggle {
    display: flex;
    position: relative;
    flex-direction: column-reverse;
    padding: 16px;
    border-top: 1px solid #dedede;
    background: #f6f6f6;
  }
  .event-detail-ticket-card__text {
    display: -webkit-box;
    position: relative;
    max-height: 63px;
    margin: 0;
    overflow: hidden;
    transition: 0.3s all;
    color: #535353;
    font-size: 14px;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    --max-height: 63;
  }
  .event-detail-ticket-card__text.is-open {
    -webkit-line-clamp: inherit;
    line-clamp: inherit;
  }
  .event-detail-ticket-card__toggle-button {
    display: block;
    z-index: 1;
    align-items: center;
    margin: 8px auto 0;
    padding: 0;
    border: 0;
    opacity: 0;
    background: transparent;
    color: #191919;
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
    text-decoration: none;
  }
  .event-detail-ticket-card__toggle-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 24px;
    left: 0;
    width: 100%;
    height: 50px;
    transition: 0.3s all;
    background: linear-gradient(180deg, transparent 0%, #f6f6f6 60%);
    pointer-events: none;
  }
  .is-open.event-detail-ticket-card__toggle-button::before {
    opacity: 0;
  }
  .event-detail-ticket-card__toggle-button > span {
    display: block;
    position: relative;
    padding-right: 18px;
  }
  .event-detail-ticket-card__toggle-button > span::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #191919;
  }
  .event-detail-ticket-card__toggle-button > span::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 2px;
    height: 12px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .is-open.event-detail-ticket-card__toggle-button > span::after {
    transform: rotate(-90deg);
  }
  .event-detail-ticket-card__toggle-button.is-open .event-detail-ticket-card__toggle-open {
    display: none;
  }
  .event-detail-ticket-card__toggle-close {
    display: none;
  }
  .event-detail-ticket-card__toggle-button.is-open .event-detail-ticket-card__toggle-close {
    display: block;
  }
  .event-detail-contact__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-contact__link {
    margin-bottom: 8px;
    text-align: right;
  }
  .event-detail-contact__button {
    margin-bottom: 8px;
  }
  .event-detail-contact__button:last-child {
    margin-bottom: 0;
  }
  .event-detail-contact__text {
    margin: 0 0 8px;
    font-size: 14px;
  }
  .event-detail-contact__text:last-child {
    margin-bottom: 0;
  }
  .event-detail-other {
    margin: 0 -20px;
    padding: 32px 20px;
    background: #f6f6f6;
  }
  .event-detail-other__heading {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .event-detail-other__button-box {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
  .event-detail-schedule {
    margin: 0 -20px 64px;
    padding: 32px 0;
    background: #f6f6f6;
  }
  .event-detail-schedule__inner {
    padding: 0 20px;
  }
  .event-detail-map-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .event-detail-map-button {
    margin-bottom: 16px;
  }
  .event-detail-map {
    width: 100%;
    height: 315px;
  }
  .event-detail-error {
    padding: 0 20px;
  }
  .event-detail-error__heading {
    margin: 0 0 40px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .event-detail-error__section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #dedede;
  }
  .event-detail-error__section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .event-detail-error__title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-error__text {
    margin: 0;
  }
  /* ------------------------------
    heading SP
  ------------------------------ */
  .heading01 {
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .heading01--center {
    text-align: center;
  }
  .heading02 {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .heading03 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  /* ------------------------------
    event-list SP
  ------------------------------ */
  .event-list {
    margin-bottom: 48px;
  }
  .event-list:last-child {
    margin-bottom: 0;
  }
  .event-list__heading01 {
    padding: 0 20px;
  }
  .event-list__section {
    margin-bottom: 64px;
    padding: 0 20px;
  }
  .event-list__section:last-child {
    margin-bottom: 0;
  }
  .event-list__banner {
    margin-bottom: 64px;
  }
  .event-list__banner:last-child {
    margin-bottom: 0;
  }
  .event-list__text {
    margin: 0 0 24px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-list-heading {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 9px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .event-list-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 45px;
    height: 2px;
    transform: translateX(-50%);
    background: #08b5ae;
  }
  .event-list-button-box {
    display: flex;
    justify-content: center;
  }
  .event-list-sort {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 10px;
  }
  .event-list-sort__text {
    font-size: 14px;
  }
  .event-list-pickup {
    display: flex;
    margin: -10px -20px 24px;
    padding: 10px 20px;
    overflow-x: auto;
    list-style-type: none;
    gap: 24px;
  }
  .event-list-new {
    display: flex;
    margin: -10px -20px 24px;
    padding: 10px 20px;
    overflow-x: auto;
    list-style-type: none;
    gap: 24px;
  }
  .event-list-search {
    border-bottom: 1px solid #dedede;
  }
  .event-list-search__head {
    display: none;
  }
  .event-list-search__toggle {
    position: relative;
    width: 100%;
    padding: 16px 28px 16px 0;
    transition: 0.3s all;
    border: 0;
    background: #fff;
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }
  .event-list-search__toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 14px;
    height: 2px;
    transform: translateY(-50%);
    border-radius: 4px;
    background: #191919;
  }
  .event-list-search__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 2px;
    height: 14px;
    transform: translateY(-50%);
    transition: 0.3s all;
    border-radius: 4px;
    background: #191919;
  }
  .event-list-search.is-open .event-list-search__toggle::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .event-list-search__panel {
    display: none;
    padding-bottom: 24px;
  }
  .event-list-search-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .event-list-search-list__link {
    display: block;
    padding: 2px 12px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    color: #191919;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
  }
  .event-list-category {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 8px;
    list-style-type: none;
  }
  .event-list-category__item {
    flex: 1;
  }
  .event-list-category__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding: 24px 10px 16px;
    transition: 0.3s all;
    border: 1px solid #08b5ae;
    border-radius: 2px;
    background: #fff;
    color: #08b5ae;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .event-list-category__link::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .event-list-category__link--music::before {
    background-image: url("../images/icon/main/ico_music.svg");
  }
  .event-list-category__link--event::before {
    background-image: url("../images/icon/main/ico_event.svg");
  }
  .event-list-category__link--online::before {
    background-image: url("../images/icon/main/ico_online.svg");
  }
  /* ------------------------------
    list SP
  ------------------------------ */
  .list-dot {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .list-dot--alert {
    color: #ed2769;
  }
  .list-dot__item {
    padding-left: 1.2em;
    text-indent: -1.2em;
  }
  .list-dot__item::before {
    content: "・";
    margin-right: 0.2em;
  }
  /* ------------------------------
    ticket SP
  ------------------------------ */
  .ticket {
    padding: 0 20px;
  }
  .ticket-summary {
    margin: 0 -20px 40px;
    padding: 24px 20px;
    background: #f6f6f6;
  }
  .ticket-summary--zero {
    margin-bottom: 0;
  }
  .ticket-summary__title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-summary__name {
    margin: 0 0 16px;
  }
  .ticket-summary__link {
    display: inline-block;
    position: relative;
    padding-right: 24px;
    color: #191919;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
  }
  .ticket-summary__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat 0 0/contain;
  }
  .ticket-summary-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 8px;
  }
  .ticket-summary-list__block {
    display: flex;
    gap: 8px;
  }
  .ticket-summary-list__block:last-child {
    margin-bottom: 0;
  }
  .ticket-summary-list__title span {
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .ticket-summary-list__data {
    width: 100%;
    margin: 0;
  }
  .ticket-summary-list__data span {
    display: block;
  }
  .ticket-summary-list__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .ticket-summary-list__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .ticket-summary-list__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .ticket-summary-list__sub-time {
    display: flex;
    gap: 0 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  .ticket-summary-list-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    color: #535353;
    font-size: 14px;
    gap: 0 4px;
  }
  .ticket-summary-list-time--large {
    color: #191919;
    font-size: 16px;
  }
  .ticket-summary-list-time__date {
    margin: 0;
  }
  .ticket-detail__info {
    margin-bottom: 24px;
  }
  .ticket-detail__block {
    margin-bottom: 16px;
  }
  .ticket-detail__block:last-child {
    margin-bottom: 0;
  }
  .ticket-detail__heading {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-detail__heading span {
    margin-top: 5px;
  }
  .ticket-detail__sub-text {
    margin: 0;
  }
  .ticket-status {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    gap: 4px;
  }
  .ticket-detail-list {
    margin: 0;
  }
  .ticket-detail-list__title {
    margin-bottom: 4px;
    color: #535353;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-detail-list__data {
    margin: 0;
    line-height: 1.5;
  }
  .ticket-detail-list__payment {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .ticket-card {
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 10px;
    background: #fff;
  }
  .ticket-card:last-child {
    margin-bottom: 0;
  }
  .ticket-card__block {
    padding: 16px;
  }
  .ticket-card__title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-card__info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 4px;
  }
  .ticket-card__status {
    display: flex;
    gap: 5px;
  }
  .ticket-card__price {
    margin: 0 0 0 auto;
    font-size: 14px;
  }
  .ticket-card__price span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-card__input {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 16px;
    gap: 16px;
  }
  .ticket-card__toggle {
    display: flex;
    position: relative;
    flex-direction: column-reverse;
    padding: 16px;
    background: #f6f6f6;
  }
  .ticket-card__text {
    display: -webkit-box;
    position: relative;
    max-height: 73px;
    margin: 0;
    overflow: hidden;
    transition: 0.3s all;
    color: #535353;
    font-size: 14px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    --max-height: 73;
  }
  .ticket-card__text.is-open {
    -webkit-line-clamp: inherit;
    line-clamp: inherit;
  }
  .ticket-card__toggle-button {
    display: block;
    z-index: 1;
    align-items: center;
    margin: 8px auto 0;
    padding: 0;
    border: 0;
    opacity: 0;
    background: transparent;
    color: #191919;
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
    text-decoration: none;
  }
  .ticket-card__toggle-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 24px;
    left: 0;
    width: 100%;
    height: 50px;
    transition: 0.3s all;
    background: linear-gradient(180deg, transparent 0%, #f6f6f6 60%);
    pointer-events: none;
  }
  .is-open.ticket-card__toggle-button::before {
    opacity: 0;
  }
  .ticket-card__toggle-button > span {
    display: block;
    position: relative;
    padding-right: 18px;
  }
  .ticket-card__toggle-button > span::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #535353;
  }
  .ticket-card__toggle-button > span::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 2px;
    height: 12px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #535353;
  }
  .is-open.ticket-card__toggle-button > span::after {
    transform: rotate(-90deg);
  }
  .ticket-card__toggle-button.is-open .ticket-card__toggle-open {
    display: none;
  }
  .ticket-card__toggle-close {
    display: none;
  }
  .ticket-card__toggle-button.is-open .ticket-card__toggle-close {
    display: block;
  }
  .ticket-seat__text {
    margin: 0 0 24px;
  }
  .ticket-seat__inner {
    margin: 0 -20px;
    padding: 16px 20px;
    background: #f6f6f6;
  }
  .ticket-seat__title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-seat__button {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .ticket-seat-box {
    margin: 0 -20px 16px;
    padding: 24px 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .ticket-seat-box:last-child {
    margin-bottom: 0;
  }
  .ticket-seat-box__title {
    margin: 0 0 16px;
    color: #535353;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-seat-box__block {
    margin-bottom: 24px;
  }
  .ticket-seat-box__block:last-child {
    margin-bottom: 0;
  }
  .ticket-seat-box__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form__section-wrap {
    display: flex;
    flex-direction: column;
    margin: 0 -20px;
    overflow: hidden;
    background: #f6f6f6;
    gap: 16px;
  }
  .ticket-form__section {
    padding: 24px 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .ticket-form__section:first-child {
    padding-top: 0;
  }
  .ticket-form__section:last-child {
    padding-bottom: 0;
  }
  .ticket-form__title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form__title span {
    margin-left: 8px;
    vertical-align: text-bottom;
  }
  .ticket-form__content {
    padding: 20px;
    background: #fff;
  }
  .ticket-form__text {
    margin: 0 0 16px;
  }
  .ticket-form__event-info {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #afafaf;
  }
  .ticket-form__event-title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form__event-link {
    display: inline-block;
    margin-bottom: 5px;
    color: #06e;
    text-decoration: underline;
  }
  .ticket-payment-list {
    margin: 0;
    padding: 0;
    border: 1px solid #dedede;
    border-radius: 4px;
    background: #fff;
    list-style: none;
  }
  .ticket-payment-list__item {
    border-bottom: 1px solid #dedede;
  }
  .ticket-payment-list__item:last-child {
    border-bottom: 0;
  }
  .ticket-payment-list__panel {
    display: none;
    padding: 0 16px 24px;
  }
  .ticket-payment-list__text {
    margin: 0 0 16px;
  }
  .ticket-payment-list__input {
    margin-bottom: 16px;
  }
  .ticket-payment-radio {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 16px;
    cursor: pointer;
  }
  .ticket-payment-radio__input {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    appearance: none;
  }
  .ticket-payment-radio__text {
    display: block;
    position: relative;
    padding-left: 28px;
    line-height: 1.5;
  }
  .ticket-payment-radio:hover .ticket-payment-radio__text {
    font-weight: 700;
  }
  .ticket-payment-radio.is-open .ticket-payment-radio__text {
    font-weight: 700;
  }
  .ticket-payment-radio__text::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #08b5ae;
    border-radius: 50%;
    background: #fff;
  }
  .ticket-payment-radio__input.is-error + .ticket-payment-radio__text::before {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .ticket-payment-radio__text::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 3px;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    transform: scale(0);
    transition: 0.3s all;
    border-radius: 50%;
    background: #08b5ae;
  }
  .ticket-payment-radio__input:checked + .ticket-payment-radio__text::after {
    transform: scale(1);
  }
  .ticket-payment-card {
    margin-bottom: 20px;
  }
  .ticket-payment-card__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 4px;
    background: #f6f6f6;
  }
  .ticket-payment-card__box-text {
    margin: 0 0 10px;
    text-align: center;
  }
  .ticket-payment-card__text {
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .ticket-payment-card-info {
    display: grid;
    grid-template-columns: auto 1fr;
    margin: 0 0 16px;
  }
  .ticket-payment-card-info__block {
    display: flex;
  }
  .ticket-payment-card-info__title {
    position: relative;
    padding-right: 1em;
    font-weight: 700;
  }
  .ticket-payment-card-info__title::after {
    content: "：";
    position: absolute;
    right: 0;
  }
  .ticket-payment-card-info__data {
    margin: 0;
    font-weight: 700;
  }
  .ticket-payment-card-list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 5px;
  }
  .ticket-payment-card-list__item {
    box-sizing: border-box;
    width: 65px;
    height: 40px;
    padding: 7px;
    border: 1px solid #dedede;
    border-radius: 6px;
    background: #fff;
  }
  .ticket-payment-card-list__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .ticket-form-detail {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #afafaf;
  }
  .ticket-form-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .ticket-form-detail__title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form-detail__title span {
    margin-top: 2px;
  }
  .ticket-form-detail__message {
    margin-bottom: 16px;
  }
  .ticket-form-detail__total {
    padding: 16px;
    border: 1px solid #dedede;
    border-radius: 8px;
  }
  .ticket-form-detail__box {
    border-bottom: 2px solid #dedede;
  }
  .ticket-form-detail__box:last-child {
    border-bottom: 0;
  }
  .ticket-form-detail__block {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .ticket-form-detail__block:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }
  .ticket-form-detail__name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form-detail__price {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0 0 8px;
    gap: 0 8px;
  }
  .ticket-form-detail__price:last-child {
    margin-bottom: 0;
  }
  .ticket-form-detail__subtotal {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    gap: 4px;
  }
  .ticket-form-detail__subtotal span {
    font-size: 16px;
    line-height: 1.65;
    white-space: nowrap;
  }
  .ticket-form-seat {
    padding: 8px;
    border-radius: 4px;
    background: #f6f6f6;
  }
  .ticket-form-seat__title {
    margin: 0 0 4px;
    color: #535353;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form-seat-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 4px;
    padding: 0;
    list-style: none;
  }
  .ticket-form-seat-list__item {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
  }
  .ticket-form-seat-list__item::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 18px;
    background: url("../images/icon/black/ico_chair.svg") no-repeat center center/contain;
  }
  .ticket-commission-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px dashed #afafaf;
    gap: 8px;
  }
  .ticket-commission-list:last-child {
    border-bottom: 0;
  }
  .ticket-commission-list__title {
    flex: 1;
    font-size: 14px;
  }
  .ticket-commission-list__data {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    gap: 4px;
  }
  .ticket-commission-list__data span {
    font-size: 16px;
    line-height: 1.65;
    text-align: right;
    white-space: nowrap;
  }
  .ticket-total-list {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 8px;
    padding-top: 16px;
  }
  .ticket-total-list__title {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
  }
  .ticket-total-list__data {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-total-list__data span {
    font-size: 20px;
    line-height: 1.65;
    text-align: right;
    white-space: nowrap;
  }
  .ticket-form-input {
    margin-bottom: 16px;
  }
  .ticket-form-input:last-child {
    margin-bottom: 0;
  }
  .ticket-form-input__label {
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
  }
  .ticket-info-table {
    width: 100%;
  }
  .ticket-info-table tr {
    display: block;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .ticket-info-table tr:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .ticket-info-table__title {
    display: block;
    margin-bottom: 4px;
    color: #6e6e6e;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }
  .ticket-info-table__data {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .ticket-form-table {
    width: 100%;
    border-spacing: 0;
    border-top: 1px solid #dedede;
  }
  .ticket-form-table tr {
    display: flex;
    border-bottom: 1px solid #dedede;
  }
  .ticket-form-table__title {
    width: 100px;
    padding: 17px 4px 15px 0;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
  }
  .ticket-form-table__title--em {
    color: #ed2769;
  }
  .ticket-form-table__data {
    flex: 1;
    padding: 15px 0;
  }
  .ticket-form-table__data--em {
    color: #ed2769;
    font-weight: 700;
  }
  .ticket-form-question {
    margin-bottom: 32px;
  }
  .ticket-form-question:last-child {
    margin-bottom: 0;
  }
  .ticket-form-question__title {
    display: block;
    margin-bottom: 16px;
  }
  .ticket-form-question__number {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1.5;
    gap: 8px;
  }
  .ticket-form-question__question {
    display: block;
  }
  .ticket-form-question__list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .ticket-form-note {
    margin-bottom: 32px;
  }
  .ticket-form-note__title {
    margin: 0 0 8px;
    color: #535353;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form-note__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .ticket-form-note__date {
    margin: 0;
    text-align: right;
  }
  .ticket-share-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }
  .ticket-share-link__link {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #191919;
    gap: 4px;
  }
  .ticket-share-link__link::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: -1px;
    background: url("../images/icon/black/ico_share.svg") no-repeat 0 0/100% 100%;
  }
  .ticket-message {
    margin-bottom: 40px;
  }
  .ticket-message__paragraph {
    margin-bottom: 24px;
  }
  .ticket-message__paragraph:last-child {
    margin-bottom: 0;
  }
  .ticket-message__text {
    margin: 0 0 8px;
  }
  .ticket-message__text:last-child {
    margin-bottom: 0;
  }
  /* ------------------------------
    form SP
  ------------------------------ */
  .form-heading01 {
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .form-heading02 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .form-heading02 span {
    margin-left: 8px;
    vertical-align: text-top;
  }
  .form-head {
    margin: 0 -20px;
    padding: 16px 20px;
    background: #f6f6f6;
  }
  .form-head + .form {
    padding-top: 24px;
  }
  .form__section-wrap {
    margin: 0 -20px 32px;
    overflow: hidden;
    background: #f6f6f6;
  }
  .form__section-wrap:last-child {
    margin-bottom: 0;
  }
  .form__section {
    margin-bottom: 16px;
    padding: 24px 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .form__section:first-child {
    padding-top: 0;
  }
  .form__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .form__block {
    margin-bottom: 24px;
  }
  .form--confirm .form__block {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .form--confirm .form__block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .form__box .form__block {
    padding: 0;
    border: 0;
  }
  .form__block:last-child {
    margin-bottom: 0;
  }
  .form__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .form--confirm .form__title {
    margin: 0 0 4px;
    color: #6e6e6e;
    font-size: 12px;
  }
  .form__label {
    display: block;
  }
  .form__label span {
    margin: -2px 0 0 8px;
    vertical-align: text-top;
  }
  .form__text {
    margin: 0 0 8px;
  }
  .form__block-child {
    margin-bottom: 16px;
  }
  .form__block-child:last-child {
    margin-bottom: 0;
  }
  .form__label-child {
    display: block;
    margin: 0 0 4px;
    color: #535353;
    font-size: 14px;
    font-weight: 700;
  }
  .form__residence {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .form__box {
    padding: 16px;
    border: 1px solid #dedede;
    border-radius: 4px;
  }
  .form-name__block {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
  }
  .form-name__block:last-child {
    margin-bottom: 0;
  }
  .form-name__label {
    color: #535353;
    font-size: 14px;
    font-weight: 700;
  }
  .form-name__field {
    flex: 1;
  }
  .form-birth {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .form-birth__block {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .form-birth__year {
    width: 100px;
  }
  .form-birth__month, .form-birth__day {
    width: 79px;
  }
  .form-terms {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    margin-bottom: 32px;
  }
  .form-terms__title {
    margin: 0 0 8px;
    color: #535353;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .form-terms__date {
    display: block;
    margin: 0 0 8px;
    font-size: 14px;
    text-align: right;
  }
  .form-terms__content {
    box-sizing: border-box;
    flex: 1;
    max-height: 400px;
    padding: 16px;
    overflow-y: auto;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
  }
  .form-terms__content pre {
    margin: 0;
    font-family: "Hiragino Kaku Gothic Pro", meiryo, sans-serif;
    font-size: 14px;
    white-space: pre-wrap;
  }
  .form-terms__content#privacy p {
    margin: 0 0 8px;
  }
  .form-terms__content#privacy ul {
    margin-bottom: 8px;
  }
  .form-terms__content#privacy h4 {
    margin: 16px 0 8px;
  }
  .form-terms__table {
    display: block;
    margin: 20px auto 40px;
    border-top: 1px solid #dedede;
    border-right: 1px solid #dedede;
  }
  .form-terms__table + .form-terms__table {
    margin-top: -20px;
  }
  .form-terms__table-title {
    padding: 8px;
    border-bottom: 1px solid #dedede;
    border-left: 1px solid #dedede;
    background: #f6f6f6;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .form-terms__table-item {
    padding: 8px;
    border-bottom: 1px solid #dedede;
    border-left: 1px solid #dedede;
    font-size: 14px;
    line-height: 1.5;
  }
  .form-terms__table-item a {
    font-size: 14px;
  }
  .form-error-text {
    position: relative;
    margin: 8px 0 0;
    padding-left: 20px;
    color: #ed0f00;
    font-size: 14px;
    line-height: 1.35;
  }
  .form-error-text:first-child {
    margin-top: 0;
  }
  .form-text-note {
    margin: 8px 0 0;
    padding-left: 1.2em;
    color: #535353;
    font-size: 14px;
    line-height: 1.35;
    text-indent: -1.2em;
  }
  .form-text-note + .form-text-note {
    margin-top: 4px;
  }
  .form-text-note:has(strong) {
    color: #ed2769;
  }
  .form-text-note:last-child {
    margin-bottom: 0;
  }
  .form-text-note::before {
    content: "※";
    margin-right: 0.2em;
  }
  .form-text-note strong {
    font-weight: 400;
  }
  .form-text-em {
    margin: 8px 0 0;
    color: #ed2769;
    font-size: 14px;
    line-height: 1.35;
  }
  .form-step {
    display: flex;
    margin: 0 -20px 24px;
    padding: 0;
    list-style-type: none;
  }
  .form-step:last-child {
    margin-bottom: 0;
  }
  .form-step__item {
    display: flex;
    position: relative;
    flex: 1;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    color: #afafaf;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }
  .form-step__item::before {
    content: "";
    display: block;
    z-index: 1;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    margin: 3px;
    border: 2px solid #afafaf;
    border-radius: 50%;
    background: #fff;
  }
  .form-step__item::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #afafaf;
  }
  .form-step__item:last-child::after {
    content: none;
  }
  .form-step__item[aria-current=step] {
    color: #191919;
    font-weight: 700;
    gap: 8px;
  }
  .form-step__item[aria-current=step]::before {
    width: 18px;
    height: 18px;
    margin: 0;
    border-color: #535353;
    background: #535353;
  }
  .form-select-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .form-checkbox {
    padding: 15px;
    border-radius: 2px;
    background: #f6f6f6;
  }
  .form-checkbox.is-error {
    border: 1px solid #ed0f00;
    background: #ffe5e2;
  }
  .form-recaptcha {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px;
    background: #ffe8f0;
  }
  .form-recaptcha__text {
    margin: 0 0 10px;
  }
  /* ------------------------------
    preview SP
  ------------------------------ */
  .preview {
    position: fixed;
    z-index: 8;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 16px;
    background: rgba(25, 25, 25, 0.9);
    font-size: 20px;
    text-align: center;
  }
  .preview__text {
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
  }
  .preview__button {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 7px 15px;
    border: 1px solid #535353;
    border-radius: 2px;
    background: #fff;
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
    gap: 4px;
  }
  .preview__button::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: -1px;
    background: url("../images/icon/black/ico_close.svg") no-repeat center center/contain;
  }
  /* ------------------------------
    login SP
  ------------------------------ */
  .login {
    padding: 0 20px;
  }
  .login__content {
    margin: 0 -20px;
    overflow: hidden;
    background: #f6f6f6;
  }
  .login__title {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .login__title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 45px;
    height: 2px;
    transform: translateX(-50%);
    background: #08b5ae;
  }
  .login__section {
    margin-bottom: 16px;
    padding: 32px 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .login__section:first-child {
    padding-top: 0;
  }
  .login__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .login__text {
    margin: 0 0 24px;
  }
  .login__text:last-child {
    margin-bottom: 0;
  }
  .login__text-large {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .login__box {
    padding: 24px;
    background: #f6f6f6;
  }
  .login__button-box {
    display: flex;
    justify-content: center;
  }
  .login-form__inner {
    margin-bottom: 24px;
  }
  .login-form__block {
    margin-bottom: 24px;
  }
  .login-form__block:last-child {
    margin-bottom: 0;
  }
  .login-form__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .login-form__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px;
    background: #ffe8f0;
  }
  .login-form__text {
    margin: 0 0 10px;
  }
  .login-link {
    display: block;
    position: relative;
    width: fit-content;
    margin: 16px auto 0;
    padding: 0 20px 0 0;
    border: 0;
    background: transparent;
    color: #191919;
    text-decoration: none;
    word-break: break-all;
  }
  .login-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/100% 100%;
  }
  .login-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    padding: 24px;
    background: #f6f6f6;
    gap: 8px;
  }
  .login-email__title {
    margin: 0;
    font-size: 14px;
  }
  .login-email__address {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  /* ------------------------------
    error SP
  ------------------------------ */
  .error {
    padding: 0 20px;
  }
  .error__heading {
    margin: 0 0 40px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .error__text {
    margin: 0;
  }
  /* ------------------------------
    password SP
  ------------------------------ */
  .password {
    padding: 0 20px;
  }
  .password__text {
    margin: 0 0 24px;
  }
  .password__title {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.5;
  }
  .password__link {
    display: block;
    position: relative;
    width: fit-content;
    margin: 16px auto 0;
    padding: 0 20px 0 0;
    border: 0;
    background: transparent;
    color: #191919;
    text-decoration: none;
    word-break: break-all;
  }
  .password__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/100% 100%;
  }
  /* ------------------------------
    promoter SP
  ------------------------------ */
  .promoter {
    padding: 0 20px;
  }
  .promoter__section {
    margin-bottom: 64px;
  }
  .promoter__section:last-child {
    margin-bottom: 0;
  }
  .promoter-cover {
    margin: -32px 0 32px;
    aspect-ratio: 3/1;
  }
  .promoter-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .promoter-info {
    margin-bottom: 64px;
  }
  .promoter-info__image {
    width: 86px;
    height: 86px;
    margin: -96px 0 16px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .promoter:first-child .promoter-info__image {
    margin-top: 0;
  }
  .promoter-info__image img {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 4px;
    object-fit: contain;
  }
  .promoter-info__heading {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .promoter-info__link {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
  }
  .promoter-info__text {
    margin: 0;
    color: #535353;
    font-size: 14px;
  }
  .promoter-info-button {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px;
    border: 1px solid #535353;
    border-radius: 2px;
    background: #fff;
    color: #191919;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .promoter-info-button--arrow {
    padding-right: 29px;
  }
  .promoter-info-button--arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 7px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .promoter-pickup {
    display: flex;
    flex-direction: column;
    margin: 0 0 40px;
    padding: 0;
    list-style-type: none;
    gap: 32px;
  }
  .promoter-pickup__item {
    width: 100%;
    border-radius: 4px;
  }
  .promoter-event-list {
    margin: 0 -20px;
    padding: 32px 20px;
    background: #f6f6f6;
  }
  .promoter-event-text {
    margin: 0;
    padding: 32px 24px;
    background: #f6f6f6;
    text-align: center;
  }
  /* ------------------------------
    inquiry SP
  ------------------------------ */
  .inquiry {
    padding: 0 20px;
  }
  .inquiry__complete {
    margin: 0 0 24px;
  }
  .inquiry-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    border-top: 1px solid #dedede;
  }
  .inquiry-list__link {
    display: block;
    position: relative;
    padding: 16px 27px 16px 0;
    padding-right: 29px;
    border-bottom: 1px solid #dedede;
    color: #191919;
    text-decoration: none;
  }
  .inquiry-list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .inquiry-list__head {
    position: relative;
    margin-bottom: 8px;
  }
  .inquiry-list__title-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4px;
    gap: 4px;
  }
  .inquiry-list__title-box:last-child {
    margin-bottom: 0;
  }
  .inquiry-list__title {
    position: relative;
    margin: 0;
    overflow: hidden;
    color: #191919;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .inquiry-list__title:has(.inquiry-list__badge) {
    padding-left: 16px;
    font-weight: 700;
  }
  .inquiry-list__badge {
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ed2769;
    font-size: 0;
  }
  .inquiry-list__number {
    box-sizing: border-box;
    flex-shrink: 0;
    padding: 2px 8px;
    border: 1px solid #dedede;
    border-radius: 50px;
    background: #fff;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
  }
  .inquiry-list__number span {
    font-size: 12px;
    font-weight: 700;
  }
  .inquiry-list__event-name {
    display: block;
    overflow: hidden;
    color: #535353;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .inquiry-list__text {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: #191919;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .inquiry-list__sub-text {
    display: -webkit-box;
    position: relative;
    margin: 0 0 8px;
    padding-left: 25px;
    overflow: hidden;
    color: #535353;
    font-size: 14px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .inquiry-list__sub-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../images/icon/black/ico_arrow_response.svg") no-repeat center center/100% 100%;
  }
  .is-owner.inquiry-list__sub-text::before {
    background-image: url("../images/icon/black/ico_operator.svg");
  }
  .inquiry-list__date {
    display: block;
    color: #535353;
    font-size: 12px;
    line-height: 1.35;
    text-align: right;
  }
  .inquiry-detail {
    padding: 0 20px;
  }
  .inquiry-detail-box {
    margin: 0 -20px;
    margin-bottom: 24px;
    padding: 24px 20px;
    background: #f6f6f6;
  }
  .inquiry-detail-box__heading {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .inquiry-detail-box__heading:last-child {
    margin-bottom: 0;
  }
  .inquiry-detail-box__link {
    display: flex;
    align-items: center;
    color: #191919;
    text-decoration: none;
    gap: 4px;
  }
  .inquiry-detail-box__link::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .inquiry-detail-box__text {
    margin: 0;
  }
  .inquiry-detail-list {
    margin: 0 0 24px;
    padding: 0;
    list-style-type: none;
  }
  .inquiry-detail-list__item {
    padding: 24px 0;
    border-bottom: 1px solid #dedede;
  }
  .inquiry-detail-list__item:first-child {
    padding-top: 0;
  }
  .inquiry-detail-list__toggle {
    display: block;
    position: relative;
    padding-right: 28px;
    text-decoration: none;
  }
  .inquiry-detail-list__toggle::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 5px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #191919;
  }
  .inquiry-detail-list__item:first-child .inquiry-detail-list__toggle::before {
    content: none;
  }
  .inquiry-detail-list__toggle::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 11px;
    width: 2px;
    height: 14px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .inquiry-detail-list__item.is-open .inquiry-detail-list__toggle::after {
    transform: rotate(-90deg);
  }
  .inquiry-detail-list__item:first-child .inquiry-detail-list__toggle::after {
    content: none;
  }
  .inquiry-detail-list__badge {
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ed2769;
    font-size: 0;
  }
  .inquiry-detail-list__name {
    position: relative;
    margin: 0 0 4px;
    padding-left: 24px;
    overflow: hidden;
    transition: 0.3s all;
    color: #191919;
    font-size: 16px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .inquiry-detail-list__item.is-open .inquiry-detail-list__name {
    white-space: normal;
  }
  .inquiry-detail-list__toggle:has(.is-open) .inquiry-detail-list__name {
    white-space: normal;
  }
  .inquiry-detail-list__item:first-child .inquiry-detail-list__name {
    padding-left: 0;
  }
  .inquiry-detail-list__name::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../images/icon/black/ico_arrow_response.svg") no-repeat center center/100% 100%;
  }
  .inquiry-detail-list__item:first-child .inquiry-detail-list__name::before {
    content: none;
  }
  .is-owner.inquiry-detail-list__name::before {
    background-image: url("../images/icon/black/ico_operator.svg");
  }
  .inquiry-detail-list__name:has(span) {
    padding-left: 40px;
    font-weight: 700;
  }
  .inquiry-detail-list__name:has(span)::before {
    left: 12px;
  }
  .inquiry-detail-list__date {
    display: block;
    color: #535353;
    font-size: 12px;
    line-height: 1.35;
  }
  .inquiry-detail-list__panel {
    display: none;
    padding-top: 10px;
  }
  .inquiry-detail-list__panel.is-open {
    display: block;
  }
  .inquiry-detail-list__text {
    margin: 0;
  }
  .inquiry-detail-list__toggle-text {
    display: -webkit-box;
    position: relative;
    max-height: 130px;
    margin: 0;
    padding-top: 10px;
    overflow: hidden;
    transition: 0.3s all;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    --max-height: 130;
  }
  .inquiry-detail-list__toggle-text.is-open {
    -webkit-line-clamp: inherit;
    line-clamp: inherit;
  }
  .inquiry-detail-list__button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    opacity: 0;
    background: transparent;
    font-size: 0;
  }
  .inquiry-detail-list__button::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 5px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #191919;
  }
  .inquiry-detail-list__button::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 11px;
    width: 2px;
    height: 14px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .is-open.inquiry-detail-list__button::after {
    transform: rotate(-90deg);
  }
  .is-open > .inquiry-detail-list__button-close {
    display: none;
  }
  .inquiry-detail-list__button-open {
    display: none;
  }
  .is-open > .inquiry-detail-list__button-open {
    display: block;
  }
  .inquiry-detail-form__title {
    margin: 0 0 8px;
    color: #535353;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .inquiry-intro {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    padding: 24px;
    background: #fff2eb;
    gap: 16px;
  }
  .inquiry-intro__title {
    position: relative;
    margin: 0;
    padding-left: 22px;
    color: #cc4100;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .inquiry-intro__text {
    margin: 0 0 8px;
  }
  .inquiry-intro__text:last-child {
    margin-bottom: 0;
  }
  /* ------------------------------
    top SP
  ------------------------------ */
  .top__notice {
    margin-bottom: 32px;
    padding: 0 20px;
  }
  .top__banner {
    margin-bottom: 64px;
  }
  .top__banner:last-child {
    margin-bottom: 0;
  }
  .top-heading {
    position: relative;
    margin: 0 0 32px;
    padding-bottom: 8px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-heading span {
    display: block;
    font-size: 12px;
    line-height: 1.65;
    text-align: center;
  }
  .top-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 46px;
    height: 2px;
    transform: translateX(-50%);
    background: #08b5ae;
  }
  .top-hero {
    margin-bottom: 32px;
    padding: 10px 20px 0;
  }
  .top-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 480px;
    background: url("../images/top/bg_hero_sp.webp") no-repeat center center/cover;
  }
  .top-hero__inner {
    max-width: 416px;
    margin: 0 auto;
  }
  .top-hero__heading {
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-hero__box {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
  }
  .top-hero__keyword-block {
    margin-bottom: 16px;
  }
  .top-hero__keyword-block:last-child {
    margin-bottom: 0;
  }
  .top-hero__keyword-title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .top-hero-search {
    position: relative;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .top-hero-search__input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 11px 52px 11px 16px;
    overflow: hidden;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 100px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .top-hero-search__input::-webkit-search-cancel-button {
    appearance: none;
  }
  .top-hero-search__input::placeholder {
    color: #afafaf;
  }
  .top-hero-search__input:focus-visible {
    border-radius: 100px;
    border-color: #191919;
    outline: 0;
  }
  .top-hero-search__button {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 12px;
    width: 24px;
    height: 24px;
    padding: 0;
    transform: translateY(-50%);
    transition: 0.3s all;
    border: 0;
    background: url("../images/icon/black/ico_search.svg") no-repeat 0 0/100% 100%;
    font-size: 0;
  }
  .top-hero-keyword {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .top-hero-keyword__link {
    display: block;
    padding: 2px 12px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    color: #191919;
    font-size: 14px;
    text-decoration: none;
  }
  .top-login {
    display: flex;
    position: fixed;
    z-index: 4;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .top-login__button {
    display: block;
    box-sizing: border-box;
    flex: 1;
    min-height: 60px;
    padding: 19px 12px;
    border-radius: 4px 4px 0 0;
    background: #17349c;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .top-login__button--buyer {
    background: #08b5ae;
  }
  .top-new-event {
    margin-bottom: 64px;
    padding: 0 20px;
  }
  .top-new-event__button-box {
    display: flex;
    justify-content: center;
  }
  .top-event-slider {
    position: relative;
    margin: -10px -20px 22px;
    padding: 10px 0;
    overflow: hidden;
    transition: 0.3s all;
    opacity: 0;
  }
  .top-event-slider.swiper-initialized {
    opacity: 1;
  }
  .top-event-slider__item {
    width: 250px !important;
    height: auto !important;
  }
  .top-event-slider__control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    gap: 0 8px;
  }
  .top-event-slider .swiper-notification {
    display: none;
  }
  .top-pickup-event {
    margin-bottom: 60px;
    padding: 0 20px;
  }
  .top-pickup-event__button-box {
    display: flex;
    justify-content: center;
  }
  .top-pickup-event-list {
    display: flex;
    margin: -10px -20px 32px;
    padding: 10px 20px;
    overflow-x: auto;
    list-style-type: none;
    gap: 24px;
  }
  .top-owner {
    position: relative;
    z-index: 0;
    margin-bottom: 64px;
    padding: 40px 20px 64px;
    background: #edf3ff;
  }
  .top-owner::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: url("../images/top/bg_owner_sp.webp") no-repeat top center/cover;
  }
  .top-owner::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: rgba(23, 52, 156, 0.6);
  }
  .top-owner__heading {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 8px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-owner__heading span {
    display: block;
    font-size: 12px;
    line-height: 1.65;
    text-align: center;
  }
  .top-owner__heading::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 152px;
    background: rgba(23, 52, 156, 0.6);
    filter: blur(50px);
  }
  .top-owner__heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 46px;
    height: 2px;
    transform: translateX(-50%);
    background: #fff;
  }
  .top-owner__lead {
    margin: 0 0 24px;
    color: #fff;
    font-size: 26px;
    line-height: 1.5;
    text-align: center;
  }
  .top-owner__lead span {
    display: block;
    font-size: 16px;
  }
  .top-owner__section {
    margin-bottom: 64px;
  }
  .top-owner__section:last-child {
    margin-bottom: 0;
  }
  .top-owner__title {
    margin: 0 0 16px;
    color: #00215c;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-owner__title span {
    display: block;
    font-size: 18px;
  }
  .top-owner__text {
    margin: 0 0 24px;
    color: #00215c;
    text-align: center;
  }
  .top-owner__text-large {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-owner__button-box {
    display: flex;
    justify-content: center;
  }
  .top-owner-about {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 24px;
    padding: 16px;
    list-style-type: none;
    background: #fff;
    gap: 8px;
  }
  .top-owner-about__item {
    width: 96px;
  }
  .top-owner-about__image {
    width: 60px;
    margin: 0 auto 16px;
    aspect-ratio: 1/1;
  }
  .top-owner-about__image img {
    width: 100%;
    height: auto;
  }
  .top-owner-about__text {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
  }
  .top-owner-about__text strong {
    display: block;
    color: #ed2769;
    font-size: 14px;
  }
  .top-owner-function {
    display: flex;
    flex-direction: column;
    margin: 0 0 24px;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .top-owner-function__item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #fff;
    gap: 16px;
  }
  .top-owner-function__image {
    flex-shrink: 0;
    width: 70px;
  }
  .top-owner-function__image img {
    width: 100%;
    height: auto;
  }
  .top-owner-function__title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .top-owner-function__text {
    margin: 0;
    font-size: 14px;
  }
  .top-owner-function__text strong {
    color: #ed2769;
    font-weight: 700;
  }
  .top-owner-price {
    display: flex;
    justify-content: center;
    margin: 0 auto 24px;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .top-owner-price__item {
    position: relative;
    box-sizing: border-box;
    flex: 1;
    padding: 16px 11px 8px;
    background: #fff;
  }
  .top-owner-price__item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 43px;
    background: url("../images/top/img_free_sp.png") no-repeat 0 0/contain;
  }
  .top-owner-price__image {
    width: 50px;
    margin: 0 auto 8px;
  }
  .top-owner-price__image img {
    width: 100%;
    height: auto;
  }
  .top-owner-price__text {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-owner-price__text span {
    display: block;
    color: #ed2769;
    font-size: 16px;
    line-height: 1.65;
  }
  .top-owner-case {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    margin-bottom: 24px;
    padding: 24px;
    list-style-type: none;
    background: #fff;
    gap: 10px;
  }
  .top-owner-case__item {
    height: 35px;
  }
  .top-owner-case__item img {
    width: auto;
    height: 100%;
  }
  .top-news {
    margin-bottom: 64px;
    padding: 0 20px;
  }
  .top-news__link {
    display: block;
    position: relative;
    width: fit-content;
    margin-left: auto;
    padding-right: 20px;
    color: #191919;
    text-decoration: none;
    word-break: break-all;
  }
  .top-news__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/100% 100%;
  }
  .top-news-list {
    margin: 0 0 16px;
    padding: 0;
    list-style-type: none;
  }
  .top-news-list__item {
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dedede;
  }
  .top-news-list__item:last-child {
    margin-bottom: 0;
  }
  .top-news-list__status {
    margin-bottom: 4px;
  }
  .top-news-list__date {
    font-size: 12px;
    line-height: 1.5;
  }
  .top-news-list__link {
    display: -webkit-box;
    position: relative;
    min-height: 26px;
    padding-right: 24px;
    overflow: hidden;
    color: #191919;
    text-decoration: none;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .top-news-list__link span {
    display: inline;
    margin-right: 8px;
  }
  .top-news-list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat 0 0/contain;
  }
  .top-search {
    margin-bottom: 64px;
    padding: 0 20px;
  }
  .top-search-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .top-search-list__item {
    border-bottom: 1px solid #dedede;
  }
  .top-search-list__toggle {
    position: relative;
    width: 100%;
    padding: 16px 28px 16px 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }
  .top-search-list__toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 14px;
    height: 2px;
    transform: translateY(-50%);
    border-radius: 2px;
    background: #191919;
  }
  .top-search-list__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 14px;
    width: 2px;
    height: 14px;
    transform: translateY(-50%);
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .top-search-list__item.is-open .top-search-list__toggle::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .top-search-list__head {
    display: none;
  }
  .top-search-list__panel {
    display: none;
    margin: -10px -10px 0;
    padding: 10px 10px 24px;
    padding-bottom: 24px;
  }
  .top-search-child-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .top-search-child-list__link {
    display: block;
    padding: 3px 12px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    color: #191919;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
  }
  /* ------------------------------
    my-top SP
  ------------------------------ */
  .my-top {
    padding-top: 32px;
  }
  .my-top__heading01 {
    margin: 0 0 8px;
    padding: 0 20px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-top__heading02 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .my-top__heading02::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 46px;
    height: 2px;
    transform: translateX(-50%);
    background: #08b5ae;
  }
  .my-top__section {
    margin-bottom: 64px;
    padding: 0 20px;
  }
  .my-top-nav + .my-top__section {
    margin-top: 40px;
  }
  .my-top__section:last-child {
    margin-bottom: 0;
  }
  .my-top__message {
    margin-bottom: 64px;
    padding: 0 20px;
  }
  .my-top-nav + .my-top__message {
    margin-top: 40px;
  }
  .my-top__banner {
    margin-bottom: 64px;
  }
  .my-top__banner:last-child {
    margin-bottom: 0;
  }
  .my-top__button-box {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
  .my-top-nav {
    position: sticky;
    z-index: 3;
    top: 0;
    left: 0;
  }
  .my-top-nav__list {
    display: flex;
    margin: 0;
    padding: 12px 0;
    list-style-type: none;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .my-top-nav__item {
    flex: 1;
    border-right: 1px solid #def2ef;
  }
  .my-top-nav__item:last-child {
    border-right: 0;
  }
  .my-top-nav__link {
    display: flex;
    position: relative;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding-top: 30px;
    background: #fff;
    color: #191919;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
  }
  .my-top-nav__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .my-top-nav__link--ticket::before {
    background-image: url("../images/icon/main/ico_ticket.svg");
  }
  .my-top-nav__link--history::before {
    background-image: url("../images/icon/main/ico_history.svg");
  }
  .my-top-nav__link--favorite::before {
    background-image: url("../images/icon/main/ico_favorite.svg");
  }
  .my-top-nav__link--setting::before {
    background-image: url("../images/icon/main/ico_setting.svg");
  }
  .my-top-nav__link--news::before {
    background-image: url("../images/icon/main/ico_notifications.svg");
  }
  .my-top-nav__number {
    position: absolute;
    top: -4px;
    right: 4px;
    padding: 4px 6px;
    border-radius: 100px;
    background: #ed2769;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
  }
  .my-top-alert {
    display: flex;
    align-items: center;
    margin: 0 auto 16px;
    padding: 0 20px;
    gap: 8px;
  }
  .my-top-alert__text {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: #ed2769;
    font-size: 14px;
    line-height: 1.35;
  }
  .my-top-alert__link {
    display: flex;
    align-items: center;
    transition: 0.3s all;
    color: #ed2769;
    font-size: 14px;
    text-decoration: none;
    gap: 2px;
  }
  .my-top-alert__link::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-top: -2px;
    transition: 0.3s all;
    background: url("../images/icon/pink/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .my-top-favorite-list {
    display: flex;
    margin: -10px -20px 0;
    padding: 10px 20px;
    overflow-x: auto;
    list-style-type: none;
    gap: 24px;
  }
  .my-top-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .my-top-menu__item:first-child {
    grid-column: 1/3;
    grid-row: 1;
  }
  .my-top-menu__item:nth-child(2) {
    grid-column: 3/5;
    grid-row: 1;
  }
  .my-top-menu__link {
    display: flex;
    position: relative;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 74px;
    padding: 40px 0 8px;
    transition: 0.3s all;
    border: 1px solid #08b5ae;
    border-radius: 2px;
    color: #191919;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
  }
  .my-top-menu__link:hover {
    color: #08b5ae;
  }
  .my-top-menu__item:first-child .my-top-menu__link, .my-top-menu__item:nth-child(2) .my-top-menu__link {
    flex-direction: row;
    gap: 4px;
    padding: 0;
    font-size: 14px;
  }
  .my-top-menu__link::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .my-top-menu__item:first-child .my-top-menu__link::before, .my-top-menu__item:nth-child(2) .my-top-menu__link::before {
    position: static;
    transform: translateX(0);
  }
  .my-top-menu__link--ticket::before {
    background-image: url("../images/icon/main/ico_ticket.svg");
  }
  .my-top-menu__link--history::before {
    background-image: url("../images/icon/main/ico_history.svg");
  }
  .my-top-menu__link--favorite::before {
    background-image: url("../images/icon/main/ico_favorite.svg");
  }
  .my-top-menu__link--setting::before {
    background-image: url("../images/icon/main/ico_setting.svg");
  }
  .my-top-menu__link--news::before {
    background-image: url("../images/icon/main/ico_notifications.svg");
  }
  .my-top-menu__link--inquiry::before {
    background-image: url("../images/icon/main/ico_message.svg");
  }
  .my-top-menu__number {
    position: absolute;
    top: 6%;
    right: 6px;
    padding: 4px 6px;
    border-radius: 100px;
    background: #ed2769;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
  }
  .my-top-search {
    margin-bottom: 64px;
    background: #f6f6f6;
  }
  .my-top-search__inner {
    padding: 32px 20px;
  }
  .my-top-pickup-list {
    display: flex;
    margin: -10px -20px 0;
    padding: 10px 20px;
    overflow-x: auto;
    list-style-type: none;
    gap: 24px;
  }
  .my-top-news-list {
    margin: 0 0 16px;
    padding: 0;
    list-style-type: none;
  }
  .my-top-news-list__item {
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dedede;
  }
  .my-top-news-list__item:last-child {
    margin-bottom: 0;
  }
  .my-top-news-list__status {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 4px;
  }
  .my-top-news-list__date {
    font-size: 12px;
    line-height: 1.5;
  }
  .my-top-news-list__link {
    display: -webkit-box;
    position: relative;
    min-height: 26px;
    padding-right: 24px;
    overflow: hidden;
    color: #191919;
    line-height: 1.65;
    text-decoration: none;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .my-top-news-list__link span {
    margin: 2px 8px 0 0;
    vertical-align: top;
  }
  .my-top-news-list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat 0 0/contain;
  }
  /* ------------------------------
    my-ticket SP
  ------------------------------ */
  .my-ticket {
    padding: 0 20px;
  }
  .my-ticket--top {
    padding: 0;
  }
  .my-ticket__heading01 {
    padding: 0 20px;
  }
  .my-ticket__section {
    margin-bottom: 64px;
    padding: 0 20px;
  }
  .my-ticket__section:last-child {
    margin-bottom: 0;
  }
  .my-ticket__content {
    margin: 0 -20px 40px;
    padding: 24px 20px;
    background: #f6f6f6;
  }
  .my-ticket__content:first-child {
    margin-top: -32px;
  }
  .my-ticket__notice {
    margin-bottom: 40px;
  }
  .my-ticket__text {
    margin: 0 0 16px;
  }
  .my-ticket__text strong {
    font-weight: 700;
  }
  .my-ticket__button-box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .my-ticket__link {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  .my-ticket__message {
    margin: 0 0 16px;
    padding: 16px;
    border-radius: 2px;
    background: #f6f6f6;
    font-weight: 700;
    text-align: center;
  }
  .my-ticket__image {
    max-width: 450px;
    margin: 0 auto;
  }
  .my-ticket__image img {
    width: 100%;
    height: auto;
  }
  .my-ticket-button-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
  .my-ticket-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .my-ticket-list--single {
    margin-bottom: 16px;
  }
  .my-ticket-list:last-child {
    margin-bottom: 0;
  }
  .my-ticket-list__item {
    margin-bottom: 16px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 8px;
  }
  .my-ticket-list--single .my-ticket-list__item {
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
  }
  .my-ticket-list__item:last-child {
    margin-bottom: 0;
  }
  .my-ticket-list__event {
    display: flex;
    margin-bottom: 8px;
    color: #191919;
    text-decoration: none;
    gap: 16px;
  }
  .my-ticket-list__summary {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .my-ticket-list__image {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 2px;
  }
  .my-ticket-list__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .my-ticket-list__event-name {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    font-weight: 700;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .my-ticket-list__event-name span {
    display: inline;
    margin-right: 4px;
  }
  .my-ticket-list__text {
    display: -webkit-box;
    position: relative;
    margin: 0 0 4px;
    padding-left: 22px;
    overflow: hidden;
    color: #191919;
    font-size: 14px;
    line-height: 1.35;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .my-ticket-list__text:last-child {
    margin-bottom: 0;
  }
  .my-ticket-list__text--date {
    display: flex;
    gap: 0 4px;
    flex-wrap: wrap;
  }
  .my-ticket-list__owner, .my-ticket-list__place, .my-ticket-list__date {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .my-ticket-list__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .my-ticket-list__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .my-ticket-list__owner {
    background-image: url("../images/icon/black/ico_apartment.svg");
  }
  .my-ticket-list__time {
    display: inline-block;
  }
  .my-ticket-list__bottom {
    margin-bottom: -16px;
    border-top: 1px dashed #dedede;
  }
  .my-ticket-list__ticket-info {
    display: block;
    padding: 12px 0 16px;
    color: #191919;
    text-decoration: none;
  }
  .my-ticket-list__tag {
    display: flex;
    gap: 5px;
    margin-bottom: 4px;
  }
  .my-ticket-list__title {
    margin: 0 0 4px;
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-list__number {
    display: flex;
    margin: 0;
  }
  .my-ticket-list__number-title {
    white-space: nowrap;
  }
  .my-ticket-list__number-title::after {
    content: "：";
  }
  .my-ticket-list__number-data {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .my-ticket-list__ticket {
    display: flex;
    margin: 0;
  }
  .my-ticket-list__ticket-title {
    color: #535353;
    font-size: 14px;
    white-space: nowrap;
  }
  .my-ticket-list__ticket-title::after {
    content: "：";
  }
  .my-ticket-list__ticket-data {
    margin: 0;
    color: #535353;
    font-size: 14px;
  }
  .my-ticket-list__action {
    display: flex;
    position: relative;
    justify-content: center;
    margin: 0 -16px -16px;
    padding: 16px;
    background: #f6f6f6;
  }
  .my-ticket-list__button {
    display: inline-flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 12px;
    border: 0;
    border-radius: 2px;
    background: #191919;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    gap: 4px;
  }
  .my-ticket-list__share {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 15px;
    flex-direction: column;
    align-items: center;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 12px;
    line-height: 1.35;
    text-decoration: none;
  }
  .my-ticket-list__share::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("../images/icon/black/ico_send.svg") no-repeat center center/contain;
  }
  .my-ticket-list__share--retry::before {
    background: url("../images/icon/black/ico_send_outline.svg") no-repeat center center/contain;
  }
  .my-ticket-list__share--return::before {
    background: url("../images/icon/black/ico_arrow_response.svg") no-repeat center center/contain;
  }
  .my-ticket-link {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .my-ticket-link__item {
    border-bottom: 1px solid #dedede;
  }
  .my-ticket-link__item:first-child {
    border-top: 1px solid #dedede;
  }
  .my-ticket-link__link {
    display: block;
    position: relative;
    padding: 16px 26px 16px 0;
    color: #191919;
    text-decoration: none;
  }
  .my-ticket-link__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background: url("../images/icon/gray/ico_arrow_right02.svg") no-repeat center center/contain;
  }
  .my-ticket-online__inner {
    margin: 0 -24px 40px;
    padding: 24px 20px;
    background: #f6f6f6;
  }
  .my-ticket-online__summary {
    padding: 24px 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .my-ticket-online__title {
    margin: 0 0 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-online__text {
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .my-ticket-online__text:last-child {
    margin: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .my-ticket-online__box {
    position: relative;
    padding: 24px 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  }
  .my-ticket-online__box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 22px);
    height: 16px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    background-image: radial-gradient(circle, #dedede 4px, transparent 4px);
    background-repeat: repeat-x;
    background-position: center center;
    background-size: 16px 16px;
  }
  .my-ticket-online__info {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .my-ticket-online__info:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .my-ticket-online__info-box {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .my-ticket-online__name {
    font-weight: 700;
  }
  .my-ticket-online__number {
    display: flex;
    margin: 0;
  }
  .my-ticket-online__number-title {
    flex-shrink: 0;
    color: #535353;
  }
  .my-ticket-online__number-title::after {
    content: "：";
  }
  .my-ticket-online__number-data {
    margin: 0;
    color: #535353;
  }
  .my-ticket-online__ticket-name {
    margin: 0 0 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-online__list {
    margin: 0 0 4px;
  }
  .my-ticket-online__list:last-child {
    margin-bottom: 0;
  }
  .my-ticket-online__list-title {
    font-size: 12px;
    white-space: nowrap;
  }
  .my-ticket-online__list-data {
    margin: 0;
    font-size: 14px;
    word-break: break-all;
  }
  .my-ticket-online__sub-text {
    margin: 0;
    color: #535353;
    font-size: 14px;
  }
  .my-ticket-online__sub-text br {
    visibility: hidden;
  }
  .my-ticket-online__promoter {
    margin: 0;
  }
  .my-ticket-online__promoter-title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-online-info {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 4px;
  }
  .my-ticket-online-info__block {
    display: flex;
    gap: 8px;
  }
  .my-ticket-online-info__block:last-child {
    margin-bottom: 0;
  }
  .my-ticket-online-info__title span {
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .my-ticket-online-info__data {
    width: 100%;
    margin: 0;
  }
  .my-ticket-online-info__data span {
    display: block;
  }
  .my-ticket-online-info__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .my-ticket-online-info__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .my-ticket-online-info__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .my-ticket-online-info__sub-time {
    display: flex;
    gap: 0 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  .my-ticket-online-info-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    color: #535353;
    font-size: 14px;
    gap: 0 4px;
  }
  .my-ticket-online-info-time--large {
    color: #191919;
    font-size: 16px;
  }
  .my-ticket-online-info-time__date {
    margin: 0;
  }
  .my-ticket-summary {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .my-ticket-summary__title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-summary__link {
    display: inline-flex;
    align-items: center;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
    gap: 4px;
  }
  .my-ticket-summary__link::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .my-ticket-summary-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 8px;
  }
  .my-ticket-summary-list__block {
    display: flex;
    gap: 8px;
  }
  .my-ticket-summary-list__block:last-child {
    margin-bottom: 0;
  }
  .my-ticket-summary-list__title span {
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .my-ticket-summary-list__data {
    width: 100%;
    margin: 0;
  }
  .my-ticket-summary-list__data span {
    display: block;
  }
  .my-ticket-summary-list__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .my-ticket-summary-list__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .my-ticket-summary-list__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .my-ticket-summary-list__sub-time {
    display: flex;
    gap: 0 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  .my-ticket-summary-list-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    color: #535353;
    font-size: 14px;
    gap: 0 4px;
  }
  .my-ticket-summary-list-time--large {
    color: #191919;
    font-size: 16px;
  }
  .my-ticket-summary-list-time__date {
    margin: 0;
  }
  .my-ticket-info {
    position: relative;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  }
  .my-ticket-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 22px);
    height: 16px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    background-image: radial-gradient(circle, #dedede 4px, transparent 4px);
    background-repeat: repeat-x;
    background-position: center center;
    background-size: 16px 16px;
  }
  .my-ticket-info__block {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .my-ticket-info__block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .my-ticket-info__box {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .my-ticket-info__name {
    font-weight: 700;
  }
  .my-ticket-info__number {
    display: flex;
    margin: 0;
    color: #535353;
  }
  .my-ticket-info__number-title::after {
    content: "：";
  }
  .my-ticket-info__number-data {
    margin: 0;
  }
  .my-ticket-info__list {
    display: flex;
    margin: 0;
  }
  .my-ticket-info__list-title {
    padding-top: 1.5px;
    font-size: 12px;
    white-space: nowrap;
  }
  .my-ticket-info__list-title::after {
    content: "‖";
    margin: 0 4px;
  }
  .my-ticket-info__list-data {
    margin: 0;
    font-size: 14px;
    word-break: break-all;
  }
  .my-ticket-info__title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
  }
  .my-ticket-info__type {
    margin: 0 0 16px;
  }
  .my-ticket-info__type-title {
    margin-bottom: 4px;
    font-size: 14px;
  }
  .my-ticket-info__type-data {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-info__sub-text {
    margin: 0;
    color: #535353;
    font-size: 14px;
  }
  .my-ticket-qr {
    box-sizing: border-box;
    max-width: 400px;
    margin: 0 auto 24px;
    padding: 18px;
    border: 1px solid #dedede;
    background: #fff;
  }
  .my-ticket-qr.color01 {
    background: #008577;
  }
  .my-ticket-qr__inner {
    padding: 15px;
    background: #fff;
  }
  .my-ticket-qr__image img {
    width: 100%;
    height: auto;
  }
  .my-ticket-text-link {
    display: block;
    width: fit-content;
    margin: 8px 0 0 auto;
  }
  .my-ticket-promoter {
    margin: 0 -20px;
    padding: 24px 20px;
    background: #f6f6f6;
  }
  .my-ticket-promoter__content {
    display: flex;
    gap: 16px;
  }
  .my-ticket-promoter__image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
  }
  .my-ticket-promoter__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .my-ticket-promoter__title {
    flex: 1;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
  }
  .my-ticket-promoter__text-box {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .my-ticket-share {
    margin-bottom: 40px;
  }
  .my-ticket-share__text {
    margin: 0 0 8px;
  }
  .my-ticket-text-copy {
    margin-bottom: 40px;
  }
  .my-ticket-text-copy__button {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
  }
  .my-ticket-text-copy__button:last-child {
    margin-bottom: 0;
  }
  .my-ticket-text-copy__textarea-wrap {
    margin-bottom: 16px;
  }
  .my-ticket-text-copy__textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 1035px;
    padding: 12px 15px;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  .my-ticket-text-copy__textarea:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  /* ------------------------------
    history SP
  ------------------------------ */
  .history {
    padding: 0 20px;
  }
  .history--list {
    padding: 0;
  }
  .history__heading01 {
    padding: 0 20px;
  }
  .history__content {
    padding: 0 20px;
  }
  .history__page {
    margin: 0 0 20px;
    font-size: 14px;
  }
  .history__complete {
    margin: 0;
    font-weight: 700;
  }
  .history-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .history-list__item {
    margin-bottom: 16px;
  }
  .history-list__item:last-child {
    margin-bottom: 0;
  }
  .history-list__link {
    display: block;
    position: relative;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    color: #191919;
    text-decoration: none;
  }
  .history-list__top {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #dedede;
  }
  .history-list__tag {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
  }
  .history-list__title {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .history-list__date {
    display: flex;
    gap: 4px;
    margin: 0 0 2px;
    color: #535353;
    font-size: 14px;
  }
  .history-list__date span {
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/icon/gray/ico_calendar02.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .history-list__type {
    display: flex;
    margin: 0;
    color: #535353;
    font-size: 14px;
  }
  .history-list__type::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    background: url("../images/icon/gray/ico_ticket.svg") no-repeat center center/contain;
  }
  .history-list__type span {
    flex-shrink: 0;
  }
  .history-list__type span::after {
    content: "‖";
  }
  .history-list__alert {
    display: block;
    margin-bottom: 8px;
    padding: 5px;
    background: #ffe5e2;
    color: #ed0f00;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .history-list__attention {
    display: block;
    margin-bottom: 8px;
    padding: 4px;
    border: 1px solid #ed0f00;
    background: #fff;
    color: #ed0f00;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .history-list-info {
    margin: 0 0 4px;
  }
  .history-list-info:last-child {
    margin-bottom: 0;
  }
  .history-list-info__block {
    display: flex;
  }
  .history-list-info__title {
    color: #191919;
  }
  .history-list-info__title::after {
    content: "：";
  }
  .history-list-info__data {
    margin: 0;
    color: #191919;
  }
  .history-summary {
    margin-bottom: 40px;
  }
  .history-summary__tag {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
  }
  .history-summary__event-name {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 16px;
    color: #191919;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
  }
  .history-summary__event-name::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .history-summary__box {
    display: flex;
    gap: 16px;
  }
  .history-summary__image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 2px;
  }
  .history-summary__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .history-summary-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 4px;
  }
  .history-summary-list__block {
    display: flex;
    gap: 8px;
  }
  .history-summary-list__block:last-child {
    margin-bottom: 0;
  }
  .history-summary-list__title span {
    display: block;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .history-summary-list__data {
    width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .history-summary-list__data span {
    display: block;
  }
  .history-summary-list__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .history-summary-list__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .history-summary-list__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .history-summary-list__owner {
    background-image: url("../images/icon/black/ico_apartment.svg");
  }
  .history-summary-list__link {
    color: #191919;
  }
  .history-summary-list__sub-time {
    display: flex;
    gap: 0 8px;
    flex-wrap: wrap;
    align-items: center;
  }
  .history-summary-list-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    color: #535353;
    font-size: 12px;
    gap: 0 4px;
  }
  .history-summary-list-time--large {
    color: #191919;
    font-size: 14px;
  }
  .history-summary-list-time__date {
    margin: 0;
  }
  .history-detail {
    padding: 0 20px;
  }
  .history-detail__message {
    margin-bottom: 40px;
  }
  .history-detail__section-wrap {
    display: flex;
    flex-direction: column;
    margin: 0 -20px 40px;
    overflow: hidden;
    background: #f6f6f6;
    gap: 16px;
  }
  .history-detail__section {
    padding: 24px 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .history-detail__section:first-child {
    padding-top: 0;
  }
  .history-detail__section:last-child {
    padding-bottom: 0;
    box-shadow: none;
  }
  .history-detail__title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .history-detail__text {
    margin: 0;
  }
  .history-detail__tag {
    margin-bottom: 4px;
  }
  .history-detail__note {
    margin-bottom: 8px;
  }
  .history-detail__button-box {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
  .history-table {
    width: 100%;
    margin-bottom: 16px;
    border-spacing: 0;
  }
  .history-table:last-child {
    margin-bottom: 0;
  }
  .history-table tr {
    display: flex;
    border-bottom: 1px solid #dedede;
  }
  .history-table tr:last-child {
    border-bottom: 0;
  }
  .history-table__title {
    width: 110px;
    padding: 17px 4px 15px 0;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
  }
  .history-table tr:first-child .history-table__title {
    padding-top: 2px;
  }
  .history-table tr:last-child .history-table__title {
    padding-bottom: 0;
  }
  .history-table__data {
    flex: 1;
    padding: 15px 0;
  }
  .history-table tr:first-child .history-table__data {
    padding-top: 0;
  }
  .history-table tr:last-child .history-table__data {
    padding-bottom: 0;
  }
  .history-detail-cancel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 40px;
  }
  .history-detail-cancel__list {
    display: flex;
    margin: 0;
  }
  .history-detail-cancel__list-title::after {
    content: "：";
  }
  .history-detail-cancel__list-data {
    margin: 0;
  }
  /* ------------------------------
    news SP
  ------------------------------ */
  .news {
    padding: 0 20px;
  }
  .news-user-list__heading01 {
    padding: 0 20px;
  }
  .news-user-list__inner {
    padding: 0 20px;
  }
  .news-button-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .news-list {
    margin: 0 0 16px;
    padding: 0;
    list-style-type: none;
    border-top: 1px solid #dedede;
  }
  .news-list__item {
    position: relative;
    transition: 0.3s all;
    border-bottom: 1px solid #dedede;
  }
  .is-editing .news-list__item {
    padding-left: 35px;
  }
  .news-list__item:last-child {
    margin-bottom: 0;
  }
  .news-list__link {
    display: block;
    position: relative;
    padding: 16px 26px 16px 0;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
  }
  .news-list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .is-editing .news-list__link {
    padding-right: 0;
    pointer-events: none;
  }
  .is-editing .news-list__link::before {
    opacity: 0;
  }
  .news-list__head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
  }
  .news-list__title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 400;
  }
  .news-list__title span {
    margin: 3px 8px 0 0;
    vertical-align: top;
  }
  .news-list__date {
    display: block;
    font-size: 12px;
    line-height: 1.5;
  }
  .news-list__from {
    overflow: hidden;
    color: #191919;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .news-list__badge {
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ed2769;
    font-size: 0;
  }
  .news-list__subject {
    display: -webkit-box;
    position: relative;
    margin: 0 0 4px;
    overflow: hidden;
    color: #191919;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news-list__subject:has(.news-list__badge) {
    padding-left: 16px;
    font-weight: 700;
  }
  .news-list__label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s all;
    opacity: 0;
  }
  .is-editing .news-list__label {
    opacity: 1;
  }
  .news-list__label::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #08b5ae;
    border-radius: 4px;
    background: #fff;
  }
  .news-list__label::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    width: 0;
    height: 20px;
    transition: 0.3s all;
    background: url("../images/icon/main/ico_check.svg") no-repeat 0 0/auto 100%;
  }
  .news-list__label:has(:checked)::after {
    width: 20px;
  }
  .news-list__checkbox {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    appearance: none;
  }
  .is-editing .news-list__checkbox {
    display: block;
  }
  .news-detail__head {
    margin-bottom: 24px;
  }
  .news-detail__status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .news-detail__from {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .news-detail__date {
    font-size: 16px;
    font-weight: 700;
  }
  .news-detail__date-time {
    display: block;
    color: #535353;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
  }
  .news-detail__heading {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .news-detail__heading:last-child {
    margin-bottom: 0;
  }
  .news-detail__heading span {
    margin: -4px 8px 0 0;
    vertical-align: middle;
  }
  .news-detail__section {
    margin-bottom: 24px;
  }
  .news-detail__section:last-child {
    margin-bottom: 0;
  }
  .news-detail__text {
    margin-bottom: 24px;
    padding: 24px 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }
  .news-detail__text:last-child {
    margin-bottom: 0;
  }
  .news-detail__text a {
    color: #17349c;
  }
  .news-detail__link {
    color: #06e;
    text-decoration: underline;
  }
  .news-detail__file-upload {
    padding: 16px;
    background: #f6f6f6;
  }
  .news-detail__title {
    margin: 0 0 8px;
    color: #535353;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .news-detail__file-block {
    display: flex;
    gap: 16px;
  }
  .news-detail__file-box {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .news-detail__file-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
  }
  .news-detail__file-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .news-detail__file-text {
    flex: 1;
    width: 100%;
    word-break: break-all;
  }
  .news-action {
    z-index: 1;
    margin-bottom: 8px;
    transition: 0.3s all;
    background: #fff;
  }
  .is-editing .news-action {
    position: sticky;
    top: 0;
    left: 0;
    margin-bottom: 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
  }
  .news-action__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    transition: 0.3s all;
  }
  .is-editing .news-action__inner {
    padding: 8px 20px;
  }
  .news-action__block {
    display: none;
    position: relative;
  }
  .is-editing .news-action__block {
    display: flex;
    gap: 8px;
  }
  .news-action__block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
    background: #dedede;
  }
  .news-action__control {
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #191919;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .news-action__control:focus {
    outline: 0;
  }
  .news-action__control:focus-visible {
    border-radius: 4px;
    outline: 6px solid #17349c;
  }
  .news-action__edit {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    min-height: 39px;
    padding: 7px 15px;
    border: 1px solid #535353;
    border-radius: 2px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    gap: 4px;
  }
  .is-editing .news-action__edit {
    display: none;
  }
  .news-action__edit::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -2px;
    background: url("../images/icon/black/ico_checkbox.svg") no-repeat center center/contain;
  }
  .news-action__cancel {
    display: none;
    gap: 4px;
    align-items: center;
  }
  .is-editing .news-action__cancel {
    display: flex;
  }
  .news-action__cancel::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    background: url("../images/icon/black/ico_close.svg") no-repeat center center/contain;
  }
  .news-action__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 84px;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 12px;
    line-height: 1.5;
  }
  .news-action__button:focus {
    outline: 0;
  }
  .news-action__button:focus-visible {
    border-radius: 4px;
    outline: 6px solid #17349c;
  }
  .news-action__button::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: url("../images/icon/black/ico_mail_close.svg") no-repeat center center/contain;
  }
  .news-action__button--unread::before {
    background-image: url("../images/icon/black/ico_mail_open.svg");
  }
  /* ------------------------------
    favorite SP
  ------------------------------ */
  .favorite {
    padding: 0 20px;
  }
  .favorite__box {
    padding: 32px 24px;
    background: #f6f6f6;
  }
  .favorite__button-box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .favorite-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .favorite-list__item {
    display: flex;
    position: relative;
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    gap: 16px;
  }
  .favorite-list__item:last-child {
    margin-bottom: 0;
  }
  .favorite-list__image-box {
    flex-shrink: 0;
  }
  .favorite-list__tag {
    position: absolute;
    top: 0;
    left: 0;
  }
  .favorite-list__image {
    width: 100px;
    height: 100px;
  }
  .favorite-list__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .favorite-list__info {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .favorite-list__info-inner {
    flex: 1;
    margin-bottom: 8px;
  }
  .favorite-list__title {
    display: -webkit-inline-box;
    margin: 0 0 2px;
    overflow: hidden;
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .favorite-list__block {
    margin-bottom: 5px;
  }
  .favorite-list__text {
    display: -webkit-box;
    position: relative;
    margin: 0 0 4px;
    padding-left: 22px;
    overflow: hidden;
    color: #191919;
    font-size: 14px;
    line-height: 1.35;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .favorite-list__text--date {
    display: block;
    word-break: keep-all;
  }
  .favorite-list__text--date span {
    display: inline-block;
  }
  .favorite-list__text:last-child {
    margin-bottom: 0;
  }
  .favorite-list__text span:first-child {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .favorite-list__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .favorite-list__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .favorite-list__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .favorite-list__desc {
    display: none;
  }
  .favorite-list__button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-left: auto;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 14px;
    line-height: 1.65;
  }
  .favorite-list__button::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-top: -2px;
    background: url("../images/icon/black/ico_delete.svg") no-repeat center center/contain;
  }
  /* ------------------------------
    account SP
  ------------------------------ */
  .account {
    padding: 0 20px;
  }
  .account__heading-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .account__heading {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .account__heading-box .account__heading {
    margin: 0;
  }
  .account__section-wrap {
    margin: 0 -20px;
    padding: 0 20px 16px;
    overflow: hidden;
    background: #f6f6f6;
  }
  .account__section {
    margin: 0 -20px 16px;
    padding: 24px 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .account__section:first-child {
    padding-top: 0;
  }
  .account__head {
    margin-bottom: 24px;
  }
  .account__text {
    margin: 0 0 8px;
  }
  .account__text strong {
    font-weight: 700;
  }
  .account__text:last-child {
    margin-bottom: 0;
  }
  .account__text-large {
    margin: 0 0 8px;
    font-weight: 700;
    line-height: 1.5;
  }
  .account__text-large:last-child {
    margin-bottom: 0;
  }
  .account__text-em {
    color: #ed2769;
  }
  .account__link-box {
    display: block;
    text-align: right;
  }
  .account__list {
    margin-bottom: 40px;
  }
  .account-link {
    display: block;
    position: relative;
    width: fit-content;
    margin-left: auto;
    padding: 0 20px 0 0;
    border: 0;
    background: transparent;
    color: #191919;
    text-decoration: none;
    word-break: break-all;
  }
  .account-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/100% 100%;
  }
  .account-table {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dedede;
  }
  .account-table--border-zero {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .account-table--border {
    padding-top: 16px;
    border-top: 1px solid #dedede;
  }
  .account-table:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .account-table__section {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dedede;
  }
  .account-table__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .account-table__block {
    flex: 1;
  }
  .account-table__title {
    margin: 0 0 4px;
    color: #6e6e6e;
    font-size: 12px;
    font-weight: 700;
  }
  .account-table__data {
    margin: 0;
    word-break: break-all;
  }
  .account-table__tag {
    margin-bottom: 4px;
  }
  .account-card {
    margin-bottom: 24px;
  }
  .account-card__box {
    padding: 24px;
    background: #f6f6f6;
  }
  .account-card__text {
    margin: 0 0 16px;
    text-align: center;
  }
  .account-card__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
  }
  .account-card__register {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
  .account-card__button-box {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  .account-card-list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 5px;
  }
  .account-card-list__item {
    box-sizing: border-box;
    width: 65px;
    height: 40px;
    padding: 7px;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 6px;
    background: #fff;
  }
  .account-card-list__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .account-card-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    border-radius: 2px;
    background: #fff2eb;
  }
  .account-card-note__text {
    margin: 0 0 8px;
    color: #cc4100;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .account-card-delete {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
  .account-card-delete__link {
    display: flex;
    align-items: center;
    color: #191919;
    text-decoration: none;
    gap: 4px;
  }
  .account-card-delete__link::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-top: -2px;
    background: url("../images/icon/black/ico_delete.svg") no-repeat center center/contain;
  }
  .account-code {
    padding: 24px;
    background: #f6f6f6;
  }
  .account-code__text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    gap: 8px;
  }
  .account-code__text span {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .account-code__button {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #afafaf;
  }
  .account-code__note {
    margin-bottom: 16px;
  }
  .account-switch-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .account-switch-list__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #dedede;
  }
  .account-switch-list__item:first-child {
    border-top: 1px solid #dedede;
  }
  .account-switch-list__text {
    flex: 1;
    margin: 0;
  }
  .account-switch-list label {
    padding-top: 1px;
  }
  /* ------------------------------
    login-history SP
  ------------------------------ */
  .login-history {
    padding: 0 20px;
  }
  .login-history-table-wrap {
    margin-right: -20px;
    padding-right: 20px;
    overflow-x: auto;
  }
  .login-history-table {
    border-collapse: collapse;
  }
  .login-history-table__title {
    box-sizing: border-box;
    padding: 12px 10px;
    background: #08b5ae;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    white-space: nowrap;
  }
  .login-history-table__title:first-child {
    padding-left: 16px;
  }
  .login-history-table__title:last-child {
    padding-right: 16px;
  }
  .login-history-table__data {
    padding: 12px 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .login-history-table__data:first-child {
    padding-left: 16px;
  }
  .login-history-table__data:last-child {
    padding-right: 16px;
  }
  .login-history-table tr:nth-child(odd) .login-history-table__data {
    background: #fff;
  }
  .login-history-table tr:nth-child(even) .login-history-table__data {
    background: #edfaf8;
  }
  /* ------------------------------
    utility SP
  ------------------------------ */
  .u-mw100 {
    min-width: 100px;
  }
  .u-mw120 {
    min-width: 120px;
  }
  .u-mw220 {
    min-width: 220px;
  }
  .u-mw240 {
    min-width: 240px;
  }
  .u-mw300 {
    min-width: 300px;
  }
}
/* 画面サイズが768px以上はここを読み込む */
@media (768px <= width) {
  /* ------------------------------
    base PC
  ------------------------------ */
  html {
    background: #fff;
  }
  html.is-fixed {
    height: 100%;
    overflow-y: scroll;
  }
  body {
    box-sizing: border-box;
    color: #191919;
    font-family: "Hiragino Kaku Gothic Pro", meiryo, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    image-rendering: auto;
  }
  .is-fixed body {
    position: fixed;
    width: 100%;
  }
  *:focus-visible {
    border-radius: 4px;
    outline: 4px solid #17349c;
  }
  img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    image-rendering: auto;
  }
  a {
    transition: 0.3s all;
  }
  button {
    transition: 0.3s all;
  }
  button:hover {
    cursor: pointer;
  }
  ::placeholder {
    color: #afafaf;
  }
  .only-sp {
    display: none !important;
  }
  .only-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    pointer-events: none;
  }
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .main {
    flex: 1;
  }
  /* ------------------------------
    mixin PC
  ------------------------------ */
  /* ------------------------------
    header PC
  ------------------------------ */
  .header {
    padding: 0 40px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  }
  .header__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 16px 0;
  }
  .header__logo {
    display: block;
    width: 145px;
  }
  .header__logo img {
    width: 100%;
    height: auto;
  }
  .header__name {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0 auto;
    font-size: 14px;
    gap: 4px;
  }
  .header__name::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: -2px;
    background: url("../images/icon/black/ico_person.svg") no-repeat center center/contain;
  }
  .header__name span {
    font-weight: 700;
  }
  .header-nav__button {
    display: none;
  }
  .header-nav__list {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .header-nav__item {
    position: relative;
    width: 50px;
  }
  .header-nav__link {
    display: block;
    position: relative;
    width: 100%;
    padding: 26px 0 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
  }
  .header-nav__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .header-nav__link:hover::before {
    background: #08b5ae;
  }
  .header-nav__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translateX(-50%);
    transition: 0.3s all;
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: 100% 100%;
    background: #191919;
  }
  .header-nav__link--search::before {
    mask-image: url("../images/icon/black/ico_search.svg");
  }
  .header-nav__link--login::before {
    mask-image: url("../images/icon/black/ico_login.svg");
  }
  .header-nav__link--menu::before {
    mask-image: url("../images/icon/black/ico_menu.svg");
  }
  .header-nav__link.is-open::before {
    mask-image: url("../images/icon/black/ico_close.svg");
  }
  .header-nav__open span {
    position: absolute;
    top: 0;
    right: 6px;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #ed2769;
    font-size: 0;
  }
  .is-open > .header-nav__open {
    display: none;
  }
  .header-nav__close {
    display: none;
  }
  .is-open > .header-nav__close {
    display: block;
  }
  .header-overlay {
    display: none;
    position: fixed;
    z-index: 5;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: rgba(0, 0, 0, 0.4);
  }
  .header-menu {
    display: none;
    position: absolute;
    z-index: 6;
    top: 100%;
    right: 0;
    min-width: 324px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    transform: translateY(16px);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .header-menu__close {
    display: none;
  }
  .header-search {
    width: 590px;
  }
  .header-search__head {
    padding: 24px;
  }
  .header-search-list {
    margin: 0;
    padding: 0 24px;
    list-style-type: none;
  }
  .header-search-list__item {
    padding: 24px 0;
    border-top: 1px solid #dedede;
  }
  .header-search-list__toggle {
    display: block;
    position: relative;
    width: 100%;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    background: #fff;
    color: #191919;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }
  .header-search-list__toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    width: 18px;
    height: 2px;
    transform: translateY(-50%);
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .header-search-list__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 9px;
    width: 2px;
    height: 18px;
    transform: translateY(-50%);
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .header-search-list__item.is-open .header-search-list__toggle::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .header-search-list__toggle:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .header-search-list__toggle:hover::before, .header-search-list__toggle:hover::after {
    background: #08b5ae;
  }
  .header-search-list__panel {
    display: none;
    padding-top: 12px;
  }
  .header-search-child-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
    padding: 0;
    list-style-type: none;
    gap: 24px 30px;
  }
  .header-search-child-list__link {
    display: block;
    position: relative;
    padding-right: 26px;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
    white-space: nowrap;
  }
  .header-search-child-list__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .header-search-child-list__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/main/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .header-account {
    padding-bottom: 24px;
  }
  .header-account__inner {
    margin-bottom: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid #dedede;
  }
  .header-account__name {
    position: relative;
    margin: 0 0 16px;
    padding: 0 0 16px 28px;
    border-bottom: 1px solid #dedede;
  }
  .header-account__name::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../images/icon/main/ico_person.svg") no-repeat center center/contain;
  }
  .header-account__name span {
    margin-right: 4px;
    font-weight: 700;
  }
  .header-account-list {
    display: flex;
    flex-direction: column;
    margin: 0 -24px 16px;
    padding: 0 24px 16px;
    list-style-type: none;
    border-bottom: 1px solid #dedede;
    gap: 12px;
  }
  .header-account-list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .header-account-list__link {
    display: inline-flex;
    position: relative;
    align-items: center;
    padding-left: 28px;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
    gap: 4px;
  }
  .header-account-list__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .header-account-list__link::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
  }
  .header-account-list__link--top::before {
    background-image: url("../images/icon/main/ico_home.svg");
  }
  .header-account-list__link--ticket::before {
    background-image: url("../images/icon/main/ico_qr.svg");
  }
  .header-account-list__link--history::before {
    background-image: url("../images/icon/main/ico_history.svg");
  }
  .header-account-list__link--favorite::before {
    background-image: url("../images/icon/main/ico_favorite.svg");
  }
  .header-account-list__link--news::before {
    background-image: url("../images/icon/main/ico_notifications.svg");
  }
  .header-account-list__link--inquiry::before {
    background-image: url("../images/icon/main/ico_chat.svg");
  }
  .header-account-list__link--setting::before {
    background-image: url("../images/icon/main/ico_setting.svg");
  }
  .header-account-list__link--mail::before {
    background-image: url("../images/icon/main/ico_mail_close.svg");
  }
  .header-account-list__link--login-history::before {
    background-image: url("../images/icon/main/ico_lock.svg");
  }
  .header-account-list__number {
    padding: 4px 8px 3px;
    border-radius: 100px;
    background: #ed2769;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
  }
  .header-account-logout {
    padding: 0 24px;
  }
  .header-account-logout__link {
    display: inline-block;
    position: relative;
    padding: 0 0 0 28px;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    line-height: 1.7;
    text-decoration: none;
  }
  .header-account-logout__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .header-account-logout__link::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../images/icon/main/ico_logout.svg") no-repeat center center/100% 100%;
  }
  .header-top {
    display: flex;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: center;
    height: 90px;
    padding-top: 20px;
    overflow: hidden;
  }
  .header-top::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 50%;
    width: 486px;
    height: 373px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #fff;
  }
  .header-top__logo {
    display: block;
    width: 180px;
  }
  .header-top__logo img {
    width: 100%;
    height: auto;
  }
  /* ------------------------------
    button PC
  ------------------------------ */
  .button-paramount {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 60px;
    padding: 17px 36px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #ed2769;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 8px;
  }
  .button-paramount--small {
    width: 150px;
    min-width: auto;
    padding: 17px 20px;
  }
  .button-paramount--full {
    width: 100%;
    min-width: auto;
  }
  .button-paramount[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-paramount:hover {
    background: #c80253;
  }
  .button-primary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 60px;
    padding: 17px 36px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #08b5ae;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 8px;
  }
  .button-primary--small {
    width: 150px;
    min-width: auto;
    padding: 17px 20px;
  }
  .button-primary--full {
    width: 100%;
    min-width: auto;
  }
  .button-primary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-primary:hover {
    background: #0f7f7b;
  }
  .button-secondary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 60px;
    padding: 17px 36px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #fff;
    color: #08b5ae;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 8px;
    border: 1px solid #08b5ae;
  }
  .button-secondary--small {
    width: 150px;
    min-width: auto;
    padding: 17px 20px;
  }
  .button-secondary--full {
    width: 100%;
    min-width: auto;
  }
  .button-secondary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-secondary:hover {
    border-color: #08b5ae;
    background: #def2ef;
  }
  .button-tertiary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 60px;
    padding: 17px 36px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #def2ef;
    color: #08b5ae;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 8px;
  }
  .button-tertiary--small {
    width: 150px;
    min-width: auto;
    padding: 17px 20px;
  }
  .button-tertiary--full {
    width: 100%;
    min-width: auto;
  }
  .button-tertiary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-tertiary:hover {
    background: #bae8e2;
  }
  .button-quaternary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 60px;
    padding: 17px 36px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #f6f6f6;
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 8px;
    border: 1px solid #dedede;
  }
  .button-quaternary--small {
    width: 150px;
    min-width: auto;
    padding: 17px 20px;
  }
  .button-quaternary--full {
    width: 100%;
    min-width: auto;
  }
  .button-quaternary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-quaternary:hover {
    background: #dedede;
  }
  .button-owner-primary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 60px;
    padding: 17px 36px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #17349c;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 8px;
    min-width: 350px;
  }
  .button-owner-primary--small {
    width: 150px;
    min-width: auto;
    padding: 17px 20px;
  }
  .button-owner-primary--full {
    width: 100%;
    min-width: auto;
  }
  .button-owner-primary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-owner-primary:hover {
    background: #00215c;
  }
  .button-owner-secondary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    min-height: 60px;
    padding: 17px 36px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #fff;
    color: #17349c;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 8px;
    min-width: 350px;
    border: 1px solid #17349c;
  }
  .button-owner-secondary--small {
    width: 150px;
    min-width: auto;
    padding: 17px 20px;
  }
  .button-owner-secondary--full {
    width: 100%;
    min-width: auto;
  }
  .button-owner-secondary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-owner-secondary:hover {
    background: #f5f9ff;
  }
  .button-function-primary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 6px 15px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #191919;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 4px;
    border-color: #191919;
  }
  .button-function-primary--large {
    min-width: 200px;
    padding: 12px 15px;
    font-size: 16px;
  }
  .button-function-primary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-function-primary:hover {
    background: #535353;
  }
  .button-function-secondary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 6px 15px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #fff;
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 4px;
    border-color: #535353;
  }
  .button-function-secondary--large {
    min-width: 200px;
    padding: 12px 15px;
    font-size: 16px;
  }
  .button-function-secondary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-function-secondary:hover {
    border-color: #191919;
    background: #dedede;
  }
  .button-function-main-primary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 6px 15px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #08b5ae;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 4px;
  }
  .button-function-main-primary--large {
    min-width: 200px;
    padding: 12px 15px;
    font-size: 16px;
  }
  .button-function-main-primary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-function-main-primary:hover {
    background: #0f7f7b;
  }
  .button-function-main-secondary {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 6px 15px;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #fff;
    color: #08b5ae;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    gap: 4px;
    border: 1px solid #08b5ae;
  }
  .button-function-main-secondary--large {
    min-width: 200px;
    padding: 12px 15px;
    font-size: 16px;
  }
  .button-function-main-secondary[aria-disabled=true] {
    background: #afafaf;
    color: #dedede;
    pointer-events: none;
  }
  .button-function-main-secondary:hover {
    background: #def2ef;
  }
  .button-arrow-right::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: url("../images/icon/white/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .button-secondary.button-arrow-right::before {
    background-image: url("../images/icon/main/ico_arrow_right.svg");
  }
  .button-tertiary.button-arrow-right::before {
    background-image: url("../images/icon/main/ico_arrow_right.svg");
  }
  .button-quaternary.button-arrow-right::before {
    background-image: url("../images/icon/gray/ico_arrow_right02.svg");
  }
  .button-owner-secondary.button-arrow-right::before {
    background-image: url("../images/icon/owner/ico_arrow_right.svg");
  }
  [aria-disabled=true].button-arrow-right::before {
    opacity: 0;
  }
  .button-arrow-right:hover::before {
    right: 11px;
  }
  .button-arrow-left::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: url("../images/icon/white/ico_arrow_left.svg") no-repeat center center/contain;
  }
  .button-secondary.button-arrow-left::before {
    background-image: url("../images/icon/main/ico_arrow_left.svg");
  }
  .button-tertiary.button-arrow-left::before {
    background-image: url("../images/icon/main/ico_arrow_left.svg");
  }
  .button-quaternary.button-arrow-left::before {
    background-image: url("../images/icon/gray/ico_arrow_left02.svg");
  }
  .button-owner-secondary.button-arrow-left::before {
    background-image: url("../images/icon/owner/ico_arrow_left.svg");
  }
  [aria-disabled=true].button-arrow-left::before {
    opacity: 0;
  }
  .button-arrow-left:hover::before {
    left: 11px;
  }
  .button-icon {
    width: 30px;
    min-width: auto;
    height: 30px;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .button-sns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    border-radius: 2px;
  }
  .button-sns--x {
    background: #000;
  }
  .button-sns--x:hover {
    background: #535353;
  }
  .button-sns--line {
    background: #06c755;
  }
  .button-sns--line:hover {
    background: #00b74b;
  }
  .button-sns--fb {
    background: #1877f2;
  }
  .button-sns--fb:hover {
    background: #0d6ae4;
  }
  .button-sns img {
    width: 40px;
  }
  .button-box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-top: 64px;
    gap: 24px;
  }
  /* ------------------------------
    icon PC
  ------------------------------ */
  [class^=icon-] {
    flex-shrink: 0;
    font-size: 0;
  }
  .icon-share {
    display: block;
    width: 30px;
    height: 30px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_share.svg") no-repeat center center/contain;
  }
  .button-icon:hover .icon-share {
    background: #08b5ae;
  }
  .button-icon--small .icon-share {
    width: 24px;
    height: 24px;
  }
  .icon-blank {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_blank.svg") no-repeat center center/contain;
    font-size: 0;
    vertical-align: text-top;
  }
  .text-link-inline .icon-blank {
    background: #17349c;
  }
  .text-link:hover .icon-blank {
    background: #08b5ae;
  }
  .text-link-inline:hover .icon-blank {
    background: #00215c;
  }
  .icon-blank--small {
    width: 18px;
    height: 18px;
  }
  .button-primary .icon-blank {
    position: static;
    width: 20px;
    height: 20px;
    margin: 0;
    background: #fff;
  }
  .button-secondary .icon-blank {
    position: static;
    width: 20px;
    height: 20px;
    margin: 0;
    background: #08b5ae;
  }
  .promoter-info-button .icon-blank {
    width: 16px;
    height: 16px;
  }
  .text-link--sub .icon-blank {
    background: #6e6e6e;
  }
  .icon-alert {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: url("../images/icon/pink/ico_alert.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .message-box--alert .icon-alert {
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("../images/icon/pink/ico_alert.svg");
  }
  .my-top-alert__text .icon-alert {
    top: 1px;
    width: 18px;
    height: 18px;
  }
  .icon-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: url("../images/icon/orange/ico_info.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .message-box--important .icon-info {
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url("../images/icon/orange/ico_info_line.svg");
  }
  .inquiry-intro__title .icon-info {
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url("../images/icon/orange/ico_info_line.svg");
  }
  .icon-error {
    position: absolute;
    top: 1px;
    left: 0;
    width: 16px;
    height: 16px;
    background: url("../images/icon/red/ico_error.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .icon-hint {
    position: absolute;
    top: 3px;
    left: 0;
    width: 18px;
    height: 18px;
    background: url("../images/icon/orange/ico_hint.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .icon-favorite {
    display: block;
    width: 30px;
    height: 30px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_favorite.svg") no-repeat center center/contain;
  }
  .button-icon:hover .icon-favorite {
    background: #08b5ae;
  }
  .icon-favorite.is-registered {
    mask: url("../images/icon/black/ico_favorite_filled.svg") no-repeat center center/contain;
  }
  .button-icon:hover .icon-favorite.is-registered {
    background: #08b5ae;
  }
  .icon-mail {
    width: 20px;
    height: 20px;
    margin-top: -1px;
    background: url("../images/icon/white/ico_mail.svg") no-repeat center center/contain;
  }
  .button-secondary .icon-mail {
    background-image: url("../images/icon/main/ico_mail.svg");
  }
  .icon-line {
    width: 24px;
    height: 24px;
    background: url("../images/icon/white/ico_line.svg") no-repeat center center/contain;
  }
  .icon-download {
    width: 18px;
    height: 18px;
    margin-top: -1px;
    background: url("../images/icon/black/ico_download.svg") no-repeat center center/contain;
  }
  .icon-pc {
    width: 20px;
    height: 20px;
    margin-top: -1px;
    background: url("../images/icon/white/ico_pc.svg") no-repeat center center/contain;
  }
  .button-secondary .icon-pc {
    background-image: url("../images/icon/main/ico_pc.svg");
  }
  .icon-copy {
    width: 20px;
    height: 20px;
    background: url("../images/icon/main/ico_copy.svg") no-repeat center center/contain;
  }
  .icon-seat {
    width: 18px;
    height: 18px;
    margin-top: -2px;
    background: url("../images/icon/white/ico_chair.svg") no-repeat center center/contain;
  }
  .icon-add {
    width: 24px;
    height: 24px;
    background: url("../images/icon/white/ico_add.svg") no-repeat center center/contain;
  }
  .icon-edit {
    width: 16px;
    height: 16px;
    margin-top: -2px;
    background: url("../images/icon/black/ico_edit.svg") no-repeat center center/contain;
  }
  .button-function-secondary--large .icon-edit {
    width: 24px;
    height: 24px;
    margin-top: -4px;
  }
  .icon-search {
    width: 18px;
    height: 18px;
    margin-top: -2px;
    background: url("../images/icon/white/ico_search.svg") no-repeat center center/contain;
  }
  .icon-qr {
    width: 24px;
    height: 24px;
    margin-top: -1px;
    background: url("../images/icon/white/ico_qr.svg") no-repeat center center/contain;
  }
  .icon-close {
    width: 24px;
    height: 24px;
    margin-top: -1px;
    background: url("../images/icon/white/ico_close.svg") no-repeat center center/contain;
  }
  .icon-return {
    width: 24px;
    height: 24px;
    background: url("../images/icon/white/ico_arrow_response.svg") no-repeat center center/contain;
  }
  .icon-movie {
    width: 24px;
    height: 24px;
    background: url("../images/icon/white/ico_movie.svg") no-repeat center center/contain;
  }
  .icon-print {
    width: 16px;
    height: 16px;
    margin-top: -1px;
    background: url("../images/icon/black/ico_print.svg") no-repeat center center/contain;
  }
  .icon-text-copy {
    width: 18px;
    height: 18px;
    margin-top: -1px;
    background: url("../images/icon/black/ico_text_copy.svg") no-repeat center center/contain;
  }
  /* ------------------------------
    input PC
  ------------------------------ */
  .input-text {
    position: relative;
    max-width: 460px;
  }
  .input-text__input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 12px 15px;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  .input-text__input.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-text__input:hover {
    border-color: #191919;
  }
  .input-text__input:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
  }
  .input-text__input:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-textarea {
    position: relative;
    max-width: 100%;
  }
  .input-textarea__input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 250px;
    padding: 12px 15px;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  .input-textarea__input.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-textarea__input:hover {
    border-color: #191919;
  }
  .input-textarea__input:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
  }
  .input-textarea__input:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-select {
    position: relative;
    max-width: 460px;
  }
  .input-select.is-hide {
    display: none;
  }
  .input-select:has(:disabled)::after {
    background-image: url("../images/icon/gray/ico_arrow_down.svg");
  }
  .input-select:has(.is-error)::after {
    background-image: url("../images/icon/red/ico_arrow_down.svg");
  }
  .input-select--medium {
    width: 200px;
  }
  .input-select--small {
    width: 95px;
  }
  .input-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_arrow_down.svg") no-repeat 0 0/100% 100%;
    pointer-events: none;
  }
  .input-select__select {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 12px 40px 12px 15px;
    overflow: hidden;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    color: #191919;
    font-size: 16px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    appearance: none;
  }
  .input-select__select.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-select__select:hover {
    border-color: #191919;
  }
  .input-select__select:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
    color: #afafaf;
    pointer-events: none;
  }
  .input-select__select:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-radio {
    display: inline-block;
    position: relative;
    transition: 0.3s all;
  }
  .input-radio:has(:disabled) {
    pointer-events: none;
  }
  .input-radio::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -8px;
    width: 34px;
    height: 34px;
    transition: 0.3s all;
    border-radius: 50%;
    opacity: 0;
    background: #def2ef;
    pointer-events: none;
  }
  .input-radio:hover::before {
    opacity: 1;
  }
  .input-radio__input {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    appearance: none;
  }
  .input-radio__text {
    display: inline-block;
    position: relative;
    padding-left: 26px;
    color: #191919;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
  }
  .input-radio__input:disabled + .input-radio__text {
    color: #afafaf;
    pointer-events: none;
  }
  .input-radio__text::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    border: 1px solid #08b5ae;
    border-radius: 50%;
    background: #fff;
  }
  .input-radio__input.is-error + .input-radio__text::before {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-radio__input:disabled + .input-radio__text::before {
    border-color: #dedede;
  }
  .input-radio__text::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 4px;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 0.3s all;
    border-radius: 50%;
    background: #08b5ae;
  }
  .input-radio__input:checked + .input-radio__text::after {
    transform: scale(1);
  }
  .input-radio__input:disabled + .input-radio__text::after {
    background: #dedede;
  }
  .input-check {
    display: inline-block;
    position: relative;
    transition: 0.3s all;
  }
  .input-check:has(:disabled) {
    pointer-events: none;
  }
  .input-check::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -8px;
    width: 36px;
    height: 36px;
    transition: 0.3s all;
    border-radius: 50%;
    opacity: 0;
    background: #def2ef;
    pointer-events: none;
  }
  .input-check:hover::before {
    opacity: 1;
  }
  .input-check--block {
    display: block;
    padding: 15px;
    border: 1px solid #08b5ae;
    border-radius: 2px;
    background: #fff;
  }
  .input-check--block::before {
    content: none;
  }
  .input-check--block:has(.is-error) {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-check--block:has(.is-error):hover {
    background: #edfaf8;
  }
  .input-check--block:not(:has(.is-error)):has(:checked) {
    background: #edfaf8;
  }
  .input-check--block:not(:has(.is-error)):hover {
    background: #edfaf8;
  }
  .input-check--block:has(:checked):not(:has(.is-error)):hover {
    background: #edfaf8;
  }
  .input-check__input {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    appearance: none;
  }
  .input-check__text {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    color: #191919;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
  }
  .input-check__input:disabled + .input-check__text {
    color: #535353;
    pointer-events: none;
  }
  .input-check__text::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #08b5ae;
    border-radius: 4px;
    background: #fff;
  }
  .input-check__input:disabled + .input-check__text::before {
    border-color: #dedede;
    background: #f6f6f6;
  }
  .input-check__input.is-error + .input-check__text::before {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-check--block .is-error + .input-check__text::before {
    background: #fff;
  }
  .input-check__text::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 0;
    height: 20px;
    transition: 0.3s all;
    background: url("../images/icon/main/ico_check.svg") no-repeat 0 0/auto 100%;
  }
  .input-check__input:checked + .input-check__text::after {
    width: 20px;
  }
  .input-check__input:disabled + .input-check__text::after {
    background-image: url("../images/icon/gray/ico_check.svg");
  }
  .input-date {
    display: inline-block;
    position: relative;
    max-width: 180px;
  }
  .input-date::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_calendar.svg") no-repeat 0 0/100% 100%;
    pointer-events: none;
  }
  .input-date:has(:disabled)::before {
    background-image: url("../images/icon/gray/ico_calendar.svg");
  }
  .input-date__input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 12px 48px 12px 15px;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    appearance: none;
  }
  .input-date__input::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  .input-date__input.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-date__input:hover {
    border-color: #191919;
  }
  .input-date__input:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
    color: #afafaf;
    pointer-events: none;
  }
  .input-date__input:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-password {
    position: relative;
    max-width: 460px;
  }
  .input-password__input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 12px 48px 12px 15px;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  .input-password__input::-ms-reveal {
    display: none;
  }
  .input-password__input.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-password:hover .input-password__input {
    border-color: #191919;
  }
  .input-password__input:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
  }
  .input-password__input:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-password__button {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 16px;
    width: 24px;
    height: 24px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    font-size: 0;
  }
  .input-password__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_visibility_off.svg") no-repeat center center/contain;
  }
  .is-visible .input-password__button::before {
    mask-image: url("../images/icon/black/ico_visibility.svg");
  }
  .input-password__button:hover::before {
    background: #08b5ae;
  }
  .input-search {
    position: relative;
    max-width: 460px;
  }
  .input-search--full {
    max-width: none;
  }
  .input-search__input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 12px 48px 12px 15px;
    overflow: hidden;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .input-search__input::-webkit-search-cancel-button {
    appearance: none;
  }
  .input-search__input.is-error {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .input-search__input:hover {
    border-color: #191919;
  }
  .input-search__input:disabled {
    border-color: #afafaf;
    background: #f6f6f6;
  }
  .input-search__input:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .input-search__button {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 16px;
    width: 24px;
    height: 24px;
    padding: 0;
    transform: translateY(-50%);
    transition: 0.3s all;
    border: 0;
    background: url("../images/icon/black/ico_search.svg") no-repeat 0 0/100% 100%;
    font-size: 0;
  }
  .input-switch {
    display: inline-block;
    position: relative;
  }
  .input-switch__input {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    appearance: none;
  }
  .input-switch__input:focus-visible {
    border-radius: 25px;
    outline-offset: 0;
  }
  .input-switch__button {
    display: block;
    position: relative;
    width: 55px;
    height: 25px;
    transition: 0.3s all;
    border-radius: 25px;
    background: #dedede;
    font-size: 0;
    cursor: pointer;
  }
  .input-switch__input:checked + .input-switch__button {
    background: #def2ef;
  }
  .input-switch__button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30px;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    transform: translate(-100%, -50%);
    transition: 0.3s all;
    border: 1px solid #535353;
    border-radius: 50%;
    background: #fff no-repeat center center/24px 24px;
    background-image: none;
    box-shadow: 0 0 10px rgba(25, 25, 25, 0.1);
  }
  .input-switch__input:checked + .input-switch__button::before {
    left: 100%;
    border-color: #08b5ae;
    background-color: #08b5ae;
    background-image: url("../images/icon/white/ico_check.svg");
  }
  .input-switch__button:hover::before {
    background-color: #535353;
  }
  .input-switch__input:checked + .input-switch__button:hover::before {
    border-color: #0f7f7b;
    background-color: #0f7f7b;
  }
  .input-sort {
    display: inline-block;
    position: relative;
    flex-shrink: 0;
  }
  .input-sort::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background: url("../images/icon/black/ico_sort.svg") no-repeat 0 0/100% 100%;
    pointer-events: none;
  }
  .input-sort__select {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 5px 10px 5px 35px;
    transition: 0.3s all;
    border: 1px solid #535353;
    border-radius: 2px;
    background: #fff;
    color: #191919;
    font-size: 14px;
    line-height: 1.7;
    cursor: pointer;
    appearance: none;
  }
  .input-sort__select:hover {
    border-color: #191919;
    background: #dedede;
  }
  /* ------------------------------
    label PC
  ------------------------------ */
  .label-info {
    display: inline-block;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 10px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50px;
    border-color: transparent;
    background: #535353;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .label-important {
    display: inline-block;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 10px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50px;
    border-color: transparent;
    background: #ed2769;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .label-order {
    display: inline-block;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 10px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50px;
    border-color: transparent;
    background: #008577;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .label-lottery {
    display: inline-block;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 10px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50px;
    border-color: #008577;
    background: #fff;
    color: #008577;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  /* ------------------------------
    tag PC
  ------------------------------ */
  .tag-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #17349c;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #17349c;
    background: #fff;
    color: #17349c;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-tertiary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #edf3ff;
    color: #17349c;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-tertiary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-error-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #ed0f00;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-error-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-error-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #ed0f00;
    background: #fff;
    color: #ed0f00;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-error-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-error-tertiary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #ffe5e2;
    color: #ed0f00;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-error-tertiary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-alert-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #ed2769;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-alert-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-alert-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #ed2769;
    background: #fff;
    color: #ed2769;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-alert-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-alert-tertiary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #ffe8f0;
    color: #ed2769;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-alert-tertiary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-important-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #cc4100;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-important-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-important-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #cc4100;
    background: #fff;
    color: #cc4100;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-important-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-info {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #dedede;
    background: #fff;
    color: #191919;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    min-width: 86px;
    font-weight: normal;
    text-align: center;
  }
  .tag-info--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-info-large {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #f6f6f6;
    color: #191919;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    height: 27px;
    padding: 5px 7px;
    font-size: 14px;
    font-weight: normal;
  }
  .tag-info-large--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-normal-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #535353;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-normal-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-normal-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #dedede;
    color: #535353;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-normal-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-other-primary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    background: #008577;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-other-primary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-other-primary--code {
    padding-left: 24px;
  }
  .tag-other-primary--code::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/white/ico_key.svg") no-repeat center center/contain;
  }
  .tag-other-primary--fan-club {
    padding-left: 24px;
  }
  .tag-other-primary--fan-club::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/white/ico_star.svg") no-repeat center center/contain;
  }
  .tag-other-secondary {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    flex-shrink: 0;
    height: 20px;
    padding: 3px 7px;
    border-width: 1px;
    border-style: solid;
    border-color: #008577;
    background: #fff;
    color: #008577;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
  }
  .tag-other-secondary--fixed {
    min-width: 88px;
    text-align: center;
  }
  .tag-area {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .tag-area__block {
    margin-bottom: 24px;
  }
  .tag-area__block:last-child {
    margin-bottom: 0;
  }
  .tag-area__text {
    margin: 0 0 8px;
    color: #535353;
    font-size: 14px;
    font-weight: 700;
  }
  .tag-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .tag-list__link {
    display: block;
    padding: 1px 12px 3px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    color: #191919;
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
  }
  .tag-list__link:hover {
    background: #edfaf8;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
    text-decoration: underline;
  }
  /* ------------------------------
    pagination PC
  ------------------------------ */
  .pagination {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    gap: 8px;
  }
  .pagination:first-child {
    margin-top: 0;
  }
  .pagination__set {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
  .pagination__pages {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .pagination__button {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: 0.3s all;
    color: #6e6e6e;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
  }
  .pagination__button::before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 18px;
    height: 1px;
    transform: translateX(-50%);
    transition: 0.3s all;
    opacity: 0;
  }
  .pagination__button:hover {
    color: #08b5ae;
  }
  .pagination__button:hover::before {
    opacity: 1;
    background: #08b5ae;
  }
  .pagination__button[aria-current=page] {
    color: #191919;
    pointer-events: none;
  }
  .pagination__button[aria-current=page]::before {
    opacity: 1;
    background: #191919;
  }
  .pagination__arrow {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    font-size: 0;
  }
  .pagination__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    transition: 0.3s all;
    background: #191919;
  }
  .pagination__arrow--prev::before {
    mask: url("../images/icon/black/ico_arrow_left.svg") no-repeat center center/contain;
  }
  .pagination__arrow--next::before {
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .pagination__arrow:hover::before {
    background: #08b5ae;
  }
  .pagination__arrow[aria-disabled=true] {
    pointer-events: none;
  }
  .pagination__arrow[aria-disabled=true]::before {
    background: #afafaf;
  }
  .pagination__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
  }
  .pagination-number {
    font-size: 14px;
    text-align: center;
  }
  /* ------------------------------
    breadcrumb PC
  ------------------------------ */
  .breadcrumb {
    position: relative;
    border-top: 1px solid #dedede;
    background: #fff;
  }
  .breadcrumb__list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    padding: 8px 40px;
    gap: 8px;
    overflow-x: auto;
    list-style-type: none;
  }
  .breadcrumb__item {
    display: flex;
    position: relative;
    align-items: center;
    color: #191919;
    font-size: 14px;
    white-space: nowrap;
    gap: 8px;
  }
  .breadcrumb__item::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-top: -2px;
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat 0 0/100% 100%;
  }
  .breadcrumb__item:last-child::after {
    content: none;
  }
  .breadcrumb__link {
    transition: 0.3s all;
    color: #6e6e6e;
    font-size: 14px;
    text-decoration: none;
  }
  .breadcrumb__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .breadcrumb__item:first-child .breadcrumb__link {
    padding-left: 20px;
  }
  .breadcrumb__item:first-child .breadcrumb__link::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    transition: 0.3s all;
    background: #535353;
    mask: url("../images/icon/black/ico_home.svg") no-repeat center center/contain;
  }
  .breadcrumb__item:first-child .breadcrumb__link:hover::before {
    background: #08b5ae;
  }
  /* ------------------------------
    message PC
  ------------------------------ */
  .message {
    margin: 0 0 40px;
    padding: 24px;
    background: #ffe8f0;
    color: #ed2769;
  }
  .message:last-child {
    margin: 0;
  }
  .message--important {
    background: #fff2eb;
    color: #cc4100;
  }
  .message--error {
    padding: 16px;
    background: #ffe5e2;
    color: #ed0f00;
  }
  .message__title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .message__title:last-child {
    margin: 0;
  }
  .message__text {
    margin: 0;
  }
  .message__button-box {
    margin-top: 8px;
  }
  .message-box {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    max-width: 664px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 2px;
    background: #f6f6f6;
  }
  .message-box--alert {
    background: #ffe8f0;
  }
  .message-box--important {
    background: #fff2eb;
  }
  .message-box__title {
    display: flex;
    position: relative;
    margin: 0 0 16px;
    padding-left: 24px;
    color: #535353;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .message-box__title:last-child {
    margin: 0;
  }
  .message-box--alert .message-box__title {
    color: #ed2769;
  }
  .message-box--important .message-box__title {
    color: #cc4100;
  }
  .message-box__text {
    margin: 0 0 16px;
  }
  .message-box__name {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .message-box__box {
    padding: 24px;
    background: #fff;
  }
  .message-box__button-box {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }
  .message-box__button-box:last-child {
    margin: 0;
  }
  .message-box__sub-text {
    margin: 0;
    font-size: 14px;
  }
  /* ------------------------------
    text PC
  ------------------------------ */
  .text {
    margin: 0 0 8px;
  }
  .text--center {
    text-align: center;
  }
  .text:last-child {
    margin-bottom: 0;
  }
  .text-link {
    position: relative;
    padding-right: 20px;
    transition: 0.3s all;
    color: #6e6e6e;
    font-size: 16px;
    text-align: right;
    text-decoration: none;
    word-break: break-all;
  }
  .text-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #6e6e6e;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .text-link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .text-link:hover::before {
    right: -4px;
    background: #08b5ae;
  }
  .text-link[target=_blank] {
    padding: 0;
    color: #191919;
    text-align: left;
  }
  .text-link[target=_blank]:hover {
    color: #08b5ae;
  }
  .text-link[target=_blank]::before {
    content: none;
  }
  .text .text-link {
    padding-right: 0;
  }
  .text .text-link::before {
    content: none;
  }
  .text-link-inline {
    transition: 0.3s all;
    color: #17349c;
  }
  .text-link-inline:hover {
    color: #00215c;
    text-decoration: none;
  }
  .text-alert {
    position: relative;
    margin: 0 0 8px;
    padding-left: 20px;
    color: #ed2769;
    font-size: 14px;
    line-height: 1.35;
  }
  .text-alert:last-child {
    margin-bottom: 0;
  }
  .text-important {
    position: relative;
    margin: 0 0 8px;
    padding-left: 22px;
    color: #cc4100;
    font-size: 14px;
    line-height: 1.35;
  }
  .text-important:last-child {
    margin-bottom: 0;
  }
  .text-hint {
    position: relative;
    margin: 0;
    padding-left: 22px;
    color: #cc4100;
  }
  .text-note {
    margin: 0 0 8px;
    padding-left: 1.2em;
    color: #ed2769;
    font-size: 14px;
    line-height: 1.35;
    text-indent: -1.2em;
  }
  .text-note:last-child {
    margin-bottom: 0;
  }
  .text-note::before {
    content: "※";
    margin-right: 0.2em;
  }
  .text-note--sub {
    color: #535353;
  }
  .text-note--important {
    color: #cc4100;
  }
  /* ------------------------------
    toast PC
  ------------------------------ */
  .toast {
    position: fixed;
    z-index: 7;
    top: 16px;
    left: calc(50% - 40px);
    box-sizing: border-box;
    width: calc(100% - 80px);
    max-width: 1180px;
    margin: 0 40px;
    padding: 24px 40px;
    transform: translateX(-50%);
    border-radius: 2px;
    background: #008577;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.24);
  }
  .toast.is-hide {
    display: none;
  }
  .toast--error {
    background: #ed0f00;
  }
  .toast__text {
    margin: 0;
    color: #fff;
    line-height: 1.5;
    text-align: center;
  }
  .toast__button {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    background: url("../images/icon/white/ico_close.svg") no-repeat center center/contain;
    font-size: 0;
  }
  /* ------------------------------
    search PC
  ------------------------------ */
  .search {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto 64px;
    padding: 32px 50px;
    background: #f6f6f6;
    gap: 24px;
  }
  .search__title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .search__keyword {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .search__keyword-input {
    flex: 1;
  }
  .search__button {
    position: relative;
    padding: 0 20px 0 0;
    transition: 0.3s all;
    border: 0;
    background: none;
    color: #191919;
    font-weight: 700;
    line-height: 1.5;
  }
  .search__button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 2px;
    transform: translateY(-50%);
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .search__button::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 5px;
    width: 2px;
    height: 12px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .is-open .search__button::after {
    transform: rotate(-90deg);
  }
  .search__button:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .search__button:hover::before, .search__button:hover::after {
    background: #08b5ae;
  }
  .search__panel {
    display: none;
    padding-top: 24px;
    border-top: 1px dashed #dedede;
  }
  .search__panel.is-open {
    display: block;
  }
  .search__section {
    margin-bottom: 24px;
  }
  .search__heading {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
  }
  .search__button-box {
    display: flex;
    justify-content: center;
  }
  .search-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px 40px;
  }
  .search-list__item {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  /* ------------------------------
    banner PC
  ------------------------------ */
  .banner-pc {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    position: relative;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .banner-pc--slider {
    display: block;
    max-width: none;
    margin: -15px 0;
    padding: 15px 0;
    gap: 0;
    overflow: hidden;
  }
  .banner-sp {
    display: none;
  }
  .banner {
    display: block;
    overflow: hidden;
    transition: 0.3s all;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .banner--large {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 12/5;
    box-shadow: none;
  }
  .banner--medium {
    aspect-ratio: 1.91/1;
    width: 356px !important;
  }
  .banner--small {
    width: 263px;
  }
  .banner.swiper-slide {
    transition-property: opacity, transform;
  }
  .banner:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
  }
  .banner:hover img {
    scale: 1.05;
  }
  .banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s all;
  }
  .banner-slider {
    position: relative;
  }
  .banner-slider::before, .banner-slider::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: calc((100% - 1132px) / 2);
    height: 100%;
    opacity: 0.7;
    background: linear-gradient(to right, #fff 30%, transparent);
    pointer-events: none;
  }
  .banner-slider::after {
    right: 0;
    left: auto;
    transform: rotate(-180deg);
  }
  .banner-slider.swiper-initialized {
    margin: -12px 0;
    padding: 12px 0;
  }
  .banner-slider .swiper-wrapper {
    gap: 16px;
    justify-content: center;
  }
  .swiper-initialized.banner-slider .swiper-wrapper {
    gap: 0;
    justify-content: flex-start;
  }
  .banner-slider .swiper-notification {
    display: none;
  }
  .banner-slider-control {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }
  .swiper-initialized + .banner-slider-control {
    display: flex;
  }
  /* ------------------------------
    slider PC
  ------------------------------ */
  .slider-button-prev {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transform: rotate(-180deg);
  }
  .slider-button-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .slider-button-prev:hover::before {
    background: #08b5ae;
  }
  .slider-button-next {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  .slider-button-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .slider-button-next:hover::before {
    background: #08b5ae;
  }
  .slider-pagination {
    display: flex;
    align-items: center;
    width: auto !important;
    gap: 12px;
  }
  .slider-pagination .swiper-pagination-bullet {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin: 0 !important;
    opacity: 1;
    background: transparent;
  }
  .slider-pagination .swiper-pagination-bullet::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    transition: 0.3s all;
    border-radius: 50%;
    background: #dedede;
  }
  .slider-pagination .swiper-pagination-bullet:hover::before {
    scale: 1.8;
    background: #6e6e6e;
  }
  .slider-pagination .swiper-pagination-bullet-active::before {
    scale: 1.8;
    background: #6e6e6e;
    pointer-events: none;
  }
  .slider-button-stop {
    position: relative;
    box-sizing: border-box;
    width: 40px;
    height: 28px;
    margin-left: 2px;
    transition: 0.3s all;
    border: 1px solid #6e6e6e;
    border-radius: 2px;
    background: #fff;
    font-size: 0;
  }
  .slider-button-stop::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    transition: 0.3s all;
    background: #6e6e6e;
    mask: url("../images/icon/gray/ico_pause.svg") no-repeat center center/24px 24px;
  }
  .is-pause.slider-button-stop::before {
    mask-image: url("../images/icon/gray/ico_play.svg");
  }
  .slider-button-stop:hover {
    border-color: #08b5ae;
    background-color: #def2ef;
  }
  .slider-button-stop:hover::before {
    background: #08b5ae;
  }
  /* ------------------------------
    event-card PC
  ------------------------------ */
  .event-card {
    display: block;
    position: relative;
    box-sizing: border-box;
    height: 100%;
    padding: 8px;
    transition: 0.3s all;
    background: #fff;
    text-decoration: none;
  }
  .event-card::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s all;
    border-radius: 4px;
    opacity: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
  }
  .event-card:hover {
    background: #edfaf8;
  }
  .event-card:hover::before {
    opacity: 1;
  }
  .event-card--finished, .event-card--pin {
    display: flex;
    height: 100%;
    padding: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    gap: 16px;
  }
  .event-card--finished::before, .event-card--pin::before {
    content: none;
  }
  .event-card--finished:hover, .event-card--pin:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
  }
  .event-card--bg {
    height: 100%;
    padding: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .event-card--bg::before {
    content: none;
  }
  .event-card--bg:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
  }
  .event-card__tag {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .event-card--pin .event-card__tag {
    top: 0;
    bottom: auto;
  }
  .event-card__image-box {
    position: relative;
    flex: 0 0 auto;
    margin-bottom: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .event-card--finished .event-card__image-box, .event-card--pin .event-card__image-box {
    margin-bottom: 0;
    box-shadow: none;
  }
  .event-card--bg .event-card__image-box {
    margin-bottom: 16px;
    box-shadow: none;
  }
  .event-card:hover .event-card__image-box {
    box-shadow: none;
  }
  .event-card__image {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1/1;
  }
  .event-card--finished .event-card__image {
    width: 150px;
    height: 150px;
  }
  .event-card--pin .event-card__image {
    width: 220px;
    height: 220px;
  }
  .event-card--other .event-card__image {
    height: 220px;
    margin: 0 auto;
    border-radius: 0;
    aspect-ratio: auto;
  }
  .event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .event-card__info-inner {
    margin-bottom: 8px;
  }
  .event-card__title {
    display: -webkit-box;
    height: 48px;
    margin: 0 0 8px;
    overflow: hidden;
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .event-card--finished .event-card__title, .event-card--pin .event-card__title {
    height: auto;
  }
  .event-card--favorite .event-card__title {
    height: 44px;
    font-size: 14px;
  }
  .event-card:hover .event-card__title {
    text-decoration: underline;
  }
  .event-card__text {
    display: -webkit-box;
    position: relative;
    margin: 0 0 4px;
    padding-left: 22px;
    overflow: hidden;
    color: #191919;
    font-size: 14px;
    line-height: 1.35;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .event-card__text--date {
    display: block;
  }
  .event-card__block .event-card__text--date {
    margin-bottom: 0;
  }
  .event-card--pin .event-card__text--date {
    margin-bottom: 4px;
  }
  .event-card__text--cast {
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .event-card--pin .event-card__text, .event-card--other .event-card__text {
    line-height: 1.7;
  }
  .event-card--favorite .event-card__text {
    font-size: 12px;
  }
  .event-card__text:last-child {
    margin-bottom: 0;
  }
  .event-card__text span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .event-card--pin .event-card__text span, .event-card--other .event-card__text span {
    top: 2px;
  }
  .event-card__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .event-card__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .event-card__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .event-card__cast {
    background-image: url("../images/icon/black/ico_person.svg");
  }
  .event-card__block {
    display: flex;
    gap: 0 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
  }
  .event-card__block:last-child {
    margin-bottom: 0;
  }
  .event-card__desc {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #191919;
    font-size: 12px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .event-card-schedule {
    display: block;
    box-sizing: border-box;
    height: 100%;
    padding: 16px;
    transition: 0.3s all;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
  }
  .event-card-schedule:hover {
    background: #edfaf8;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
  }
  .event-card-schedule__tag {
    margin-bottom: 4px;
  }
  .event-card-schedule__title {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    transition: 0.3s all;
    color: #191919;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 1;
  }
  .event-card-schedule:hover .event-card-schedule__title {
    text-decoration: underline;
  }
  .event-card-schedule__text {
    display: -webkit-box;
    position: relative;
    margin: 0 0 4px;
    padding-left: 22px;
    overflow: hidden;
    color: #191919;
    font-size: 14px;
    line-height: 1.35;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .event-card-schedule__text:last-child {
    margin-bottom: 0;
  }
  .event-card-schedule__text span {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .event-card-schedule__text--date {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
  }
  .event-card-schedule__text--place {
    font-weight: 700;
  }
  .event-card-schedule__date {
    top: 3px;
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .event-card-schedule__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .event-card-schedule__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .event-card-schedule__cast {
    background-image: url("../images/icon/black/ico_person.svg");
  }
  .event-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
    margin: -8px;
    padding: 0;
    list-style-type: none;
    gap: 8px;
    /* stylelint-disable-next-line */
  }
  .event-card-list:has(.event-card--bg) {
    grid-template-columns: repeat(auto-fill, minmax(212px, 1fr));
    margin: 0;
    gap: 24px;
  }
  .event-card-list--other {
    grid-template-columns: repeat(auto-fit, minmax(226px, 1fr));
  }
  .event-card-list--schedule {
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
    margin: 0;
    gap: 24px;
  }
  .event-card-list-finished {
    display: grid;
    position: relative;
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 24px;
  }
  .event-card-list-finished::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 80px;
    transition: 0.3s all;
    opacity: 0;
    background: linear-gradient(180deg, transparent 0%, #fff 60%);
    pointer-events: none;
  }
  .event-card-list-finished:has(.is-hidden)::after {
    opacity: 1;
  }
  .event-card-list-finished-button {
    display: flex;
    position: relative;
    align-items: center;
    margin: -8px auto 0;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 16px;
    line-height: 1;
    gap: 4px;
  }
  .event-card-list-finished-button::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_add.svg") no-repeat center center/contain;
  }
  .event-card-list-finished-button:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .event-card-list-finished-button:hover::after {
    background: #08b5ae;
  }
  .event-card-link {
    display: flex;
    position: relative;
    box-sizing: border-box;
    height: 100%;
    padding: 16px;
    transition: 0.3s all;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    color: #191919;
    text-decoration: none;
    gap: 16px;
  }
  .event-card-link:hover {
    background: #edfaf8;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
  }
  .event-card-link__icon {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 16px;
    height: 16px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_blank.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .event-card-link:hover .event-card-link__icon {
    background: #08b5ae;
  }
  .event-card-link__image {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 2px;
  }
  .event-card-link__image img {
    width: 100%;
  }
  .event-card-link__title {
    margin: 0 0 8px;
    transition: 0.3s all;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-card-link:hover .event-card-link__title {
    text-decoration: underline;
  }
  .event-card-link__text {
    margin: 0;
    font-size: 14px;
  }
  /* ------------------------------
    modal PC
  ------------------------------ */
  .modal {
    box-sizing: border-box;
    width: 590px;
    height: 100%;
    padding: 5px;
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .modal:focus {
    outline: none;
  }
  .modal.is-open {
    opacity: 1;
  }
  .modal::backdrop {
    transition: 0.3s all;
    opacity: 0;
    background: rgba(25, 25, 25, 0.4);
  }
  .is-open.modal::backdrop {
    opacity: 1;
  }
  .is-initial-open.modal::backdrop {
    opacity: 1;
  }
  .modal__inner {
    display: flex;
    position: absolute;
    top: 38%;
    left: 50%;
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
    max-height: calc(100vh - 48px);
    padding: 0 40px 40px;
    overflow: hidden;
    transform: translate(-50%, -38%);
    border-radius: 8px;
    background: #fff;
  }
  .modal:focus-visible .modal__inner {
    border-radius: 4px;
    outline: 6px solid #17349c;
  }
  .is-preview .modal__inner {
    max-height: calc(100svh - 220px);
  }
  .modal__content {
    flex: 1;
    margin: 0 -40px -4px;
    padding: 40px 40px 4px;
    overflow-y: auto;
  }
  .modal__content.is-simple-bar {
    display: flex;
    padding: 0 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .modal__content.is-simple-bar::-webkit-scrollbar {
    display: none;
  }
  .modal__content.is-simple-bar .simplebar-wrapper {
    flex: 1;
  }
  .modal__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .modal__title:last-child {
    margin: 0;
  }
  .is-simple-bar .modal__title {
    margin-top: 40px;
  }
  .modal__text {
    margin: 0 0 8px;
  }
  .modal__text:last-child {
    margin: 0;
  }
  .modal__image img {
    width: 100%;
  }
  .modal__link {
    margin-bottom: 16px;
    text-align: right;
  }
  .modal__qr {
    box-sizing: border-box;
    width: 200px;
    margin: 0 auto;
    padding: 8px;
    border: 1px solid #dedede;
  }
  .modal__qr img {
    width: 100%;
    height: auto;
  }
  .modal__close {
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: url("../images/icon/gray/ico_close.svg") no-repeat center center/100% 100%;
    font-size: 0;
  }
  .modal__bottom {
    margin-top: 24px;
  }
  .modal__toast {
    display: none;
  }
  .modal-button-box {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
  }
  .input-check + .modal-button-box {
    margin-top: 24px;
  }
  .modal-button-box:first-child {
    margin-top: 0;
  }
  .modal-button-box__item {
    width: 100%;
    text-align: center;
  }
  .modal-half-close {
    display: none;
  }
  .modal-share {
    display: flex;
    max-width: 400px;
    margin: 0 auto 8px;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .modal-share--column {
    flex-direction: column;
  }
  .modal-share:last-child {
    margin-bottom: 0;
  }
  .modal-share__item {
    flex: 1;
  }
  .modal-image {
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
    height: calc(100% - 40px);
    max-height: none;
    margin: 20px;
    padding: 24px;
    overflow: visible;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .modal-image.is-open {
    opacity: 1;
  }
  .modal-image::backdrop {
    transition: 0.3s all;
    opacity: 0;
    background: #fff;
  }
  .is-open.modal-image::backdrop {
    opacity: 1;
  }
  .modal-image__content {
    height: 100%;
    max-height: calc(100svh - 165px);
  }
  .modal-image__image {
    height: 100%;
  }
  .modal-image__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .modal-image__bottom {
    margin-top: 16px;
  }
  .modal-image-slider {
    position: relative;
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
  }
  .modal-image-slider.swiper-initialized .swiper-wrapper {
    max-height: calc(100% - 46px);
  }
  .modal-image-slider__item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-image-slider__item img {
    width: auto;
    height: auto;
  }
  .modal-image-slider .swiper-notification {
    display: none;
  }
  .modal-image-slider-control {
    display: none;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    margin-top: 16px;
    padding: 0 5px;
  }
  .swiper-initialized > .modal-image-slider-control {
    display: flex;
  }
  /* ------------------------------
    footer PC
  ------------------------------ */
  .footer__button-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .footer__copyright {
    display: block;
    padding: 8px 60px;
    background: #08b5ae;
    color: #fff;
    font-size: 12px;
    text-align: center;
  }
  .footer-page-top {
    text-align: center;
  }
  .footer-page-top__link {
    display: inline-block;
    position: relative;
    padding: 13px 24px 13px 48px;
    transition: 0.3s all;
    border-radius: 10px 10px 0 0;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
    color: #191919;
    font-size: 14px;
    text-decoration: none;
  }
  .footer-page-top__link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 24px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: url("../images/icon/black/ico_arrow_up.svg") no-repeat center center/contain;
  }
  .footer-page-top__link:hover {
    background: #edfaf8;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
    text-decoration: underline;
  }
  .footer-page-top__link:hover::before {
    top: calc(50% - 2px);
  }
  .footer-top__link {
    display: block;
    text-decoration: none;
  }
  .footer-top__image-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 40px 40px;
    background: linear-gradient(rgba(23, 52, 156, 0.5), rgba(23, 52, 156, 0.5)), url("../images/bg_footer_pc.webp") no-repeat center/cover;
  }
  .footer-top__image {
    flex-shrink: 0;
  }
  .footer-top__image img {
    width: 142px;
    height: 280px;
  }
  .footer-top__list {
    display: flex;
    flex: 1;
    max-width: 640px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .footer-top__item {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0 30px;
    border-left: 1px solid #fff;
  }
  .footer-top__item:first-child {
    border-left: 0;
  }
  .footer-top__icon {
    width: 80px;
    height: 80px;
  }
  .footer-top__text {
    margin: 0;
    color: #fff;
    font-weight: 700;
    text-align: center;
  }
  .footer-top__copy-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: #edf3ff;
  }
  .footer-top__copy {
    margin: 0;
    color: #191919;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .footer-top__copy-sub {
    display: block;
    font-size: 18px;
  }
  .footer-top__button-area {
    margin-top: 16px;
  }
  .footer-top__button {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 350px;
    min-height: 60px;
    padding: 18px 32px 16px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #17349c;
    color: #fff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  .footer-top__button:hover {
    background: #00215c;
  }
  .footer-top__button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/white/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .footer-bottom {
    position: relative;
    background: #fff;
  }
  .footer-bottom--bg {
    background: #f6f6f6;
  }
  .footer-bottom__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    padding: 40px 60px;
  }
  .footer-bottom__text {
    margin: 0;
    font-size: 14px;
    text-align: center;
  }
  .footer-sns {
    margin-bottom: 80px;
  }
  .footer-sns__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .footer-sns__list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 24px;
  }
  .footer-sns__link {
    display: block;
    position: relative;
    width: 30px;
  }
  .footer-sns__link img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.3s all;
  }
  .footer-sns__link:hover img {
    opacity: 0;
  }
  .footer-sns__link-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .footer-sns__link:hover .footer-sns__link-hover {
    opacity: 1;
  }
  .footer-nav__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 40px;
    padding: 0;
    padding-bottom: 40px;
    list-style-type: none;
    border-bottom: 1px dashed #afafaf;
    gap: 16px 40px;
  }
  .footer-nav__link {
    position: relative;
    padding-right: 28px;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
  }
  .footer-nav__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .footer-nav__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .footer-nav__link:hover::before {
    right: -4px;
    background: #08b5ae;
  }
  .footer-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 40px;
    padding: 0 0 40px;
    list-style-type: none;
    border-bottom: 1px dashed #afafaf;
    gap: 16px 40px;
  }
  .footer-link__link {
    position: relative;
    padding-right: 28px;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
  }
  .footer-link__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .footer-link__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .footer-link__link:hover::before {
    right: -4px;
    background: #08b5ae;
  }
  /* ------------------------------
    notice PC
  ------------------------------ */
  .notice {
    display: flex;
    max-width: 1100px;
    margin: 16px auto 0;
    padding: 0 40px;
  }
  .notice__title {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 24px;
    border-radius: 4px 0 0 4px;
    background: #ed2769;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    gap: 4px;
  }
  .notice__title::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-top: -2px;
    background: url("../images/icon/white/ico_alert.svg") no-repeat center center/contain;
  }
  .notice-list {
    flex: 1;
    margin: 0;
    padding: 16px 24px;
    list-style-type: none;
    border-radius: 0 4px 4px 0;
    background: #ffe8f0;
  }
  .notice-list__item {
    margin-bottom: 8px;
  }
  .notice-list__item:last-child {
    margin-bottom: 0;
  }
  .notice-list__item span {
    flex-shrink: 0;
  }
  .notice-list__link {
    display: flex;
    align-items: center;
    color: #191919;
    text-decoration: none;
    gap: 8px;
  }
  .notice-list__title {
    display: -webkit-inline-box;
    position: relative;
    margin: 0;
    padding-right: 18px;
    overflow: hidden;
    transition: 0.3s all;
    font-size: 14px;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  .notice-list__link:hover .notice-list__title {
    color: #ed2769;
    text-decoration: underline;
  }
  .notice-list__link:hover .notice-list__title::before {
    right: -4px;
  }
  .notice-list__title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: url("../images/icon/pink/ico_arrow_right.svg") no-repeat center center/100% 100%;
  }
  /* ------------------------------
    ly PC
  ------------------------------ */
  .ly-container {
    padding: 40px 0 64px;
  }
  .ly-form-container {
    max-width: 670px;
    margin: 0 auto;
    padding: 64px 0;
  }
  .ly-top-container {
    padding-bottom: 64px;
  }
  .ly-section {
    margin-bottom: 64px;
  }
  .ly-section:last-child {
    margin-bottom: 0;
  }
  /* ------------------------------
    event-detail PC
  ------------------------------ */
  .event-detail {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 40px;
  }
  .event-detail--schedule {
    max-width: none;
    padding: 0;
  }
  .event-detail:last-child {
    margin-bottom: 0;
  }
  .event-detail__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 80px;
    gap: 40px;
  }
  .event-detail--schedule .event-detail__head {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    margin: 0 auto 80px;
  }
  .event-detail__content {
    margin-bottom: 80px;
  }
  .event-detail--schedule .event-detail__content {
    max-width: 670px;
    margin: 0 auto 80px;
  }
  .event-detail__column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 80px;
    gap: 80px 56px;
  }
  /* ------------------------------
    heading PC
  ------------------------------ */
  /* ------------------------------
    event-list PC
  ------------------------------ */
  /* ------------------------------
    list PC
  ------------------------------ */
  /* ------------------------------
    ticket PC
  ------------------------------ */
  /* ------------------------------
    form PC
  ------------------------------ */
  /* ------------------------------
    preview PC
  ------------------------------ */
  /* ------------------------------
    login PC
  ------------------------------ */
  /* ------------------------------
    error PC
  ------------------------------ */
  /* ------------------------------
    password PC
  ------------------------------ */
  /* ------------------------------
    promoter PC
  ------------------------------ */
  /* ------------------------------
    inquiry PC
  ------------------------------ */
  /* ------------------------------
    top PC
  ------------------------------ */
  /* ------------------------------
    my-top PC
  ------------------------------ */
  /* ------------------------------
    my-ticket PC
  ------------------------------ */
  /* ------------------------------
    history PC
  ------------------------------ */
  /* ------------------------------
    news PC
  ------------------------------ */
  /* ------------------------------
    favorite PC
  ------------------------------ */
  /* ------------------------------
    account PC
  ------------------------------ */
  /* ------------------------------
    login-history PC
  ------------------------------ */
  /* ------------------------------
    utility PC
  ------------------------------ */
}
@media (768px <= width) and (width < 900px) {
  .event-detail__column {
    row-gap: 0;
  }
}
@media (768px <= width) {
  .event-detail__column:last-child {
    margin-bottom: 0;
  }
  .event-detail__main {
    flex: 8;
    min-width: 470px;
  }
  .event-detail__side {
    flex: 5;
    min-width: 294px;
  }
  .event-detail__message {
    margin-bottom: 80px;
  }
  .event-detail__message:last-child {
    margin-bottom: 0;
  }
  .event-detail-button-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .event-detail-section {
    margin-bottom: 64px;
  }
  .event-detail-section:last-child {
    margin-bottom: 0;
  }
  .event-detail-child-section {
    margin-bottom: 40px;
  }
  .event-detail-child-section:last-child {
    margin-bottom: 0;
  }
  .event-detail-child-section__heading {
    margin: 0 0 8px;
    color: #535353;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-top {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .event-detail--schedule .event-detail-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .event-detail-top__schedule {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 4px;
    padding: 4px 8px;
    background: #f6f6f6;
    font-size: 14px;
    line-height: 1.35;
  }
  .event-detail-top__schedule::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/icon/black/ico_list.svg") no-repeat center center/contain;
  }
  .event-detail-share {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    gap: 16px;
  }
  .event-detail--schedule .event-detail-share {
    right: 40px;
  }
  .event-detail-slider {
    flex: 1;
    flex-shrink: 0;
    min-width: 320px;
    max-width: 450px;
  }
  .event-detail-slider__inner {
    margin: -10px;
    padding: 10px;
    overflow: hidden;
    opacity: 0;
    aspect-ratio: 1/1;
  }
  .event-detail-slider__inner.is-single, .event-detail-slider__inner.swiper-initialized {
    opacity: 1;
    aspect-ratio: auto;
  }
  .event-detail-slider__item {
    display: block;
    aspect-ratio: 1/1;
  }
  .event-detail-slider__item.swiper-slide {
    transition-property: opacity, transform;
  }
  .event-detail-slider__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .event-detail-slider__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s all;
  }
  .event-detail-slider__item:hover .event-detail-slider__image img {
    scale: 1.1;
  }
  .event-detail-slider__button {
    display: inline-flex;
    position: absolute;
    right: 8px;
    bottom: 8px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    font-size: 0;
  }
  .event-detail-slider__button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_zoom.svg") no-repeat center center/contain;
  }
  .event-detail-slider__item:hover .event-detail-slider__button {
    scale: 1.3;
  }
  .event-detail-slider__item:hover .event-detail-slider__button::before {
    background: #08b5ae;
  }
  .event-detail-slider-control {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    gap: 16px;
  }
  .swiper-initialized + .event-detail-slider-control {
    display: flex;
  }
  .event-detail-nav {
    display: none;
  }
  .event-detail-info {
    flex: 1;
    min-width: 460px;
  }
  .event-detail-info__list {
    margin: 0;
  }
  .event-detail-info__block {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }
  .event-detail-info--border .event-detail-info__block {
    padding-top: 16px;
    border-top: 1px solid #dedede;
  }
  .event-detail-info__block:last-child {
    margin-bottom: 0;
  }
  .event-detail-info--border .event-detail-info__block:last-child {
    padding-bottom: 16px;
    border-bottom: 1px solid #dedede;
  }
  .event-detail-info__title {
    flex: 0 0 auto;
    width: 15.5%;
    min-width: 93px;
    max-width: 140px;
    white-space: nowrap;
  }
  .event-detail-info__title span {
    display: flex;
    position: relative;
    align-items: center;
    gap: 4px;
  }
  .event-detail-info__title span::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .event-detail-info__data {
    width: 100%;
    margin: 0;
  }
  .event-detail-info__data--time {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    align-items: center;
  }
  .event-detail-info__data span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }
  .event-detail-info__data span:last-child {
    margin-bottom: 0;
  }
  .event-detail-info__date::before {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .event-detail-info__time::before {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .event-detail-info__place::before {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .event-detail-info__cast::before {
    background-image: url("../images/icon/black/ico_person.svg");
  }
  .event-detail-info__owner::before {
    background-image: url("../images/icon/black/ico_apartment.svg");
  }
  .event-detail-info__transportation::before {
    background-image: url("../images/icon/black/ico_traffic.svg");
  }
  .event-detail-info__link {
    transition: 0.3s all;
    color: #191919;
    text-decoration: underline;
  }
  .event-detail-info__link:hover {
    color: #08b5ae;
    text-decoration: none;
  }
  .event-detail-info__link-box {
    display: flex;
    justify-content: flex-end;
  }
  .event-detail-info__button {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }
  .event-detail-info__sub-time {
    display: flex;
    gap: 0 10px;
    flex-wrap: wrap;
    align-items: center;
  }
  .event-detail-info__event-name {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    transition: 0.3s all;
    color: #191919;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    gap: 4px;
  }
  .event-detail-info__event-name::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .event-detail-info__event-name:hover {
    color: #08b5ae;
  }
  .event-detail-info__event-name:hover::after {
    background: #08b5ae;
  }
  .event-detail-info-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .event-detail-info-list__item {
    position: relative;
    padding-right: 16px;
  }
  .event-detail-info-list__item::after {
    content: "/";
    position: absolute;
    right: 5px;
  }
  .event-detail-info-list__item:last-child::after {
    content: none;
    margin-left: 0;
  }
  .event-detail-info-list__link {
    transition: 0.3s all;
    color: #191919;
    text-decoration: underline;
  }
  .event-detail-info-list__link:hover {
    color: #08b5ae;
    text-decoration: none;
  }
  .event-detail-info-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    color: #535353;
    gap: 0 4px;
    font-size: 14px;
  }
  .event-detail-info-time--large {
    color: #191919;
    font-size: 16px;
  }
  .event-detail-info-time__date {
    margin: 0;
  }
  .event-detail-toggle {
    display: flex;
    position: relative;
    flex-direction: column;
    margin: 0 auto;
  }
  .event-detail-toggle__text {
    max-height: 810px;
    margin: 0;
    overflow: hidden;
    transition: 0.3s all;
    font-size: 16px;
    --max-height: 810;
  }
  .event-detail-toggle__text * {
    margin: 0;
  }
  .event-detail-toggle__button {
    display: block;
    z-index: 1;
    align-items: center;
    margin: 8px auto 0;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    opacity: 0;
    background: transparent;
    color: #191919;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    text-decoration: none;
  }
  .event-detail-toggle__button::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 26px;
    left: 0;
    width: 100%;
    height: 70px;
    transition: 0.3s all;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
  }
  .is-open.event-detail-toggle__button::before {
    opacity: 0;
  }
  .event-detail-toggle__button > span {
    display: block;
    position: relative;
    padding-right: 18px;
  }
  .event-detail-toggle__button > span::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 0;
    width: 12px;
    height: 2px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .event-detail-toggle__button > span::after {
    content: "";
    position: absolute;
    top: 7px;
    right: 5px;
    width: 2px;
    height: 12px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .is-open.event-detail-toggle__button > span::after {
    transform: rotate(-90deg);
  }
  .event-detail-toggle__button:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .event-detail-toggle__button:hover > span::before, .event-detail-toggle__button:hover > span::after {
    background: #08b5ae;
  }
  .event-detail-toggle__button.is-open .event-detail-toggle__open {
    display: none;
  }
  .event-detail-toggle__close {
    display: none;
  }
  .event-detail-toggle__button.is-open .event-detail-toggle__close {
    display: block;
  }
  .event-detail-youtube iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .event-detail-link-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .event-detail-link {
    margin-bottom: 40px;
  }
  .event-detail-link:last-child {
    margin-bottom: 0;
  }
  .event-detail-link__title {
    margin: 0 0 8px;
    color: #535353;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-link__link {
    margin-bottom: 8px;
  }
  .event-detail-link__link:last-child {
    margin-bottom: 0;
  }
  .event-detail-link__button-box {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .event-detail-link__button {
    display: block;
    position: relative;
    width: 28px;
  }
  .event-detail-link__button img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.3s all;
  }
  .event-detail-link__button:hover img {
    opacity: 0;
  }
  .event-detail-link__button-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .event-detail-link__button:hover .event-detail-link__button-hover {
    opacity: 1;
  }
  .event-detail-link-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 16px;
  }
  .event-detail-ticket {
    margin: 0;
    padding: 0;
    list-style-type: none;
    border-top: 1px solid #afafaf;
  }
  .event-detail-ticket__item {
    border-bottom: 1px solid #afafaf;
  }
  .event-detail-ticket-button {
    padding: 15px 32px;
    font-size: 18px;
  }
  .event-detail-ticket-note {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.35;
  }
  .event-detail-ticket-alert {
    margin-bottom: 16px;
  }
  .event-detail-ticket-head {
    display: block;
    position: relative;
    padding: 32px 0;
    transition: 0.3s all;
    background: #fff;
    text-decoration: none;
  }
  .event-detail-ticket-head::before {
    content: "";
    position: absolute;
    top: 40px;
    right: 0;
    width: 18px;
    height: 2px;
    transition: 0.3s all;
    border-radius: 4px;
    background: #191919;
  }
  .event-detail-ticket-head::after {
    content: "";
    position: absolute;
    top: 32px;
    right: 8px;
    width: 2px;
    height: 18px;
    transition: 0.3s all;
    border-radius: 4px;
    background: #191919;
  }
  .is-open > .event-detail-ticket-head::after {
    transform: rotate(-90deg);
  }
  .event-detail-ticket-head:hover::before, .event-detail-ticket-head:hover::after {
    background: #08b5ae;
  }
  .event-detail-ticket-head__status {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
  }
  .event-detail-ticket-head__title {
    display: flex;
    align-items: flex-start;
    margin: 0 0 8px;
    color: #191919;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    gap: 8px;
  }
  .event-detail-ticket-head__title span {
    margin-top: 2px;
  }
  .event-detail-ticket-head__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.35;
  }
  .event-detail-ticket-head__list:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-head__list-title {
    display: flex;
    color: #535353;
    white-space: nowrap;
  }
  .event-detail-ticket-head__list-title::after {
    content: "：";
  }
  .event-detail-ticket-head__list-data {
    margin: 0;
    color: #535353;
    text-align: left;
  }
  .event-detail-ticket-body {
    display: none;
    padding-bottom: 32px;
  }
  .event-detail-ticket-body.is-open {
    display: block;
  }
  .event-detail-ticket-body__label {
    display: flex;
    margin-bottom: 5px;
  }
  .event-detail-ticket-body__sub-text {
    margin: 0 0 24px;
    font-size: 14px;
  }
  .event-detail-ticket-body__button {
    margin-bottom: 16px;
  }
  .event-detail-ticket-body__button:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-body-list {
    margin: 0 0 24px;
    background: #fff;
  }
  .event-detail-ticket-body-list__block {
    margin-bottom: 10px;
  }
  .event-detail-ticket-body-list__block:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-body-list__title {
    margin-bottom: 4px;
    color: #535353;
    font-size: 14px;
    font-weight: 700;
  }
  .event-detail-ticket-body-list__data {
    margin: 0;
    line-height: 1.5;
  }
  .event-detail-ticket-body-list__payment {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .event-detail-ticket-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
  .event-detail-ticket-card-wrap:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-card {
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 8px;
  }
  .event-detail-ticket-card__block {
    padding: 16px;
    background: #fff;
  }
  .event-detail-ticket-card__title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-ticket-card__info {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .event-detail-ticket-card__info:last-child {
    margin-bottom: 0;
  }
  .event-detail-ticket-card__status {
    display: flex;
    gap: 8px;
  }
  .event-detail-ticket-card__price {
    flex: 1;
    margin: 0;
    font-size: 12px;
    text-align: right;
    white-space: nowrap;
  }
  .event-detail-ticket-card__price span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-ticket-card__toggle {
    display: flex;
    position: relative;
    flex-direction: column-reverse;
    padding: 16px;
    background: #f6f6f6;
  }
  .event-detail-ticket-card__text {
    display: -webkit-box;
    position: relative;
    max-height: 90px;
    margin: 0;
    overflow: hidden;
    transition: 0.3s all;
    color: #535353;
    font-size: 12px;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    --max-height: 90;
  }
  .event-detail-ticket-card__text.is-open {
    -webkit-line-clamp: inherit;
  }
  .event-detail-ticket-card__toggle-button {
    display: block;
    z-index: 1;
    align-items: center;
    margin: 8px auto 0;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    opacity: 0;
    background: transparent;
    color: #191919;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    text-decoration: none;
  }
  .event-detail-ticket-card__toggle-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 24px;
    left: 0;
    width: 100%;
    height: 50px;
    transition: 0.3s all;
    background: linear-gradient(180deg, transparent 0%, #f6f6f6 60%);
    pointer-events: none;
  }
  .is-open.event-detail-ticket-card__toggle-button::before {
    opacity: 0;
  }
  .event-detail-ticket-card__toggle-button > span {
    display: block;
    position: relative;
    padding-right: 18px;
  }
  .event-detail-ticket-card__toggle-button > span::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 12px;
    height: 2px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .event-detail-ticket-card__toggle-button > span::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 2px;
    height: 12px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .is-open.event-detail-ticket-card__toggle-button > span::after {
    transform: rotate(-90deg);
  }
  .event-detail-ticket-card__toggle-button:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .event-detail-ticket-card__toggle-button:hover > span::before, .event-detail-ticket-card__toggle-button:hover > span::after {
    background: #08b5ae;
  }
  .event-detail-ticket-card__toggle-button.is-open .event-detail-ticket-card__toggle-open {
    display: none;
  }
  .event-detail-ticket-card__toggle-close {
    display: none;
  }
  .event-detail-ticket-card__toggle-button.is-open .event-detail-ticket-card__toggle-close {
    display: block;
  }
  .event-detail-contact-pc-row {
    padding: 32px 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }
}
@media (768px <= width) and (width < 900px) {
  .event-detail-contact-pc-row {
    display: none;
  }
}
@media (768px <= width) {
  .event-detail-contact-pc-column {
    display: none;
    padding: 32px 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }
}
@media (768px <= width) and (width < 900px) {
  .event-detail-contact-pc-column {
    display: block;
  }
}
@media (768px <= width) {
  .event-detail-contact__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-contact__link {
    margin-bottom: 16px;
    text-align: right;
  }
  .event-detail-contact__button {
    margin-bottom: 16px;
  }
  .event-detail-contact__button:last-child {
    margin-bottom: 0;
  }
  .event-detail-contact__text {
    margin: 0;
    font-size: 14px;
  }
  .event-detail-contact__tel {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
  }
  .event-detail-contact__tel::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url("../images/icon/black/ico_tel.svg") no-repeat center center/contain;
  }
  .event-detail-other__heading {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-detail-other__button-box {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .event-detail-schedule {
    margin-bottom: 80px;
    padding: 40px 0;
    background: #f6f6f6;
  }
  .event-detail-schedule__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .event-detail-map {
    width: 100%;
    height: 619px;
  }
  .event-detail-error {
    max-width: 670px;
    margin: 0 auto;
  }
  .event-detail-error__heading {
    margin: 0 0 40px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .event-detail-error__section {
    margin-bottom: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid #dedede;
  }
  .event-detail-error__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .event-detail-error__text {
    margin: 0;
    text-align: center;
  }
  .heading01 {
    margin: 0 0 40px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
  .heading01--center {
    text-align: center;
  }
  .heading02 {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .heading03 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-list {
    margin-bottom: 60px;
  }
  .event-list:last-child {
    margin-bottom: 0;
  }
  .event-list__heading01 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    margin: 0 auto 30px;
  }
  .event-list__section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 64px;
  }
  .event-list__section:last-child {
    margin-bottom: 0;
  }
  .event-list__banner {
    margin-bottom: 64px;
  }
  .event-list__banner:last-child {
    margin-bottom: 0;
  }
  .event-list__text {
    margin: 0 0 32px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .event-list-heading {
    position: relative;
    margin: 0 0 32px;
    padding-bottom: 9px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .event-list-heading span {
    display: block;
    font-size: 16px;
    text-align: center;
  }
  .event-list-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 45px;
    height: 2px;
    transform: translateX(-50%);
    background: #08b5ae;
  }
  .event-list-button-box {
    display: flex;
    justify-content: center;
  }
  .event-list-sort {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .event-list-sort__text {
    font-size: 14px;
  }
  .event-list-pickup {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    margin: 0 0 32px;
    padding: 0;
    list-style-type: none;
    gap: 32px 24px;
  }
  .event-list-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    margin: 0 0 32px;
    padding: 0;
    list-style-type: none;
    gap: 32px 24px;
  }
  .event-list-search__head {
    margin: 0 0 16px;
  }
  .event-list-search__link {
    display: inline-flex;
    align-items: center;
    color: #191919;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    gap: 4px;
  }
  .event-list-search__link::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin-top: -1px;
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .event-list-search__toggle {
    display: none;
  }
  .event-list-search__panel {
    display: block !important;
  }
  .event-list-search-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .event-list-search-list__link {
    display: block;
    padding: 2px 12px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    color: #191919;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
  }
  .event-list-category {
    display: flex;
    max-width: 670px;
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
    gap: 24px;
  }
  .event-list-category__item {
    flex: 1;
  }
  .event-list-category__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    padding: 24px 16px 16px;
    transition: 0.3s all;
    border: 1px solid #08b5ae;
    border-radius: 2px;
    background: #fff;
    color: #08b5ae;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .event-list-category__link:hover {
    border-color: #def2ef;
    background: #edfaf8;
  }
  .event-list-category__link::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .event-list-category__link--music::before {
    background-image: url("../images/icon/main/ico_music.svg");
  }
  .event-list-category__link--event::before {
    background-image: url("../images/icon/main/ico_event.svg");
  }
  .event-list-category__link--online::before {
    background-image: url("../images/icon/main/ico_online.svg");
  }
  .list-dot {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .list-dot--alert {
    color: #ed2769;
  }
  .list-dot__item {
    padding-left: 1.2em;
    text-indent: -1.2em;
  }
  .list-dot__item::before {
    content: "・";
    margin-right: 0.2em;
  }
  .ticket-button-box {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .ticket-summary {
    margin-bottom: 40px;
    padding: 32px;
    background: #f6f6f6;
  }
  .ticket-summary--zero {
    margin-bottom: 0;
  }
  .ticket-summary__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-summary__name {
    margin: 0 0 16px;
  }
  .ticket-summary__link {
    display: inline-block;
    position: relative;
    padding-right: 24px;
    transition: 0.3s all;
    color: #191919;
    font-size: 18px;
    line-height: 1.5;
    text-decoration: none;
  }
  .ticket-summary__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .ticket-summary__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .ticket-summary__link:hover::before {
    right: -4px;
    background: #08b5ae;
  }
  .ticket-summary-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 4px;
  }
  .ticket-summary-list__block {
    display: flex;
    gap: 12px;
    font-size: 16px;
  }
  .ticket-summary-list__block:last-child {
    margin-bottom: 0;
  }
  .ticket-summary-list__title {
    flex: 0 0 auto;
    width: 91px;
    white-space: nowrap;
  }
  .ticket-summary-list__title span {
    display: flex;
    position: relative;
    align-items: center;
    gap: 4px;
  }
  .ticket-summary-list__title span::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: -1px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .ticket-summary-list__data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    gap: 0 10px;
  }
  .ticket-summary-list__data span {
    display: block;
    width: 100%;
  }
  .ticket-summary-list__date::before {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .ticket-summary-list__time::before {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .ticket-summary-list__place::before {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .ticket-summary-list__sub-time {
    display: flex;
    gap: 0 10px;
    flex-wrap: wrap;
    align-items: center;
  }
  .ticket-summary-list-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    color: #535353;
    font-size: 14px;
    gap: 0 5px;
  }
  .ticket-summary-list-time--large {
    color: #191919;
    font-size: 16px;
  }
  .ticket-summary-list-time__date {
    margin: 0;
  }
  .ticket-detail__info {
    margin-bottom: 32px;
  }
  .ticket-detail__block {
    margin-bottom: 24px;
  }
  .ticket-detail__block:last-child {
    margin-bottom: 0;
  }
  .ticket-detail__heading {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 32px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-detail__heading span {
    margin-top: 5px;
  }
  .ticket-detail__sub-text {
    margin: 0;
  }
  .ticket-status {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 4px;
  }
  .ticket-detail-list {
    margin: 0;
  }
  .ticket-detail-list__block {
    margin-bottom: 10px;
  }
  .ticket-detail-list__block:last-child {
    margin-bottom: 0;
  }
  .ticket-detail-list__title {
    margin-bottom: 4px;
    color: #535353;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-detail-list__data {
    margin: 0;
  }
  .ticket-detail-list__payment {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .ticket-card {
    margin-bottom: 24px;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 10px;
    background: #fff;
  }
  .ticket-card:last-child {
    margin-bottom: 0;
  }
  .ticket-card__block {
    padding: 16px;
  }
  .ticket-card__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-card__info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .ticket-card__status {
    display: flex;
    gap: 8px;
  }
  .ticket-card__price {
    margin: 0;
    font-size: 14px;
  }
  .ticket-card__price span {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-card__input {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 16px;
    gap: 16px;
  }
  .ticket-card__toggle {
    display: flex;
    position: relative;
    flex-direction: column-reverse;
    padding: 16px;
    background: #f6f6f6;
  }
  .ticket-card__text {
    display: -webkit-box;
    position: relative;
    max-height: 122px;
    margin: 0;
    overflow: hidden;
    transition: 0.3s all;
    color: #535353;
    font-size: 14px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    --max-height: 122;
  }
  .ticket-card__text.is-open {
    -webkit-line-clamp: inherit;
    line-clamp: inherit;
  }
  .ticket-card__toggle-button {
    display: block;
    z-index: 1;
    align-items: center;
    margin: 8px auto 0;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    opacity: 0;
    background: transparent;
    color: #191919;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    text-decoration: none;
  }
  .ticket-card__toggle-button::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 50px;
    transition: 0.3s all;
    background: linear-gradient(180deg, transparent 0%, #f6f6f6 60%);
    pointer-events: none;
  }
  .is-open.ticket-card__toggle-button::before {
    opacity: 0;
  }
  .ticket-card__toggle-button > span {
    display: block;
    position: relative;
    padding-right: 18px;
  }
  .ticket-card__toggle-button > span::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 12px;
    height: 2px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #535353;
  }
  .ticket-card__toggle-button > span::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 2px;
    height: 12px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #535353;
  }
  .is-open.ticket-card__toggle-button > span::after {
    transform: rotate(-90deg);
  }
  .ticket-card__toggle-button:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .ticket-card__toggle-button:hover > span::before, .ticket-card__toggle-button:hover > span::after {
    background: #08b5ae;
  }
  .ticket-card__toggle-button.is-open .ticket-card__toggle-open {
    display: none;
  }
  .ticket-card__toggle-close {
    display: none;
  }
  .ticket-card__toggle-button.is-open .ticket-card__toggle-close {
    display: block;
  }
  .ticket-seat__text {
    margin: 0 0 24px;
  }
  .ticket-seat__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 32px;
    border-radius: 2px;
    background: #f6f6f6;
    gap: 16px;
  }
  .ticket-seat__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-seat__button {
    flex-shrink: 0;
  }
  .ticket-seat-box {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #afafaf;
  }
  .ticket-seat-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .ticket-seat-box__inner {
    max-width: 460px;
    margin: 0 auto;
  }
  .ticket-seat-box__title {
    margin: 0 0 16px;
    color: #535353;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-seat-box__block {
    margin-bottom: 40px;
  }
  .ticket-seat-box__block:last-child {
    margin-bottom: 0;
  }
  .ticket-seat-box__label {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form__section-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .ticket-form__section {
    padding-bottom: 40px;
    border-bottom: 1px solid #afafaf;
  }
  .ticket-form__section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .ticket-form__title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form__title span {
    margin: 2px 0 0 8px;
    vertical-align: text-top;
  }
  .ticket-form__text {
    margin: 0 0 16px;
  }
  .ticket-form__event-info {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #afafaf;
  }
  .ticket-form__event-title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.5;
  }
  .ticket-form__event-link {
    display: inline-block;
    margin-bottom: 5px;
    color: #06e;
    font-size: 16px;
    text-decoration: underline;
  }
  .ticket-payment-list {
    margin: 0;
    padding: 0;
    border: 1px solid #dedede;
    border-radius: 4px;
    background: #fff;
    list-style: none;
  }
  .ticket-payment-list__item {
    border-bottom: 1px solid #dedede;
  }
  .ticket-payment-list__item:last-child {
    border-bottom: 0;
  }
  .ticket-payment-list__panel {
    display: none;
    padding: 0 16px 24px;
  }
  .ticket-payment-list__text {
    margin: 0 0 16px;
  }
  .ticket-payment-list__input {
    margin-bottom: 16px;
  }
  .ticket-payment-radio {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: 16px;
    cursor: pointer;
  }
  .ticket-payment-radio.is-open {
    font-weight: 700;
  }
  .ticket-payment-radio::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 8px;
    width: 34px;
    height: 34px;
    transition: 0.3s all;
    border-radius: 50%;
    opacity: 0;
    background: #def2ef;
    pointer-events: none;
  }
  .ticket-payment-radio:hover::before {
    opacity: 1;
  }
  .ticket-payment-radio__input {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    appearance: none;
  }
  .ticket-payment-radio__text {
    display: block;
    position: relative;
    padding-left: 26px;
    transition: 0.3s all;
    line-height: 1.5;
  }
  .ticket-payment-radio__text::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    border: 1px solid #08b5ae;
    border-radius: 50%;
    background: #fff;
  }
  .ticket-payment-radio__input.is-error + .ticket-payment-radio__text::before {
    border-color: #ed0f00;
    background: #ffe5e2;
  }
  .ticket-payment-radio__text::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 4px;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 0.3s all;
    border-radius: 50%;
    background: #08b5ae;
  }
  .ticket-payment-radio__input:checked + .ticket-payment-radio__text::after {
    transform: scale(1);
  }
  .ticket-payment-card {
    margin-bottom: 20px;
  }
  .ticket-payment-card__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding: 24px 16px;
    border-radius: 4px;
    background: #f6f6f6;
  }
  .ticket-payment-card__box-text {
    margin: 0 0 8px;
    text-align: center;
  }
  .ticket-payment-card__text {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .ticket-payment-card-info {
    display: grid;
    grid-template-columns: auto 1fr;
    margin: 0 0 8px;
  }
  .ticket-payment-card-info__block {
    display: flex;
  }
  .ticket-payment-card-info__title {
    position: relative;
    padding-right: 1em;
    font-weight: 700;
  }
  .ticket-payment-card-info__title::after {
    content: "：";
    position: absolute;
    right: 0;
  }
  .ticket-payment-card-info__data {
    margin: 0;
    font-weight: 700;
  }
  .ticket-payment-card-list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 5px;
  }
  .ticket-payment-card-list__item {
    box-sizing: border-box;
    width: 65px;
    height: 40px;
    padding: 7px;
    border: 1px solid #dedede;
    border-radius: 6px;
    background: #fff;
  }
  .ticket-payment-card-list__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .ticket-form-detail {
    margin-bottom: 24px;
  }
  .ticket-form-detail:last-child {
    margin-bottom: 0;
  }
  .ticket-form-detail__title {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form-detail__title span {
    margin-top: 3px;
  }
  .ticket-form-detail__message {
    margin-bottom: 16px;
  }
  .ticket-form-detail__total {
    padding: 24px;
    border: 1px solid #dedede;
    border-radius: 8px;
  }
  .ticket-form-detail__box {
    border-bottom: 2px solid #dedede;
  }
  .ticket-form-detail__box:last-child {
    border-bottom: 0;
  }
  .ticket-form-detail__block {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .ticket-form-detail__block:last-child {
    margin-bottom: 0;
    border-bottom: 0;
  }
  .ticket-form-detail__name {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form-detail__price {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0 0 8px;
    gap: 0 8px;
  }
  .ticket-form-detail__price:last-child {
    margin-bottom: 0;
  }
  .ticket-form-detail__subtotal {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    gap: 4px;
  }
  .ticket-form-detail__subtotal span {
    font-size: 16px;
    line-height: 1.7;
    white-space: nowrap;
  }
  .ticket-form-seat {
    padding: 16px;
    border-radius: 4px;
    background: #f6f6f6;
  }
  .ticket-form-seat__title {
    margin: 0 0 4px;
    color: #535353;
    font-size: 12px;
    font-weight: 700;
  }
  .ticket-form-seat-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 4px;
    padding: 0;
    list-style: none;
  }
  .ticket-form-seat-list__item {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
  }
  .ticket-form-seat-list__item::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("../images/icon/black/ico_chair.svg") no-repeat center center/contain;
  }
  .ticket-commission-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px dashed #afafaf;
    gap: 8px;
  }
  .ticket-commission-list:last-child {
    border-bottom: 0;
  }
  .ticket-commission-list__title {
    flex: 1;
  }
  .ticket-commission-list__data {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    gap: 4px;
  }
  .ticket-commission-list__data span {
    font-size: 16px;
    line-height: 1.7;
    text-align: right;
    white-space: nowrap;
  }
  .ticket-total-list {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 8px;
    padding-top: 16px;
  }
  .ticket-total-list__title {
    flex: 1;
    font-weight: 700;
  }
  .ticket-total-list__data {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-total-list__data span {
    font-size: 22px;
    line-height: 1.7;
    text-align: right;
    white-space: nowrap;
  }
  .ticket-form-input {
    margin-bottom: 16px;
  }
  .ticket-form-input:last-child {
    margin-bottom: 0;
  }
  .ticket-form-input__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
  }
  .ticket-info-table {
    width: 100%;
  }
  .ticket-info-table tr {
    display: block;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .ticket-info-table tr:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .ticket-info-table__title {
    display: block;
    margin-bottom: 4px;
    color: #6e6e6e;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }
  .ticket-info-table__data {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .ticket-form-table {
    width: 100%;
    border-spacing: 0;
    border-top: 1px solid #dedede;
  }
  .ticket-form-table tr {
    display: flex;
    border-bottom: 1px solid #dedede;
  }
  .ticket-form-table__title {
    width: 190px;
    padding: 18px 10px 17px 0;
    font-size: 14px;
    text-align: left;
  }
  .ticket-form-table__title--em {
    color: #ed2769;
  }
  .ticket-form-table__data {
    flex: 1;
    padding: 16px 0;
  }
  .ticket-form-table__data--em {
    color: #ed2769;
    font-weight: 700;
  }
  .ticket-form-question {
    margin-bottom: 32px;
  }
  .ticket-form-question:last-child {
    margin-bottom: 0;
  }
  .ticket-form-question__title {
    display: block;
    margin-bottom: 16px;
  }
  .ticket-form-question__number {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1.5;
    gap: 8px;
  }
  .ticket-form-question__question {
    display: block;
  }
  .ticket-form-question__list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .ticket-form-note {
    margin-bottom: 32px;
  }
  .ticket-form-note__title {
    margin: 0 0 8px;
    color: #535353;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .ticket-form-note__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .ticket-form-note__date {
    margin: 0;
    text-align: right;
  }
  .ticket-share-link {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }
  .ticket-share-link__link {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 16px;
    gap: 4px;
  }
  .ticket-share-link__link::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: -1px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_share.svg") no-repeat center center/contain;
  }
  .ticket-share-link__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .ticket-share-link__link:hover::before {
    background: #08b5ae;
  }
  .ticket-message {
    margin-bottom: 40px;
  }
  .ticket-message__paragraph {
    margin-bottom: 32px;
  }
  .ticket-message__paragraph:last-child {
    margin-bottom: 0;
  }
  .ticket-message__text {
    margin: 0 0 8px;
  }
  .ticket-message__text:last-child {
    margin-bottom: 0;
  }
  .form-heading01 {
    margin: 0 0 40px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
  .form-heading02 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .form-heading02 span {
    margin-left: 8px;
    vertical-align: text-top;
  }
  .form-head {
    margin-bottom: 40px;
  }
  .form__section-wrap {
    margin-bottom: 32px;
  }
  .form__section-wrap:last-child {
    margin-bottom: 0;
  }
  .form__section-wrap--border {
    padding: 32px 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }
  .form__section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #afafaf;
  }
  .form__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .form__block {
    margin-bottom: 32px;
  }
  .form--confirm .form__block {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .form--confirm .form__block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .form__box .form__block {
    padding: 0;
    border: 0;
  }
  .form__block:last-child {
    margin-bottom: 0;
  }
  .form__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .form--confirm .form__title {
    margin: 0 0 4px;
    color: #6e6e6e;
    font-size: 14px;
  }
  .form__label {
    display: block;
  }
  .form__label span {
    margin: -2px 0 0 8px;
    vertical-align: text-top;
  }
  .form__text {
    margin: 0 0 8px;
  }
  .form__block-child {
    margin-bottom: 16px;
  }
  .form__block-child:last-child {
    margin-bottom: 0;
  }
  .form__label-child {
    display: block;
    margin: 0 0 4px;
    color: #535353;
    font-size: 14px;
    font-weight: 700;
  }
  .form__residence {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .form__box {
    padding: 24px;
    border: 1px solid #dedede;
    border-radius: 4px;
  }
  .form-name {
    display: flex;
    gap: 24px;
  }
  .form-name__block {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 16px;
  }
  .form-name__label {
    color: #535353;
    font-size: 14px;
    font-weight: 700;
  }
  .form-name__field {
    flex: 1;
  }
  .form-birth {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .form-birth__block {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .form-birth__year {
    width: 140px;
  }
  .form-birth__month, .form-birth__day {
    width: 94px;
  }
  .form-terms {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    margin-bottom: 32px;
  }
  .form-terms__title {
    margin: 0 0 8px;
    color: #535353;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .form-terms__date {
    display: block;
    margin: 0 0 8px;
    font-size: 14px;
    text-align: right;
  }
  .form-terms__content {
    box-sizing: border-box;
    flex: 1;
    max-height: 300px;
    padding: 24px;
    overflow-y: auto;
    border: 1px solid #dedede;
    border-radius: 4px;
    background: #fff;
  }
  .form-terms__content pre {
    margin: 0;
    font-family: "Hiragino Kaku Gothic Pro", meiryo, sans-serif;
    font-size: 16px;
    white-space: pre-wrap;
  }
  .form-terms__content#privacy p {
    margin: 0 0 8px;
  }
  .form-terms__content#privacy ul {
    margin-bottom: 8px;
  }
  .form-terms__content#privacy h4 {
    margin: 16px 0 8px;
  }
  .form-terms__table {
    display: grid;
    grid-auto-rows: auto;
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 20px auto 40px;
    border-right: 1px solid #dedede;
  }
  .form-terms__table:first-of-type {
    border-top: 1px solid #dedede;
  }
  .form-terms__table + .form-terms__table {
    margin-top: -40px;
  }
  .form-terms__table-title {
    order: 1;
    padding: 8px;
    border-bottom: 1px solid #dedede;
    border-left: 1px solid #dedede;
    background: #f6f6f6;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .form-terms__table-item {
    order: 2;
    padding: 8px;
    border-bottom: 1px solid #dedede;
    border-left: 1px solid #dedede;
    font-size: 14px;
    line-height: 1.5;
  }
  .form-terms__table-item a {
    font-size: 14px;
  }
  .form-error-text {
    position: relative;
    margin: 8px 0 0;
    padding-left: 24px;
    color: #ed0f00;
    font-size: 14px;
    line-height: 1.35;
  }
  .form-error-text:first-child {
    margin-top: 0;
  }
  .form-text-note {
    margin: 8px 0 0;
    padding-left: 1.2em;
    color: #535353;
    font-size: 14px;
    line-height: 1.35;
    text-indent: -1.2em;
  }
  .form-text-note + .form-text-note {
    margin-top: 4px;
  }
  .form-text-note:has(strong) {
    color: #ed2769;
  }
  .form-text-note:last-child {
    margin-bottom: 0;
  }
  .form-text-note::before {
    content: "※";
    margin-right: 0.2em;
  }
  .form-text-note strong {
    font-weight: 400;
  }
  .form-text-em {
    margin: 8px 0 0;
    color: #ed2769;
    font-size: 14px;
    line-height: 1.35;
  }
  .form-step {
    display: flex;
    margin: 0 0 40px;
    padding: 0;
    list-style-type: none;
  }
  .form-step__item {
    display: flex;
    position: relative;
    flex: 1;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    color: #afafaf;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }
  .form-step__item::before {
    content: "";
    display: block;
    z-index: 1;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    margin: 3px;
    border: 2px solid #afafaf;
    border-radius: 50%;
    background: #fff;
  }
  .form-step__item::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #afafaf;
  }
  .form-step__item:last-child::after {
    content: none;
  }
  .form-step__item[aria-current=step] {
    color: #191919;
    font-weight: 700;
    gap: 8px;
  }
  .form-step__item[aria-current=step]::before {
    width: 24px;
    height: 24px;
    margin: 0;
    border-color: #535353;
    background: #535353;
  }
  .form-select-list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 12px 24px;
  }
  .form-checkbox {
    padding: 15px;
    border-radius: 2px;
    background: #f6f6f6;
  }
  .form-checkbox.is-error {
    border: 1px solid #ed0f00;
    background: #ffe5e2;
  }
  .form-recaptcha {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #ffe8f0;
  }
  .form-recaptcha__text {
    margin: 0 0 10px;
  }
  .preview {
    position: fixed;
    z-index: 8;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 24px;
    background: rgba(25, 25, 25, 0.9);
    font-size: 22px;
    text-align: center;
  }
  .preview__text {
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
  }
  .preview__button {
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 7px 15px;
    transition: 0.3s all;
    border: 1px solid #535353;
    border-radius: 2px;
    background: #fff;
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    gap: 4px;
  }
  .preview__button:hover {
    border-color: #191919;
    background: #dedede;
  }
  .preview__button::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: -1px;
    background: url("../images/icon/black/ico_close.svg") no-repeat center center/contain;
  }
  .login__title {
    position: relative;
    margin: 0 0 32px;
    padding-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .login__title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 45px;
    height: 2px;
    transform: translateX(-50%);
    background: #08b5ae;
  }
  .login__section {
    margin-bottom: 40px;
  }
  .login__text {
    margin: 0 0 32px;
  }
  .login__text--center {
    text-align: center;
  }
  .login__text:last-child {
    margin-bottom: 0;
  }
  .login__text-large {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .login__box {
    padding: 32px;
    background: #f6f6f6;
  }
  .login__button-box {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .login-form--top {
    padding-bottom: 40px;
    border-bottom: 1px solid #afafaf;
  }
  .login-form__inner {
    padding: 32px 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }
  .login-form--top .login-form__inner {
    max-width: 460px;
    margin: 0 auto 24px;
    padding: 0;
    border: 0;
  }
  .login-form__block {
    margin-bottom: 24px;
  }
  .login-form__block:last-child {
    margin-bottom: 0;
  }
  .login-form__title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .login-form__box {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    max-width: 460px;
    margin: 0 auto;
    padding: 20px;
    background: #ffe8f0;
  }
  .login-form__text {
    margin: 0 0 10px;
  }
  .login-link {
    display: block;
    position: relative;
    width: fit-content;
    margin: 24px auto 0;
    padding: 0 20px 0 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    line-height: 1.7;
    text-decoration: none;
    word-break: break-all;
  }
  .login-link::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 16px;
    height: 16px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .login-link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .login-link:hover::before {
    right: -4px;
    background: #08b5ae;
  }
  .login-box {
    padding: 20px;
    background: #f6f6f6;
  }
  .login-box__title {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 1.5;
  }
  .login-box__text {
    margin: 0;
  }
  .login-box__button-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .login-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    padding: 32px;
    background: #f6f6f6;
    gap: 8px;
  }
  .login-email__title {
    margin: 0;
    font-size: 14px;
  }
  .login-email__address {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .error__heading {
    margin: 0 0 40px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .error__text {
    margin: 0;
    text-align: center;
  }
  .password__text {
    margin: 0 0 32px;
  }
  .password__block {
    padding: 32px 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }
  .password__title {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.5;
  }
  .password__link {
    display: block;
    position: relative;
    width: fit-content;
    margin: 24px auto 0;
    padding: 0 20px 0 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    line-height: 1.7;
    text-decoration: none;
    word-break: break-all;
  }
  .password__link::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 16px;
    height: 16px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .password__link:hover {
    color: #08b5ae;
  }
  .password__link:hover::before {
    background: #08b5ae;
  }
  .promoter__section {
    margin-bottom: 80px;
  }
  .promoter__section:last-child {
    margin-bottom: 0;
  }
  .promoter__top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .promoter__finish {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .promoter-cover {
    margin: -40px 0 24px;
    aspect-ratio: 5/1;
  }
  .promoter-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .promoter-info {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
  }
  .promoter-info__image {
    flex-shrink: 0;
    width: 138px;
    height: 138px;
    margin-top: -98px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .promoter:first-child .promoter-info__image {
    margin-top: 0;
  }
  .promoter-info__image img {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 4px;
    object-fit: contain;
  }
  .promoter-info__block {
    position: relative;
    flex: 1;
  }
  .promoter-info__heading {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
  .promoter-info__link {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
  }
  .promoter-info__text {
    margin: 0;
    color: #535353;
    font-size: 14px;
  }
  .promoter-info-button {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 6px 15px 4px;
    transition: 0.3s all;
    border: 1px solid #535353;
    border-radius: 2px;
    background: #fff;
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .promoter-info-button--arrow {
    padding-right: 35px;
  }
  .promoter-info-button--arrow::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 15px;
    width: 16px;
    height: 16px;
    background: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .promoter-info-button:hover {
    border-color: #191919;
    background: #dedede;
  }
  .promoter-pickup {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
    margin: 0 0 40px;
    padding: 0;
    list-style-type: none;
    gap: 24px;
  }
  .promoter-pickup__item {
    flex: 1;
  }
  .promoter-event-list {
    padding: 40px 0;
    background: #f6f6f6;
  }
  .promoter-event-list__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .promoter-event-text {
    margin: 0;
    padding: 40px;
    background: #f6f6f6;
    text-align: center;
  }
  .inquiry__complete {
    margin: 0 0 32px;
  }
  .inquiry-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    border-top: 1px solid #dedede;
  }
  .inquiry-list__link {
    display: block;
    position: relative;
    padding: 24px 32px 24px 0;
    transition: 0.3s all;
    border-bottom: 1px solid #dedede;
    color: #191919;
    text-decoration: none;
  }
  .inquiry-list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .inquiry-list__link:hover {
    opacity: 0.7;
  }
  .inquiry-list__link:hover::before {
    background: #08b5ae;
  }
  .inquiry-list__head {
    margin-bottom: 8px;
  }
  .inquiry-list__title-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 4px;
    gap: 4px;
  }
  .inquiry-list__title-box:last-child {
    margin-bottom: 0;
  }
  .inquiry-list__title {
    position: relative;
    margin: 0;
    overflow: hidden;
    color: #191919;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .inquiry-list__title:has(.inquiry-list__badge) {
    padding-left: 16px;
    font-weight: 700;
  }
  .inquiry-list__badge {
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ed2769;
    font-size: 0;
  }
  .inquiry-list__number {
    flex-shrink: 0;
    padding: 2px 8px;
    border: 1px solid #dedede;
    border-radius: 50px;
    background: #fff;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
  }
  .inquiry-list__number span {
    font-size: 12px;
    font-weight: 700;
  }
  .inquiry-list__event-name {
    display: block;
    overflow: hidden;
    color: #535353;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .inquiry-list__text {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: #191919;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .inquiry-list__sub-text {
    display: -webkit-box;
    position: relative;
    margin: 0 0 8px;
    padding-left: 28px;
    overflow: hidden;
    color: #535353;
    font-size: 14px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .inquiry-list__sub-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: url("../images/icon/black/ico_arrow_response.svg") no-repeat center center/100% 100%;
  }
  .is-owner.inquiry-list__sub-text::before {
    background-image: url("../images/icon/black/ico_operator.svg");
  }
  .inquiry-list__date {
    display: block;
    color: #535353;
    font-size: 14px;
    text-align: right;
  }
  .inquiry-detail-box {
    margin-bottom: 24px;
    padding: 24px;
    background: #f6f6f6;
  }
  .inquiry-detail-box__heading {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .inquiry-detail-box__heading:last-child {
    margin-bottom: 0;
  }
  .inquiry-detail-box__link {
    display: flex;
    align-items: center;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
    gap: 4px;
  }
  .inquiry-detail-box__link::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .inquiry-detail-box__link:hover {
    color: #08b5ae;
  }
  .inquiry-detail-box__link:hover::after {
    background: #08b5ae;
  }
  .inquiry-detail-box__text {
    margin: 0;
  }
  .inquiry-detail-list {
    margin: 0 0 24px;
    padding: 0;
    list-style-type: none;
  }
  .inquiry-detail-list__item {
    padding: 24px 0;
    border-bottom: 1px solid #dedede;
  }
  .inquiry-detail-list__item:first-child {
    padding-top: 0;
  }
  .inquiry-detail-list__toggle {
    display: block;
    position: relative;
    padding-right: 28px;
    text-decoration: none;
  }
  .inquiry-detail-list__toggle::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 5px;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #191919;
  }
  .inquiry-detail-list__item:first-child .inquiry-detail-list__toggle::before {
    content: none;
  }
  .inquiry-detail-list__toggle::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 11px;
    width: 2px;
    height: 14px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .inquiry-detail-list__item.is-open .inquiry-detail-list__toggle::after {
    transform: rotate(-90deg);
  }
  .inquiry-detail-list__item:first-child .inquiry-detail-list__toggle::after {
    content: none;
  }
  .inquiry-detail-list__badge {
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ed2769;
    font-size: 0;
  }
  .inquiry-detail-list__name {
    position: relative;
    margin: 0 0 4px;
    padding-left: 28px;
    overflow: hidden;
    transition: 0.3s all;
    color: #191919;
    font-size: 16px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .inquiry-detail-list__item.is-open .inquiry-detail-list__name {
    white-space: normal;
  }
  .inquiry-detail-list__toggle:has(.is-open) .inquiry-detail-list__name {
    white-space: normal;
  }
  .inquiry-detail-list__item:first-child .inquiry-detail-list__name {
    padding-left: 0;
  }
  .inquiry-detail-list__name::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background: url("../images/icon/black/ico_arrow_response.svg") no-repeat center center/100% 100%;
  }
  .inquiry-detail-list__item:first-child .inquiry-detail-list__name::before {
    content: none;
  }
  .is-owner.inquiry-detail-list__name::before {
    background-image: url("../images/icon/black/ico_operator.svg");
  }
  .inquiry-detail-list__name:has(span) {
    padding-left: 40px;
    font-weight: 700;
  }
  .inquiry-detail-list__name:has(span)::before {
    left: 12px;
  }
  .inquiry-detail-list__date {
    display: block;
    color: #535353;
    font-size: 12px;
    line-height: 1.35;
  }
  .inquiry-detail-list__panel {
    display: none;
    padding-top: 10px;
  }
  .inquiry-detail-list__panel.is-open {
    display: block;
  }
  .inquiry-detail-list__text {
    margin: 0;
  }
  .inquiry-detail-list__toggle-text {
    display: -webkit-box;
    position: relative;
    max-height: 130px;
    margin: 0;
    padding-top: 10px;
    overflow: hidden;
    transition: 0.3s all;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    --max-height: 130;
  }
  .inquiry-detail-list__toggle-text.is-open {
    -webkit-line-clamp: inherit;
    line-clamp: inherit;
  }
  .inquiry-detail-list__button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    opacity: 0;
    background: transparent;
    font-size: 0;
  }
  .inquiry-detail-list__button::before {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 5px;
    width: 14px;
    height: 2px;
    transform: translateY(-50%);
    border-radius: 2px;
    background: #191919;
  }
  .inquiry-detail-list__button::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 11px;
    width: 2px;
    height: 14px;
    transform: translateY(-50%);
    transition: 0.3s all;
    border-radius: 2px;
    background: #191919;
  }
  .is-open.inquiry-detail-list__button::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .is-open > .inquiry-detail-list__button-close {
    display: none;
  }
  .inquiry-detail-list__button-open {
    display: none;
  }
  .is-open > .inquiry-detail-list__button-open {
    display: block;
  }
  .inquiry-detail-form__title {
    margin: 0 0 8px;
    color: #535353;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .inquiry-intro {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
    padding: 32px;
    background: #fff2eb;
    gap: 16px;
  }
  .inquiry-intro__title {
    display: flex;
    position: relative;
    margin: 0;
    padding-left: 24px;
    color: #cc4100;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .inquiry-intro__text {
    margin: 0 0 8px;
  }
  .inquiry-intro__text:last-child {
    margin-bottom: 0;
  }
  .top__notice {
    margin-bottom: 32px;
  }
  .top__banner {
    margin-bottom: 80px;
  }
  .top__banner:last-child {
    margin-bottom: 0;
  }
  .top-heading {
    position: relative;
    margin: 0 0 32px;
    padding-bottom: 8px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-heading span {
    display: block;
    font-size: 16px;
    text-align: center;
  }
  .top-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 46px;
    height: 2px;
    transform: translateX(-50%);
    background: #08b5ae;
  }
  .top-hero {
    margin-bottom: 32px;
    padding: 30px 40px 0;
  }
  .top-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 612px;
    background: url("../images/top/bg_hero.webp") no-repeat center center/cover;
  }
  .top-hero__inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .top-hero__heading {
    margin: 0 0 32px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-hero__box {
    padding: 40px 48px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  }
  .top-hero__keyword {
    margin-bottom: 32px;
    padding: 0 12px;
  }
  .top-hero__keyword-title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
  }
  .top-hero__keyword-block {
    margin-bottom: 16px;
  }
  .top-hero__keyword-block:last-child {
    margin-bottom: 0;
  }
  .top-hero-search {
    position: relative;
    margin-bottom: 32px;
  }
  .top-hero-search__input {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 13px 64px 13px 24px;
    overflow: hidden;
    transition: 0.3s all;
    border: 1px solid transparent;
    border-radius: 100px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .top-hero-search__input::-webkit-search-cancel-button {
    appearance: none;
  }
  .top-hero-search__input:focus-visible {
    border-radius: 100px;
    border-color: #191919;
    outline: 0;
  }
  .top-hero-search__button {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 24px;
    width: 24px;
    height: 24px;
    padding: 0;
    transform: translateY(-50%);
    transition: 0.3s all;
    border: 0;
    background: url("../images/icon/black/ico_search.svg") no-repeat 0 0/100% 100%;
    font-size: 0;
  }
  .top-hero-keyword {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .top-hero-keyword__link {
    display: block;
    padding: 5px 12px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    color: #191919;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
  }
  .top-hero-keyword__link:hover {
    background: #f6f6f6;
    box-shadow: none;
  }
  .top-login {
    display: flex;
    gap: 24px;
    justify-content: center;
  }
  .top-login__button {
    display: block;
    position: relative;
    flex: 1;
    padding: 15px 40px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #17349c;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .top-login__button:hover {
    background: #00215c;
  }
  .top-login__button--buyer {
    background: #08b5ae;
  }
  .top-login__button--buyer:hover {
    background: #0f7f7b;
  }
  .top-login__button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background: url("../images/icon/white/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .top-new-event {
    margin-bottom: 80px;
  }
  .top-new-event__button-box {
    display: flex;
    justify-content: center;
  }
  .top-event-slider {
    position: relative;
    margin: -10px 0 22px;
    padding: 10px 0;
    overflow: hidden;
    transition: 0.3s all;
    opacity: 0;
  }
  .top-event-slider.swiper-initialized {
    opacity: 1;
  }
  .top-event-slider__item {
    width: 257px !important;
    height: auto !important;
  }
  .top-event-slider__control {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin: 32px auto 0;
    gap: 0 12px;
  }
  .top-event-slider .swiper-notification {
    display: none;
  }
  .top-pickup-event {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 80px;
  }
  .top-pickup-event__button-box {
    display: flex;
    justify-content: center;
  }
  .top-pickup-event-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    margin: 0 0 32px;
    padding: 0;
    list-style-type: none;
    gap: 32px 24px;
  }
  .top-owner {
    position: relative;
    z-index: 0;
    margin-bottom: 80px;
    padding: 80px 40px;
    background: #edf3ff;
  }
  .top-owner::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 370px;
    background: url("../images/top/bg_owner.webp") no-repeat center center/cover;
  }
  .top-owner::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 370px;
    background: rgba(23, 52, 156, 0.6);
  }
  .top-owner__inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .top-owner__heading {
    position: relative;
    margin: 0 0 40px;
    padding-bottom: 8px;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
  }
  .top-owner__heading span {
    display: block;
    font-size: 16px;
    text-align: center;
  }
  .top-owner__heading::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 152px;
    background: rgba(23, 52, 156, 0.6);
    filter: blur(50px);
  }
  .top-owner__heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 46px;
    height: 2px;
    transform: translateX(-50%);
    background: #fff;
  }
  .top-owner__lead {
    margin: 0 0 24px;
    color: #fff;
    font-size: 30px;
    line-height: 1.5;
    text-align: center;
  }
  .top-owner__lead span {
    display: block;
    font-size: 18px;
  }
  .top-owner__section {
    margin-bottom: 64px;
  }
  .top-owner__section:last-child {
    margin-bottom: 0;
  }
  .top-owner__title {
    margin: 0 0 16px;
    color: #00215c;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-owner__title span {
    display: block;
    font-size: 18px;
  }
  .top-owner__text {
    margin: 0 0 24px;
    color: #00215c;
    font-size: 16px;
    text-align: center;
  }
  .top-owner__text-large {
    margin: 0 0 32px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-owner__button-box {
    display: flex;
    justify-content: center;
  }
  .top-owner-about {
    display: flex;
    margin: 0 0 30px;
    padding: 24px;
    list-style-type: none;
    background: #fff;
  }
  .top-owner-about__item {
    flex: 1;
    border-right: 1px solid #dedede;
  }
  .top-owner-about__item:last-child {
    border-right: 0;
  }
  .top-owner-about__image {
    width: 80px;
    margin: 0 auto 24px;
  }
  .top-owner-about__image img {
    width: 100%;
    height: auto;
  }
  .top-owner-about__text {
    margin: 0;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-owner-about__text strong {
    display: block;
    color: #ed2769;
  }
  .top-owner-function {
    display: flex;
    flex-direction: column;
    margin: 0 0 32px;
    padding: 0;
    list-style-type: none;
    gap: 16px;
  }
  .top-owner-function__item {
    display: flex;
    align-items: center;
    padding: 24px;
    background: #fff;
    gap: 24px;
  }
  .top-owner-function__image {
    flex-shrink: 0;
    width: 100px;
  }
  .top-owner-function__image img {
    width: 100%;
    height: auto;
  }
  .top-owner-function__title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .top-owner-function__text {
    margin: 0;
    font-size: 14px;
  }
  .top-owner-function__text strong {
    color: #ed2769;
    font-weight: 700;
  }
  .top-owner-price {
    display: flex;
    margin: 0 0 24px;
    padding: 0;
    list-style-type: none;
    gap: 16px;
  }
  .top-owner-price__item {
    position: relative;
    flex: 1;
    padding: 40px 24px 24px;
    background: #fff;
  }
  .top-owner-price__item::before {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 64px;
    height: 64px;
    background: url("../images/top/img_free.png") no-repeat 0 0/contain;
  }
  .top-owner-price__image {
    width: 80px;
    margin: 0 auto 16px;
  }
  .top-owner-price__image img {
    width: 100%;
    height: auto;
  }
  .top-owner-price__text {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-owner-price__text span {
    display: block;
    color: #ed2769;
  }
  .top-owner-case {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    margin-bottom: 24px;
    padding: 24px;
    list-style-type: none;
    background: #fff;
    gap: 10px;
  }
  .top-owner-case__item {
    height: 35px;
  }
  .top-owner-case__item img {
    width: auto;
    height: 100%;
  }
  .top-news {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 80px;
  }
  .top-news__link {
    display: block;
    position: relative;
    width: fit-content;
    margin-left: auto;
    padding-right: 20px;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
    word-break: break-all;
  }
  .top-news__link::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 16px;
    height: 16px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .top-news__link:hover {
    color: #08b5ae;
  }
  .top-news__link:hover::before {
    background: #08b5ae;
  }
  .top-news-list {
    margin: 0 0 16px;
    padding: 0;
    list-style-type: none;
  }
  .top-news-list__item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dedede;
  }
  .top-news-list__item:last-child {
    margin-bottom: 0;
  }
  .top-news-list__status {
    margin-bottom: 4px;
  }
  .top-news-list__date {
    font-size: 14px;
    line-height: 1.5;
  }
  .top-news-list__link {
    display: -webkit-box;
    position: relative;
    padding-right: 32px;
    overflow: hidden;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .top-news-list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .top-news-list__link:hover {
    color: #08b5ae;
  }
  .top-news-list__link:hover::before {
    background: #08b5ae;
  }
  .top-news-list__link span {
    margin: 3px 8px 0 0;
    vertical-align: top;
  }
  .top-search {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 80px;
  }
  .top-search-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .top-search-list--area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
  .top-search-list__head {
    margin: 0 0 16px;
  }
  .top-search-list__toggle {
    display: none;
  }
  .top-search-list__link {
    display: inline-flex;
    align-items: center;
    transition: 0.3s all;
    color: #191919;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    gap: 4px;
  }
  .top-search-list__link::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin-top: -1px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .top-search-list__link:hover {
    color: #08b5ae;
  }
  .top-search-list__link:hover::after {
    background: #08b5ae;
  }
  .top-search-list__panel {
    display: block !important;
  }
  .top-search-child-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .top-search-child-list__link {
    display: block;
    padding: 5px 12px 4px;
    transition: 0.3s all;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
    color: #191919;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
  }
  .top-search-child-list__link:hover {
    background: #f6f6f6;
    box-shadow: none;
  }
  .my-top {
    padding-top: 64px;
  }
  .my-top__heading01 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    margin: 0 auto 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-top__heading02 {
    position: relative;
    margin: 0 0 32px;
    padding-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .my-top__heading02::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 46px;
    height: 2px;
    transform: translateX(-50%);
    background: #08b5ae;
  }
  .my-top__section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 80px;
  }
  .my-top-nav + .my-top__section {
    margin-top: 64px;
  }
  .my-top__section--small {
    max-width: 670px;
  }
  .my-top__section:last-child {
    margin-bottom: 0;
  }
  .my-top__message {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 80px;
  }
  .my-top-nav + .my-top__message {
    margin-top: 64px;
  }
  .my-top__banner {
    margin-bottom: 64px;
  }
  .my-top__banner:last-child {
    margin-bottom: 0;
  }
  .my-top__button-box {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .my-top-nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    position: sticky;
    z-index: 3;
    top: 0;
    left: 0;
  }
  .my-top-nav__list {
    display: flex;
    margin: 0;
    padding: 12px 16px;
    list-style-type: none;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .my-top-nav__item {
    flex: 1;
    border-right: 1px solid #def2ef;
  }
  .my-top-nav__item:last-child {
    border-right: 0;
  }
  .my-top-nav__link {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
    color: #191919;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  .my-top-nav__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .my-top-nav__link::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .my-top-nav__link--ticket::before {
    background-image: url("../images/icon/main/ico_ticket.svg");
  }
  .my-top-nav__link--history::before {
    background-image: url("../images/icon/main/ico_history.svg");
  }
  .my-top-nav__link--favorite::before {
    background-image: url("../images/icon/main/ico_favorite.svg");
  }
  .my-top-nav__link--setting::before {
    background-image: url("../images/icon/main/ico_setting.svg");
  }
  .my-top-nav__link--news::before {
    background-image: url("../images/icon/main/ico_notifications.svg");
  }
  .my-top-nav__number {
    position: absolute;
    top: -4px;
    left: 50%;
    padding: 4px 6px;
    transform: translateX(15px);
    border-radius: 100px;
    background: #ed2769;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
  }
  .my-top-alert {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 24px;
  }
  .my-top-alert__text {
    position: relative;
    margin: 0;
    padding-left: 22px;
    color: #ed2769;
    line-height: 1.35;
  }
  .my-top-alert__link {
    position: relative;
    padding-right: 20px;
    transition: 0.3s all;
    color: #ed2769;
    text-decoration: none;
  }
  .my-top-alert__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #ed2769;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .my-top-alert__link:hover {
    color: #c80253;
    text-decoration: underline;
  }
  .my-top-alert__link:hover::after {
    right: -4px;
    background: #c80253;
  }
  .my-top-favorite-list {
    display: flex;
    margin: -8px;
    padding: 0;
    list-style-type: none;
  }
  .my-top-favorite-list__item {
    flex: 1;
  }
  .my-top-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
  }
  .my-top-menu__item:first-child {
    grid-column: 1/3;
    grid-row: 1;
  }
  .my-top-menu__item:nth-child(2) {
    grid-column: 3/5;
    grid-row: 1;
  }
  .my-top-menu__link {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: 0.3s all;
    border: 1px solid #08b5ae;
    border-radius: 2px;
    color: #191919;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    gap: 2px;
  }
  .my-top-menu__link:hover {
    background: #edfaf8;
    color: #08b5ae;
  }
  .my-top-menu__item:first-child .my-top-menu__link, .my-top-menu__item:nth-child(2) .my-top-menu__link {
    flex-direction: row;
    gap: 4px;
  }
  .my-top-menu__link::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .my-top-menu__link--ticket::before {
    background-image: url("../images/icon/main/ico_ticket.svg");
  }
  .my-top-menu__link--history::before {
    background-image: url("../images/icon/main/ico_history.svg");
  }
  .my-top-menu__link--favorite::before {
    background-image: url("../images/icon/main/ico_favorite.svg");
  }
  .my-top-menu__link--setting::before {
    background-image: url("../images/icon/main/ico_setting.svg");
  }
  .my-top-menu__link--news::before {
    background-image: url("../images/icon/main/ico_notifications.svg");
  }
  .my-top-menu__link--inquiry::before {
    background-image: url("../images/icon/main/ico_message.svg");
  }
  .my-top-menu__number {
    position: absolute;
    top: 8px;
    left: 50%;
    padding: 4px 6px;
    transform: translateX(15px);
    border-radius: 100px;
    background: #ed2769;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
  }
  .my-top-search {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    margin-bottom: 80px;
  }
  .my-top-search__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
    background: #f6f6f6;
  }
  .my-top-search__title {
    margin: 0 0 30px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .my-top-search__input {
    min-width: 460px;
  }
  .my-top-pickup-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
    margin: -8px -8px 24px;
    padding: 0;
    list-style-type: none;
    gap: 16px 8px;
  }
  .my-top-news-list {
    margin: 0 0 16px;
    padding: 0;
    list-style-type: none;
  }
  .my-top-news-list__item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dedede;
  }
  .my-top-news-list__item:last-child {
    margin-bottom: 0;
  }
  .my-top-news-list__status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
  }
  .my-top-news-list__link {
    display: -webkit-box;
    position: relative;
    padding-right: 32px;
    overflow: hidden;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
  }
  .my-top-news-list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .my-top-news-list__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .my-top-news-list__link:hover::before {
    right: -4px;
    background: #08b5ae;
  }
  .my-top-news-list__link span {
    margin: 3px 8px 0 0;
    vertical-align: top;
  }
  .my-top-news-list__date {
    font-size: 14px;
    line-height: 1.5;
  }
  .my-ticket {
    max-width: 670px;
    margin: 0 auto;
  }
  .my-ticket__section {
    margin-bottom: 64px;
  }
  .my-ticket__section:last-child {
    margin-bottom: 0;
  }
  .my-ticket__content {
    margin-bottom: 40px;
    padding: 32px;
    background: #f6f6f6;
  }
  .my-ticket__box {
    padding: 32px;
    background: #f6f6f6;
  }
  .my-ticket__text {
    margin: 0 0 16px;
  }
  .my-ticket__text strong {
    font-weight: 700;
  }
  .my-ticket__notice {
    margin-bottom: 40px;
  }
  .my-ticket__button-box {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
  .my-ticket__link {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  .my-ticket__message {
    margin: 0 0 16px;
    padding: 16px;
    border-radius: 2px;
    background: #f6f6f6;
    font-weight: 700;
    text-align: center;
  }
  .my-ticket__image {
    max-width: 900px;
    margin: 0 auto;
  }
  .my-ticket__image img {
    width: 100%;
    height: auto;
  }
  .my-ticket-button-box {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
  }
  .my-ticket-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .my-ticket-list--single {
    margin-bottom: 16px;
  }
  .my-ticket-list:last-child {
    margin-bottom: 0;
  }
  .my-ticket-list__item {
    margin-bottom: 16px;
    padding: 24px;
    border: 1px solid #dedede;
    border-radius: 8px;
  }
  .my-ticket-list--single .my-ticket-list__item {
    padding: 0;
    border: 0;
    border-radius: 0;
  }
  .my-ticket-list__item:last-child {
    margin-bottom: 0;
  }
  .my-ticket-list__event {
    display: flex;
    margin-bottom: 16px;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
    gap: 16px;
  }
  .my-ticket-list__summary {
    display: flex;
    gap: 16px;
    padding: 24px 24px 32px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .my-ticket-list__image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
  }
  .my-ticket-list__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s all;
  }
  a.my-ticket-list__event:hover .my-ticket-list__image img {
    scale: 1.1;
  }
  .my-ticket-list__event-name {
    display: -webkit-box;
    margin: 0 0 10px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: 0.3s all;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  a.my-ticket-list__event:hover .my-ticket-list__event-name {
    color: #08b5ae;
    text-decoration: underline;
  }
  .my-ticket-list__event-name span {
    margin-right: 5px;
    vertical-align: text-top;
  }
  .my-ticket-list__text {
    display: -webkit-box;
    position: relative;
    margin: 0 0 4px;
    padding-left: 28px;
    overflow: hidden;
    color: #191919;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .my-ticket-list__text:last-child {
    margin-bottom: 0;
  }
  .my-ticket-list__text--date {
    display: block;
  }
  .my-ticket-list__owner, .my-ticket-list__place, .my-ticket-list__date {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .my-ticket-list__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .my-ticket-list__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .my-ticket-list__owner {
    background-image: url("../images/icon/black/ico_apartment.svg");
  }
  .my-ticket-list__time {
    display: inline-block;
  }
  .my-ticket-list__bottom {
    display: flex;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #dedede;
    gap: 16px;
  }
  .my-ticket-list__ticket-info {
    display: block;
    flex: 1;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
  }
  .my-ticket-list__ticket-info:last-child {
    border-right: 0;
  }
  .my-ticket-list__tag {
    display: flex;
    gap: 5px;
    margin-bottom: 4px;
  }
  .my-ticket-list__title {
    margin: 0 0 4px;
    transition: 0.3s all;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  a.my-ticket-list__ticket-info:hover .my-ticket-list__title {
    color: #08b5ae;
    text-decoration: underline;
  }
  .my-ticket-list__number {
    display: flex;
    margin: 0;
  }
  .my-ticket-list__number-title {
    white-space: nowrap;
  }
  .my-ticket-list__number-title::after {
    content: "：";
  }
  .my-ticket-list__number-data {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-clamp: 1;
  }
  .my-ticket-list__ticket {
    display: flex;
    margin: 0;
  }
  .my-ticket-list__ticket-title {
    color: #535353;
    font-size: 14px;
    white-space: nowrap;
  }
  .my-ticket-list__ticket-title::after {
    content: "：";
  }
  .my-ticket-list__ticket-data {
    margin: 0;
    color: #535353;
    font-size: 14px;
  }
  .my-ticket-list__action {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 4px;
    background: #f6f6f6;
    gap: 16px;
  }
  .my-ticket-list__button {
    display: inline-flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 12px 11px;
    transition: 0.3s all;
    border: 1px solid #191919;
    border-radius: 2px;
    background: #191919;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    gap: 4px;
  }
  .my-ticket-list__button:hover {
    background: #535353;
  }
  .my-ticket-list__share {
    display: inline-flex;
    align-items: center;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 12px;
    line-height: 1.35;
    text-decoration: none;
    gap: 4px;
  }
  .my-ticket-list__share::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    transition: 0.3s all;
    background: #191919;
    mask-image: url("../images/icon/black/ico_send.svg");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center center;
  }
  .my-ticket-list__share--retry::before {
    mask-image: url("../images/icon/black/ico_send_outline.svg");
  }
  .my-ticket-list__share--return::before {
    mask-image: url("../images/icon/black/ico_arrow_response.svg");
  }
  .my-ticket-list__share:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .my-ticket-list__share:hover::before {
    background: #08b5ae;
  }
  .my-ticket-link {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .my-ticket-link__item {
    border-bottom: 1px solid #dedede;
  }
  .my-ticket-link__item:first-child {
    border-top: 1px solid #dedede;
  }
  .my-ticket-link__link {
    display: block;
    position: relative;
    padding: 16px 34px 16px 0;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
  }
  .my-ticket-link__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #535353;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .my-ticket-link__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .my-ticket-link__link:hover::before {
    right: -4px;
    background: #08b5ae;
  }
  .my-ticket-online__inner {
    margin: 0 -40px 40px;
    padding: 32px 40px;
    background: #f6f6f6;
  }
  .my-ticket-online__summary {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .my-ticket-online__title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-online__text {
    margin: 0 0 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .my-ticket-online__text:last-child {
    margin: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .my-ticket-online__box {
    position: relative;
    padding: 32px 24px 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  }
  .my-ticket-online__box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 22px);
    height: 16px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    background-image: radial-gradient(circle, #dedede 4px, transparent 4px);
    background-repeat: repeat-x;
    background-position: center center;
    background-size: 16px 16px;
  }
  .my-ticket-online__info {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .my-ticket-online__info:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .my-ticket-online__info-box {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .my-ticket-online__name {
    display: block;
    font-weight: 700;
  }
  .my-ticket-online__number {
    display: flex;
    margin: 0;
  }
  .my-ticket-online__number-title {
    flex-shrink: 0;
    color: #535353;
  }
  .my-ticket-online__number-title::after {
    content: "：";
  }
  .my-ticket-online__number-data {
    margin: 0;
    color: #535353;
  }
  .my-ticket-online__ticket-name {
    margin: 0 0 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-online__list {
    display: flex;
    align-items: center;
    margin: 0 0 4px;
  }
  .my-ticket-online__list:last-child {
    margin-bottom: 0;
  }
  .my-ticket-online__list-title {
    flex-shrink: 0;
    font-size: 12px;
    white-space: nowrap;
  }
  .my-ticket-online__list-title::after {
    content: "‖";
    margin: 0 4px;
  }
  .my-ticket-online__list-data {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-all;
  }
  .my-ticket-online__sub-text {
    margin: 0;
    color: #535353;
    font-size: 14px;
  }
  .my-ticket-online__sub-text br {
    visibility: hidden;
  }
  .my-ticket-online__promoter {
    margin: 0;
  }
  .my-ticket-online__promoter-title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-online-info {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 4px;
  }
  .my-ticket-online-info__block {
    display: flex;
    gap: 12px;
    font-size: 16px;
  }
  .my-ticket-online-info__block:last-child {
    margin-bottom: 0;
  }
  .my-ticket-online-info__title {
    flex: 0 0 auto;
    width: 91px;
    white-space: nowrap;
  }
  .my-ticket-online-info__title span {
    display: flex;
    position: relative;
    align-items: center;
    gap: 4px;
  }
  .my-ticket-online-info__title span::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: -1px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .my-ticket-online-info__data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    gap: 0 10px;
  }
  .my-ticket-online-info__data span {
    display: block;
    width: 100%;
  }
  .my-ticket-online-info__date::before {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .my-ticket-online-info__time::before {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .my-ticket-online-info__place::before {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .my-ticket-online-info__sub-time {
    display: flex;
    gap: 0 10px;
    flex-wrap: wrap;
    align-items: center;
  }
  .my-ticket-online-info-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    color: #535353;
    font-size: 14px;
    gap: 0 5px;
  }
  .my-ticket-online-info-time--large {
    color: #191919;
    font-size: 16px;
  }
  .my-ticket-online-info-time__date {
    margin: 0;
  }
  .my-ticket-print {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 24px;
    gap: 16px;
  }
  .my-ticket-print__text {
    margin: 0;
    font-size: 14px;
  }
  .my-ticket-summary {
    padding: 24px 24px 32px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .my-ticket-summary__title {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-summary__link {
    display: inline-block;
    position: relative;
    align-items: center;
    padding-right: 34px;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
    gap: 4px;
  }
  .my-ticket-summary__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .my-ticket-summary__link:hover {
    color: #08b5ae;
    text-decoration: underline;
  }
  .my-ticket-summary__link:hover::after {
    right: -4px;
    background: #08b5ae;
  }
  .my-ticket-summary-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 8px;
  }
  .my-ticket-summary-list__block {
    display: flex;
    gap: 8px;
    font-size: 16px;
  }
  .my-ticket-summary-list__block:last-child {
    margin-bottom: 0;
  }
  .my-ticket-summary-list__title {
    flex: 0 0 auto;
    width: 91px;
    white-space: nowrap;
  }
  .my-ticket-summary-list__title span {
    display: flex;
    position: relative;
    align-items: center;
    gap: 4px;
    font-size: 16px;
  }
  .my-ticket-summary-list__title span::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: -1px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .my-ticket-summary-list__data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    gap: 0 10px;
  }
  .my-ticket-summary-list__data span {
    display: block;
    width: 100%;
  }
  .my-ticket-summary-list__date::before {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .my-ticket-summary-list__time::before {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .my-ticket-summary-list__place::before {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .my-ticket-summary-list__sub-time {
    display: flex;
    gap: 0 10px;
    flex-wrap: wrap;
    align-items: center;
  }
  .my-ticket-summary-list-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    color: #535353;
    font-size: 14px;
    gap: 0 4px;
  }
  .my-ticket-summary-list-time--large {
    color: #191919;
    font-size: 16px;
  }
  .my-ticket-summary-list-time__date {
    margin: 0;
  }
  .my-ticket-info {
    position: relative;
    padding: 32px 24px 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.08);
  }
  .my-ticket-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 22px);
    height: 16px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    background-image: radial-gradient(circle, #dedede 4px, transparent 4px);
    background-repeat: repeat-x;
    background-position: center center;
    background-size: 16px 16px;
  }
  .my-ticket-info__block {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .my-ticket-info__block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .my-ticket-info__content {
    flex: 1;
  }
  .my-ticket-info__box {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #afafaf;
  }
  .my-ticket-info__name {
    font-weight: 700;
    text-align: center;
  }
  .my-ticket-info__number {
    display: flex;
    margin: 0;
    color: #535353;
  }
  .my-ticket-info__number-title::after {
    content: "：";
  }
  .my-ticket-info__number-data {
    margin: 0;
  }
  .my-ticket-info__list {
    display: flex;
    align-items: center;
    margin: 0 0 4px;
  }
  .my-ticket-info__list:last-child {
    margin-bottom: 0;
  }
  .my-ticket-info__list-title {
    font-size: 12px;
    white-space: nowrap;
  }
  .my-ticket-info__list-title::after {
    content: "‖";
    margin: 0 4px;
  }
  .my-ticket-info__list-data {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-all;
  }
  .my-ticket-info__title {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-info__type {
    margin: 0 0 16px;
  }
  .my-ticket-info__type-title {
    font-size: 14px;
  }
  .my-ticket-info__type-data {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-info__sub-text {
    margin: 0;
    color: #535353;
    font-size: 14px;
  }
  .my-ticket-info__price {
    margin: 0;
  }
  .my-ticket-qr {
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 200px;
    height: 200px;
    padding: 16px;
    border: 1px solid #dedede;
    background: #fff;
  }
  .my-ticket-qr.color01 {
    background: #008577;
  }
  .my-ticket-qr__inner {
    display: flex;
    justify-content: center;
    padding: 10px;
    background: #fff;
  }
  .my-ticket-qr__image img {
    width: 100%;
    height: auto;
  }
  .my-ticket-text-link {
    display: block;
    width: fit-content;
    margin: 8px 0 0 auto;
  }
  .my-ticket-promoter {
    padding: 32px;
    background: #f6f6f6;
  }
  .my-ticket-promoter__content {
    display: flex;
    gap: 20px;
  }
  .my-ticket-promoter__image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
  }
  .my-ticket-promoter__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .my-ticket-promoter__text-box {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .my-ticket-promoter__title {
    flex: 1;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .my-ticket-share {
    margin-bottom: 40px;
  }
  .my-ticket-share__text {
    margin: 0 0 8px;
  }
  .my-ticket-text-copy {
    margin-bottom: 40px;
  }
  .my-ticket-text-copy__button {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
  }
  .my-ticket-text-copy__button:last-child {
    margin-bottom: 0;
  }
  .my-ticket-text-copy__textarea-wrap {
    margin-bottom: 16px;
  }
  .my-ticket-text-copy__textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 820px;
    padding: 12px 15px;
    transition: 0.3s all;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
  }
  .my-ticket-text-copy__textarea:focus-visible {
    border-radius: 4px;
    border-color: #191919;
    outline: 0;
  }
  .history__page {
    margin: 0 0 16px;
    font-size: 14px;
  }
  .history__box {
    padding: 32px;
    background: #f6f6f6;
  }
  .history__complete {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
  }
  .history-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .history-list__item {
    margin-bottom: 16px;
  }
  .history-list__item:last-child {
    margin-bottom: 0;
  }
  .history-list__link {
    display: block;
    position: relative;
    padding: 24px 40px;
    transition: 0.3s all;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    color: #191919;
    text-decoration: none;
  }
  .history-list__link:hover {
    background: #edfaf8;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.18);
  }
  .history-list__top {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #dedede;
  }
  .history-list__tag {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
  }
  .history-list__title {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    transition: 0.3s all;
    color: #191919;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .history-list__link:hover .history-list__title {
    text-decoration: underline;
  }
  .history-list__date {
    display: flex;
    gap: 4px;
    margin: 0 0 4px;
    color: #535353;
  }
  .history-list__date span {
    display: block;
    width: 24px;
    height: 24px;
    background: url("../images/icon/gray/ico_calendar02.svg") no-repeat center center/contain;
    font-size: 0;
  }
  .history-list__type {
    display: flex;
    margin: 0;
    color: #535353;
  }
  .history-list__type::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 4px;
    background: url("../images/icon/gray/ico_ticket.svg") no-repeat center center/contain;
  }
  .history-list__type span {
    flex-shrink: 0;
  }
  .history-list__type span::after {
    content: "‖";
  }
  .history-list__alert {
    display: block;
    margin-bottom: 8px;
    padding: 5px;
    background: #ffe5e2;
    color: #ed0f00;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .history-list__attention {
    display: block;
    margin-bottom: 8px;
    padding: 4px;
    border: 1px solid #ed0f00;
    background: #fff;
    color: #ed0f00;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .history-list-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 8px;
  }
  .history-list-info:last-child {
    margin-bottom: 0;
  }
  .history-list-info__block {
    display: flex;
    margin-right: 16px;
    padding-right: 16px;
    border-right: 1px solid #dedede;
  }
  .history-list-info__block:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
  }
  .history-list-info__title {
    color: #191919;
  }
  .history-list-info__title::after {
    content: "：";
  }
  .history-list-info__data {
    margin: 0;
    color: #191919;
  }
  .history-summary {
    margin-bottom: 64px;
  }
  .history-summary__tag {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
  }
  .history-summary__event-name {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    transition: 0.3s all;
    color: #191919;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    gap: 4px;
  }
  .history-summary__event-name::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .history-summary__event-name:hover {
    color: #08b5ae;
  }
  .history-summary__event-name:hover::after {
    background: #08b5ae;
  }
  .history-summary__box {
    display: flex;
    gap: 16px;
  }
  .history-summary__image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 2px;
  }
  .history-summary__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .history-summary-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 4px;
  }
  .history-summary-list__block {
    display: flex;
    gap: 12px;
    font-size: 16px;
  }
  .history-summary-list__block:last-child {
    margin-bottom: 0;
  }
  .history-summary-list__title {
    flex: 0 0 auto;
    width: 91px;
    white-space: nowrap;
  }
  .history-summary-list__title span {
    display: flex;
    position: relative;
    align-items: center;
    gap: 4px;
  }
  .history-summary-list__title span::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: -1px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  .history-summary-list__data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    gap: 0 10px;
  }
  .history-summary-list__data span {
    display: block;
    width: 100%;
  }
  .history-summary-list__date::before {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .history-summary-list__time::before {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .history-summary-list__place::before {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .history-summary-list__owner::before {
    background-image: url("../images/icon/black/ico_apartment.svg");
  }
  .history-summary-list__link {
    transition: 0.3s all;
    color: #191919;
  }
  .history-summary-list__link:hover {
    text-decoration: none;
  }
  .history-summary-list__sub-time {
    display: flex;
    gap: 0 10px;
    flex-wrap: wrap;
    align-items: center;
  }
  .history-summary-list-time {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    color: #535353;
    font-size: 14px;
    gap: 0 5px;
  }
  .history-summary-list-time--large {
    color: #191919;
    font-size: 16px;
  }
  .history-summary-list-time__date {
    margin: 0;
  }
  .history-table {
    width: 100%;
    margin-bottom: 16px;
    border-spacing: 0;
  }
  .history-table:last-child {
    margin-bottom: 0;
  }
  .history-table tr {
    display: flex;
    border-bottom: 1px solid #dedede;
  }
  .history-table tr:last-child {
    border-bottom: 0;
  }
  .history-table__title {
    width: 190px;
    padding: 18px 10px 17px 0;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
  }
  .history-table tr:first-child .history-table__title {
    padding-top: 3px;
  }
  .history-table tr:last-child .history-table__title {
    padding-bottom: 0;
  }
  .history-table__data {
    flex: 1;
    padding: 16px 0;
  }
  .history-table tr:first-child .history-table__data {
    padding-top: 0;
  }
  .history-table tr:last-child .history-table__data {
    padding-bottom: 0;
  }
  .history-detail__message {
    margin-bottom: 64px;
  }
  .history-detail__section-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .history-detail__section {
    padding-bottom: 40px;
    border-bottom: 1px solid #afafaf;
  }
  .history-detail__section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .history-detail__title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .history-detail__text {
    margin: 0;
  }
  .history-detail__tag {
    margin-bottom: 4px;
  }
  .history-detail__note {
    margin-bottom: 8px;
  }
  .history-detail__button-box {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
  .history-detail-cancel {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 64px;
  }
  .history-detail-cancel__list {
    display: flex;
    margin: 0;
  }
  .history-detail-cancel__list-title::after {
    content: "：";
  }
  .history-detail-cancel__list-data {
    margin: 0;
  }
  .news-user-list__heading01 {
    max-width: 670px;
    margin: 0 auto;
    margin: 0 auto 30px;
  }
  .news-user-list__inner {
    max-width: 670px;
    margin: 0 auto;
  }
  .news-button-box {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .news-list {
    margin: 0 0 16px;
    padding: 0;
    list-style-type: none;
    border-top: 1px solid #dedede;
  }
  .news-list__item {
    position: relative;
    transition: 0.3s all;
    border-bottom: 1px solid #dedede;
  }
  .is-editing .news-list__item {
    padding-left: 35px;
  }
  .news-list__item:last-child {
    margin-bottom: 0;
  }
  .news-list__item:hover {
    opacity: 0.7;
  }
  .news-list__link {
    display: block;
    position: relative;
    padding: 16px 28px 16px 0;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
  }
  .news-list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .news-list__item:hover .news-list__link::before {
    background: #08b5ae;
  }
  .is-editing .news-list__link {
    pointer-events: none;
  }
  .is-editing .news-list__link::before {
    opacity: 0;
  }
  .news-list__head {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 4px;
  }
  .news-list__date {
    display: block;
    font-size: 12px;
    line-height: 1.5;
  }
  .news-list__title {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 400;
  }
  .news-list__title span {
    margin: 3px 8px 0 0;
    vertical-align: top;
  }
  .news-list__from {
    overflow: hidden;
    color: #191919;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .news-list__badge {
    position: absolute;
    top: 7px;
    left: 0;
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 50%;
    background: #ed2769;
    font-size: 0;
  }
  .news-list__subject {
    display: -webkit-box;
    position: relative;
    margin: 0 0 4px;
    overflow: hidden;
    color: #191919;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .news-list__subject:has(.news-list__badge) {
    padding-left: 16px;
    font-weight: 700;
  }
  .news-list__label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s all;
    opacity: 0;
  }
  .is-editing .news-list__label {
    opacity: 1;
  }
  .news-list__label::before {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #08b5ae;
    border-radius: 4px;
    background: #fff;
  }
  .news-list__label::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 0;
    width: 0;
    height: 20px;
    transition: 0.3s all;
    background: url("../images/icon/main/ico_check.svg") no-repeat 0 0/auto 100%;
  }
  .news-list__label:has(:checked)::after {
    width: 20px;
  }
  .news-list__checkbox {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    appearance: none;
  }
  .is-editing .news-list__checkbox {
    display: block;
  }
  .news-detail__head {
    margin-bottom: 24px;
  }
  .news-detail__status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .news-detail__from {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .news-detail__date {
    font-size: 14px;
    font-weight: 700;
  }
  .news-detail__date-time {
    display: block;
    color: #535353;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
  }
  .news-detail__heading {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
  .news-detail__heading:last-child {
    margin-bottom: 0;
  }
  .news-detail__heading span {
    margin: -4px 8px 0 0;
    vertical-align: middle;
  }
  .news-detail__section {
    margin-bottom: 24px;
  }
  .news-detail__section:last-child {
    margin-bottom: 0;
  }
  .news-detail__text {
    margin-bottom: 24px;
    padding: 32px 0;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }
  .news-detail__text:last-child {
    margin-bottom: 0;
  }
  .news-detail__text a {
    transition: 0.3s all;
    color: #17349c;
  }
  .news-detail__text a:hover {
    color: #00215c;
    text-decoration: none;
  }
  .news-detail__link {
    color: #06e;
    text-decoration: underline;
  }
  .news-detail__file-upload {
    padding: 24px;
    background: #f6f6f6;
  }
  .news-detail__title {
    margin: 0 0 8px;
    color: #535353;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .news-detail__file-block {
    display: flex;
    gap: 10px;
  }
  .news-detail__file-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .news-detail__file-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
  }
  .news-detail__file-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .news-detail__file-text {
    display: block;
    flex: 1;
    word-break: break-all;
  }
  .news-action {
    z-index: 1;
    margin-bottom: 16px;
    transition: 0.3s all;
    background: #fff;
  }
  .is-editing .news-action {
    position: sticky;
    top: 0;
    left: 0;
    margin-bottom: 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
  }
  .news-action__inner {
    max-width: 670px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s all;
  }
  .is-editing .news-action__inner {
    padding: 8px 40px;
  }
  .news-action__block {
    display: none;
    gap: 10px;
  }
  .is-editing .news-action__block {
    display: flex;
  }
  .news-action__control {
    box-sizing: border-box;
    min-height: 35px;
    margin-left: auto;
    padding: 6px 15px;
    transition: 0.3s all;
    border: 1px solid #535353;
    border-radius: 2px;
    background: #fff;
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }
  .news-action__control:focus {
    outline: 0;
  }
  .news-action__control:focus-visible {
    border-radius: 4px;
    outline: 6px solid #17349c;
  }
  .news-action__control:hover {
    border-color: #afafaf;
    background: #f6f6f6;
  }
  .news-action__edit {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .is-editing .news-action__edit {
    display: none;
  }
  .news-action__edit::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-top: -2px;
    background: url("../images/icon/black/ico_checkbox.svg") no-repeat center center/contain;
  }
  .news-action__cancel {
    display: none;
    gap: 4px;
    align-items: center;
  }
  .is-editing .news-action__cancel {
    display: flex;
  }
  .news-action__cancel::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/icon/black/ico_close.svg") no-repeat center center/contain;
  }
  .news-action__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    font-size: 12px;
    line-height: 1.5;
  }
  .news-action__button:focus {
    outline: 0;
  }
  .news-action__button:focus-visible {
    border-radius: 4px;
    outline: 6px solid #17349c;
  }
  .news-action__button::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_mail_close.svg") no-repeat center center/contain;
  }
  .news-action__button--unread::before {
    mask-image: url("../images/icon/black/ico_mail_open.svg");
  }
  .news-action__button:hover {
    color: #08b5ae;
  }
  .news-action__button:hover::before {
    background: #08b5ae;
  }
  .favorite {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .favorite__box {
    padding: 40px;
    background: #f6f6f6;
  }
  .favorite__button-box {
    display: flex;
    justify-content: center;
    margin-top: 64px;
  }
  .favorite-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 24px;
  }
  .favorite-list__item {
    display: flex;
    box-sizing: border-box;
    height: 100%;
    gap: 16px;
    padding: 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  }
  .favorite-list__image-box {
    position: relative;
    flex-shrink: 0;
  }
  .favorite-list__tag {
    position: absolute;
    top: 0;
    left: 0;
  }
  .favorite-list__image {
    box-sizing: border-box;
    width: 150px;
    height: 150px;
    border-radius: 4px;
  }
  .favorite-list__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .favorite-list__info {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .favorite-list__info-inner {
    margin-bottom: 8px;
  }
  .favorite-list__title {
    display: -webkit-inline-box;
    margin: 0 0 2px;
    overflow: hidden;
    transition: 0.3s all;
    color: #191919;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .favorite-list__title:hover {
    color: #08b5ae;
  }
  .favorite-list__block {
    display: flex;
    gap: 0 10px;
    flex-wrap: wrap;
  }
  .favorite-list__text {
    display: -webkit-box;
    position: relative;
    margin: 0 0 4px;
    padding-left: 22px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .favorite-list__text--date {
    display: block;
  }
  .favorite-list__text--date span {
    display: inline-block;
  }
  .favorite-list__text:last-child {
    margin-bottom: 0;
  }
  .favorite-list__text span:first-child {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
  }
  .favorite-list__date {
    background-image: url("../images/icon/black/ico_calendar.svg");
  }
  .favorite-list__time {
    background-image: url("../images/icon/black/ico_schedule.svg");
  }
  .favorite-list__place {
    background-image: url("../images/icon/black/ico_location.svg");
  }
  .favorite-list__desc {
    display: -webkit-box;
    margin: 0 0 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .favorite-list__button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: auto 0 0 auto;
    padding: 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    font-size: 14px;
    line-height: 1.7;
    gap: 4px;
  }
  .favorite-list__button::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-top: -2px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_delete.svg") no-repeat center center/contain;
  }
  .favorite-list__button:hover {
    color: #08b5ae;
  }
  .favorite-list__button:hover::before {
    background: #08b5ae;
  }
  .account__heading-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .account__heading {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .account__heading-box .account__heading {
    margin: 0;
  }
  .account__section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #afafaf;
  }
  .account__head {
    margin-bottom: 24px;
  }
  .account__box {
    padding: 32px;
    background: #f6f6f6;
  }
  .account__text {
    margin: 0 0 8px;
  }
  .account__text strong {
    font-weight: 700;
  }
  .account__text:last-child {
    margin-bottom: 0;
  }
  .account__text-large {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .account__text-large:last-child {
    margin-bottom: 0;
  }
  .account__text-em {
    color: #ed2769;
  }
  .account__link-box {
    display: block;
    text-align: right;
  }
  .account__list {
    margin-bottom: 40px;
  }
  .account-link {
    display: block;
    position: relative;
    width: fit-content;
    margin-left: auto;
    padding: 0 20px 0 0;
    transition: 0.3s all;
    border: 0;
    background: transparent;
    color: #191919;
    line-height: 1.7;
    text-decoration: none;
    word-break: break-all;
  }
  .account-link::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 16px;
    height: 16px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_arrow_right.svg") no-repeat center center/contain;
  }
  .account-link:hover {
    color: #08b5ae;
  }
  .account-link:hover::before {
    background: #08b5ae;
  }
  .account-table {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dedede;
  }
  .account-table--border-zero {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .account-table--border {
    padding-top: 16px;
    border-top: 1px solid #dedede;
  }
  .account-table:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .account-table__section {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dedede;
  }
  .account-table__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .account-table__block {
    flex: 1;
  }
  .account-table__title {
    margin: 0 0 4px;
    color: #6e6e6e;
    font-size: 14px;
    font-weight: 700;
  }
  .account-table__data {
    margin: 0;
    font-size: 16px;
    word-break: break-all;
  }
  .account-table__tag {
    margin-bottom: 4px;
  }
  .account-table__text {
    margin: 0 0 16px;
  }
  .account-table__qr {
    box-sizing: border-box;
    flex-shrink: 0;
    align-self: flex-start;
    width: 150px;
    padding: 8px;
    border: 1px solid #dedede;
  }
  .account-table__qr img {
    width: 100%;
    height: auto;
  }
  .account-table__link {
    margin-top: 16px;
    text-align: right;
  }
  .account-card {
    margin-bottom: 24px;
  }
  .account-card__box {
    padding: 32px;
    background: #f6f6f6;
  }
  .account-card__text {
    margin: 0 0 16px;
    text-align: center;
  }
  .account-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }
  .account-card__register {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
  .account-card__button-box {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  .account-card-list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 5px;
  }
  .account-card-list__item {
    box-sizing: border-box;
    width: 65px;
    height: 40px;
    padding: 7px;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 6px;
    background: #fff;
  }
  .account-card-list__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .account-card-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #fff2eb;
  }
  .account-card-note__text {
    margin: 0 0 8px;
    color: #cc4100;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .account-card-delete {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
  .account-card-delete__link {
    display: flex;
    align-items: center;
    transition: 0.3s all;
    color: #191919;
    text-decoration: none;
    gap: 4px;
  }
  .account-card-delete__link::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin-top: -2px;
    transition: 0.3s all;
    background: #191919;
    mask: url("../images/icon/black/ico_delete.svg") no-repeat center center/contain;
  }
  .account-card-delete__link:hover {
    color: #08b5ae;
  }
  .account-card-delete__link:hover::before {
    background: #08b5ae;
  }
  .account-code {
    padding: 32px;
    background: #f6f6f6;
  }
  .account-code__text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    gap: 8px;
  }
  .account-code__text span {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
  .account-code__button {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #afafaf;
  }
  .account-code__note {
    margin-bottom: 16px;
  }
  .account-switch-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .account-switch-list__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #dedede;
  }
  .account-switch-list__item:first-child {
    border-top: 1px solid #dedede;
  }
  .account-switch-list__text {
    flex: 1;
    margin: 0;
  }
  .account-switch-list label {
    padding-top: 1px;
  }
  .login-history {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .login-history-table {
    width: 100%;
    border-collapse: collapse;
  }
  .login-history-table__title {
    box-sizing: border-box;
    padding: 12px;
    background: #08b5ae;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    white-space: nowrap;
  }
  .login-history-table__title:first-child {
    padding-left: 16px;
  }
  .login-history-table__title:last-child {
    padding-right: 16px;
  }
  .login-history-table__data {
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
  }
  .login-history-table__data:first-child {
    padding-left: 16px;
  }
  .login-history-table__data:last-child {
    padding-right: 16px;
  }
  .login-history-table tr:nth-child(odd) .login-history-table__data {
    background: #fff;
  }
  .login-history-table tr:nth-child(even) .login-history-table__data {
    background: #edfaf8;
  }
  .u-mw100 {
    min-width: 100px;
  }
  .u-mw120 {
    min-width: 120px;
  }
  .u-mw220 {
    min-width: 220px;
  }
  .u-mw240 {
    min-width: 240px;
  }
  .u-mw300 {
    min-width: 300px;
  }
}/*# sourceMappingURL=style.css.map */