@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
:root {
  overflow-x: hidden;
}

.primary-background {
  background: #d5395c;
  color: #fff;
}

.primary-background.topStatus::before {
  border-color: transparent #dd617d transparent transparent;
}

.primary-border {
  border: 1px solid #d5395c;
}

.primary-color {
  color: #d5395c;
}

.primary-checkbox::after {
  border-right: 3px solid #d5395c;
  border-bottom: 3px solid #d5395c;
}

.primary-radio:after {
  background: #d5395c;
}

.primary-radio:checked ~ dl {
  background: #d5395c;
  color: #fff !important;
}

.primary-radio:hover ~ dl {
  background: #e6889d;
  color: #fff !important;
}

.primary-tab-switch:checked + .tab-label {
  background: #d5395c;
  color: #fff;
}

.primary80-fill {
  fill: #dd617d;
}

.primary80-border {
  border: 1px solid #dd617d;
}

.primary80-color {
  color: #dd617d;
}

.form form input:focus,
.form form select:focus,
.searchForm form input:focus,
.searchForm form select:focus {
  border: 1px solid #dd617d !important;
}

input[type=checkbox]:focus + .checkbox::before {
  border: 1px solid #dd617d !important;
}

input[type=radio]:focus + .radio::before {
  border: 1px solid #dd617d !important;
}

.form form input:hover,
.form form select:hover,
.searchForm form input:hover,
.searchForm form select:hover {
  border: 1px solid #e6889d;
}

.primary60-background {
  background: #e6889d;
}

.primary60-background.topStatus::before {
  border-color: transparent #dd617d transparent transparent;
}

.primary60-border {
  border: 1px solid #e6889d;
}

.primary60-color {
  color: #e6889d;
}

label:hover + dl.primary20-background-label-hover {
  background: #f7d7de;
}

.gradationWrap {
  background: linear-gradient(180deg, #d5395c 0%, #e6889d 100%);
}

.primary20-border {
  border: 1px solid #f7d7de;
}

.primary20-background {
  background: #f7d7de;
}

.primary20-background.topStatus::before {
  border-color: transparent #e6889d transparent transparent;
}

dl.primary20-clicker.clicked {
  background: #f7d7de;
}

@media (hover: hover) {
  dl.primary20-clicker:hover {
    background: #f7d7de;
  }
}
.primary20-radio:after {
  background: #f7d7de;
}

.primary20-radio:checked ~ dl {
  background: #f7d7de;
}

.ticket-background {
  background: #eee;
}

.disabled-background {
  background: #999;
}

.disabled-background.topStatus::before {
  border-color: transparent #666 transparent transparent;
}

.btn-wrap a:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

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

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

a {
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  cursor: pointer;
}

body {
  margin: 0;
  background: #fff;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  color: #111;
  line-height: 1.5;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.open {
  overflow: hidden;
}
body main {
  flex: 1 0 auto;
}

#header-logo {
  background: url("/t/api/static/logo.png") no-repeat;
  background-size: contain;
  width: 200px;
  height: 32px;
}

header {
  display: flex;
  align-items: center;
  padding: 12px 32px 12px 40px;
  height: 64px;
  justify-content: space-between;
  position: sticky;
  z-index: 9;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  width: 100%;
  top: 0;
  transition: 0.5s;
}
header.active {
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  header {
    padding: 24px;
  }
}
@media (max-width: 576px) {
  header {
    padding: 12px;
    height: 56px;
  }
  header.hid-sp {
    display: none;
  }
}
header h1.fixed {
  position: fixed;
  top: 12px;
  left: 40px;
  z-index: 10;
}
@media (max-width: 768px) {
  header h1.fixed {
    left: 24px;
  }
}
@media (max-width: 576px) {
  header h1.fixed {
    left: 12px;
  }
}
header h1 a:hover {
  opacity: 0.7;
}
@media (max-width: 576px) {
  header h1 img {
    width: auto;
    height: 25px;
  }
}

.page-name {
  font-weight: bold;
  font-size: 14px;
  display: block;
  padding: 4px 8px;
  position: fixed;
  bottom: 70px;
  right: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  z-index: 4;
}
.page-name:hover {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

main {
  padding: 20px 0 80px 0;
}
main section .error-message {
  color: #cc3333;
  font-weight: bold;
}

.container {
  margin: 0 auto;
  padding-bottom: 32px;
  width: 1200px;
}
.container--w960 {
  width: 960px;
}
@media (max-width: 1024px) {
  .container {
    width: 90%;
  }
  .container--w960 {
    width: 960px;
  }
}
@media (max-width: 768px) {
  .container--w960 {
    width: calc(100% - 32px);
  }
}
@media (max-width: 576px) {
  .container {
    padding-bottom: 16px;
    width: 100%;
  }
  .container--w960 {
    width: calc(100% - 16px);
  }
}

.pageTop {
  position: fixed;
  right: 32px;
  bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  transition: 0.3s;
  z-index: 10;
}
@media (max-width: 1024px) {
  .pageTop {
    right: 12px;
  }
}
@media (max-width: 768px) {
  .pageTop {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .pageTop {
    right: 8px;
    bottom: 24px;
  }
}
.pageTop img {
  transform: translateY(-1px);
}
@media (max-width: 576px) {
  .pageTop img {
    width: 24px;
    height: 16px;
    transform: translateY(-2px);
  }
}
.pageTop:hover {
  background: black;
}
.pageTop:hover img {
  transform: translateY(-4px);
}

footer {
  position: relative;
  font-weight: 300;
  background: #f5f5f5;
  color: #111;
  padding-top: 30px;
  width: 100%;
  flex-shrink: 0;
}
footer .footerLink {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 32px auto 56px;
  max-width: 888px;
  color: #111;
}
@media (max-width: 576px) {
  footer .footerLink {
    margin-top: 24px;
    justify-content: space-evenly;
  }
}
footer .footerLink li {
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  footer .footerLink li {
    margin-bottom: 10px;
  }
}
footer .footerLink li a {
  display: block;
  padding: 4px 16px;
  font-size: 14px;
  transition: 0.5s;
}
@media (max-width: 576px) {
  footer .footerLink li a {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  footer .footerLink li a {
    padding: 4px 8px;
    font-size: 12px;
  }
}
footer .footerLink li a:hover {
  text-decoration: underline;
}
footer .share {
  position: absolute;
  right: 32px;
  display: flex;
}
@media (max-width: 1024px) {
  footer .share {
    right: calc(50% - 60px);
    bottom: 64px;
  }
}
@media (max-width: 576px) {
  footer .share {
    bottom: 52px;
  }
}
footer .share > li {
  margin-left: 24px;
}
footer .share > li a:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  footer .share > li img {
    width: 24px;
    height: 24px;
  }
}
footer .copyright {
  color: #111;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 576px) {
  footer .copyright {
    font-size: 12px;
  }
}

.absolutely-center {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  -ms-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

/*============
nav
=============*/
#navArea {
  position: relative;
}

nav {
  display: block;
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 5;
  opacity: 0;
  color: #fff;
}
nav .inner-login {
  display: none;
}
nav .inner-logout {
  display: none;
}
nav .inner {
  padding: 25px;
}
nav .inner .user {
  display: flex;
}
nav .inner .user .userIcon {
  width: 50px;
}
nav .inner .user .userIcon img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}
nav .inner .user .userInfo .mailAdress {
  font-size: 14px;
}
nav .inner .user .userInfo .userNumber {
  font-size: 16px;
}
nav .inner .projectName {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 5px;
  border-radius: 5px;
  margin-top: 10px;
}
nav .inner .menuList1 {
  list-style: none;
  margin-top: 20px;
  padding: 0;
}
nav .inner .menuList1 li {
  position: relative;
  margin: 0;
  font-size: 16px;
}
nav .inner .menuList1 li a {
  display: block;
  color: #fff;
  padding: 10px 0;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner .menuList1 li a img {
  vertical-align: middle;
  margin-right: 10px;
}
nav .inner .menuList1 li a:hover {
  opacity: 0.5;
}
nav .inner .menuList2 {
  margin-top: 40px;
}
nav .inner .menuList2 li {
  margin-bottom: 20px;
  font-size: 16px;
}
nav .inner .menuList2 li::before {
  content: "-";
}
nav .inner .menuList2 li a:hover {
  opacity: 0.5;
}

.open nav {
  right: 0;
  opacity: 1;
  min-height: 100vh;
}

.btn-wrap .btn-center {
  margin: auto;
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: absolute;
  top: -15px;
  right: 4%;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 9;
}
.toggle_btn span {
  display: block;
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 12px;
}
.toggle_btn span:nth-child(3) {
  bottom: 8px;
}

.open .toggle_btn span {
  background-color: #fff;
  width: 20px;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-315deg);
  transform: translateY(8px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(315deg);
  transform: translateY(-8px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0.3;
  z-index: 4;
  cursor: pointer;
}

/*============
#mask
=============*/
.page404 {
  text-align: center;
}
.page404 .page404__title {
  font-size: 60px;
  line-height: 1em;
  margin-bottom: 30px;
}
.page404 .page404__text {
  font-size: 16px;
}
.page404 .btn-wrap a {
  border-radius: 10px;
  width: 180px;
  text-align: center;
  font-size: 14px;
  display: block;
  padding: 10px 0;
  margin: 30px auto 0;
}

.complete .btn-wrap a {
  border-radius: 10px;
  width: 180px;
  text-align: center;
  font-size: 14px;
  display: block;
  padding: 10px 0;
  margin: 30px auto 0;
}
.complete .btn-wrap .backBtn {
  background: #ccc !important;
  padding: 5px 0;
  width: 130px;
}

main.document a {
  text-decoration: underline;
  color: #0066CC;
}

#choseTag {
  color: #eb2a2a;
  font-weight: bold;
}

.custom-content {
  /* Begin bidirectionality settings (do not change) */
}
.custom-content html, .custom-content address,
.custom-content blockquote,
.custom-content body, .custom-content dd, .custom-content div,
.custom-content dl, .custom-content dt, .custom-content fieldset, .custom-content form,
.custom-content frame, .custom-content frameset,
.custom-content h1, .custom-content h2, .custom-content h3, .custom-content h4,
.custom-content h5, .custom-content h6, .custom-content noframes,
.custom-content ol, .custom-content p, .custom-content ul, .custom-content center,
.custom-content dir, .custom-content hr, .custom-content menu, .custom-content pre {
  display: block;
  unicode-bidi: embed;
}
.custom-content li {
  display: list-item;
}
.custom-content head {
  display: none;
}
.custom-content table {
  display: table;
}
.custom-content tr {
  display: table-row;
}
.custom-content thead {
  display: table-header-group;
}
.custom-content tbody {
  display: table-row-group;
}
.custom-content tfoot {
  display: table-footer-group;
}
.custom-content col {
  display: table-column;
}
.custom-content colgroup {
  display: table-column-group;
}
.custom-content td, .custom-content th {
  display: table-cell;
}
.custom-content caption {
  display: table-caption;
}
.custom-content th {
  font-weight: bolder;
  text-align: center;
}
.custom-content caption {
  text-align: center;
}
.custom-content body {
  margin: 8px;
}
.custom-content h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.custom-content h2 {
  font-size: 1.5em;
  margin: 0.75em 0;
}
.custom-content h3 {
  font-size: 1.17em;
  margin: 0.83em 0;
}
.custom-content h4, .custom-content p,
.custom-content blockquote, .custom-content ul,
.custom-content fieldset, .custom-content form,
.custom-content ol, .custom-content dl, .custom-content dir,
.custom-content menu {
  margin: 1.12em 0;
}
.custom-content h5 {
  font-size: 0.83em;
  margin: 1.5em 0;
}
.custom-content h6 {
  font-size: 0.75em;
  margin: 1.67em 0;
}
.custom-content h1, .custom-content h2, .custom-content h3, .custom-content h4,
.custom-content h5, .custom-content h6, .custom-content b,
.custom-content strong {
  font-weight: bolder;
}
.custom-content blockquote {
  margin-left: 40px;
  margin-right: 40px;
}
.custom-content i, .custom-content cite, .custom-content em,
.custom-content var, .custom-content address {
  font-style: italic;
}
.custom-content pre, .custom-content tt, .custom-content code,
.custom-content kbd, .custom-content samp {
  font-family: monospace;
}
.custom-content pre {
  white-space: pre;
}
.custom-content button, .custom-content textarea,
.custom-content input, .custom-content select {
  display: inline-block;
}
.custom-content big {
  font-size: 1.17em;
}
.custom-content small, .custom-content sub, .custom-content sup {
  font-size: 0.83em;
}
.custom-content sub {
  vertical-align: sub;
}
.custom-content sup {
  vertical-align: super;
}
.custom-content table {
  border-spacing: 2px;
}
.custom-content thead, .custom-content tbody,
.custom-content tfoot {
  vertical-align: middle;
}
.custom-content td, .custom-content th, .custom-content tr {
  vertical-align: inherit;
}
.custom-content s, .custom-content strike, .custom-content del {
  text-decoration: line-through;
}
.custom-content hr {
  border: 1px inset;
}
.custom-content ol, .custom-content ul, .custom-content dir,
.custom-content menu, .custom-content dd {
  margin-left: 40px;
}
.custom-content ol {
  list-style-type: decimal;
}
.custom-content ol ul, .custom-content ul ol,
.custom-content ul ul, .custom-content ol ol {
  margin-top: 0;
  margin-bottom: 0;
}
.custom-content u, .custom-content ins {
  text-decoration: underline;
}
.custom-content br:before {
  content: "\a";
  white-space: pre-line;
}
.custom-content center {
  text-align: center;
}
.custom-content :link, .custom-content :visited {
  text-decoration: underline;
}
.custom-content :focus {
  outline: thin dotted invert;
}
.custom-content BDO[DIR=ltr] {
  direction: ltr;
  unicode-bidi: bidi-override;
}
.custom-content BDO[DIR=rtl] {
  direction: rtl;
  unicode-bidi: bidi-override;
}
.custom-content *[DIR=ltr] {
  direction: ltr;
  unicode-bidi: embed;
}
.custom-content *[DIR=rtl] {
  direction: rtl;
  unicode-bidi: embed;
}
@media print {
  .custom-content h1 {
    page-break-before: always;
  }
  .custom-content h1, .custom-content h2, .custom-content h3,
.custom-content h4, .custom-content h5, .custom-content h6 {
    page-break-after: avoid;
  }
  .custom-content ul, .custom-content ol, .custom-content dl {
    page-break-before: avoid;
  }
}

.stepbar {
  display: flex;
  margin: 0 auto 20px;
  padding-top: 0;
  width: 100%;
  max-width: 500px;
  justify-content: space-between;
}
.stepbar li {
  width: 24%;
  height: auto;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  color: #ccc;
}
.stepbar li span {
  color: #fff;
  display: block;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 auto 5px;
  font-size: 16px;
}
.stepbar li.current {
  color: #111;
}

.purchase {
  margin: 0 auto 20px;
  max-width: 700px;
  width: 94%;
  font-size: 14px;
  overflow-x: hidden;
}
.purchase .subject {
  display: block;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.purchase .subject__detail {
  letter-spacing: 0.02em;
  margin-top: 30px;
}
.purchase .subject__detail .title,
.purchase .subject__detail .title-sub {
  margin-bottom: 16px;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .purchase .subject__detail .title,
.purchase .subject__detail .title-sub {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .purchase .subject__detail .title,
.purchase .subject__detail .title-sub {
    margin-bottom: 12px;
    font-size: 4.4vmin;
  }
}
.purchase .subject__detail .date,
.purchase .subject__detail .venue {
  font-size: 12px;
  margin-bottom: 10px;
}
.purchase .subject__detail .date dd,
.purchase .subject__detail .venue dd {
  color: #999;
}
.purchase .subject__detail .text a {
  text-decoration: underline;
  color: #0066cc;
}
.purchase .subject .text {
  font-size: 14px;
  margin-top: 30px;
  line-height: 1.8em;
}
.purchase .subject .center {
  text-align: center;
}
.purchase h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.purchase h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.purchase p {
  margin-bottom: 1em;
}
.purchase .description-stock-display {
  font-size: 12px;
  padding-bottom: 10px;
}
.purchase .calendar {
  width: 100%;
  margin: 20px auto;
}
.purchase .calendar a,
.purchase .calendar button {
  transition: 0.3s;
}
.purchase .calendar .dateBlock {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.purchase .calendar .dateBlock button:hover {
  opacity: 0.6;
  cursor: pointer;
}
.purchase .calendar .dateBlock .prev {
  width: 25px;
  height: 25px;
  margin-right: 20px;
}
.purchase .calendar .dateBlock .next {
  width: 25px;
  height: 25px;
  margin-left: 10px;
}
.purchase .calendar .dateBlock .month {
  font-size: 16px;
}
.purchase .calendar .dateBlock .month small {
  font-size: 14px;
  margin: 10px;
}
.purchase .calendar table {
  width: 99%;
  border-collapse: collapse;
  margin: auto;
}
.purchase .calendar table .sunday {
  color: #e64c30;
}
.purchase .calendar table .saturday {
  color: #0066cc;
}
.purchase .calendar table thead th {
  text-align: center;
}
.purchase .calendar table tbody tr td {
  border: #ccc solid 1px;
  text-align: center;
  position: relative;
}
.purchase .calendar table tbody tr td input[type=radio] {
  display: none;
}
.purchase .calendar table tbody tr td input[type=radio]:hover ~ dl {
  transition: 0.2s;
}
.purchase .calendar table tbody tr td input[type=radio]:checked ~ dl dd svg .calender_circle, .purchase .calendar table tbody tr td input[type=radio]:checked ~ dl dd svg .calender_tri {
  transition: 0.2s;
  stroke: #fff !important;
}
.purchase .calendar table tbody tr td input[type=radio]:checked ~ dl dd svg .calender_none {
  transition: 0.2s;
  fill: #fff;
}
.purchase .calendar table tbody tr td label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.purchase .calendar table tbody tr td label:hover {
  cursor: pointer;
}
.purchase .calendar table tbody tr td dl {
  padding: 15% 0;
  text-align: center;
  margin-top: 0;
}
.purchase .calendar table tbody tr td dl dt {
  margin-bottom: 5px;
}
.purchase .calendar table tbody tr td dl dd {
  width: 20px;
  margin: 0 auto;
}
.purchase .calendar table tbody tr td dl dd .calender_circle {
  fill: none;
  stroke: #DD617D;
  stroke-width: 2;
}
.purchase .calendar table tbody tr td dl dd .calender_tri {
  fill: none;
  stroke: #2DA44E;
  stroke-width: 2;
}
.purchase .calendar table tbody tr td.disable label {
  pointer-events: none;
}
.purchase .calendar table tbody tr td.disable dl dt {
  color: #ccc !important;
}
.purchase .calendar table tbody tr td:nth-child(1) dl {
  color: #e64c30;
}
.purchase .calendar table tbody tr td:nth-child(7) dl {
  color: #0066cc;
}
.purchase .cancelBox {
  margin-top: 60px;
}
.purchase .warning {
  font-size: 14px;
  margin-top: 20px;
}
.purchase .timeStock {
  margin-top: 20px;
}
.purchase .timeStock .time_stock-block {
  width: 90%;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  position: relative;
}
.purchase .timeStock .time_stock-block input {
  display: none;
}
.purchase .timeStock .time_stock-block input[type=radio]:checked ~ dl {
  color: #fff;
}
.purchase .timeStock .time_stock-block label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.purchase .timeStock .time_stock-block label:hover {
  cursor: pointer;
}
.purchase .timeStock .time_stock-block dl {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}
.purchase .timeStock .time_stock-block dl dd {
  width: 20px;
}
.purchase .warning-list {
  margin-top: 20px;
}
.purchase .form {
  margin-top: 20px;
}
.purchase .form .spacer {
  margin-top: 20px;
}
.purchase .form.confirm dl dd {
  font-size: 14px;
  font-weight: bold;
  color: #999;
}
.purchase .form h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
.purchase .form .stepNum {
  font-weight: bold;
}
.purchase .form dl {
  margin-top: 20px;
}
.purchase .form dl dt {
  margin-bottom: 5px;
}
.purchase .form dl dt span.required {
  color: red;
  font-size: 12px;
  vertical-align: middle;
}
.purchase .form dl dd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.purchase .form dl .between {
  justify-content: space-between;
}
.purchase .form input {
  font-size: 14px;
  transition: 0.3s;
}
.purchase .form input[type=text], .purchase .form input[type=email], .purchase .form input[type=tel], .purchase .form input[type=password], .purchase .form textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 20px;
  width: calc(100% - 0px);
}
.purchase .form input[type=text]:focus, .purchase .form input[type=email]:focus, .purchase .form input[type=tel]:focus, .purchase .form input[type=password]:focus, .purchase .form textarea:focus {
  border: 1px solid #111;
  box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.2);
}
.purchase .form .zipcode-btn {
  padding: 10px 20px;
  border-radius: 5px;
}
.purchase .form .col1 {
  width: 100%;
}
.purchase .form .col2 {
  width: 48%;
}
.purchase .form .col3 {
  width: calc(34% - 2em);
}
.purchase .form .selecttext {
  margin: auto 1em;
}
.purchase .form .selectbox {
  position: relative;
}
.purchase .form select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 5px;
  padding: 10px 20px;
  box-sizing: border-box;
  font-size: 1em;
  border: #ccc 1px solid;
  background: #fff;
}
.purchase .form .selectbox::after {
  pointer-events: none;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 35%;
  border-bottom: #333 2px solid;
  border-right: #333 2px solid;
  transform: rotate(45deg) translateY(-30%);
}
.purchase .form input[type=checkbox] {
  width: 2px;
  height: 0;
  opacity: 0;
  margin-left: -2px;
}
.purchase .form .checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
  width: auto;
}
.purchase .form .checkbox::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  content: "";
  display: block;
  height: 18px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 18px;
}
.purchase .form .checkbox::after {
  content: "";
  display: block;
  height: 12px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 8px;
}
.purchase .form input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}
.purchase .form .radio {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
  width: auto;
}
.purchase .form .radio::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  display: block;
  height: 18px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 18px;
}
.purchase .form .radio::after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 12px;
  left: 8px;
  margin-top: -5px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 12px;
}
.purchase .form input[type=radio]:checked + .radio {
  color: #111;
}
.purchase .form input[type=radio]:checked + .radio::after {
  opacity: 1;
}
.purchase .form input[type=radio] {
  width: 2px;
  height: 0;
  opacity: 0;
  margin-left: -2px;
}
.purchase .form .validate {
  text-align: center;
  padding: 10px;
  background: #f7d7de;
  /* カスタマイズに依存しないエラー色 */
  color: #d5395c;
  /* カスタマイズに依存しないエラー色 */
}
.purchase .form .helpText {
  text-decoration: underline;
  display: block;
  margin: 30px auto 0;
  text-align: center;
  cursor: pointer;
}
.purchase .form .helpText img {
  vertical-align: middle;
  margin-right: 5px;
}
.purchase .form .helpText:hover + .helpTextBox {
  display: flex;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
}
.purchase .form .helpTextBox {
  background: #333;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  justify-content: space-between;
  display: none;
  width: 90%;
  max-width: 400px;
}
.purchase .form .helpTextBox p,
.purchase .form .helpTextBox img {
  width: 48%;
}
.purchase .form .btn-wrap a {
  border-radius: 10px;
  width: 180px;
  text-align: center;
  font-size: 14px;
  display: block;
  padding: 10px 0;
  margin: 30px auto 0;
}
.purchase .form .btn-wrap .backBtn {
  background: #ccc !important;
  padding: 5px 0;
  width: 130px;
}
.purchase .form .btn-wrap .borderBtn {
  border: 1px solid #111;
  background: #fff;
  color: #111;
}
.purchase .form .btn-wrap-inline a {
  border-radius: 10px;
  width: 160px;
  text-align: center;
  font-size: 14px;
  display: inline-block;
  padding: 10px 0;
  margin: 0 auto 0;
}
.purchase .form .coupon-btn a {
  text-decoration: underline;
}
.purchase .form .coupon-btn a:hover {
  text-decoration: none;
}
.purchase .form .coupon-btn img {
  width: 35px;
  vertical-align: middle;
  margin-right: 10px;
}
.purchase .form .agreeBox,
.purchase .form .memorizeBox {
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
}
.purchase .form .upload-button {
  border: 1px solid #111;
  border-radius: 10px;
  padding: 7px;
  transition: 0.2s;
  margin-right: 7px;
}
.purchase .form .upload-button:hover {
  opacity: 0.5;
  cursor: pointer;
}
.purchase .form .upload-button img {
  vertical-align: middle;
  width: 25px;
}
.purchase .description {
  font-size: 14px;
  color: #111;
  margin: 10px 0 30px;
}
.purchase .termsLink {
  text-decoration: underline;
  color: #0066cc;
}
.purchase .userguideLink {
  margin-bottom: 30px;
}
.purchase .userguideLink a {
  text-decoration: underline;
  color: #0066cc;
}
.purchase .tab-wrap {
  display: flex;
  flex-wrap: wrap;
}
.purchase .tab-label {
  background: #fff;
  border-radius: 5px;
  margin-right: 5px;
  padding: 3px 12px;
  order: -1;
  font-weight: bold;
}
.purchase .tab-label:hover {
  cursor: pointer;
}
.purchase .tab-content {
  width: 100%;
  display: none;
}
.purchase .primary-tab-switch:checked + .tab-label + .tab-content {
  display: block;
}
.purchase .primary-tab-switch {
  display: none;
}
.purchase .tab-label.radio {
  background: none;
  border-radius: 0;
  border: none;
  margin-right: 5px;
  padding: unset;
  padding-left: 2em;
  order: -1;
}
.purchase .tab-content {
  width: 100%;
  display: none;
}
.purchase .tab-content .required {
  color: #E64C30;
}
.purchase .primary-tab-switch:checked + .tab-label.radio {
  background: none;
  color: #fff;
}
.purchase .primary-tab-switch:checked + .tab-label + .tab-content {
  display: block;
}
.purchase .primary-tab-switch {
  display: none;
}
.purchase .ticketBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3%;
  margin-bottom: 10px;
  border-radius: 5px;
  position: relative;
}
.purchase .ticketBox .subtotal {
  font-size: 16px;
  vertical-align: baseline;
  position: absolute;
  right: 5%;
  bottom: 5%;
}
.purchase .ticketBox .subtotal span {
  font-size: 1.2em;
  margin-left: 10px;
}
.purchase .ticketBox .subtotal small {
  font-size: 12px;
}
.purchase .ticketBox dl {
  width: 70%;
  margin-top: 0;
}
.purchase .ticketBox dl dt {
  font-size: 16px;
}
.purchase .ticketBox dl dd {
  font-size: 12px;
}
.purchase .ticketBox .selectbox {
  width: 25%;
  display: block;
}
.purchase .centerTxt {
  text-align: center;
  margin-top: 2em;
}
.purchase .centerTxt a {
  text-decoration: underline;
}
.purchase .detail {
  background: #eee;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  margin-bottom: 50px;
}
.purchase .detail dl {
  display: flex;
  align-items: center;
  text-align: left;
}
.purchase .detail a {
  text-decoration: underline;
  color: #0066cc;
  display: inline-block;
  margin-top: 20px;
}
.purchase .credit-choice {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .ticketContent {
    display: block;
  }
}
@media (max-width: 576px) {
  .ticketContent {
    display: block;
  }
}

.ticketVerification {
  border-radius: 5px;
  padding: 3%;
  margin-bottom: 15px;
}
.ticketVerification dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px !important;
}
.ticketVerification dl dt,
.ticketVerification dl dd {
  width: 50%;
}
.ticketVerification dl dt {
  font-weight: bold;
}
.ticketVerification dl dd {
  justify-content: flex-end;
}
.ticketVerification .subtotal {
  text-align: right;
  margin-top: 15px;
}
.ticketVerification .subtotal span {
  margin-left: 5px;
}

.total {
  text-align: right;
}
.total span {
  margin-left: 5px;
  font-size: 16px;
  font-weight: bold;
}

.convenienceContent .convenienceContent__inner {
  margin-bottom: 30px;
}
.convenienceContent .convenienceContent__inner .update {
  color: #999;
  margin-bottom: 10px;
}
.convenienceContent .convenienceContent__inner button {
  border: 1px solid #111;
  border-radius: 10px;
  padding: 5px;
  transition: 0.2s;
}
.convenienceContent .convenienceContent__inner button:hover {
  opacity: 0.5;
}
.convenienceContent .convenienceContent__inner button img {
  vertical-align: middle;
  width: 25px;
}
.convenienceContent .convenienceContent__inner p {
  margin-top: 20px;
}
.convenienceContent .convenienceContent__inner h3 {
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
}
.convenienceContent .convenienceContent__inner ul {
  list-style: circle;
  padding-left: 1em;
}
.convenienceContent .convenienceContent__inner ul li {
  margin-bottom: 5px;
}
.convenienceContent .convenienceContent__inner ul li.f-red {
  color: #E64C30;
}
.convenienceContent .convenienceContent__inner ul li em {
  font-weight: bold;
}
.convenienceContent .convenienceContent__box {
  padding: 5%;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}
.convenienceContent .convenienceContent__box h3 {
  font-size: 16px;
}
.convenienceContent .convenienceContent__box dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.convenienceContent .convenienceContent__box dl dd {
  font-weight: bold;
  font-size: 1.2em;
}
.convenienceContent .convenienceContent__box p {
  margin-bottom: 10px;
}
.convenienceContent .convenienceContent__box ul {
  list-style: decimal;
  padding-left: 1em;
}
.convenienceContent .convenienceContent__box ul li {
  margin-bottom: 5px;
}

.additional_scheme_name {
  display: none;
}

.date-scroll {
  width: 80px;
  height: 80px;
  text-align: center;
  padding-top: 20px;
  border-radius: 5px;
  border: 1px solid #cccccc;
  margin-right: 10px;
}

.time-two-column {
  font-size: 16px;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 10px 20px;
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.modal-bg {
  background: rgba(0, 0, 0, 0.4);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal-content {
  background: #fff;
  left: 50%;
  padding: 5%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow: scroll;
}
.modal-content .modal-closeBtn {
  width: 20px;
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal-content .modal-closeBtn img {
  width: 100%;
}

/*Paper Plane: Animation*/
.plane-container {
  -webkit-animation: paper-plane-scoping 2s alternate infinite;
  -moz-animation: paper-plane-scoping 2s alternate infinite;
  animation: paper-plane-scoping 2s alternate infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: 3;
  width: 100px;
  height: 50px;
  margin-bottom: 10px;
}
.plane-container img {
  max-width: 90%;
}

@-webkit-keyframes paper-plane-scoping {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    transform: translateY(30px);
  }
}
.plane-frame p {
  line-height: 50px;
  font-size: 120%;
  font-weight: 700;
  color: #2d5e8c;
}

main {
  margin: 0 auto 20px;
  max-width: 700px;
  width: 94%;
  font-size: 14px;
}
main h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
main h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
main .confirmation-box {
  margin-top: 40px;
}
main .confirmation-box p {
  margin-bottom: 10px;
}
main .notes-scroll {
  max-height: 700px;
  height: 250px;
  overflow-y: scroll;
  background: #fff;
  border: solid #aaa 2px;
  padding: 3rem 4rem;
}
main .notes-scroll .notes-title {
  margin-top: 15px;
}
main.mypage .tips {
  margin-top: 1em;
  margin-bottom: 1em;
}
main.mypage .ticketList {
  border-top: 1px dotted #999;
}
main .tab-wrap {
  display: flex;
  flex-wrap: wrap;
}
main .tab-wrap .radio {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
}
main .tab-wrap .radio::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  display: block;
  height: 18px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 18px;
}
main .tab-wrap .radio::after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 12px;
  left: 8px;
  margin-top: -5px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 12px;
}
main .tab-wrap input[type=radio]:checked + .radio {
  color: #111;
}
main .tab-wrap input[type=radio]:checked + .radio::after {
  opacity: 1;
}
main .tab-wrap input[type=radio] {
  display: none;
}
main .tab-label {
  border-radius: 5px;
  margin-right: 5px;
  padding: 3px 12px;
  order: -1;
  font-weight: bold;
}
main .tab-label:hover {
  cursor: pointer;
}
main .tab-content-block {
  width: 100%;
  display: block;
  margin-top: 20px;
}
main .primary-tab-switch:checked + .tab-label + .tab-content {
  display: block;
}
main .primary-tab-switch {
  display: none;
}
main .tab-label.radio {
  background: none;
  border-radius: 0;
  border: none;
  margin-right: 5px;
  padding: unset;
  padding-left: 2em;
  order: -1;
  font-size: 120%;
}
main .tab-content {
  width: 100%;
  margin-top: 10px;
}
main .primary-tab-switch:checked + .tab-label.radio {
  background: none;
  color: #fff;
}
main .primary-tab-switch:checked + .tab-label + .tab-content {
  display: block;
}
main .primary-tab-switch {
  display: none;
}
main .ticketBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5%;
  margin-bottom: 10px;
  border-radius: 5px;
}
main .ticketBox dl {
  width: 70%;
  margin-top: 0;
}
main .ticketBox dl dt {
  font-size: 16px;
}
main .ticketBox dl .price {
  font-size: 16px;
}
main .ticketBox dl .price small {
  font-size: 12px;
}
main .ticketBox dl dd {
  font-size: 12px;
}
main .ticketBox .selectbox {
  width: 25%;
  display: block;
}
main .centerTxt {
  text-align: center;
  margin-top: 2em;
}
main .centerTxt a {
  text-decoration: underline;
}
main .detail {
  background: #eee;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  margin-bottom: 50px;
}
main .detail dl {
  display: flex;
  align-items: center;
  text-align: left;
}
main .detail a {
  text-decoration: underline;
  color: #0066cc;
  display: inline-block;
  margin-top: 20px;
}

.searchForm {
  margin-bottom: 20px;
}
.searchForm form {
  position: relative;
}
.searchForm form input {
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 10px 20px;
  width: calc(100% - 0px);
  box-sizing: border-box;
}
.searchForm form button {
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .ticketContent {
    display: block;
  }
}
@media (max-width: 576px) {
  .ticketContent {
    display: block;
  }
}

.list-none p {
  margin-bottom: 100px;
}
.list-none .btn-wrap a {
  border-radius: 10px;
  width: 180px;
  text-align: center;
  font-size: 14px;
  display: block;
  padding: 10px 0;
  margin: 30px auto 0;
}

.ticketCard {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin-bottom: 20px;
  position: relative;
}
.ticketCard .cardLink {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
@media (max-width: 576px) {
  .ticketCard {
    width: 100%;
    max-width: 100%;
  }
}
.ticketCard .inner .importantItem dd {
  font-size: 14px;
  font-weight: bold;
}
.ticketCard .inner-kiosk {
  padding-top: 35px;
  margin-top: 0 !important;
}
.ticketCard.eventDisable .inner .btn-wrap a {
  pointer-events: none;
  color: #999;
  border: 1px #999 solid;
}
.ticketCard .status {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 30px;
}
.ticketCard .topStatus {
  position: absolute;
  top: 15px;
  left: -8px;
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: bold;
}
.ticketCard .topStatus::before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
}
.ticketCard .cardImg {
  border-radius: 5px 5px 0 0;
}
.ticketCard .inner {
  width: calc(100% - 40px);
  margin: 20px auto 0;
  padding-bottom: 20px;
  position: relative;
}
.ticketCard .inner h4 {
  font-size: 16px;
  font-weight: bold;
}
.ticketCard .inner > dl {
  font-size: 12px;
  margin-top: 10px;
}
.ticketCard .inner > dl dd {
  color: #999;
}
.ticketCard .inner .btn-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.ticketCard .inner .btn-wrap.col1 a {
  width: 100%;
}
.ticketCard .inner .btn-wrap a {
  border-radius: 10px;
  width: 48%;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  display: block;
  padding: 10px 0;
}
.ticketCard .inner .btn-wrap a img {
  vertical-align: middle;
  margin-right: 5px;
}
.ticketCard .inner .btn-wrap .borderBtn {
  border: 1px solid #111;
  background: #fff;
  color: #111;
}
.ticketCard .inner .btn-wrap.archive {
  margin-top: 10px;
  bottom: 20px;
  right: 0;
  width: 100%;
}
.ticketCard .inner .btn-wrap.archive a {
  border-radius: 50px;
}
.ticketCard .ticketList li {
  display: flex;
  justify-content: space-between;
  border-top: 1px dotted #999;
  align-items: center;
  position: relative;
  min-height: 70px;
}
.ticketCard .ticketList li .ticketList__circle--left {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
  position: absolute;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  display: block;
}
.ticketCard .ticketList li .ticketList__circle--right {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  display: block;
}
.ticketCard .ticketList li::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 10px;
  height: 20px;
  border-radius: 50% 0 0 50%;
  background: #fff;
  z-index: 3;
}
.ticketCard .ticketList li::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 10px;
  height: 20px;
  border-radius: 10% 0 0 10%;
  background: #fff;
  z-index: 3;
}
.ticketCard .ticketList li .ticketName {
  width: calc(75% - 20px);
  padding-left: 20px;
}
.ticketCard .ticketList li .ticketName .startTime {
  font-size: 12px;
  border-radius: 5px;
  padding: 3px 5px;
  margin-bottom: 5px;
  display: inline-block;
}
.ticketCard .ticketList li .ticketName .ticketTitle {
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.ticketCard .ticketList li .ticketName .sNumber {
  font-size: 80%;
  color: #999;
}
.ticketCard .ticketList li .ticketStatus {
  width: 25%;
  position: absolute;
  text-align: center;
  vertical-align: center;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  border-left: 1px dotted #999;
  border-bottom-right-radius: 5px;
  font-size: 12px;
}
.ticketCard .ticketList li .ticketStatus a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.ticketCard .ticketList li .ticketStatus .icon {
  display: block;
  margin: 0 auto 0;
}
.ticketCard .ticketList li .ticketStatus .status {
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 30px;
  display: inline-block;
  position: initial;
  word-break: keep-all;
}
.ticketCard .ticketList li .ticketStatus .status.movie {
  background: none;
  padding: 3px 5px;
}
@media (max-width: 576px) {
  .ticketCard .ticketList li .ticketStatus .status.movie {
    font-size: 10px;
  }
}

.ticketCard.disable::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: #000;
  opacity: 0.5;
  border-radius: 5px;
}
.ticketCard.disable .btn-wrap a {
  background: #999;
  pointer-events: none;
}

.white-bg {
  background: #FFF;
}

.white-bg::before {
  background: -webkit-linear-gradient(45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667%), -webkit-linear-gradient(135deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667%);
  background: linear-gradient(45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667%), linear-gradient(-45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667%);
  -webkit-background-size: 20px 40px;
  background-size: 20px 40px;
}

.white-bg::after {
  background: -webkit-linear-gradient(45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667%), -webkit-linear-gradient(135deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667%);
  background: linear-gradient(45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667%), linear-gradient(-45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667%);
  -webkit-background-size: 20px 40px;
  background-size: 20px 40px;
  transform: scale(1, -1);
}

.shareTicket {
  max-height: inherit !important;
}
.shareTicket h3 {
  margin-bottom: 10px;
}
.shareTicket p {
  font-size: 14px;
}
.shareTicket .qr {
  text-align: center;
  margin-top: 50px;
}
.shareTicket .qr img {
  width: 150px;
}
.shareTicket .btn-wrap {
  display: flex;
  justify-content: space-around;
  margin: 50px 0 20px;
}
.shareTicket .btn-wrap dl {
  text-align: center;
}
.shareTicket .btn-wrap dl dt {
  font-size: 12px;
  line-height: 1.1em;
}

.creditcardList {
  position: relative;
  margin: 10px 0 30px;
}
.creditcardList .creditcardBox {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  background: #fff;
  position: relative;
}
.creditcardList .creditcardBox .cardInfo {
  display: flex;
  font-weight: bold;
}
.creditcardList .creditcardBox .cardInfo dt {
  background: #334890;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  padding: 3px 10px;
  margin-right: 5px;
}
.creditcardList .creditcardBox .cardInfo dd .displayNum {
  margin-left: 5px;
}
.creditcardList .creditcardBox .name {
  margin-top: 10px;
}
.creditcardList .creditcardBox .expiry {
  color: #999;
  margin-top: 10px;
}
.creditcardList .creditcardBox a {
  position: absolute;
  color: #fff;
  border-radius: 5px;
  bottom: 20px;
  right: 20px;
  background: #111;
  padding: 5px 20px;
}
.creditcardList .creditcardBox .arrow {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.addCard {
  margin-top: 20px;
  position: relative;
}
.addCard a {
  display: block;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
}
.addCard a img {
  vertical-align: middle;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.lastUpdate {
  text-align: right;
  color: #999;
}

.withdrawalBtn a {
  border-radius: 10px;
  width: 180px;
  text-align: center;
  font-size: 14px;
  display: block;
  padding: 10px 0;
  margin: 30px auto 0;
}

.cameraBtn {
  display: block;
  border: #111 solid 1px;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  padding: 20px;
  margin-bottom: 10px;
}
.cameraBtn:hover {
  opacity: 0.5;
}
.cameraBtn img {
  margin-right: 10px;
  vertical-align: middle;
}

.accountList {
  margin-bottom: 10px;
}
.accountList li {
  position: relative;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}
.accountList li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.accountList li dl dt {
  font-size: 12px;
  color: #999;
}
.accountList li dl dd button {
  cursor: pointer;
  text-decoration: underline;
  color: #0066cc;
}
.accountList li:first-child {
  padding-top: 0;
}

.accountChangeBtn {
  text-align: right;
  margin-bottom: 30px;
}
.accountChangeBtn a {
  text-decoration: underline;
  color: #0066CC;
}

.modal .paymentInner {
  position: relative;
}
.modal .paymentInner dl dd {
  color: #999;
}
.modal .paymentInner div {
  position: absolute;
  right: 0;
  bottom: 0;
}
.modal .paymentInner div a {
  display: inline-block;
  border-radius: 5px;
  padding: 5px 10px;
}
.modal .paymentInner div a img {
  vertical-align: middle;
  margin-right: 5px;
}
.modal .paymentInner div a.receipt {
  background: #333;
  color: #fff;
}

.ticketVerification {
  border-radius: 5px;
  padding: 3%;
  margin-bottom: 15px;
}
.ticketVerification dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px !important;
}
.ticketVerification dl dt,
.ticketVerification dl dd {
  width: 50%;
}
.ticketVerification dl dt {
  font-weight: bold;
}
.ticketVerification dl dd {
  justify-content: flex-end;
}
.ticketVerification td.text p {
  margin-left: 10px;
}
.ticketVerification .detail-box {
  margin: 3%;
}
.ticketVerification .detail-box .detail-box-content {
  background-color: #f0eeee;
  border-radius: 5px;
  padding: 3%;
}
.ticketVerification .subtotal {
  text-align: right;
  margin-top: 15px;
}
.ticketVerification .subtotal span {
  margin-left: 5px;
}

.other-price {
  text-align: right;
}
.other-price span {
  margin-left: 5px;
}

.total {
  text-align: right;
  margin-bottom: 20px;
}
.total span {
  margin-left: 5px;
  font-size: 16px;
  font-weight: bold;
}

.fv {
  position: relative;
  overflow: hidden;
}
.fv .fv__background {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
  width: 100%;
  margin: auto;
  height: 100%;
  bottom: 0;
  top: 0;
}
.fv .fv__mainView {
  position: relative;
  z-index: 2;
  width: 94%;
  margin: 0 auto;
  display: block;
  max-width: 800px;
  height: 100%;
}
.fv .inner {
  margin: 0 auto;
  display: flex;
  width: 1344px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .fv .inner {
    width: 100%;
  }
  .fv .inner img {
    width: 52%;
    height: 100%;
  }
}
@media (max-width: 768px) {
  .fv .inner {
    flex-wrap: wrap;
  }
  .fv .inner img {
    width: 100%;
  }
}
.fv .inner .detail {
  width: 100%;
  padding: 56px 40px 40px 48px;
  background: #fff;
  color: #1b1b1b;
  font-weight: bold;
  letter-spacing: 0.08em;
  z-index: 2;
}
@media (max-width: 1024px) {
  .fv .inner .detail {
    padding: 32px 24px 16px 32px;
  }
}
@media (max-width: 768px) {
  .fv .inner .detail {
    padding: 32px 24px 20px 32px;
  }
}
.fv .inner .detail .title {
  font-size: 22px;
}
.fv .inner .detail .content {
  font-size: 16px;
  margin-top: 20px;
}

.lead {
  margin: 0 auto 48px;
}
@media (max-width: 768px) {
  .lead {
    width: calc(100% - 24px);
  }
}
@media (max-width: 576px) {
  .lead {
    margin-bottom: 32px;
    width: calc(100% - 16px);
  }
}
.lead p {
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .lead p {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media (max-width: 576px) {
  .lead p {
    font-size: 14px;
  }
}

.eventInfo {
  margin: 40px 0;
}
@media (max-width: 576px) {
  .eventInfo {
    margin: 32px 0;
  }
}
.eventInfo .title {
  padding: 12px 32px;
  font-size: 18px;
}
@media (max-width: 576px) {
  .eventInfo .title {
    font-size: 16px;
    text-align: center;
  }
}
.eventInfo .dtl .venue {
  margin: 10px 0;
  padding-left: 32px;
  background: url(../img/icon-map.svg) center left no-repeat;
}

.attention {
  margin-bottom: 40px;
  padding: 24px 32px 16px;
  background-position: 102% -25px;
  font-size: 13px;
  letter-spacing: 0;
}
@media (max-width: 576px) {
  .attention {
    margin-bottom: 32px;
    padding: 16px;
    background-size: 300px auto;
    background-position: center -14px;
  }
}
.attention .title {
  margin-bottom: 24px;
  color: #1b1b1b;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .attention .title {
    font-size: 17px;
  }
}

.topNews {
  margin-bottom: 50px;
}
.topNews ul li {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.topNews ul li:first-child {
  border-top: 1px solid #ccc;
}
.topNews ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.topNews ul li dl {
  display: flex;
  align-items: center;
}
.topNews ul li dl dt {
  font-size: 10px;
  color: #999;
  width: 30%;
}
.topNews ul li dl dd {
  width: 70%;
}
.topNews .otherNews {
  margin-top: 10px;
  text-align: right;
}
.topNews .otherNews a {
  text-decoration: underline;
}

.quit {
  margin: 0 auto;
  padding: 40px 0 64px;
  width: 700px;
}
@media (max-width: 576px) {
  .quit {
    width: calc(100% - 32px);
  }
}
.quit__title {
  margin-bottom: 4px;
  color: #1b1b1b;
  font-weight: 700;
}
.quit__txt {
  margin-bottom: 24px;
  font-size: 14px;
}
.quit__note {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: circle;
}
.quit__note li {
  margin-bottom: 2px;
  font-size: 14px;
}
.quit > form {
  text-align: center;
}
.quit > form input[type=submit] {
  margin: 20px auto 32px;
  width: 280px;
  height: 48px;
  font-size: 18px;
}
@media (max-width: 576px) {
  .quit > form input[type=submit] {
    width: 100%;
  }
}
.quit .backward {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d5395c;
  border-radius: 9999px;
  color: #fff;
  letter-spacing: 0.08em;
  box-shadow: 0px 2px 4px rgba(221, 97, 125, 0.25);
  padding: 0 24px !important;
  background: transparent !important;
}
.quit .backward:hover {
  background: #ca2b4e;
  box-shadow: 0px 4px 12px rgba(221, 97, 125, 0.5);
}
.quit .backward:disabled {
  background: #d0d0d0;
  box-shadow: none;
}
.quit .backward.back {
  padding: 0 72px;
  background: #d0d0d0;
  color: #666;
  box-shadow: none;
}
.quit .backward.back:hover {
  color: #1b1b1b;
}
.quit .backward:hover {
  text-decoration: underline;
}
.quit .btn-wrap a {
  border-radius: 10px;
  width: 180px;
  text-align: center;
  font-size: 14px;
  display: block;
  padding: 10px 0;
  margin: 20px auto 32px;
}
.quit input[type=checkbox] {
  width: 2px;
  height: 0;
  opacity: 0;
  margin-left: -2px;
}
.quit .checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
  width: auto;
}
.quit .checkbox::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  content: "";
  display: block;
  height: 18px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 18px;
}
.quit .checkbox::after {
  content: "";
  display: block;
  height: 12px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 8px;
}
.quit input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}
.quit .validate {
  text-align: center;
  padding: 10px;
  background: #f7d7de;
  /* カスタマイズに依存しないエラー色 */
  color: #d5395c;
  /* カスタマイズに依存しないエラー色 */
}
.quit input[type=submit] {
  border-radius: 10px;
  width: 180px;
  text-align: center;
  font-size: 14px;
  display: block;
  padding: 10px 0;
  margin: 20px auto 32px;
}
.quit input[type=submit]:hover {
  transform: scale(1.03);
  opacity: 0.9;
}
.quit input[type=submit]:disabled {
  background: #d0d0d0 !important;
  box-shadow: none !important;
}
.quit input[type=submit].back {
  padding: 0 72px;
  background: #d0d0d0;
  color: #666;
  box-shadow: none;
}
.quit input[type=submit].back:hover {
  color: #1b1b1b;
}

#wrapper .ticket-contents .payment_method .clicked {
  border: solid 2px #f0027f;
  transition: border 0.3s linear;
}

.ticket-list-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ticket-wrap {
  flex-grow: 1;
  width: 24%;
  padding: 0;
  position: relative;
}

.ticket-wrap .ticket-container {
  margin: 1vw;
  box-shadow: 1px 1px 1px lightgrey;
}

.wrap-cover {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.wrap-white {
  background-color: rgba(255, 255, 255, 0.4);
}

.wrap-content {
  font-weight: bold;
  color: #ff3333;
  border: 2px solid;
  padding: 0 10px;
}

.wrap-stamp {
  padding: 0 30px;
}

.distribution-wrap {
  width: 100%;
}

td.distribution {
  padding-bottom: 10px;
}

.btn-distribution {
  margin-top: 0;
  float: right;
}

/* 選択したチケット */
.ticket-container.chose {
  border: 2px solid #ff3333;
}

/* 分配URLのテキストエリア */
.transfer-url {
  width: 100%;
  height: 80px;
  word-break: break-all;
}

.pd-top0 {
  padding-top: 0;
}

.gradationWrap {
  margin: 0 auto;
  padding: 20px 0;
  width: 100%;
  height: 100vh;
  max-width: 600px;
}
@media (max-width: 576px) {
  .gradationWrap {
    height: 100vh;
  }
}
.gradationWrap header {
  position: relative;
  background: none;
  padding: 0;
  height: 40px;
}
.gradationWrap header .back {
  position: absolute;
  left: 16px;
}
@media (max-width: 576px) {
  .gradationWrap header .back {
    left: 8px;
  }
}
.gradationWrap .qrpayment {
  margin: 0 20px;
  width: calc(100% - 40px);
  padding: 0;
}
.gradationWrap .qrpayment .title {
  text-align: center;
  width: 50%;
  margin: 0 auto 20px;
}
.gradationWrap .qrpayment__code {
  margin: 0 auto 20px;
  padding: 20px;
  max-width: 400px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
}
.gradationWrap .qrpayment__code > img {
  width: 220px;
  display: block;
  margin: 0 auto;
}
.gradationWrap .qrpayment__code .qrcode {
  margin: 20px auto;
}
.gradationWrap .qrpayment__code .reload {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  height: 28px;
  width: 126px;
  border: 1px solid #000;
  border-radius: 14px;
  font-size: 12px;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}
.gradationWrap .qrpayment__code .reload:hover {
  background: #111;
  color: #fff;
}
.gradationWrap .qrpayment__code .reload:hover path {
  fill: #fff;
}
.gradationWrap .qrpayment .creditcardList {
  margin-bottom: 0;
}

.policy dl {
  margin-bottom: 20px;
}
.policy dl dt {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.policy dl dd a {
  text-decoration: underline;
}
.policy dl dd a:hover {
  text-decoration: none;
}
.policy .revisionDate {
  text-align: right;
  margin-top: 40px;
}
.policy .revisionDate ul li {
  margin-top: 1em;
}
.policy table {
  margin-bottom: 30px;
}
.policy table tbody tr th {
  background: #eee;
  width: 20%;
  text-align: center;
  min-width: 100px;
  padding: 10px;
  border-bottom: 5px solid #fff;
  vertical-align: middle;
}
.policy table tbody tr td {
  padding: 10px;
  width: 80%;
  border-bottom: 5px solid #fff;
}
.policy table tbody tr td a {
  text-decoration: underline;
}
.policy table tbody tr td a:hover {
  text-decoration: none;
}

.faq h3 {
  font-weight: bold;
  font-size: 16px;
  margin-top: 40px;
}
.faq ul li .bottom-content {
  display: block;
  margin-bottom: 10px;
}
.faq ul li dl {
  margin-bottom: 20px;
  border-bottom: 1px solid #C4C4C4;
}
.faq ul li dl dt {
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.faq ul li dl dt:hover {
  background: #f7f7f7;
}
.faq ul li dl dt::before {
  content: "Q";
  color: #999;
  font-size: 24px;
  vertical-align: middle;
  margin-right: 20px;
  font-weight: bold;
}
.faq ul li dl dd {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}
.faq ul li dl dd::before {
  content: "A";
  color: #D5395C;
  font-size: 24px;
  vertical-align: middle;
  margin-right: 20px;
  font-weight: bold;
}
.faq ul li dl dd a {
  text-decoration: underline;
}
.faq ul li dl dd a:hover {
  text-decoration: none;
}

#userguideWrap {
  max-width: 1200px;
}
#userguideWrap .userguide h3 {
  font-weight: bold;
  font-size: 16px;
  margin-top: 40px;
}
#userguideWrap .userguide p {
  margin: 10px 0;
}
#userguideWrap .userguide p a {
  text-decoration: underline;
}
#userguideWrap .userguide p a:hover {
  text-decoration: none;
}
#userguideWrap .userguide .userguideContent {
  background: #eee;
  display: flex;
  justify-content: space-between;
  padding: 50px;
}
@media (max-width: 768px) {
  #userguideWrap .userguide .userguideContent {
    display: block;
  }
}
#userguideWrap .userguide .userguideContent .inner {
  text-align: center;
  width: 18%;
}
@media (max-width: 768px) {
  #userguideWrap .userguide .userguideContent .inner {
    width: auto;
  }
}
#userguideWrap .userguide .userguideContent .inner h4 {
  background: #D5395C;
  color: #fff;
  display: block;
  width: 132px;
  font-weight: bold;
  padding: 3px 0;
  text-align: center;
  margin: 0 auto 20px;
}
#userguideWrap .userguide .userguideContent .inner img {
  margin: 0 auto 20px;
}
#userguideWrap .userguide .userguideContent .inner dl dt {
  color: #D5395C;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}
#userguideWrap .userguide .userguideContent .arrow {
  margin: 20px auto;
  display: block;
  width: 2%;
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  #userguideWrap .userguide .userguideContent .arrow {
    transform: rotate(0);
    width: auto;
  }
}

header.guide {
  padding-bottom: 0;
  height: auto;
}

.guideNav {
  position: relative;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .guideNav {
    padding-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .guideNav {
    padding-bottom: 24px;
  }
}
.guideNav--lower {
  padding-bottom: 32px;
}
.guideNav .pageTitle {
  position: relative;
  margin: 0 auto 24px;
  width: 300px;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 576px) {
  .guideNav .pageTitle {
    padding-top: 24px;
    width: 240px;
    font-size: 24px;
  }
}
.guideNav .pageTitle span {
  position: absolute;
  left: 0;
  bottom: -22px;
  font-size: 12px;
}
.guideNav .pageTitle--wide {
  width: 364px;
}
@media (max-width: 576px) {
  .guideNav .pageTitle--wide {
    width: 300px;
  }
}
.guideNav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0 auto;
  padding: 24px 40px 8px;
  width: 880px;
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .guideNav__list {
    width: 90%;
    padding: 24px 0 0;
  }
}
@media (max-width: 576px) {
  .guideNav__list {
    justify-content: left;
  }
}
.guideNav__list li {
  position: relative;
  display: inline-block;
  margin: 0 20px 20px;
  counter-increment: nav;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 600;
}
.guideNav__list li:before {
  position: absolute;
  top: 3px;
  left: 0;
  content: counter(nav, decimal-leading-zero) ".";
  font-family: mr-eaves-modern, sans-serif;
  font-size: 17px;
  letter-spacing: 0;
}
.guideNav__list li:after {
  content: "";
  position: absolute;
  top: 7px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #d5395c;
  border-right: 2px solid #d5395c;
  transform: rotate(45deg);
}
.guideNav__list li a {
  display: inline-flex;
  align-items: center;
  padding: 2px 28px 2px 40px;
  font-weight: 500;
}
.guideNav__list li a span {
  margin-left: 4px;
  font-size: 14px;
}
@media (max-width: 576px) {
  .guideNav__list li {
    margin: 0 24px 28px;
    width: 100%;
  }
  .guideNav__list li:before {
    font-size: 15px;
  }
  .guideNav__list li:after {
    width: 8px;
    height: 8px;
  }
  .guideNav__list li a {
    display: flex;
    padding-left: 36px;
    font-size: 15px;
  }
}
@media (max-width: 576px) and (max-width: 320px) {
  .guideNav__list li a {
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .guideNav__list li a span {
    font-size: 12px;
  }
}
.guideNav a.back {
  position: absolute;
  left: 80px;
  bottom: -20px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  width: 176px;
  height: 40px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 99px;
  box-shadow: 0px 1px 4px rgba(204, 204, 204, 0.16);
  color: #1b1b1b;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .guideNav a.back {
    left: 32px;
  }
}
@media (max-width: 768px) {
  .guideNav a.back {
    left: 20px;
  }
}
@media (max-width: 576px) {
  .guideNav a.back {
    display: none;
  }
}
.guideNav a.back:before {
  content: url("../img/userguide/arrow-buttonBack.svg");
  position: relative;
  top: 5%;
  left: -2px;
}
.guideNav a.back:hover {
  box-shadow: 0px 2px 4px rgba(204, 204, 204, 0.4);
}
.guideNav a.back:hover:before {
  left: -3px;
}

.guideContent {
  margin-top: 16px;
  max-width: 880px;
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .guideContent {
    margin-top: 2px;
  }
}
@media (max-width: 576px) {
  .guideContent {
    margin-top: 0;
    padding-bottom: 40px;
    max-width: 100%;
  }
}
.guideContent .en {
  display: inline-block;
  margin-right: 4px;
  font-family: mr-eaves-modern, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}
.guideContent .serviceName {
  font-size: 15px;
}
@media (max-width: 576px) {
  .guideContent .serviceName {
    font-size: 13px;
  }
}
.guideContent .textLink {
  color: #ce7103;
  text-decoration: underline;
}
.guideContent .textLink:hover {
  color: #f68704;
}
.guideContent__intro {
  margin: 0 0 40px 1em;
}
@media (max-width: 1024px) {
  .guideContent__intro br {
    display: none;
  }
}
@media (max-width: 768px) {
  .guideContent__intro {
    margin: 0 0 20px 0.5em;
  }
}
@media (max-width: 576px) {
  .guideContent__intro {
    font-size: 14px;
    letter-spacing: 0;
  }
  .guideContent__intro br {
    display: none;
  }
}
.guideContent__requirements {
  padding: 20px 32px 24px;
  background: #f5f5f5;
  border-radius: 2px;
}
@media (max-width: 576px) {
  .guideContent__requirements {
    padding: 20px 20px 28px;
  }
}
.guideContent__requirements__ttl {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 576px) {
  .guideContent__requirements__ttl {
    margin-bottom: 4px;
    font-size: 17px;
  }
}
.guideContent__requirements__txt {
  font-size: 14px;
}
@media (max-width: 576px) {
  .guideContent__requirements__txt {
    font-size: 12px;
    line-height: 1.6;
  }
  .guideContent__requirements__txt br {
    display: none;
  }
}
.guideContent > section {
  margin: 120px -120px 0;
  counter-increment: section decimal-leading-zero;
}
@media (max-width: 1024px) {
  .guideContent > section {
    margin: 120px -40px 0;
  }
}
@media (max-width: 768px) {
  .guideContent > section {
    margin: 80px 0 0;
  }
}
@media (max-width: 576px) {
  .guideContent > section {
    margin: 48px 0 88px;
  }
  .guideContent > section:last-of-type {
    margin-bottom: 0;
  }
  .guideContent > section P {
    font-size: 13px;
    color: #3b3b3b;
    line-height: 1.7;
  }
}
.guideContent > section.guideSub {
  margin: 32px -100px 104px;
}
@media (max-width: 1024px) {
  .guideContent > section.guideSub {
    margin: 32px -24px 104px;
  }
}
@media (max-width: 768px) {
  .guideContent > section.guideSub {
    margin: 32px 0 80px;
  }
}
@media (max-width: 576px) {
  .guideContent > section.guideSub {
    margin-bottom: 40px;
  }
  .guideContent > section.guideSub:first-of-type {
    margin-top: 0;
  }
}
.guideContent > section.guideSub:last-of-type {
  position: relative;
  margin-bottom: 0;
}
.guideContent > section.guideSub .screenshots {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .guideContent > section.guideSub .screenshots {
    justify-content: space-between;
  }
}
.guideContent > section.guideSub .screenshots li {
  margin: 0 40px 56px 0;
  width: 240px;
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .guideContent > section.guideSub .screenshots li {
    margin: 0 32px 56px 0;
    width: 22.4%;
    font-size: 1.35vmin;
  }
}
@media (max-width: 768px) {
  .guideContent > section.guideSub .screenshots li {
    margin: 0 24px 32px 0;
  }
}
@media (max-width: 576px) {
  .guideContent > section.guideSub .screenshots li {
    margin: 0 0 32px;
    width: 48%;
    font-size: 3vmin;
  }
  .guideContent > section.guideSub .screenshots li:nth-of-type(2n) {
    margin-right: 0;
  }
}
.guideContent > section.guideSub .screenshots li:not(.noCounter) {
  counter-increment: shot decimal-leading-zero;
}
.guideContent > section.guideSub .screenshots li:nth-of-type(4n) {
  margin-right: 0;
}
.guideContent > section.guideSub .screenshots li figure > img {
  border-radius: 3px;
}
@media (max-width: 1024px) {
  .guideContent > section.guideSub .screenshots li figure > img {
    width: 100%;
  }
}
.guideContent > section.guideSub .screenshots li figure figcaption {
  position: relative;
  padding-left: 2em;
}
.guideContent > section.guideSub .screenshots li figure figcaption.long {
  padding-left: 2.4em;
  text-align: left;
}
.guideContent > section.guideSub .screenshots li figure figcaption:before {
  position: absolute;
  top: -0.05em;
  left: 0.25em;
  content: counter(shot, decimal-leading-zero) ".";
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .guideContent > section.guideSub .screenshots li figure figcaption:before {
    font-size: 1.4vmin;
  }
}
@media (max-width: 576px) {
  .guideContent > section.guideSub .screenshots li figure figcaption:before {
    font-size: 3.2vmin;
  }
}
.guideContent > section.guideSub .screenshots li figure figcaption.noNumber {
  padding-left: 0;
}
.guideContent > section.guideSub .screenshots li figure figcaption.noNumber:before {
  content: "";
}
.guideContent > section.guideSub .screenshots li figure figcaption small {
  display: inline-block;
  margin-top: 2px;
  font-size: 0.9vmin;
  line-height: 1.5;
}
.guideContent > section.guideSub .screenshots li.jumpFlow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 427px;
  background: #f5f5f5;
  border-radius: 3px;
}
@media (max-width: 1024px) {
  .guideContent > section.guideSub .screenshots li.jumpFlow {
    width: 22.4%;
    height: 369px;
  }
}
@media (max-width: 768px) {
  .guideContent > section.guideSub .screenshots li.jumpFlow {
    height: 287px;
  }
}
@media (max-width: 576px) {
  .guideContent > section.guideSub .screenshots li.jumpFlow {
    width: 48%;
    height: 332px;
  }
}
.guideContent > section.guideSub .screenshots li.jumpFlow > a {
  color: #ce7103;
  font-weight: 500;
  text-decoration: underline;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.guideContent > section .inner {
  margin: 0 32px 0 54px;
}
@media (max-width: 768px) {
  .guideContent > section .inner {
    margin: 0 8px;
  }
}
.guideContent > section .inner .bottomContent__ttl {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .guideContent > section .inner .bottomContent__ttl {
    font-size: 17px;
  }
}
.guideContent > section .inner .bottomContent__txt {
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .guideContent > section .inner .bottomContent__txt {
    margin-bottom: 16px;
  }
}
.guideContent > section .inner .bottomContent__txt span {
  display: block;
  font-size: 12px;
}
.guideContent > section .inner .bottomContent figure {
  display: flex;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .guideContent > section .inner .bottomContent figure {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .guideContent > section .inner .bottomContent figure {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.guideContent > section .inner .bottomContent figure img {
  margin-right: 80px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
@media (max-width: 1024px) {
  .guideContent > section .inner .bottomContent figure img {
    margin-right: 64px;
  }
}
@media (max-width: 768px) {
  .guideContent > section .inner .bottomContent figure img {
    margin-right: 24px;
    width: 200px;
  }
}
@media (max-width: 576px) {
  .guideContent > section .inner .bottomContent figure img {
    margin: 0 0 16px;
    width: 47.6%;
  }
  .guideContent > section .inner .bottomContent figure img:nth-of-type(2) {
    margin-right: 0;
  }
}
.guideContent > section .guideBaseTitle {
  position: relative;
  margin-bottom: 24px;
  padding-top: 4px;
  padding-left: 2.4em;
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.guideContent > section .guideBaseTitle:before {
  position: absolute;
  left: 0;
  bottom: -0.08em;
  content: counter(section, decimal-leading-zero) ".";
  font-size: 24px;
  font-weight: 700;
}
.guideContent > section .guideBaseTitle span {
  margin-left: 0.5em;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .guideContent > section .guideBaseTitle span {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .guideContent > section .guideBaseTitle {
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .guideContent > section .guideBaseTitle {
    padding: 4px 0 0 2.6em;
    font-size: 18px;
    line-height: 1.5;
  }
  .guideContent > section .guideBaseTitle:before {
    top: 0;
    font-size: 22px;
  }
}
.guideContent > section .guideBaseTitle--sub {
  margin-bottom: 40px;
  padding-left: 1.4em;
}
.guideContent > section .guideBaseTitle--sub:before {
  position: absolute;
  left: 0;
  bottom: -0.08em;
  content: counter(section, upper-alpha) ".";
  font-size: 24px;
  font-weight: 700;
}
.guideContent > section .guideBaseTitle--sub.noNumber {
  padding-left: 0;
}
.guideContent > section .guideBaseTitle--sub.noNumber:before {
  content: "";
}
@media (max-width: 768px) {
  .guideContent > section .guideBaseTitle--sub {
    font-size: 2vmin;
  }
  .guideContent > section .guideBaseTitle--sub:before {
    font-size: 2.2vmin;
  }
}
@media (max-width: 576px) {
  .guideContent > section .guideBaseTitle--sub {
    padding-top: 0;
    margin-bottom: 24px;
    font-size: 4vmin;
  }
  .guideContent > section .guideBaseTitle--sub:before {
    font-size: 4.25vmin;
  }
}
.guideContent > section > p {
  margin: 0 0 40px 50px;
}
@media (max-width: 576px) {
  .guideContent > section > p {
    margin-left: 0;
  }
}
.guideContent > section .notes {
  margin-bottom: 0;
}
.guideContent > section .availabilityTypes {
  display: flex;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .guideContent > section .availabilityTypes {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .guideContent > section .availabilityTypes {
    flex-wrap: wrap;
    margin-top: 0;
  }
}
.guideContent > section .availabilityTypes dl {
  padding-right: 48px;
}
@media (max-width: 576px) {
  .guideContent > section .availabilityTypes dl {
    padding-right: 0;
    margin: 32px -10px 0;
  }
}
.guideContent > section .availabilityTypes dl:last-of-type {
  padding-left: 48px;
  border-left: 1px solid #000;
}
@media (max-width: 576px) {
  .guideContent > section .availabilityTypes dl:last-of-type {
    padding-left: 0;
    border: none;
  }
}
.guideContent > section .availabilityTypes dl dt {
  margin-bottom: 32px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 576px) {
  .guideContent > section .availabilityTypes dl dt {
    margin-bottom: 20px;
    font-size: 15px;
  }
}
.guideContent > section .availabilityTypes dl figcaption {
  margin: 12px 0;
  font-size: 12px;
}
.guideContent > section .availabilityTypes dl dd .spView {
  display: none;
}
@media (max-width: 576px) {
  .guideContent > section .availabilityTypes dl dd .spView {
    display: block;
  }
}
@media (max-width: 576px) {
  .guideContent > section .availabilityTypes dl dd .pcView {
    display: none;
  }
}
.guideContent > section .flowChartPc {
  position: relative;
  margin: 32px 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .guideContent > section .flowChartPc {
    margin: 40px 80px 32px 0;
  }
}
@media (max-width: 768px) {
  .guideContent > section .flowChartPc {
    margin-right: 48px;
  }
}
@media (max-width: 576px) {
  .guideContent > section .flowChartPc {
    display: none;
  }
}
.guideContent > section .flowChartPc:after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -8px;
  display: inline-block;
  background: url("../img/userguide/degitalticket@2x.png");
  background-size: contain;
  width: 233px;
  height: 364px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .guideContent > section .flowChartPc:after {
    right: -120px;
    width: 200px;
    height: 312px;
  }
}
@media (max-width: 768px) {
  .guideContent > section .flowChartPc:after {
    right: -48px;
    width: 120px;
    height: 188px;
  }
}
@media (max-width: 576px) {
  .guideContent > section .flowChartSp .ttl,
.guideContent > section .raffleChart .ttl {
    margin-bottom: 8px;
    font-weight: bold;
    letter-spacing: 0.08em;
  }
  .guideContent > section .flowChartSp .txt,
.guideContent > section .raffleChart .txt {
    font-size: 14px;
    line-height: 1.6;
  }
  .guideContent > section .flowChartSp__first,
.guideContent > section .raffleChart__first {
    padding: 16px 0 20px 32px;
    border: 2px solid #000;
  }
  .guideContent > section .flowChartSp__first > ul li,
.guideContent > section .raffleChart__first > ul li {
    position: relative;
    margin-bottom: 2px;
    font-size: 14px;
  }
  .guideContent > section .flowChartSp__first > ul li:before,
.guideContent > section .raffleChart__first > ul li:before {
    content: "・";
    position: absolute;
    left: -1.2em;
  }
  .guideContent > section .flowChartSp__flowBar,
.guideContent > section .raffleChart__flowBar {
    position: relative;
    margin-top: 30px;
  }
  .guideContent > section .flowChartSp__flowBar:before,
.guideContent > section .raffleChart__flowBar:before {
    content: "";
    position: absolute;
    top: -32px;
    left: calc(50% - 1px);
    width: 2px;
    height: 32px;
    background: #000;
  }
  .guideContent > section .flowChartSp__second,
.guideContent > section .raffleChart__second {
    background: #000;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    line-height: 48px;
    letter-spacing: 0.08em;
  }
  .guideContent > section .flowChartSp__third,
.guideContent > section .raffleChart__third {
    padding: 16px 0 20px;
    border: 2px solid #000;
    border-radius: 60px;
    text-align: center;
  }
  .guideContent > section .flowChartSp__fourth,
.guideContent > section .raffleChart__fourth {
    padding: 18px 24px 24px;
    border: 2px solid #000;
    border-radius: 22px;
  }
  .guideContent > section .flowChartSp__fourth > .ttl,
.guideContent > section .raffleChart__fourth > .ttl {
    margin-bottom: 16px;
    text-align: center;
  }
  .guideContent > section .flowChartSp__fourth > .txt,
.guideContent > section .raffleChart__fourth > .txt {
    margin-bottom: 8px;
  }
  .guideContent > section .flowChartSp__fourth > .txt:last-of-type,
.guideContent > section .raffleChart__fourth > .txt:last-of-type {
    padding-right: 64px;
  }
  .guideContent > section .flowChartSp__fourth:after,
.guideContent > section .raffleChart__fourth:after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: -14px;
    display: inline-block;
    background: url("../img/userguide/degitalticket@2x.png");
    background-size: contain;
    width: 89px;
    height: 140px;
    z-index: 2;
  }
}
.guideContent > section .openRaffleChart {
  position: relative;
  margin-top: 40px;
  background: #f7d7de;
  border-radius: 4px;
  color: #d5395c;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  letter-spacing: 0.08em;
}
.guideContent > section .openRaffleChart:after {
  content: "＋";
  position: absolute;
  right: 16px;
  bottom: 1px;
  font-size: 17px;
}
.guideContent > section .openRaffleChart.is-open:after {
  content: "ー";
  position: absolute;
  right: 16px;
  font-weight: 400;
}
.guideContent > section .flowChartSp {
  display: none;
}
@media (max-width: 576px) {
  .guideContent > section .flowChartSp {
    display: block;
    margin: 32px 0;
  }
}
.guideContent > section .raffleChart {
  display: none;
  margin: 24px 0;
}
.guideContent > section .raffleChart__second {
  background: #d5395c;
}
.guideContent > section .raffleChart__fourth {
  background: #f7d7de;
  border: none;
}
.guideContent > section .raffleChart__fourth > .ttl {
  color: #d5395c;
}
.guideContent > section .raffleChart__fourth > .txt {
  margin: 0 8px 16px;
  color: #111;
}
.guideContent > section .raffleChart__fourth > .txt:last-of-type {
  margin-bottom: 0;
  padding-right: 0;
}
.guideContent > section .raffleChart__fourth > .txt .note {
  display: block;
  margin: 12px -1em 8px;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.guideContent > section .raffleChart__fourth > .txt .note > span {
  border-bottom: 1px solid #111;
}
.guideContent > section .raffleChart__fourth:after {
  background-image: none;
}
.guideContent > section .flowLinks {
  padding: 24px 32px 40px 48px;
  max-width: 960px;
  background: #f5f5f5;
  border-radius: 8px;
}
.guideContent > section .flowLinks--mAuto {
  margin: 0 auto;
}
@media (max-width: 576px) {
  .guideContent > section .flowLinks {
    margin-top: 24px;
    padding: 16px 16px 16px 20px;
  }
}
.guideContent > section .flowLinks__ttl {
  margin-bottom: 12px;
  font-weight: bold;
}
@media (max-width: 576px) {
  .guideContent > section .flowLinks__ttl {
    font-size: 14px;
  }
}
.guideContent > section .flowLinks__ttl span {
  margin-left: 16px;
  font-size: 11px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .guideContent > section .flowLinks__ttl span {
    position: relative;
    right: 0;
    bottom: -16px;
  }
}
@media (max-width: 576px) {
  .guideContent > section .flowLinks__ttl span {
    bottom: 0;
  }
}
.guideContent > section .flowLinks__list li {
  display: inline-block;
  margin-right: 3.5em;
}
@media (max-width: 768px) {
  .guideContent > section .flowLinks__list li {
    margin-right: 2.5em;
  }
}
@media (max-width: 576px) {
  .guideContent > section .flowLinks__list li {
    margin: 0 0.6em 0.4em 0;
  }
}
.guideContent > section .flowLinks__list li:before {
  content: "・";
}
.guideContent > section .flowLinks__list li a {
  padding: 2px 2px 1px;
  border-bottom: 2px solid #d5395c;
  color: #d5395c;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .guideContent > section .flowLinks__list li a {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .guideContent > section .flowLinks__list li a {
    font-size: 14px;
    padding-left: 4px;
  }
}
.guideContent .howtoEntry__note {
  display: flex;
  margin-top: 40px;
}
@media (max-width: 576px) {
  .guideContent .howtoEntry__note {
    flex-wrap: wrap;
    margin-top: 16px;
  }
  .guideContent .howtoEntry__note > img {
    margin: 0 auto;
  }
}
.guideContent .howtoEntry__note > div {
  margin-right: 80px;
  width: 288px;
}
@media (max-width: 576px) {
  .guideContent .howtoEntry__note > div {
    margin: 0 0 32px 0;
    width: 100%;
  }
}
.guideContent .howtoEntry__note > div .noteTtl {
  display: flex;
  align-items: center;
  margin: 16px 0;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.guideContent .howtoEntry__note > div .noteTtl img {
  margin-right: 32px;
  height: min-content;
}
@media (max-width: 576px) {
  .guideContent .howtoEntry__note > div .noteTtl img {
    margin-right: 20px;
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 576px) {
  .guideContent .howtoEntry__note > div .noteTtl {
    align-items: center;
    font-size: 16px;
    line-height: 1.6;
  }
}
.guideContent .distribute .distributeImages {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
@media (max-width: 576px) {
  .guideContent .distribute .distributeImages {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
  }
}
.guideContent .distribute .distributeImages li {
  margin: 24px 0 88px;
  padding: 24px 48px 24px 0;
}
@media (max-width: 768px) {
  .guideContent .distribute .distributeImages li {
    margin: 8px 0 56px;
    padding: 0 40px 0 0;
  }
}
.guideContent .distribute .distributeImages li:last-of-type {
  padding-left: 48px;
  padding-right: 16px;
}
.guideContent .distribute .distributeImages li:last-of-type img.spView {
  display: none;
}
@media (max-width: 768px) {
  .guideContent .distribute .distributeImages li:last-of-type {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 576px) {
  .guideContent .distribute .distributeImages li:last-of-type {
    padding: 0;
    border: none;
  }
  .guideContent .distribute .distributeImages li:last-of-type img.pcView {
    display: none;
  }
  .guideContent .distribute .distributeImages li:last-of-type img.spView {
    display: block;
  }
}
@media (max-width: 576px) {
  .guideContent .distribute .distributeImages li {
    margin: 0 0 16px;
    padding: 0;
    text-align: center;
  }
  .guideContent .distribute .distributeImages li > img {
    margin: 0 auto;
  }
  .guideContent .distribute .distributeImages li > img.mail {
    width: 188px;
  }
}
.guideContent .resale .inner .concept {
  margin-bottom: 30px;
}
.guideContent .resale .inner .notes {
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .guideContent .resale .inner .notes {
    margin-bottom: 16px;
  }
}
.guideContent .resale .resaleImages {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
@media (max-width: 576px) {
  .guideContent .resale .resaleImages {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
  }
}
.guideContent .resale .resaleImages li {
  margin: 24px 0 88px;
  padding: 24px 48px 24px 0;
}
@media (max-width: 768px) {
  .guideContent .resale .resaleImages li {
    margin: 8px 0 56px;
    padding: 0 40px 0 0;
  }
}
.guideContent .resale .resaleImages li:last-of-type {
  padding-left: 48px;
  padding-right: 16px;
}
.guideContent .resale .resaleImages li:last-of-type img.spView {
  display: none;
}
@media (max-width: 768px) {
  .guideContent .resale .resaleImages li:last-of-type {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 576px) {
  .guideContent .resale .resaleImages li:last-of-type {
    padding: 0;
    border: none;
  }
  .guideContent .resale .resaleImages li:last-of-type img.pcView {
    display: none;
  }
  .guideContent .resale .resaleImages li:last-of-type img.spView {
    display: block;
  }
}
@media (max-width: 576px) {
  .guideContent .resale .resaleImages li {
    margin: 0 0 16px;
    padding: 0;
    text-align: center;
  }
  .guideContent .resale .resaleImages li > img {
    margin: 0 auto;
  }
  .guideContent .resale .resaleImages li > img.mail {
    width: 188px;
  }
}
.guideContent .loginMenuImages {
  display: flex;
  align-items: flex-end;
  margin: 24px 0 88px;
}
@media (max-width: 576px) {
  .guideContent .loginMenuImages {
    flex-wrap: wrap;
    justify-content: center;
    margin: 24px 0 48px;
  }
}
.guideContent .loginMenuImages li:first-of-type {
  position: relative;
  margin-right: 200px;
}
.guideContent .loginMenuImages li:first-of-type:after {
  position: absolute;
  top: 8px;
  right: -88px;
  content: url(../img/userguide/pinkArrow-right.svg);
  width: 38px;
  height: 18px;
}
@media (max-width: 768px) {
  .guideContent .loginMenuImages li:first-of-type {
    margin-right: 72px;
  }
  .guideContent .loginMenuImages li:first-of-type:after {
    right: -56px;
  }
}
@media (max-width: 576px) {
  .guideContent .loginMenuImages li:first-of-type {
    margin: 0 0 56px 0;
    width: 172px;
  }
  .guideContent .loginMenuImages li:first-of-type:after {
    top: calc(100% + 24px);
    right: calc(50% - 28px);
    transform: rotate(90deg);
  }
}
.guideContent .loginMenuImages--bottom {
  margin-bottom: 0;
}
.guideContent .loginMenuImages--bottom li:first-of-type:after {
  position: absolute;
  top: 40%;
  content: url(../img/userguide/pinkArrow-right.svg);
}
@media (max-width: 576px) {
  .guideContent .loginMenuImages--bottom li:first-of-type {
    margin: 0 0 56px 0;
    width: 100%;
  }
  .guideContent .loginMenuImages--bottom li:first-of-type:after {
    top: calc(100% + 24px);
  }
}
@media (max-width: 576px) {
  .guideContent .loginMenuImages--bottom li:last-of-type > img {
    width: 172px;
  }
}

.footerGuide {
  position: relative;
}
.footerGuide a.back {
  position: absolute;
  left: 80px;
  top: -20px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  width: 176px;
  height: 40px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 99px;
  box-shadow: 0px 1px 4px rgba(204, 204, 204, 0.16);
  color: #1b1b1b;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .footerGuide a.back {
    left: 32px;
  }
}
@media (max-width: 768px) {
  .footerGuide a.back {
    left: 20px;
  }
}
@media (max-width: 576px) {
  .footerGuide a.back {
    left: 8px;
  }
}
.footerGuide a.back:before {
  content: url("../img/userguide/arrow-buttonBack.svg");
  position: relative;
  top: 5%;
  left: -2px;
}
.footerGuide a.back:hover {
  box-shadow: 0px 2px 4px rgba(204, 204, 204, 0.4);
}
.footerGuide a.back:hover:before {
  left: -3px;
}

.loadingBtn {
  display: inline-block;
  min-width: 180px;
  margin: 20px auto;
  font-size: 1.2em;
  padding: 1em;
  border-radius: 4px;
  text-align: center;
  position: relative;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  transition: border-radius linear 0.05s, width linear 0.05s;
}
.loadingBtn:focus {
  outline: 0;
}
.loadingBtn.circle {
  width: 60px !important;
  height: 60px !important;
  min-width: 0;
  border-radius: 50% !important;
  color: transparent !important;
}
.loadingBtn.circle.success:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 15px;
  border: 4px solid #fefefe;
  border-right: 0;
  border-top: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(0);
  transform: translate(-50%, -50%) rotate(0deg) scale(0);
  -webkit-animation: success ease-in 0.15s forwards;
  animation: success ease-in 0.15s forwards;
}
.loadingBtn.circle.error {
  position: relative;
  -webkit-animation: vibrate ease-in 0.5s forwards;
  animation: vibrate ease-in 0.5s forwards;
}
.loadingBtn.circle.error:before {
  color: #fff !important;
  position: absolute;
  content: "×";
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-animation: error ease-in 0.5s forwards;
  animation: error ease-in 0.5s forwards;
}
.loadingBtn.animate {
  width: 60px !important;
  height: 60px !important;
  min-width: 0;
  border-radius: 50% !important;
  color: transparent;
}
.loadingBtn.animate:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  border: 4px solid #fefefe;
  border-radius: 50%;
  border-left-color: transparent;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: spin ease-in 5s infinite;
  animation-name: spin;
  -webkit-animation-name: spin;
  transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  90% {
    transform: translate(-50%, -50%) rotate(2160deg) scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  90% {
    -webkit-transform: translate(-50%, -50%) rotate(2160deg) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(2160deg) scale(1);
  }
}
@keyframes success {
  from {
    transform: translate(-50%, -50%) rotate(0) scale(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
}
@-webkit-keyframes success {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
}
@keyframes error {
  from {
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    background-color: #333 !important;
  }
}
@-webkit-keyframes error {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0);
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
    background-color: #333 !important;
  }
}
@keyframes vibrate {
  0%, 30%, 60%, 85%, 100% {
    left: 0;
    background-color: #333 !important;
  }
  10%, 40%, 90%, 70% {
    left: -2px;
    background-color: #333 !important;
  }
  20%, 50%, 80%, 95% {
    left: 2px;
    background-color: #333 !important;
  }
}
:root {
  --original-vh: calc(var(--vh, 1vh) * 100);
  --header-h: 64px;
  --seat-checked-list-height: calc(var(--original-vh) - var(--header-h) - 169px);
}

.introjs-tooltip {
  max-width: 300px;
  min-width: 300px;
}
.introjs-tooltip .introjs-tooltip-title {
  width: calc(100% - 33px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.introjs-tooltip .introjs-tooltiptext b {
  font-weight: bold;
}
.introjs-tooltip .introjs-bullets {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 30px;
  width: calc(100% - 60px);
}
.introjs-tooltip .introjs-bullets ul {
  counter-reset: introJsNum;
}
.introjs-tooltip .introjs-bullets ul li {
  margin: 0 3px;
}
.introjs-tooltip .introjs-bullets ul li:not(:first-child):not(:last-child) {
  display: none;
}
.introjs-tooltip .introjs-bullets ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: bottom;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  font-weight: bold;
  line-height: 0.1em;
  font-size: 0;
}
.introjs-tooltip .introjs-bullets ul li a, .introjs-tooltip .introjs-bullets ul li a:hover {
  background: #fff;
  color: #e6889d;
  border: 1px solid #e6889d;
}
.introjs-tooltip .introjs-bullets ul li a.active {
  background: #d5395c;
  color: #fff;
}
.introjs-tooltip .introjs-bullets ul li a:before {
  content: attr(data-stepnumber);
  font-size: 18px;
}
.introjs-tooltip .introjs-bullets ul li:first-child.omit:after {
  content: "...";
  margin-left: 6px;
  display: inline;
  color: #ccc;
  vertical-align: top;
}
.introjs-tooltip .introjs-bullets ul li:last-child.omit:before {
  content: "...";
  margin-right: 6px;
  display: inline;
  color: #ccc;
  vertical-align: top;
}
.introjs-tooltip .introjs-tooltipbuttons {
  padding: 8px;
  z-index: 1;
}
.introjs-tooltip .introjs-tooltipbuttons a {
  padding: 6px 5px;
}
.introjs-tooltip .introjs-tooltipbuttons a, .introjs-tooltip .introjs-tooltipbuttons a:focus {
  background: #fff;
  border: none;
  box-shadow: none;
}
.introjs-tooltip .introjs-tooltipbuttons a:before {
  content: url(../img/seat/tri_ico.svg);
}
.introjs-tooltip .introjs-tooltipbuttons a:last-child {
  transform: rotate(180deg);
}

#seatSelectWrap button {
  border: none;
  padding: 0;
}
#seatSelectWrap button:not(:disabled) {
  cursor: pointer;
}
#seatSelectWrap button.tutorial-button {
  cursor: pointer;
}
#seatSelectWrap button.tutorial-button img {
  vertical-align: -6px;
  margin-right: 3px;
}
#seatSelectWrap a:not(:disabled) {
  cursor: pointer;
}
#seatSelectWrap a.back-button {
  cursor: pointer;
}
#seatSelectWrap a.back-button img {
  transform: rotate(90deg);
  vertical-align: -3px;
  margin-right: 3px;
}
#seatSelectWrap .hover-box {
  position: absolute;
  top: calc(var(--header-h) - 15px);
  width: 90vw;
  height: calc(100vh - (var(--header-h) + 15px));
  max-width: 300px;
  max-height: 300px;
  padding: 20px;
  border-radius: 10px;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid;
  border-color: #999999;
  box-shadow: 0 0px 10px 0px #999999;
  justify-content: space-between;
  display: none;
}
#seatSelectWrap .hover-box:before {
  content: "";
  position: relative;
  top: -5px;
  left: -20px;
  padding: var(--header-h) 50% 0 20px;
  font-size: 0;
  cursor: pointer;
}
#seatSelectWrap header {
  border-bottom: 1px solid;
  border-color: #999999;
}
@media (max-width: 1024px) {
  #seatSelectWrap header {
    border: none;
  }
}
#seatSelectWrap header .dev-button {
  position: absolute;
  top: 0;
  left: 0;
  background-color: red;
}
#seatSelectWrap header .header-menu {
  width: calc(100% - 164px);
  transition: all 1s 0s ease-in-out;
}
#seatSelectWrap header .header-menu.is-show {
  opacity: 1;
}
@media (max-width: 1024px) {
  #seatSelectWrap header .header-menu {
    width: auto;
  }
}
#seatSelectWrap header .header-menu > * {
  display: inline-block;
}
#seatSelectWrap header .header-menu .tutorial-button, #seatSelectWrap header .header-menu .seat-information, #seatSelectWrap header .header-menu .back-button {
  margin-top: 10px;
  margin-bottom: 10px;
}
#seatSelectWrap header .header-menu .tutorial-button,
#seatSelectWrap header .header-menu .sub-area-list,
#seatSelectWrap header .header-menu .seat-type-list,
#seatSelectWrap header .header-menu .back-button {
  margin-left: 50px;
}
@media (max-width: 1024px) {
  #seatSelectWrap header .header-menu .tutorial-button,
#seatSelectWrap header .header-menu .sub-area-list,
#seatSelectWrap header .header-menu .seat-type-list,
#seatSelectWrap header .header-menu .back-button {
    margin-left: 0;
  }
}
@media (max-width: 1024px) {
  #seatSelectWrap header .header-menu .seat-information {
    position: absolute;
    top: calc(var(--header-h) + 10px);
    left: 0;
    width: 90%;
    margin: 0 5%;
    padding: 10px;
    border: 1px solid;
    border-color: #ccc;
    border-radius: 10px;
    background: #fff;
    z-index: 5;
    display: flex;
    justify-content: space-around;
  }
}
@media (max-width: 1024px) and (max-width: 350px) {
  #seatSelectWrap header .header-menu .seat-information {
    margin: 0 3px;
    padding: 10px 5px;
    width: calc(100% - 6px);
  }
}
#seatSelectWrap header .header-menu .seat-information .sub-area-list {
  display: inline-block;
  position: relative;
}
@media (max-width: 1024px) {
  #seatSelectWrap header .header-menu .seat-information .sub-area-list > span {
    font-weight: bold;
  }
}
@media (max-width: 1024px) and (max-width: 400px) {
  #seatSelectWrap header .header-menu .seat-information .sub-area-list > span {
    font-size: 12px;
  }
}
#seatSelectWrap header .header-menu .seat-information .sub-area-list .hover-box-close {
  display: none;
}
#seatSelectWrap header .header-menu .seat-information .sub-area-list .hover-box-close:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--original-vh));
  background: rgba(0, 0, 0, 0);
  z-index: 9;
}
#seatSelectWrap header .header-menu .seat-information .sub-area-list .hover-box ul {
  overflow: auto;
  height: 100%;
  margin: 0;
  padding: 0;
}
#seatSelectWrap header .header-menu .seat-information .sub-area-list .hover-box ul li {
  margin-top: 7px;
  padding: 4px 10px;
  text-align: center;
}
#seatSelectWrap header .header-menu .seat-information .sub-area-list .hover-box-draw {
  cursor: pointer;
}
#seatSelectWrap header .header-menu .seat-information .sub-area-list .hover-box-draw:hover + .hover-box, #seatSelectWrap header .header-menu .seat-information .sub-area-list .hover-box:hover {
  display: inline;
}
#seatSelectWrap header .header-menu .seat-information .sub-area-list .hover-box-draw:hover + .hover-box + .hover-box-close, #seatSelectWrap header .header-menu .seat-information .sub-area-list .hover-box:hover + .hover-box-close {
  display: inline;
}
#seatSelectWrap header .header-menu .seat-information .seat-type-list {
  display: inline-block;
}
#seatSelectWrap header .header-menu .seat-information .seat-type-list > span {
  font-weight: bold;
}
@media (max-width: 1024px) {
  #seatSelectWrap header .header-menu .seat-information .seat-type-list > span {
    display: none;
  }
}
#seatSelectWrap header .header-menu .seat-information .seat-type-list ul {
  display: inline;
  padding: 0;
}
#seatSelectWrap header .header-menu .seat-information .seat-type-list ul li {
  display: inline;
  padding-left: 10px;
}
@media (max-width: 1024px) {
  #seatSelectWrap header .header-menu .seat-information .seat-type-list ul li {
    padding-left: 0;
  }
}
@media (max-width: 1024px) and (max-width: 400px) {
  #seatSelectWrap header .header-menu .seat-information .seat-type-list ul li {
    font-size: 12px;
  }
}
#seatSelectWrap header .header-menu .seat-information .seat-type-list ul li .seat-sample {
  width: auto;
  height: 15px;
  vertical-align: -2px;
  margin-right: 3px;
}
#seatSelectWrap main#seatSelect {
  max-width: 1200px;
  height: calc(var(--original-vh) - var(--header-h));
  margin-bottom: 0;
  padding: 0;
  display: flex;
}
#seatSelectWrap main#seatSelect .color-list {
  display: none;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect {
    width: 100%;
    height: calc(var(--original-vh) - var(--header-h));
    margin: none;
  }
}
#seatSelectWrap main#seatSelect #mainMapArea {
  position: relative;
  user-select: none;
  overflow: hidden;
  margin: 0 auto;
  background-color: #eee;
  border-left: 1px solid;
  border-color: #999999;
  /* animation */
}
#seatSelectWrap main#seatSelect #mainMapArea .main-map {
  background-color: #fff;
}
#seatSelectWrap main#seatSelect #mainMapArea .main-map:not(.floor) {
  border: 1px solid;
  border-color: #999999;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect #mainMapArea .main-map {
    display: none;
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .animation-floors-change,
#seatSelectWrap main#seatSelect #mainMapArea .animation-floors-to-floor,
#seatSelectWrap main#seatSelect #mainMapArea .animation-floors-swipe-end {
  transition-timing-function: ease-out;
}
#seatSelectWrap main#seatSelect #mainMapArea .animation-floors-change,
#seatSelectWrap main#seatSelect #mainMapArea .animation-floors-to-floor {
  transition: 0.4s;
}
#seatSelectWrap main#seatSelect #mainMapArea .animation-floors-swipe-end {
  transition: 0.2s;
}
#seatSelectWrap main#seatSelect #mainMapArea > * {
  position: absolute;
}
#seatSelectWrap main#seatSelect #mainMapArea button {
  pointer-events: auto;
}
#seatSelectWrap main#seatSelect #mainMapArea .floor-text {
  border-top: 0.5px solid;
  z-index: 1;
  font-size: 1.33rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  #seatSelectWrap main#seatSelect #mainMapArea .floor-text {
    font-size: 1rem;
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .floor-text:before {
  content: attr(data-text);
  position: absolute;
  top: calc(-100% - 5px);
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  #seatSelectWrap main#seatSelect #mainMapArea .floor-text:before {
    font-size: 1.25rem;
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .floors-current-location {
  top: 50%;
  transform: translate(0, -50%);
  right: 40px;
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect #mainMapArea .floors-current-location {
    right: calc(5% + 16px);
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .floors-current-location div {
  transition: 0.4s;
  width: 10px;
  height: 10px;
  margin: 10px auto;
  border-radius: 50%;
}
@media (max-width: 576px) {
  #seatSelectWrap main#seatSelect #mainMapArea .floors-current-location div {
    margin: 5px auto;
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .floors-current-location div.active {
  width: 12px;
  height: 12px;
}
#seatSelectWrap main#seatSelect #mainMapArea .guide {
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 15px;
  border-radius: 10px;
  width: 75px;
  height: 75px;
  top: calc(50% - 37.5px);
  left: calc(50% - 37.5px);
}
#seatSelectWrap main#seatSelect #mainMapArea .to-floors, #seatSelectWrap main#seatSelect #mainMapArea .floors-buttons {
  right: 25px;
  bottom: 20px;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect #mainMapArea .to-floors, #seatSelectWrap main#seatSelect #mainMapArea .floors-buttons {
    bottom: 115px;
    right: calc(5% + 5px);
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .to-floors img, #seatSelectWrap main#seatSelect #mainMapArea .floors-buttons img {
  max-width: none;
  width: 35px;
  height: 35px;
}
#seatSelectWrap main#seatSelect #mainMapArea .to-floors.is-show {
  transform: rotate(180deg);
  animation-name: toFloorsFadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes toFloorsFadeIn {
  100% {
    transform: rotate(270deg);
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .floors-buttons {
  display: inline-flex;
  flex-direction: column;
}
#seatSelectWrap main#seatSelect #mainMapArea .floors-buttons > * {
  display: inline;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect #mainMapArea .floors-buttons {
    height: calc(var(--original-vh) - 249px);
  }
}
@media (max-width: 768px) {
  #seatSelectWrap main#seatSelect #mainMapArea .floors-buttons {
    height: calc(var(--original-vh) - 243px);
  }
}
@media (max-width: 576px) {
  #seatSelectWrap main#seatSelect #mainMapArea .floors-buttons {
    height: calc(var(--original-vh) - 233px);
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .floors-buttons button:first-child {
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect #mainMapArea .floors-buttons button:last-child {
    position: absolute;
    bottom: 0;
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .floors-buttons button:last-child.is-show {
  transform: rotate(270deg);
  animation-name: floorsFadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes floorsFadeIn {
  100% {
    transform: rotate(180deg);
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .zoom-buttons {
  right: 20px;
  bottom: 70px;
  display: inline-flex;
  flex-direction: column;
}
#seatSelectWrap main#seatSelect #mainMapArea .zoom-buttons button:first-child {
  margin-bottom: 2px;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect #mainMapArea .zoom-buttons {
    bottom: 165px;
    right: 5%;
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .floor-text.not-active,
#seatSelectWrap main#seatSelect #mainMapArea .main-map-enclose.not-active {
  opacity: 0;
}
#seatSelectWrap main#seatSelect #mainMapArea .mini-map {
  background-color: #fff;
  border: 1px solid;
  border-color: #999999;
  border-radius: 5px;
  width: 20%;
  height: 20%;
  bottom: 20px;
  left: 20px;
  box-shadow: 0 0px 3px 0 rgba(0, 0, 0, 0.5);
}
#seatSelectWrap main#seatSelect #mainMapArea .mini-map.active {
  cursor: pointer;
}
#seatSelectWrap main#seatSelect #mainMapArea .mini-map canvas {
  border-radius: 5px;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect #mainMapArea .mini-map {
    display: none;
  }
}
#seatSelectWrap main#seatSelect #mainMapArea .main-map-layer-2 {
  pointer-events: none;
}
#seatSelectWrap main#seatSelect .menu {
  width: 350px;
  padding-right: 30px;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu {
    width: 0;
    padding: 0;
  }
  #seatSelectWrap main#seatSelect .menu > * {
    display: none;
  }
  #seatSelectWrap main#seatSelect .menu .tutorial-button, #seatSelectWrap main#seatSelect .menu .back-button {
    display: block;
    position: absolute;
    top: 20px;
    right: 24px;
  }
}
@media (max-width: 576px) {
  #seatSelectWrap main#seatSelect .menu .tutorial-button, #seatSelectWrap main#seatSelect .menu .back-button {
    top: 16px;
    right: 12px;
  }
}
#seatSelectWrap main#seatSelect .menu .next-sp-menu-text {
  display: none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .next-sp-menu-text.next-sp-draw {
    display: block;
  }
}
#seatSelectWrap main#seatSelect .menu .title-and-schedule {
  padding: 15px 0 15px 0;
}
#seatSelectWrap main#seatSelect .menu .title-and-schedule > * {
  display: inline-block;
}
#seatSelectWrap main#seatSelect .menu .title-and-schedule .title {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
  font-size: 16px;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .title-and-schedule .title {
    margin: 0;
    font-size: 14px;
  }
}
#seatSelectWrap main#seatSelect .menu .title-and-schedule .schedule {
  display: none;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .title-and-schedule {
    width: 100%;
    padding: 0;
  }
  #seatSelectWrap main#seatSelect .menu .title-and-schedule.next-sp-draw {
    background: #f1f1f1;
    display: block;
    padding: 10px 15px;
  }
  #seatSelectWrap main#seatSelect .menu .title-and-schedule.next-sp-draw .title {
    width: calc(100% - 100px);
    vertical-align: bottom;
  }
  #seatSelectWrap main#seatSelect .menu .title-and-schedule.next-sp-draw .schedule {
    display: inline-block;
    font-size: 12px;
  }
}
#seatSelectWrap main#seatSelect .menu .menu-text {
  font-weight: bold;
}
#seatSelectWrap main#seatSelect .menu .menu-text img {
  vertical-align: -3px;
  margin-right: 3px;
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list {
  height: var(--seat-checked-list-height);
  padding: 0;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu ul.seat-checked-list.list-sp-draw, #seatSelectWrap main#seatSelect .menu ul.seat-checked-list.list-sp-close {
    display: inline;
    position: absolute;
    width: 100%;
    bottom: 0;
    margin: 0;
    z-index: 5;
    background: #fff;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
  }
  #seatSelectWrap main#seatSelect .menu ul.seat-checked-list.list-sp-draw li, #seatSelectWrap main#seatSelect .menu ul.seat-checked-list.list-sp-close li {
    margin: 0 15px;
  }
  #seatSelectWrap main#seatSelect .menu ul.seat-checked-list.list-sp-draw {
    animation-name: SpSeatCheckedListFadeIn;
  }
}
@media (max-width: 1024px) and (-ms-high-contrast: none) {
  #seatSelectWrap main#seatSelect .menu ul.seat-checked-list.list-sp-draw {
    height: 40vh;
  }
}
@media (max-width: 1024px) {
  @keyframes SpSeatCheckedListFadeIn {
    0% {
      height: 0;
    }
    100% {
      height: 40vh;
    }
  }
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu ul.seat-checked-list.list-sp-close {
    animation-name: SpSeatCheckedListFadeOut;
  }
  @keyframes SpSeatCheckedListFadeOut {
    0% {
      height: 40vh;
    }
    100% {
      height: 0;
    }
  }
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu ul.seat-checked-list.next-sp-draw {
    display: block;
    height: calc(var(--original-vh) - (var(--header-h) + 44px + 41px + 1rem + 34px + 92px + 50px));
    padding: 0 15px;
  }
  #seatSelectWrap main#seatSelect .menu ul.seat-checked-list.next-sp-draw .selectbox {
    margin-right: 50px;
  }
  #seatSelectWrap main#seatSelect .menu ul.seat-checked-list.next-sp-draw .move-to-seat-button {
    display: none;
  }
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list::-webkit-scrollbar {
  display: none;
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list li {
  padding: 12px 0 12px 0;
  border-bottom: 1px solid;
  border-color: #999999;
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list li div {
  padding: 4px 0;
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list li img {
  vertical-align: -7px;
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list li .selectbox {
  position: relative;
  display: inline-block;
  width: calc(100% - 120px);
  margin-right: 30px;
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list li .selectbox select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 5px;
  padding: 5px 20px;
  box-sizing: border-box;
  font-size: 1em;
  border: #ccc 1px solid;
  background: #fff;
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list li .selectbox select::-ms-expand {
  display: none;
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list li .selectbox:after {
  pointer-events: none;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 35%;
  border-bottom: #333 2px solid;
  border-right: #333 2px solid;
  transform: rotate(45deg) translateY(-30%);
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list li.del {
  transition: 0.5s;
  padding: 0;
  animation-name: SeatCheckedFadeOut;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
#seatSelectWrap main#seatSelect .menu ul.seat-checked-list li.del > * {
  display: none;
}
@keyframes SeatCheckedFadeOut {
  0% {
    height: 87px;
  }
  100% {
    display: none !important;
    height: 0px;
  }
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next {
  margin-bottom: 10px;
  padding: 8px 20px;
  border-radius: 3px;
  display: flex;
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next > * {
  display: inline-block;
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .title-and-schedule {
  display: none;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next {
    display: inline;
    position: absolute;
    width: 90%;
    margin: 0 5%;
    padding: 5px;
    bottom: 20px;
    border-radius: 5px;
    left: 0;
    z-index: 4;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
}
@media (max-width: 1024px) and (max-width: 350px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next {
    margin: 0 3px;
    padding: 10px 5px;
    width: calc(100% - 6px);
  }
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .title-and-schedule {
    display: inline-block;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .title-and-schedule .title {
    position: relative;
    height: 3em;
    line-height: 1.5em;
    overflow: hidden;
    word-wrap: break-word;
    text-align: left;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .title-and-schedule .title:before {
    content: "…";
    width: 45px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 30%);
    position: absolute;
    padding-left: 1em;
    right: 0;
    bottom: 0;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .title-and-schedule .title:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
  }
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close {
    z-index: 5;
    width: 100%;
    margin: 0;
    padding: 15px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid;
    border-color: #999999;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw .ticket-total, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close .ticket-total {
    text-align: left;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw .ticket-total .title-and-schedule, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close .ticket-total .title-and-schedule {
    padding: 0;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw .ticket-total .title-and-schedule .title, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw .ticket-total .title-and-schedule .schedule, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close .ticket-total .title-and-schedule .title, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close .ticket-total .title-and-schedule .schedule {
    display: none;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw .ticket-total .count .title-img, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close .ticket-total .count .title-img {
    display: none;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw .ticket-total .count .title-text, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close .ticket-total .count .title-text {
    display: inline;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw .seat-checked-list-button, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close .seat-checked-list-button {
    transform: rotate(180deg);
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw .next-button, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw .sp-next-button, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close .next-button, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close .sp-next-button {
    display: none;
  }
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw {
    animation-name: SpTicketTotalAndNextFadeIn;
  }
}
@media (max-width: 1024px) and (-ms-high-contrast: none) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-draw {
    bottom: 40vh;
  }
}
@media (max-width: 1024px) {
  @keyframes SpTicketTotalAndNextFadeIn {
    0% {
      bottom: 0;
    }
    100% {
      bottom: 40vh;
    }
  }
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.list-sp-close {
    animation-name: SpTicketTotalAndNextFadeOut;
  }
  @keyframes SpTicketTotalAndNextFadeOut {
    0% {
      bottom: 40vh;
    }
    100% {
      bottom: 0;
    }
  }
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.next-sp-draw {
    position: static;
    z-index: 5;
    width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    cursor: auto;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.next-sp-draw .ticket-total {
    text-align: right;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.next-sp-draw .ticket-total .title-and-schedule {
    display: none;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.next-sp-draw .ticket-total .count .title-img {
    display: inline;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.next-sp-draw .ticket-total .count .title-img img {
    max-width: 15px;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.next-sp-draw .ticket-total .count .title-text {
    display: none;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.next-sp-draw .ticket-total .price {
    display: inline;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.next-sp-draw .seat-checked-list-button,
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next.next-sp-draw .next-button, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next.next-sp-draw .sp-next-button {
    display: none;
  }
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total {
  width: 100%;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total {
    text-align: right;
    width: calc(100% - 35px);
  }
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .title {
  display: none;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .title {
    display: inline-block;
    font-weight: bold;
    overflow: hidden;
    text-overflow: clip;
    white-space: normal;
    vertical-align: bottom;
  }
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .schedule {
  display: none;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .schedule {
    display: inline-block;
    font-size: 12px;
    width: 100%;
    text-align: left;
  }
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .count {
  width: 100%;
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .count .title-img {
  display: none;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .count {
    width: auto;
    display: inline-block;
    margin-right: 15px;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .count * {
    vertical-align: bottom;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .count .title-text {
    display: none;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .count .title-img {
    display: inline;
  }
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .price .val {
  font-weight: bold;
  font-size: 16px;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .price {
    display: inline-block;
  }
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .ticket-total .price * {
    vertical-align: bottom;
  }
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .seat-checked-list-button {
  display: none;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .seat-checked-list-button {
    display: inline;
    margin-left: 15px;
  }
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .next-button, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .sp-next-button {
  border-radius: 10px;
  width: 250px;
  text-align: center;
  font-size: 14px;
  padding: 5px;
  cursor: pointer;
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .next-button:disabled, #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .sp-next-button:disabled {
  background: #e6889d;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .next-button {
    display: none;
  }
}
#seatSelectWrap main#seatSelect .menu .ticket-total-and-next .sp-next-button {
  display: none;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .ticket-total-and-next .sp-next-button {
    display: inline;
    position: absolute;
    bottom: 95px;
    width: 140px;
    margin: 0;
    padding: 10px;
    left: calc(50% - 70px);
  }
}
#seatSelectWrap main#seatSelect .menu .next-sp-buttons {
  display: none;
}
@media (max-width: 1024px) {
  #seatSelectWrap main#seatSelect .menu .next-sp-buttons.next-sp-draw {
    display: block;
  }
  #seatSelectWrap main#seatSelect .menu .next-sp-buttons.next-sp-draw .settlement-button,
#seatSelectWrap main#seatSelect .menu .next-sp-buttons.next-sp-draw .pre-button {
    display: block;
    margin: 20px auto;
    border-radius: 5px;
  }
  #seatSelectWrap main#seatSelect .menu .next-sp-buttons.next-sp-draw .settlement-button {
    padding: 10px 30px;
  }
  #seatSelectWrap main#seatSelect .menu .next-sp-buttons.next-sp-draw .settlement-button:disabled {
    background: #e6889d;
  }
  #seatSelectWrap main#seatSelect .menu .next-sp-buttons.next-sp-draw .pre-button {
    padding: 5px 10px;
    background-color: #585858;
    color: #fff;
  }
}
#seatSelectWrap main#seatSelect .menu.list-sp-draw {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--original-vh));
  z-index: 5;
  background: rgba(0, 0, 0, 0.4);
}
#seatSelectWrap main#seatSelect .menu.next-sp-draw {
  position: absolute;
  top: calc(var(--header-h) - 1px);
  left: 0;
  width: 100%;
  height: calc(var(--original-vh) - var(--header-h));
  z-index: 5;
  background: #fff;
}
#seatSelectWrap .modal-ticket-type-select {
  left: 0;
}
#seatSelectWrap .modal-ticket-type-select .title {
  font-weight: bold;
  margin-bottom: 30px;
}
#seatSelectWrap .modal-ticket-type-select .ticket-types {
  margin-bottom: 10px;
}
#seatSelectWrap .modal-ticket-type-select .ticket-types .ticket-types-img {
  display: inline-block;
  width: 30px;
  vertical-align: top;
}
#seatSelectWrap .modal-ticket-type-select .ticket-types .ticket-types-radios {
  display: inline-block;
  width: calc(100% - 35px);
  border-radius: 3px;
  border: 1px solid #b6b6b6;
}
#seatSelectWrap .modal-ticket-type-select .ticket-types .ticket-types-radios div {
  position: relative;
  flex: 1;
}
#seatSelectWrap .modal-ticket-type-select .ticket-types .ticket-types-radios input {
  width: 100%;
  height: 35px;
  opacity: 0;
}
#seatSelectWrap .modal-ticket-type-select .ticket-types .ticket-types-radios label {
  border-bottom: 1px solid #b6b6b6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  padding: 6px;
}
#seatSelectWrap .modal-ticket-type-select .ticket-types .ticket-types-radios div:last-child label {
  border-bottom: 0;
}
#seatSelectWrap .modal-ticket-type-select .ticket-types .ticket-types-radios input:checked + label {
  background: #e6889d;
}
#seatSelectWrap .modal-ticket-type-select .close-button {
  display: block;
  margin: 10px auto;
  border-radius: 10px;
  width: 170px;
  text-align: center;
  padding: 10px;
}
#seatSelectWrap .modal-ticket-type-select .close-button :hover {
  color: #fff;
}
#seatSelectWrap .performance-select {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#seatSelectWrap .performance-select-main {
  margin: 0 auto 20px;
  max-width: 700px;
  width: 94%;
  font-size: 14px;
}
#seatSelectWrap .performance-select-main .title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 70px;
  margin-bottom: 35px;
}
#seatSelectWrap .performance-select-main .tag-header {
  font-size: 16px;
  margin-bottom: 10px;
}
#seatSelectWrap .performance-select-main .tag-fields .tag-field {
  width: 90%;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  position: relative;
}
#seatSelectWrap .performance-select-main .tag-fields .tag-field .tag-field-inner {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  cursor: pointer;
}
#seatSelectWrap .performance-select-main .selected {
  margin-bottom: 35px;
}
#seatSelectWrap .performance-select-main .selected div {
  font-size: 16px;
}
#seatSelectWrap .performance-select-main .selected .chose-tag {
  color: #eb2a2a;
  font-weight: bold;
}
#seatSelectWrap .performance-select-main .select {
  text-align: center;
  margin-bottom: 70px;
}
#seatSelectWrap .performance-select-main .select .chose-button {
  border-radius: 10px;
  width: 200px;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  cursor: pointer;
}

.newsContent .newsContent__list li {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.newsContent .newsContent__list li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.newsContent .newsContent__list li dl dt {
  font-size: 10px;
  color: #999;
  margin-bottom: 10px;
}
.newsContent .newsContent__list li dl dt .tag {
  padding: 3px 10px;
  border-radius: 30px;
  margin-left: 10px;
}
.newsContent .newsContent__title {
  border-bottom: #ccc solid 1px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.newsContent .newsContent__title dl dt {
  font-size: 10px;
  color: #999;
  margin-bottom: 10px;
}
.newsContent .newsContent__title dl dt .tag {
  padding: 3px 10px;
  border-radius: 30px;
  margin-left: 10px;
}
.newsContent .newsContent__title dl dd h2 {
  font-weight: 400;
  font-size: 1.2rem;
}
.newsContent .newsContent__img {
  margin-bottom: 20px;
}
.newsContent article {
  line-height: 1.8;
}
.newsContent article h3, .newsContent article h4 {
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.4;
}
.newsContent article b {
  font-weight: bold;
}
.newsContent article em {
  font-style: italic;
}
.newsContent article del {
  text-decoration: line-through;
}
.newsContent article a {
  text-decoration: underline;
}
.newsContent article a:hover {
  text-decoration: none;
}
.newsContent .pager {
  margin: 50px;
}
.newsContent .pager ul {
  display: flex;
  justify-content: center;
}
.newsContent .pager ul li {
  color: #ccc;
  margin: 0 5px;
}
.newsContent .pager ul li a {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  line-height: 0.1em;
}
.newsContent .pager ul li.next {
  transform: rotate(180deg);
}
.newsContent .pager ul li.otherBtn a {
  width: 100px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
}

.shareSnsBtn {
  padding: 40px 0 0;
}
.shareSnsBtn ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.shareSnsBtn ul li {
  width: 40px;
  height: 40px;
  margin: 0 15px;
}

.copy {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 14px;
  height: 18px;
  border: 2px solid;
  margin-left: -5px;
  margin-top: -4px;
  cursor: pointer;
}
.copy::before, .copy::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  cursor: pointer;
}
.copy::before {
  background: linear-gradient(to left, currentColor 5px, transparent 0) no-repeat right top/5px 2px, linear-gradient(to left, currentColor 5px, transparent 0) no-repeat left bottom/2px 5px;
  box-shadow: inset -4px -4px 0 -2px;
  bottom: -6px;
  right: -6px;
  width: 14px;
  height: 18px;
  cursor: pointer;
}
.copy::after {
  width: 6px;
  height: 2px;
  background: currentColor;
  left: 2px;
  top: 2px;
  box-shadow: 0 4px 0, 0 8px 0;
  cursor: pointer;
}

.language-select {
  position: absolute;
  top: 16px;
  right: 120px;
  display: none;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .language-select {
    top: 58px;
    left: 12px;
    right: unset;
    padding: 3px;
    background-color: #ffffff;
    border-radius: 20px;
  }
}

.language-selectbox {
  padding: 5px;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  appearance: auto;
}
.language-selectbox::-ms-expand {
  display: block;
}

.loader {
  display: none;
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}
.loader .spinner {
  width: 32px;
  height: 32px;
  margin: 30% auto;
  border: 4px #ddd solid;
  border-top: 4px #e6889d solid;
  border-radius: 50%;
  animation: sp-anime 1s infinite linear;
}