@charset "UTF-8";
.c-time-icon {
  --icon-size: 4rem;
  width: var(--icon-size);
  height: var(--icon-size);
  position: relative;
}
.c-time-icon::before {
  content: "";
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: #333;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  inset: 0;
  margin: auto;
}
.c-time-icon.--step-01::before {
  -webkit-mask-image: url(../images/hgnavi/schedule_icon_01.png);
          mask-image: url(../images/hgnavi/schedule_icon_01.png);
}
.c-time-icon.--step-02::before {
  -webkit-mask-image: url(../images/hgnavi/schedule_icon_02.png);
          mask-image: url(../images/hgnavi/schedule_icon_02.png);
}
.c-time-icon.--step-03::before {
  -webkit-mask-image: url(../images/hgnavi/schedule_icon_03.png);
          mask-image: url(../images/hgnavi/schedule_icon_03.png);
}
.c-time-icon.--step-04::before {
  -webkit-mask-image: url(../images/hgnavi/schedule_icon_04.png);
          mask-image: url(../images/hgnavi/schedule_icon_04.png);
}
.c-time-icon.--step-05::before {
  -webkit-mask-image: url(../images/hgnavi/schedule_icon_05.png);
          mask-image: url(../images/hgnavi/schedule_icon_05.png);
}
.c-time-icon.--step-06::before {
  -webkit-mask-image: url(../images/hgnavi/schedule_icon_06.png);
          mask-image: url(../images/hgnavi/schedule_icon_06.png);
}
.c-time-icon.--step-07::before {
  -webkit-mask-image: url(../images/hgnavi/schedule_icon_07.png);
          mask-image: url(../images/hgnavi/schedule_icon_07.png);
}
.c-time-icon.--step-08::before {
  -webkit-mask-image: url(../images/hgnavi/schedule_icon_08.png);
          mask-image: url(../images/hgnavi/schedule_icon_08.png);
}
.c-time-icon.--step-09::before {
  -webkit-mask-image: url(../images/hgnavi/schedule_icon_09.png);
          mask-image: url(../images/hgnavi/schedule_icon_09.png);
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 21.25rem;
  min-height: 4.375rem;
  padding: 0 3.75rem 0 1rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  cursor: pointer;
  background-color: #004ea2;
  border: 0.1875rem solid #93c8ff;
  border-radius: 999rem;
}
.c-button.--long {
  min-width: 30rem;
}
.c-button.--md-long {
  min-width: 24.5rem;
}
.c-button__text {
  text-align: center;
  transform: rotate(0.03deg);
}
.c-button__text-img {
  transform: rotate(-0.03deg);
}
.c-button__icon {
  position: absolute;
  top: 50%;
  right: 0.875rem;
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
.c-button__icon.--pdf {
  align-items: center;
  justify-content: center;
  height: 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  background: #ce0f69;
  border-radius: 0.1875rem;
}
.c-button__icon.--pdf::before {
  display: inline-block;
  content: "PDF";
  transform: rotate(0.03deg);
}
.c-button__icon-symbol {
  position: absolute;
  inset: 0;
  margin: auto;
}
.c-button__icon-symbol.--arrow {
  width: 1.5rem;
  overflow: hidden;
  line-height: 1;
}
.c-button__icon-symbol.--arrow::before, .c-button__icon-symbol.--arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin-top: -0.125rem;
  content: "";
  background: url("../images/common/icon_arrow-right-blue.svg") no-repeat center/contain;
  animation-duration: 0.6s;
  animation-fill-mode: both;
}
.c-button__icon-symbol.--arrow::after {
  transform: translateX(-100%);
}
.c-button__icon-symbol.--blank {
  width: 2.1875rem;
  height: 2.1875rem;
  background: url("../images/common/icon_blank_blue.svg") no-repeat center center/contain;
}
.c-button.--red {
  color: #ce0f69;
  background-color: #fff;
  border-color: #ce0f69;
}
.c-button.--red .c-button__icon {
  background: #ce0f69;
}
.c-button.--red .c-button__icon-symbol.--arrow::before, .c-button.--red .c-button__icon-symbol.--arrow::after {
  background-image: url("../images/common/icon_arrow-right-white.svg");
}
.c-button.--red .c-button__icon-symbol.--blank {
  background-image: url("../images/common/icon_blank_white_normal.svg");
}
.c-button.--white {
  color: #004ea2;
  background: #fff;
}
.c-button.--white .c-button__icon {
  background-color: #004ea2;
}
.c-button.--white .c-button__icon-symbol.--arrow::before, .c-button.--white .c-button__icon-symbol.--arrow::after {
  background-image: url("../images/common/icon_arrow-right-white.svg");
}
.c-button.--back {
  padding: 0 1rem 0 3.75rem;
  color: #333;
  background-color: #dcdcdc;
  border-color: #666;
}
.c-button.--back .c-button__icon {
  right: auto;
  left: 1rem;
  background-color: #fff;
  transform: translateY(-50%) rotateY(180deg);
}
.c-button.--back .c-button__icon-symbol.--arrow::before, .c-button.--back .c-button__icon-symbol.--arrow::after {
  background-image: url("../images/common/icon_arrow-right-gray.svg");
}
.c-button.--small {
  min-height: 3.125rem;
  padding-right: 2.75rem;
  border-width: 0.125rem;
}
.c-button.--small .c-button__icon {
  right: 0.4375rem;
  width: 2.25rem;
  height: 2.25rem;
}
.c-button.--small .c-button__icon-symbol.--blank {
  width: 1.875rem;
  height: 1.875rem;
}
.c-button.--small .c-button__icon-symbol.--arrow {
  width: 1.25rem;
}
.c-button.--report::before {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.625rem;
  margin-left: 2rem;
  content: "";
  background: url("../images/common/icon_report.svg") no-repeat center/contain;
}
.c-button.--report .c-button__text {
  min-width: 6.25rem;
  text-align: left;
}
.c-button:disabled, .c-button.--disabled {
  pointer-events: none;
}
.c-button:disabled, .c-button.--gray {
  color: #333;
  background-color: #dcdcdc;
  border-color: #666;
}
.c-button:disabled .c-button__icon, .c-button.--gray .c-button__icon {
  background-color: #fff;
}
.c-button:disabled .c-button__icon-symbol.--arrow::before, .c-button:disabled .c-button__icon-symbol.--arrow::after, .c-button.--gray .c-button__icon-symbol.--arrow::before, .c-button.--gray .c-button__icon-symbol.--arrow::after {
  background-image: url("../images/common/icon_arrow-right-gray.svg");
}

@media (hover: hover) {
  .c-button:not(.js-button-hover) {
    transition: 0.3s ease opacity;
  }
  .c-button:not(.js-button-hover):hover {
    opacity: 0.7;
  }
  .js-button-hover.is-hover .c-button__icon-symbol.--arrow::before {
    animation-name: transformLeftRight;
    animation-delay: 0.2s;
  }
  .js-button-hover.is-hover .c-button__icon-symbol.--arrow::after {
    animation-name: transformRightLeft;
  }
  .js-button-hover.is-hover:hover .c-button__icon-symbol.--arrow::before {
    animation-name: transformRightLeft;
    animation-delay: 0s;
  }
  .js-button-hover.is-hover:hover .c-button__icon-symbol.--arrow::after {
    animation-name: transformLeftRight;
    animation-delay: 0.2s;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .c-button {
    width: 100%;
    min-width: unset !important;
    font-size: 1rem;
  }
  .c-button__text-img.--program {
    width: 13.625rem;
  }
  .c-button.--small {
    font-size: 1.125rem;
  }
  .c-button.--small-sp {
    min-height: 3.125rem;
    padding-right: 2.75rem;
    font-size: 1.125rem;
    border-width: 0.125rem;
  }
  .c-button.--small-sp .c-button__icon {
    right: 0.4375rem;
    width: 2.25rem;
    height: 2.25rem;
  }
  .c-button.--small-sp .c-button__icon-symbol.--blank {
    width: 1.875rem;
    height: 1.875rem;
  }
  .c-button.--small-sp .c-button__icon-symbol.--arrow {
    width: 1.25rem;
  }
}
.c-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
}
.c-text.--ls-wide {
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 47.9375rem) {
  .c-text {
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
}
.c-heading-h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.5625rem;
  font-weight: 800;
  line-height: 1.48;
  color: var(--title-font-color);
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

@media only screen and (max-width: 47.9375rem) {
  .c-heading-h4 {
    font-size: 1.375rem;
  }
}
.c-text-link {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  text-decoration-line: underline;
  transform: rotate(0.03deg);
}
.c-text-link.--blank::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 2.1875rem;
  margin: -0.3125rem 0 -0.1875rem;
  vertical-align: middle;
  content: "";
  background: url("../images/common/icon_blank.svg") no-repeat center center/contain;
}
.c-text-link.--pdf::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 1.1875rem;
  margin-top: -0.3125rem;
  margin-left: 0.3125rem;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 0.8;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  content: "PDF";
  background-color: #ce0f69;
  background-image: none;
  border-radius: 0.1875rem;
}
.c-text-link.--anchor {
  color: var(--title-font-color);
}
.c-text-link.--anchor::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 0.75rem;
  margin: -0.25rem 0 0 0.625rem;
  vertical-align: middle;
  content: "";
  background: url("../images/common/icon_arrow_down_white.svg") no-repeat center/contain;
}
.c-text-link.--black {
  color: #333;
}
.c-text-link.--black.--blank::after {
  background: url("../images/common/icon_blank_black.svg");
}

body.bg-white .c-text-link.--blank::after {
  background-image: url("../images/common/icon_blank_black.svg");
}
body.bg-white .c-text-link.--anchor::after {
  background-image: url("../images/common/icon_arrow_down_blue.svg");
}

p-editor__white .c-text-link.--blank::after {
  background-image: url("../images/common/icon_blank_black.svg");
}
p-editor__white .c-text-link.--anchor::after {
  background-image: url("../images/common/icon_arrow_down_blue.svg");
}

@media only screen and (max-width: 47.9375rem) {
  .c-text-link {
    font-size: 1rem;
  }
  .c-text-link.--blank::after {
    margin-top: -0.625rem;
    margin-left: -0.125rem;
  }
  .c-text-link.--pdf::after {
    margin-top: 0;
    margin-left: 0.3125rem;
  }
}
.c-list-dot {
  list-style: none;
}
.c-list-dot__item {
  position: relative;
  padding-left: 1.5625rem;
  color: var(--main-font-color);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
}
.c-list-dot__item::before {
  position: absolute;
  top: 0.75em;
  left: 0.3125rem;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  background-color: var(--icon-color);
  border-radius: 50%;
  transform: translateY(-50%);
}
.c-list-dot__item:not(:first-child) {
  margin-top: 0.625rem;
}
.c-list-dot.--row-gap-5 .c-list-dot__item:not(:first-child) {
  margin-top: 0.3125rem;
}

@media only screen and (max-width: 47.9375rem) {
  .c-list-dot__item {
    padding-left: 1.4375rem;
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
  .c-list-dot__item::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.c-list-dot-01 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
}
.c-list-dot-01__item {
  position: relative;
  padding-left: 1.6875rem;
}
.c-list-dot-01__item::before {
  position: absolute;
  top: 0.6em;
  left: 0.875rem;
  width: 0.25rem;
  aspect-ratio: 1/1;
  content: "";
  background-color: currentcolor;
  border-radius: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 47.9375rem) {
  .c-list-dot-01 {
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
}
.c-number {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: 0.03em;
  border: 1px solid #fff;
}
.c-number.--red {
  background-color: #e50011;
}
.c-number.--green {
  background-color: #abcd05;
}
.c-number.--green18 {
  background-color: #399a2d;
}
.c-number.--green19 {
  background-color: #7fb872;
}
.c-number.--green20 {
  background-color: #929c25;
}
.c-number.--pink01 {
  background-color: #cd007f;
}
.c-number.--pink02 {
  background-color: #e13ea1;
}
.c-number.--pink03 {
  background-color: #ee74bb;
}
.c-number.--pink04 {
  background-color: #f59ace;
}
.c-number.--blue10 {
  background-color: #0094ac;
}
.c-number.--blue11 {
  background-color: #41b0c1;
}
.c-number.--blue12 {
  background-color: #71bfce;
}
.c-number.--blue13 {
  background-color: #a4d5de;
}
.c-number.--blue24, .c-number.--blue25, .c-number.--blue26, .c-number.--blue27 {
  background-color: #0098d9;
}
.c-number.--purple14 {
  background-color: #615ea8;
}
.c-number.--purple15 {
  background-color: #9290c3;
}
.c-number.--purple16 {
  background-color: #c2c0dd;
}
.c-number.--purple21 {
  background-color: #b963a4;
}
.c-number.--yellow17 {
  background-color: #ded355;
}
.c-number.--yellow22, .c-number.--yellow23 {
  background-color: #f8b500;
}
.c-number.--orange28 {
  background-color: #ec6c20;
}
.c-number.--brown29, .c-number.--brown30, .c-number.--brown31 {
  background-color: #a16a3a;
}

.c-title-01 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.48;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0.625rem 2.5rem;
  color: #fff;
  background: #ce0f69;
  border-radius: 999rem;
}
@media only screen and (max-width: 47.9375rem) {
  .c-title-01 {
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
  }
}

.p-fixed-nav {
  position: fixed;
  bottom: 0.625rem;
  left: 50%;
  z-index: 99;
  width: calc(100% - 2.125rem);
  max-width: 67.5rem;
  pointer-events: all;
  background-color: #004ea2;
  border: 0.125rem solid #fff;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: 0.3s transform;
  transform: translateY(calc(100% + 2rem)) translateX(-50%);
}
.p-fixed-nav.is-active {
  transform: translateY(0) translateX(-50%);
}
.p-fixed-nav.is-footer {
  position: relative;
  bottom: 0;
}
.p-fixed-nav__footer {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem 2.5rem;
}
.p-fixed-nav__footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16.25rem;
  min-height: 3.5rem;
  padding: 0.25rem;
  font-size: 0;
  font-weight: 800;
  color: #004ea2;
  background: #fff;
  border-radius: 0.3125rem;
}
.p-fixed-nav__footer-button::after {
  display: inline-block;
  font-size: 1.125rem;
  content: "コンテンツはこちら";
  transform: rotate(0.03deg);
}
.p-fixed-nav__content {
  display: none;
  max-width: 56.25rem;
  padding: 4rem 0.625rem 2.5rem;
  margin: 0 auto;
}
.p-fixed-nav.is-open .p-fixed-nav__content {
  display: block;
}
.p-fixed-nav.is-open .p-fixed-nav__footer-button::after {
  content: "とじる";
}

@media only screen and (max-width: 47.9375rem) {
  .p-fixed-nav__footer {
    gap: 1rem;
    justify-content: center;
    padding: 1rem 1rem 1rem 1.25rem;
  }
  .p-fixed-nav__footer-button {
    max-width: 8rem;
    min-height: 2rem;
  }
  .p-fixed-nav__footer-button::after {
    font-size: 0.75rem;
  }
  .p-fixed-nav__footer-img {
    width: 10rem;
  }
  .p-fixed-nav__content {
    padding: 0.75rem 0.625rem 0rem;
  }
}
.p-box {
  width: 100%;
  padding: 3.6875rem 2.75rem;
  color: #333;
  background-color: #fff;
  border: 0.0625rem solid #dcdcdc;
  border-radius: 0.3125rem;
}
.p-box__inner {
  max-width: 55rem;
  margin: 0 auto;
}
.p-box__title {
  color: #004ea2;
}
.p-box__title:not([class*=c-]) {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}
.p-box__title:not(:first-child) {
  margin-top: 1.875rem;
}
.p-box__text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
}
.p-box__text:not(:first-child) {
  margin-top: 0.9375rem;
}
.p-box__text p {
  margin-top: 0;
}
.p-box__buttons {
  display: flex;
  justify-content: center;
  margin-top: 1.875rem;
}
.p-box.--type2 .p-box__title {
  color: #ce0f69;
}
.p-box.--type3 {
  color: #fff;
  background: #004ea2;
  border-color: #004ea2;
}
.p-box.--type3 .p-box__title {
  color: #fff;
}
.p-box + .p-box {
  margin-top: 2.5rem;
}

@media only screen and (min-width: 48rem) and (max-width: 80rem) {
  .p-box {
    padding-right: 1.875rem;
    padding-left: 1.875rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .p-box {
    padding: 2.125rem 1.875rem;
  }
  .p-box__title:not([class*=c-]) {
    font-size: 1.125rem;
  }
  .p-box__text {
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
  .p-box__text:not(:first-child) {
    margin-top: 0.625rem;
  }
  .p-box + .p-box {
    margin-top: 1.875rem;
  }
}
.p-table {
  width: 100%;
  border-top: 0.0625rem solid #004ea2;
}
.p-table__th, .p-table__td {
  padding: 1.21875rem 1.875rem;
}
.p-table__th > div, .p-table__td > div {
  transform: rotate(0.03deg);
}
.p-table__th {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  letter-spacing: 0.05em;
  background-color: #004ea2;
  border: 0.0625rem solid #fff;
  border-color: #fff;
}
.p-table__th:first-child {
  border-left: none;
}
.p-table__th:last-child {
  border-right: none;
}
.p-table__td {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  text-align: left;
  letter-spacing: 0.03em;
  background-color: #fff;
  border-right: 0.0625rem solid #004ea2;
  border-bottom: 0.0625rem solid #004ea2;
}
.p-table__td:last-child {
  border-right: none;
}
.p-table__td .p-list-dl-02__item + .p-list-dl-02__item {
  margin-top: 0.625rem;
}
.p-table__td p:not([class]),
.p-table__td .c-text-note {
  margin-top: 0.625rem;
  color: #333;
}
.p-table__td.--nowrap {
  white-space: nowrap;
}
.p-table__schedule p:not(:first-child) {
  margin-top: 0.3125rem;
}
.p-table__schedule .p-table__tag {
  margin-bottom: 0.625rem;
}
.p-table__schedule .p-table__tag:not(:first-child) {
  margin-top: 1.25rem;
}
.p-table__schedule .p-table__tag + p {
  margin-top: 0;
}
.p-table.--fw-md .p-table__th {
  font-weight: 500;
}
.p-table.--fw-md .p-table__td {
  font-weight: 500;
}
.p-table.--border-side {
  border-right: 0.0625rem solid #fff;
  border-left: 0.0625rem solid #fff;
}
.p-table.--dl .p-table__th {
  vertical-align: middle;
  border-left: 0.0625rem solid;
}
.p-table.--dl .p-table__td {
  border-top: 0.0625rem solid #004ea2;
}
.p-table.--ver-middle .p-table__th {
  vertical-align: middle;
}
.p-table.--ver-middle .p-table__td {
  vertical-align: middle;
}
.p-table.--schedule .p-table__th:first-child {
  width: 10rem;
}
.p-table.--schedule .p-table__td {
  vertical-align: middle;
}
.p-table.--schedule .p-table__td:first-child {
  padding-right: 1.75rem;
}

@media only screen and (max-width: 47.9375rem) {
  .p-table__th, .p-table__td {
    padding: 1.21875rem 1.875rem;
  }
  .p-table__th {
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
  .p-table__td {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
  .p-table.--sp-col1 {
    border: 0.0625rem solid var(--title-font-color);
  }
  .p-table.--sp-col1 .p-table__th, .p-table.--sp-col1 .p-table__td {
    display: block;
    width: 100% !important;
    padding: 1rem 1.25rem;
    border: none !important;
    border-right: 0;
  }
  .p-table.--schedule .p-table__th {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .p-table.--schedule .p-table__th:first-child {
    width: 7.25rem;
  }
  .p-table.--schedule .p-table__td {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .p-table.--schedule .p-table__td:first-child {
    padding-right: 1rem;
  }
  .p-table-container.--scroll-sp .p-table__th {
    white-space: nowrap;
  }
  .p-table-container.--scroll-sp .p-table__td {
    white-space: nowrap;
  }
}
.p-mainvisual {
  position: relative;
  width: 100%;
  aspect-ratio: 192/88;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-mainvisual__bg {
  position: absolute;
  inset: 0;
}
.p-mainvisual__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-mainvisual__inner {
  position: relative;
  width: 100%;
  max-width: 1570px;
  padding: 0 1.25rem;
  margin: 3.25rem auto 0;
}
.p-mainvisual__text {
  position: relative;
  z-index: 1;
  max-width: 64%;
  margin: 0 auto;
  text-align: center;
}
.p-mainvisual__img {
  position: absolute;
  top: 18%;
  right: 0;
  width: 31.847%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 47.9375rem) {
  .p-mainvisual {
    aspect-ratio: 375/400;
  }
  .p-mainvisual__inner {
    height: 100%;
    margin-top: 0;
  }
  .p-mainvisual__text {
    position: absolute;
    top: 50%;
    left: calc(50% - 0.25rem);
    max-width: none;
    padding-right: 0.25rem;
    transform: translate(-50%, -50%);
  }
  .p-mainvisual__text img {
    width: 61.75rem;
    max-width: none;
    height: 32.75rem;
    transform: scale(0.25);
  }
  .p-mainvisual__img {
    top: 35%;
    left: calc(50% + 3.25rem);
    width: 8.375rem;
  }
}
.p-match-card-wrap.--col-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}
@media only screen and (max-width: 47.9375rem) {
  .p-match-card-wrap.--col-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.p-match-card-wrap__img {
  align-self: flex-end;
  text-align: center;
}

.p-match-card {
  display: flex;
  flex-direction: column;
  color: #333;
  border-radius: 0.3125rem;
  box-shadow: 0rem 0rem 0.5rem 0rem rgba(0, 0, 0, 0.3);
}
.p-match-card__head {
  position: relative;
  display: flex;
  min-height: 2.5rem;
  overflow: hidden;
  border-radius: 0.3125rem 0.3125rem 0 0;
}
.p-match-card__head::before {
  position: absolute;
  inset: 0 0 0 1.25rem;
  content: "";
  background-color: #ce0f69;
}
.p-match-card__head-tag {
  --clip-path: polygon(0% 0%, 100% 0%, calc(100% - 35px) 100%, 0% 100%);
  --clip-path02: polygon(0% 0%, 100% 0%, calc(100% - 34px) 98%, 0% 98%);
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 32%;
  min-height: 2.5rem;
  padding-right: 2.1875rem;
  margin-top: -0.0625rem;
  margin-bottom: -1px;
  clip-path: var(--clip-path);
  color: #333;
  background-color: #004ea2;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}
.p-match-card__head-tag::before {
  position: absolute;
  inset: 0;
  right: 0.25rem;
  z-index: -1;
  clip-path: inherit;
  content: "";
  background-color: inherit;
}
.p-match-card__head-tag::after {
  position: absolute;
  inset: 0;
  left: 0.625rem;
  z-index: -2;
  clip-path: inherit;
  content: "";
  background-color: #fff;
}
.p-match-card__head-tag.--green {
  background: #abcd03;
}
.p-match-card__head-tag.--white {
  background-color: #000;
}
.p-match-card__head-tag.--white .p-match-card__head-tag-inner::after {
  background-color: #fff;
}
.p-match-card__head-tag.--blue {
  color: #fff;
  background-color: #004ea2;
}
.p-match-card__head-tag.--blue .p-match-card__head-tag-inner::before {
  background-image: url("../images/common/icon_map_fill_white.svg");
}
.p-match-card__head-tag-inner {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.p-match-card__head-tag-inner::before {
  width: 20px;
  height: 20px;
  content: "";
  background: url("../images/common/icon_map_solid_black.svg") no-repeat center/contain;
}
.p-match-card__head-tag-inner::after {
  position: absolute;
  inset: 0;
  right: 0.3125rem;
  bottom: 0.0625rem;
  z-index: -1;
  clip-path: var(--clip-path02);
  content: "";
}
.p-match-card__head-title {
  align-self: center;
  padding: 0.25rem 0.875rem 0.25rem 0;
  margin-right: auto;
  margin-left: 0.8125rem;
  margin-left: auto;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
}
.p-match-card__body {
  height: 100%;
  padding: 1.375rem 1.25rem 1.5rem;
  background-color: #fff;
  border-radius: 0 0 0.3125rem 0.3125rem;
}
.p-match-card__opponent {
  display: flex;
  flex: 1;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.4375rem 1.25rem;
  background: #fafafa;
  border-radius: 0.3125rem;
}
.p-match-card__opponent-logo {
  flex-shrink: 0;
  width: 8rem;
}
.p-match-card__opponent-logo img {
  width: 100%;
}
.p-match-card__opponent-info {
  flex-grow: 1;
  max-width: 19.5rem;
  margin-top: -0.375rem;
}
.p-match-card__opponent-info.--wide {
  max-width: 25rem;
}
.p-match-card__opponent-title {
  display: flex;
  gap: 0 0.75rem;
  align-items: center;
  padding-bottom: 0.75rem;
  margin-bottom: 0.5625rem;
  border-bottom: 0.0625rem solid #dcdcdc;
}
.p-match-card__opponent-title-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4375rem;
  font-weight: 600;
  color: #ce0f69;
  letter-spacing: 0.01em;
  transform: rotate(0.03deg);
}
.p-match-card__opponent-title-name {
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}
.p-match-card__opponent-area {
  display: flex;
  gap: 0.3125rem;
  margin-top: 0.8125rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}
.p-match-card__opponent-area::before {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  content: "";
  background: url("../images/common/icon_map_blue.svg") no-repeat center/contain;
}
.p-match-card__games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 1.25rem;
}
.p-match-card__days-section {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  background-color: #004ea2;
  border-radius: 6.25rem;
  transform: rotate(0.03deg);
}
.p-match-card__days-day {
  display: flex;
  gap: 0.1875rem;
  align-items: flex-end;
  justify-content: center;
  margin-top: 0.8125rem;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 0.8;
}
.p-match-card__days-year {
  font-size: 1.5625rem;
  letter-spacing: 0.03em;
}
.p-match-card__days-day-date {
  font-size: 4.6875rem;
  line-height: 0.7;
  letter-spacing: 0;
}
.p-match-card__days-day-week {
  font-size: 1.5625rem;
  color: #ce0f69;
}
.p-match-card__days-day-week.--sat {
  color: #004ea2;
}
.p-match-card__days-time {
  padding: 0.375rem 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border-top: 0.0625rem solid #dcdcdc;
  border-bottom: 0.0625rem solid #dcdcdc;
}
.p-match-card__days-time:not(:first-child) {
  margin-top: 1.375rem;
}
.p-match-card__days-time-group {
  display: inline-block;
}
.p-match-card__ticket-wrap {
  margin-top: 1.25rem;
}
.p-match-card__ticket-wrap.--center {
  max-width: 50rem;
  margin-inline: auto;
}
.p-match-card__ticket-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}
.p-match-card__ticket-subtitle {
  width: 80%;
  margin-top: 9px;
  clip-path: polygon(0% 0%, calc(100% - 16px) 0%, 100% 100%, 0% 100%);
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  background: #ce0f69;
  transform: rotate(0.03deg);
}
.p-match-card__ticket-img {
  margin-top: 0.375rem;
}
.p-match-card__ticket-img img {
  width: 100%;
}
.p-match-card__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.p-match-card__buttons .c-button {
  min-width: 16.25rem;
}
.p-match-card__button {
  margin-top: 1.25rem;
  text-align: center;
}
.p-match-card__button .c-button {
  width: 100%;
  min-width: unset;
  max-width: 21.25rem;
}
.p-match-card__button .c-button[disabled] {
  pointer-events: none;
}

@media only screen and (max-width: 47.9375rem) {
  .p-match-card__head-tag {
    min-width: 6.5625rem;
    padding-right: 1.875rem;
    font-size: 1rem;
  }
  .p-match-card__head-tag-inner {
    gap: 0.125rem;
  }
  .p-match-card__head-tag-inner::before {
    width: 1.125rem;
    height: 1.125rem;
  }
  .p-match-card__head-title {
    padding-right: 0.5rem;
    font-size: 1rem;
    line-height: 1.2;
  }
  .p-match-card__games {
    grid-template-columns: 1fr;
  }
  .p-match-card__days-day-date {
    font-size: 4rem;
  }
  .p-match-card__days-day-week {
    font-size: 1.5rem;
  }
  .p-match-card__days-time {
    font-size: 1.25rem;
  }
  .p-match-card__ticket-title {
    font-size: 1rem;
  }
  .p-match-card__opponent {
    padding: 0.875rem 0.875rem 0.625rem;
  }
  .p-match-card__opponent-logo {
    align-self: flex-start;
    width: 3.625rem;
  }
  .p-match-card__opponent-title {
    gap: 0.4375rem;
    padding-bottom: 0.5625rem;
    margin-bottom: 0;
  }
  .p-match-card__opponent-title-label {
    flex-shrink: 0;
    font-size: 1rem;
  }
  .p-match-card__opponent-title-name {
    font-size: 1rem;
    line-height: 1.2;
  }
  .p-match-card__opponent-area {
    gap: 0.25rem;
    margin-top: 0.5625rem;
  }
  .p-match-card__opponent-area::before {
    width: 1rem;
  }
  .p-match-card__buttons {
    gap: 0.625rem;
  }
  .p-match-card__button .c-button {
    max-width: 100%;
  }
}
.p-navs.--col-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
  gap: 0.75rem 0.625rem;
}
@media only screen and (max-width: 47.9375rem) {
  .p-navs.--col-5 {
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
  }
}
.p-navs__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 10.5rem;
  padding: 1.25rem 0.3125rem;
  background: #fff;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.3);
}
.p-navs__link::after {
  position: absolute;
  inset: 0.1875rem;
  pointer-events: none;
  content: "";
  border: 0.0625rem solid #004ea2;
  border-radius: 0.3125rem;
}
.p-navs__link::before {
  position: absolute;
  right: 0;
  bottom: 1.125rem;
  left: 0;
  width: 1.125rem;
  height: 0.75rem;
  margin: 0 auto;
  content: "";
  background: url("../images/common/icon_arrow_down_blue.svg") no-repeat center/contain;
}
.p-navs__link-icon {
  width: 4rem;
}
.p-navs__link-text {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  margin-top: -0.9em;
  color: #333;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

@media only screen and (max-width: 47.9375rem) {
  .p-navs__link {
    min-height: unset;
    aspect-ratio: 1/1;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .p-navs__link::after {
    inset: 0.125rem;
  }
  .p-navs__link::before {
    bottom: 0.625rem;
  }
  .p-navs__link-icon {
    width: 2rem;
  }
  .p-navs__link-text {
    font-size: 0.75rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.p-ranks {
  border: 0.0625rem solid #fff;
  border-radius: 0.3125rem;
  padding: 1.5rem 2.5rem;
}
.p-ranks__title {
  display: inline-flex;
  min-width: 15rem;
  padding: 0.1875rem 1.875rem;
  justify-content: center;
  align-items: center;
  border-radius: 999rem;
  border: 0.125rem solid #ce0f69;
  background: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
  color: #ce0f69;
}
.p-ranks__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 1.875rem;
  margin-top: 0.75rem;
}
.p-ranks__list-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.p-ranks__list-item-icon {
  width: 2.75rem;
  flex-shrink: 0;
}
.p-ranks__list-item-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

@media only screen and (max-width: 47.9375rem) {
  .p-ranks {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .p-ranks__title {
    font-size: 1rem;
    min-width: 11.25rem;
  }
  .p-ranks__list-item-text {
    font-size: 1rem;
  }
  .p-ranks__list-item-icon {
    width: 2.5rem;
  }
}
.p-seat {
  max-width: 55rem;
  margin-right: auto;
  margin-left: auto;
}
.p-seat__point {
  position: relative;
  padding: 0.0625rem 0 0 0.0625rem;
}
.p-seat__point::before {
  position: absolute;
  width: 5rem;
  height: 5rem;
  content: "";
  background: url("../images/hgnavi/icon_point.svg") no-repeat center/contain;
}
.p-seat__point-inner {
  padding: 1.25rem 3.125rem;
  margin: 2.5rem 0 0 2.5rem;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.3);
}
.p-seat__point-button {
  margin-top: 0.625rem;
  text-align: center;
}
.p-seat__images {
  display: grid;
  grid-template-columns: 45.4545% minmax(0, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.p-seat__images img {
  display: block;
  margin: 0 auto;
}
.p-seat__images img + img {
  margin-top: 0.9375rem;
}
.p-seat__images .c-text-note {
  min-height: 3rem;
  margin-top: 0.9375rem;
}
.p-seat__title-01 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.p-seat__title-01-text {
  margin-right: 0.5rem;
  border-bottom: 0.0625rem solid;
}
.p-seat__title-01-text.--red {
  border-bottom-color: #e50011;
}
.p-seat__title-01-text.--green {
  border-bottom-color: #abcd05;
}
.p-seat__title-01-text.--green18 {
  border-bottom-color: #399a2d;
}
.p-seat__title-01-text.--green19 {
  border-bottom-color: #7fb872;
}
.p-seat__title-01-text.--green20 {
  border-bottom-color: #929c25;
}
.p-seat__title-01-text.--pink01 {
  border-bottom-color: #cd007f;
}
.p-seat__title-01-text.--pink02 {
  border-bottom-color: #e13ea1;
}
.p-seat__title-01-text.--pink03 {
  border-bottom-color: #ee74bb;
}
.p-seat__title-01-text.--pink04 {
  border-bottom-color: #f59ace;
}
.p-seat__title-01-text.--blue10 {
  border-bottom-color: #0094ac;
}
.p-seat__title-01-text.--blue11 {
  border-bottom-color: #41b0c1;
}
.p-seat__title-01-text.--blue12 {
  border-bottom-color: #71bfce;
}
.p-seat__title-01-text.--blue13 {
  border-bottom-color: #a4d5de;
}
.p-seat__title-01-text.--blue24, .p-seat__title-01-text.--blue25, .p-seat__title-01-text.--blue26, .p-seat__title-01-text.--blue27 {
  border-bottom-color: #0098d9;
}
.p-seat__title-01-text.--purple14 {
  border-bottom-color: #615ea8;
}
.p-seat__title-01-text.--purple15 {
  border-bottom-color: #9290c3;
}
.p-seat__title-01-text.--purple16 {
  border-bottom-color: #c2c0dd;
}
.p-seat__title-01-text.--purple21 {
  border-bottom-color: #b963a4;
}
.p-seat__title-01-text.--yellow17 {
  border-bottom-color: #ded355;
}
.p-seat__title-01-text.--yellow22, .p-seat__title-01-text.--yellow23 {
  border-bottom-color: #f8b500;
}
.p-seat__title-01-text.--orange28 {
  border-bottom-color: #ec6c20;
}
.p-seat__title-01-text.--brown29, .p-seat__title-01-text.--brown30, .p-seat__title-01-text.--brown31 {
  border-bottom-color: #a16a3a;
}
.p-seat__title-01-sub {
  font-size: 0.875rem;
  color: #727272;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
}
.p-seat__tickets {
  margin-top: 0.875rem;
}
.p-seat__list {
  margin-top: 2.5rem;
}
.p-seat__list-item + .p-seat__list-item {
  margin-top: 2.25rem;
}
.p-seat__benefit {
  margin-top: 2.5rem;
  border: 0.1875rem solid #ce0f69;
  border-radius: 0.3125rem 0.3125rem 0 0;
}
.p-seat__benefit-head {
  padding: 0.625rem 0.5rem 0.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: 0.03em;
  background: #ce0f69;
  transform: rotate(0.03deg);
}
.p-seat__benefit-body {
  padding: 2rem 5rem 1.8125rem;
}
.p-seat__benefit-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.p-seat__benefit-item + .p-seat__benefit-item {
  margin-top: 1rem;
}
.p-seat__benefit-icon {
  flex-shrink: 0;
}
.p-seat__benefit-text-em {
  font-weight: 800;
  color: #ce0f69;
}
.p-seat__kid {
  padding: 1.5rem 5rem 1.875rem;
  margin-top: 2.5rem;
}

@media all and (min-width: 80.0625rem), print {
  .p-seat__list.--mt-70-pc {
    margin-top: 4.375rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .p-seat {
    padding: 0 1rem 1rem;
  }
  .p-seat__point::before {
    width: 2.5rem;
    height: 2.5rem;
  }
  .p-seat__point-inner {
    padding: 1.25rem;
    margin: 1.25rem 0 0 1.25rem;
  }
  .p-seat__benefit-body {
    padding: 1rem;
  }
  .p-seat__kid {
    padding: 1.5rem 1.25rem 1.875rem;
  }
  .p-seat__kid-content {
    flex-direction: column;
    gap: 0.625rem;
    align-items: center;
    justify-content: center;
  }
  .p-seat__kid-head {
    gap: 0.125rem;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .p-seat__kid-sub-label {
    padding-top: 0.3125rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    font-size: 0.875rem;
  }
  .p-seat__kid-sub-text {
    font-size: 0.875rem;
  }
  .p-seat__kid-title {
    font-size: 2.5rem;
  }
  .p-seat__images {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.875rem;
  }
  .p-seat__images .c-text-note {
    min-height: unset;
  }
  .p-seat__images-col:first-child {
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
  }
  .p-seat__kid-circle {
    width: 8.75rem;
    height: 8.75rem;
    border-width: 0.125rem;
  }
  .p-seat__kid-circle-text {
    font-size: 1.125rem;
  }
  .p-seat__kid-box {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .p-seat__kid-box-label {
    min-width: 6.875rem;
  }
}
.p-section-title-h3 {
  margin-bottom: 2.5rem;
}

.p-slide-time {
  --slider-width: 39.125rem;
  overflow: hidden;
}
.p-slide-time__swiper {
  overflow: unset;
}
.p-slide-time__button {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 39.125rem;
  aspect-ratio: 436/264;
  margin: 0 auto;
  margin-top: -1.0625rem;
}
.p-slide-time__button .c-swiper-nav.--prev {
  right: 100%;
  left: auto;
  margin-right: 1.5625rem;
}
.p-slide-time__button .c-swiper-nav.--next {
  left: 100%;
  margin-left: 1.5625rem;
}
.p-slide-time__button .c-swiper-nav.swiper-button-disabled {
  opacity: 0.7;
}
.p-slide-time__swiper {
  opacity: 0;
}
.p-slide-time__swiper.swiper-initialized {
  opacity: 1;
}
.p-slide-time__item {
  width: var(--slider-width);
}
.p-slide-time__item.swiper-slide-active .p-slide-time__card {
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}
.p-slide-time__item.swiper-slide-active .p-slide-time__card-label {
  gap: 1rem;
  padding-bottom: 0.625rem;
  margin-bottom: -2.625rem;
  background: #ce0f69;
}
.p-slide-time__item.swiper-slide-active .p-slide-time__card-label::after {
  margin-bottom: -1.25rem;
  border-top-color: #ce0f69;
}
.p-slide-time__item.swiper-slide-active .p-slide-time__card-label .c-time-icon {
  --icon-size: 4rem;
}
.p-slide-time__item.swiper-slide-active .p-slide-time__card-label .c-time-icon::before {
  --icon-size: 2.375rem;
  background: #ce0f69;
}
.p-slide-time__item.swiper-slide-active .p-slide-time__card-time {
  font-size: 2.5rem;
}
.p-slide-time__item.swiper-slide-active .p-slide-time__card-label-text {
  font-size: 1.25rem;
}
.p-slide-time__card {
  width: 80%;
  max-width: 27.25rem;
  margin-top: 3.9375rem;
  margin-right: auto;
  margin-left: auto;
  transition: margin-top 0.3s;
}
.p-slide-time__card-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
  margin-bottom: -2.0625rem;
  color: #fff;
  background: #333;
  border-radius: 999rem;
  transition: all 0.3s;
}
.p-slide-time__card-label::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  margin-bottom: -0.9375rem;
  content: "";
  border-top: 2.25rem solid #333;
  border-right: 1.125rem solid transparent;
  border-left: 1.125rem solid transparent;
  transform: translateX(-50%);
}
.p-slide-time__card-label .c-time-icon {
  --icon-size: 2.75rem;
  background: #fff;
  border-radius: 50%;
}
.p-slide-time__card-label .c-time-icon::before {
  --icon-size: 1.5625rem;
}
.p-slide-time__card-time {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
}
.p-slide-time__card-label-text {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
}
.p-slide-time__card-content {
  margin: 1.875rem 0.625rem;
  color: #fff;
}
.p-slide-time__card-img img {
  width: 100%;
  overflow: hidden;
  border-radius: 0.375rem;
}
.p-slide-time__card-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}
.p-slide-time__card-text {
  margin-top: 0.625rem;
}

@media only screen and (max-width: 47.9375rem) {
  .p-slide-time {
    --slider-width: unset;
    padding-right: 1.0625rem;
    padding-left: 1.0625rem;
  }
  .p-slide-time__item.swiper-slide-active .p-slide-time__card-label {
    gap: 0.5rem;
    margin-bottom: -1.875rem;
  }
  .p-slide-time__item.swiper-slide-active .p-slide-time__card-label::after {
    margin-bottom: -0.625rem;
  }
  .p-slide-time__item.swiper-slide-active .p-slide-time__card-label .c-time-icon {
    --icon-size: 2.25rem;
  }
  .p-slide-time__item.swiper-slide-active .p-slide-time__card-label .c-time-icon::before {
    --icon-size: 1.25rem;
  }
  .p-slide-time__item.swiper-slide-active .p-slide-time__card-time {
    font-size: 1.375rem;
  }
  .p-slide-time__item.swiper-slide-active .p-slide-time__card-label-text {
    font-size: 0.875rem;
  }
  .p-slide-time__card {
    width: 100%;
    max-width: 100%;
  }
  .p-slide-time__card-label {
    gap: 0.5rem;
    margin-bottom: -1.25rem;
  }
  .p-slide-time__card-label::after {
    margin-bottom: -0.5rem;
  }
  .p-slide-time__card-label .c-time-icon {
    --icon-size: 1.875rem;
  }
  .p-slide-time__card-label .c-time-icon::before {
    --icon-size: 1rem;
  }
  .p-slide-time__card-time {
    font-size: 1.125rem;
  }
  .p-slide-time__card-label-text {
    font-size: 0.75rem;
  }
  .p-slide-time__button {
    width: 100%;
    margin-top: 0;
  }
  .p-slide-time__button .c-swiper-nav.--prev {
    margin-right: -1.875rem;
  }
  .p-slide-time__button .c-swiper-nav.--next {
    margin-left: -1.875rem;
  }
}
.p-ticket-steps.--col-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.p-ticket-steps.--col-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.p-ticket-step {
  position: relative;
  min-height: 26rem;
  padding: 1.5rem 1.25rem 1.375rem;
  color: #333;
  background: #fff;
  border-radius: 0.3125rem;
  --main-font-color: #333;
  --icon-color: #ce0f69;
}
.p-ticket-step.--pd-wide {
  padding-right: 1.875rem;
  padding-left: 1.875rem;
}
.p-ticket-step .c-list-dot__item:not(:first-child) {
  margin-top: 0.875rem;
}
.p-ticket-step .c-list-dot + .c-text-note {
  margin-top: 0.25rem;
}
.p-ticket-step .c-list-dot-01 {
  margin-top: 0.25rem;
}
.p-ticket-step .c-list-dot-01__item {
  padding-left: 0.9375rem;
}
.p-ticket-step .c-list-dot-01__item::before {
  left: 0;
}
.p-ticket-step .c-list-dot-01__item:not(:first-child) {
  margin-top: 0.25rem;
}
.p-ticket-step__no {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 3rem;
  padding: 0rem 2.25rem 0 0.5rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 1.875rem) 100%, 0 100%);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  background: #ce0f69;
  border-radius: 0.3125rem 0 0;
}
.p-ticket-step__icon {
  width: 9rem;
  margin-right: auto;
  margin-left: auto;
}
.p-ticket-step__title {
  margin-top: 1.5rem;
  font-size: 1.375rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
}
.p-ticket-step__text {
  margin-top: 0.5rem;
}
.p-ticket-step__text-note.--pink {
  color: #ce0f69;
}
.p-ticket-step__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 0.625rem;
  color: #ce0f69;
  background: #fff;
  border: 0.125rem solid #ce0f69;
  border-radius: 999rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
}

@media only screen and (max-width: 47.9375rem) {
  .p-ticket-steps.--col-3 {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
  .p-ticket-steps.--col-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .p-ticket-step {
    min-height: unset;
  }
  .p-ticket-step.--pd-wide {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .p-ticket-step__no {
    width: 5rem;
    height: 2.5rem;
    font-size: 1.875rem;
  }
  .p-ticket-step__icon {
    width: 4.5rem;
  }
  .p-ticket-step__title {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    transform: rotate(0.03deg);
  }
}
body.hgnavi .p-box__text {
  letter-spacing: 0.05em;
}
body.hgnavi .hgnavi-nav {
  margin-top: 5rem;
}
body.hgnavi .hgnavi-nav .p-navs {
  margin-top: 1.25rem;
}
body.hgnavi .hgnavi-seat .p-buttons {
  gap: 1.25rem 1.25rem;
}
body.hgnavi .hgnavi-seat .p-accordion {
  margin-top: 1.25rem;
}
body.hgnavi .hgnavi-seat .p-accordion__content {
  color: #333;
}
body.hgnavi .hgnavi-seat__img01 {
  overflow: hidden;
  border-radius: 0.3125rem;
}
body.hgnavi .hgnavi-seat__img01 img {
  width: 100%;
}
body.hgnavi .hgnavi-seat__img02 {
  margin-top: 5rem;
}
body.hgnavi .hgnavi-seat__img03 {
  margin-top: 4.625rem;
}
body.hgnavi .hgnavi-seat__arena {
  margin-top: 11.875rem;
}
body.hgnavi .hgnavi-seat__arena .c-heading-h4:not(:first-child) {
  margin-top: 5rem;
}
body.hgnavi .hgnavi-ticket .p-table__td .c-text-note {
  margin-top: 0.25rem;
}
body.hgnavi .hgnavi-ticket .c-list-dot-01:not(:first-child) {
  margin-top: 0.25rem;
}
body.hgnavi .hgnavi-ticket .c-list-dot-01__item:not(:first-child) {
  margin-top: 0.25rem;
}
body.hgnavi .hgnavi-ticket__logo {
  text-align: center;
}
body.hgnavi .hgnavi-ticket__logo-text {
  margin-top: 1.25rem;
}
body.hgnavi .hgnavi-ticket__title {
  display: table;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.5625rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
body.hgnavi .hgnavi-ticket__title::before, body.hgnavi .hgnavi-ticket__title::after {
  width: 0.875rem;
  height: 2rem;
  content: "";
  border-right: 0.125rem solid #fff;
  border-left: 0.125rem solid #fff;
}
body.hgnavi .hgnavi-ticket__title::before {
  left: 0;
  transform: skewX(22deg);
}
body.hgnavi .hgnavi-ticket__title::after {
  right: 0;
  transform: skewX(-22deg);
}
body.hgnavi .hgnavi-ticket__title-em {
  font-size: 2.1875rem;
}
body.hgnavi .hgnavi-ticket__banner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 0.875rem;
}
body.hgnavi .hgnavi-ticket__note {
  max-width: 55rem;
  margin-right: auto;
  margin-left: auto;
}
body.hgnavi .hgnavi-time__step {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body.hgnavi .hgnavi-time__step-item:not(:last-child) {
  padding-right: 1.75rem;
}
body.hgnavi .hgnavi-time__step-item:not(:last-child) .hgnavi-time__step-img-box {
  position: relative;
}
body.hgnavi .hgnavi-time__step-item:not(:last-child) .hgnavi-time__step-img-box::after {
  position: absolute;
  top: 50%;
  right: -1.125rem;
  width: 0.75rem;
  height: 1.125rem;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='18' viewBox='0 0 11 18' fill='none'%3E%3Cpath d='M1 1L9 9L1 17' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}
body.hgnavi .hgnavi-time__step-item-inner {
  width: 7rem;
  text-align: center;
}
body.hgnavi .hgnavi-time__step-img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
}
body.hgnavi .hgnavi-time__step-img-box .c-time-icon {
  --icon-size: 4rem;
}
body.hgnavi .hgnavi-time__step-text {
  margin-top: 0.5rem;
  font-weight: 800;
  color: #fff;
}
@media all and (min-width: 80.0625rem), print {
  body.hgnavi .hgnavi-fanclub .p-table__td {
    padding-right: 5rem;
  }
}
body.hgnavi .hgnavi-fanclub__text-cat {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 17rem;
  padding: 0.25rem 2.5rem 0.25rem 1.5625rem;
  clip-path: polygon(0 0, calc(100% - 1.625rem) 0%, 100% 100%, 0 100%);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  letter-spacing: 0.05em;
  background: #ce0f69;
}
body.hgnavi .hgnavi-fanclub__text-cat.--pr-large {
  padding-right: 4.5rem;
}
body.hgnavi .hgnavi-fanclub__ver {
  display: flex;
  align-items: center;
  max-width: 55rem;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
}
body.hgnavi .hgnavi-fanclub__ver-col {
  width: 50%;
}
body.hgnavi .hgnavi-fanclub__ver-col:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-self: stretch;
  justify-content: space-between;
}
body.hgnavi .hgnavi-fanclub__ver-col:nth-child(2) {
  min-width: 25rem;
  padding-left: 1.375rem;
}
body.hgnavi .hgnavi-fanclub__ver-box {
  padding: 1.25rem 0.5rem 1.0625rem;
  background-color: #fff;
  border-radius: 0.3125rem;
}
body.hgnavi .hgnavi-fanclub__ver-title {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 15rem;
  min-height: 2.3125rem;
  padding: 0.125rem 1.875rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: #ce0f69;
  border: 0.125rem solid #ce0f69;
  border-radius: 6.25rem;
}
body.hgnavi .hgnavi-fanclub__ver-images {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.3125rem;
}
body.hgnavi .hgnavi-fanclub__ver-images img {
  max-width: 33.3333333333%;
}
body.hgnavi .hgnavi-fanclub__ver-state img {
  width: 100%;
}
body.hgnavi .hgnavi-cheerup {
  margin-top: 20rem;
}
body.hgnavi .hgnavi-cheerup__card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 2.5rem 2rem;
}
body.hgnavi .hgnavi-cheerup__card-video {
  position: relative;
  aspect-ratio: 560/315;
}
body.hgnavi .hgnavi-cheerup__card-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.hgnavi .hgnavi-cheerup__card-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 15rem;
  max-width: 100%;
  min-height: 2.3125rem;
  padding: 0.125rem 0.5rem;
  margin-top: 1rem;
  color: #ce0f69;
  text-align: center;
  background: #fff;
  border: 0.125rem solid #ce0f69;
  border-radius: 6.25rem;
  border-radius: 999rem;
}
body.hgnavi .hgnavi-cheerup__card-title::after {
  width: 1.125rem;
  height: 1.125rem;
  margin: -0.1875rem 0.25rem 0;
  content: "";
  background: url("../images/hgnavi/icon_speaker.png") no-repeat center/contain;
}
body.hgnavi .hgnavi-cheerup__card-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  transform: rotate(0.03deg);
  margin-top: 0.625rem;
  color: #fff;
  letter-spacing: 0.05em;
}
body.hgnavi .hgnavi-arena .p-list-dl-01 {
  letter-spacing: 0.05em;
  --dt-width: 11.25rem;
}
body.hgnavi .hgnavi-arena .p-box {
  margin-top: 2.5rem;
}
body.hgnavi .hgnavi-manners__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.25rem 3.6875rem;
}
body.hgnavi .hgnavi-manners__item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  min-height: 10rem;
}
body.hgnavi .hgnavi-manners__item-img {
  flex-shrink: 0;
  width: 9rem;
}
body.hgnavi .hgnavi-manners__item-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}
body.hgnavi .hgnavi-manners__item-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
  margin-top: 0.625rem;
}
body.hgnavi .hgnavi-sagaarena .p-list-dl-02__dt {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
body.hgnavi .hgnavi-sagaarena .p-arena__desc {
  letter-spacing: 0.05em;
}
body.hgnavi .hgnavi-sagaarena .p-arena__list {
  letter-spacing: 0.05em;
}
body.hgnavi .hgnavi-sagaarena .p-arena__text {
  letter-spacing: 0.05em;
}
body.hgnavi .hgnavi-sagaarena__box {
  padding: 1.875rem 1rem;
  margin-top: 1.875rem;
  background-color: #fff;
}
body.hgnavi .hgnavi-sagaarena__box-inner {
  max-width: 55rem;
  margin: 0 auto;
}
body.hgnavi .hgnavi-sagaarena__box-cate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.625rem;
  padding: 0.125rem 1.25rem;
  background-color: #ce0f69;
  border-radius: 999rem;
  transform: rotate(0.03deg);
}
body.hgnavi .hgnavi-sagaarena__box-title {
  margin-top: 1rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #ce0f69;
  letter-spacing: 0.05625rem;
  transform: rotate(0.03deg);
}
body.hgnavi .hgnavi-sagaarena__box-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--text, #333);
  letter-spacing: 0.05625rem;
  transform: rotate(0.03deg);
}
body.hgnavi .hgnavi-sagaarena__flex {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
}
body.hgnavi .hgnavi-sagaarena__flex .p-list-dl-02__item {
  max-width: 37.5rem;
}
body.hgnavi .hgnavi-sagaarena .p-slide {
  margin-top: 2.5rem;
}
body.hgnavi .hgnavi-sagaarena .p-slide__swiper-slide img {
  border-radius: 0.5rem;
}
body.hgnavi .hgnavi-sagaarena .p-slide .swiper-pagination-bullets {
  bottom: 1rem;
}
body.hgnavi .hgnavi-sagaarena .p-slide .swiper-pagination-bullet {
  position: relative;
  width: 1rem;
  height: 1rem;
  margin: 0 0.625rem;
  background-color: #dcdcdc;
  opacity: 1;
}
body.hgnavi .hgnavi-sagaarena .p-slide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ce0f69;
}
body.hgnavi .hgnavi-sagaarena .p-slide .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.375rem;
  height: 1.375rem;
  content: "";
  border: #ce0f69 solid 0.0625rem;
  border-radius: 999rem;
  transform: translate(-50%, -50%);
}
body.hgnavi .hgnavi-partner {
  padding: 5rem 0;
  background-color: #004ea2;
}
body.hgnavi .hgnavi-partner__box {
  padding: 2.5rem 1rem;
  background-color: #fff;
  border-radius: 0.3125rem;
}
@media only screen and (max-width: 47.9375rem) {
  body.hgnavi .hgnavi-partner__box {
    padding: 1.5rem 1rem 2rem;
  }
}
body.hgnavi .hgnavi-partner__box-inner {
  max-width: 55rem;
  margin: 0 auto;
}
body.hgnavi .hgnavi-partner__title {
  padding-bottom: 0.625rem;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--main, #004ea2);
  text-align: center;
  letter-spacing: 0.05625rem;
  border-bottom: 1px solid #004ea2;
}
body.hgnavi .hgnavi-partner__box-flex {
  display: flex;
  gap: 0.625rem;
  justify-content: space-between;
}
body.hgnavi .hgnavi-partner__box-flex.--gap32 {
  gap: 2rem;
}
body.hgnavi .hgnavi-partner__box-flex + .hgnavi-partner__box-flex {
  margin-top: 1.875rem;
}
@media only screen and (max-width: 47.9375rem) {
  body.hgnavi .hgnavi-partner__box-flex {
    flex-direction: column;
    margin-top: 0;
  }
}
body.hgnavi .hgnavi-partner__box-item {
  width: 100%;
}
body.hgnavi .hgnavi-partner__box-item.--wide {
  margin-top: 1.25rem;
}
@media only screen and (max-width: 47.9375rem) {
  body.hgnavi .hgnavi-partner__box-item {
    margin-top: 1rem;
  }
}
body.hgnavi .hgnavi-partner__box-item.--type1 {
  max-width: 17.5rem;
}
@media only screen and (max-width: 47.9375rem) {
  body.hgnavi .hgnavi-partner__box-item.--type1 {
    max-width: 100%;
  }
}
body.hgnavi .hgnavi-partner__logo-flex {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
}
body.hgnavi .hgnavi-partner__logo-flex.--maxw-23dot875 {
  max-width: 23.875rem;
  margin: 0 auto;
}
@media all and (min-width: 48rem), print {
  body.hgnavi .hgnavi-partner__logo-flex.--pc-4col {
    flex-flow: row wrap;
  }
  body.hgnavi .hgnavi-partner__logo-flex.--pc-4col .hgnavi-partner__logo {
    width: calc(25% - 0.625rem);
  }
}
@media only screen and (max-width: 47.9375rem) {
  body.hgnavi .hgnavi-partner__logo-flex {
    flex-direction: column;
    gap: 0.5rem;
  }
  body.hgnavi .hgnavi-partner__logo-flex.--sp-2col {
    flex-flow: row wrap;
  }
  body.hgnavi .hgnavi-partner__logo-flex.--sp-2col .hgnavi-partner__logo {
    width: calc(50% - 0.5rem);
  }
}
body.hgnavi .hgnavi-partner__logo {
  margin-top: 0.65rem;
  text-align: center;
}
@media only screen and (max-width: 47.9375rem) {
  body.hgnavi .hgnavi-partner__logo {
    text-align: center;
  }
}

@media all and (min-width: 48rem), print {
  body.hgnavi .hgnavi-arena .p-column {
    justify-content: space-between;
  }
  body.hgnavi .hgnavi-arena .p-column__col:nth-child(1) {
    max-width: 36.25rem;
  }
  body.hgnavi .hgnavi-arena .p-box {
    padding-top: 2.5rem;
  }
  body.hgnavi .hgnavi-arena .p-box__text {
    margin-right: -0.125rem;
  }
  body.hgnavi .hgnavi-seat .p-accordion__content-inner {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  body.hgnavi .hgnavi-seat .p-accordion__item::before {
    background-color: #fff;
  }
  body.hgnavi .hgnavi-seat__img01 {
    aspect-ratio: 340/240;
  }
  body.hgnavi .hgnavi-seat__img01 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  body.hgnavi .hgnavi-seat__img02 {
    margin-top: 2.5rem;
  }
  body.hgnavi .hgnavi-seat__img03 {
    margin-top: 2.5rem;
  }
  body.hgnavi .hgnavi-manners__list {
    grid-template-columns: 1fr;
  }
  body.hgnavi .hgnavi-manners__item {
    flex-direction: column;
  }
  body.hgnavi .hgnavi-sagaarena__flex {
    flex-direction: column;
  }
  body.hgnavi .hgnavi-partner__logo-flex.--sp-col2 {
    flex-flow: row wrap;
  }
  body.hgnavi .hgnavi-partner__logo-flex.--sp-col2 .hgnavi-partner__logo {
    width: calc(50% - 0.5rem);
  }
  body.hgnavi .hgnavi-ticket__banner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
  body.hgnavi .hgnavi-ticket__title {
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    text-align: center;
    transform: rotate(0.03deg);
  }
  body.hgnavi .hgnavi-ticket__title::before, body.hgnavi .hgnavi-ticket__title::after {
    width: 0.625rem;
    height: 1.75rem;
  }
  body.hgnavi .hgnavi-ticket__title-em {
    font-size: 1.5rem;
  }
  body.hgnavi .hgnavi-time__step {
    gap: 0.5rem 0;
    justify-content: flex-start;
  }
  body.hgnavi .hgnavi-time__step-item:not(:last-child) {
    padding-right: 1.5625rem;
  }
  body.hgnavi .hgnavi-time__step-item:not(:last-child):not(:last-child) .hgnavi-time__step-img-box::after {
    right: -1rem;
    width: 0.5rem;
  }
  body.hgnavi .hgnavi-time__step-item-inner {
    width: 5.5rem;
  }
  body.hgnavi .hgnavi-time__step-img-box .c-time-icon {
    --icon-size: 3rem;
  }
  body.hgnavi .hgnavi-time__step-text {
    margin-top: 0.25rem;
    font-size: 0.875rem;
  }
  body.hgnavi .hgnavi-fanclub__ver {
    flex-direction: column;
    gap: 2.5rem 0;
  }
  body.hgnavi .hgnavi-fanclub__ver-col {
    width: 100%;
  }
  body.hgnavi .hgnavi-fanclub__ver-col:nth-child(1) {
    gap: 1.5rem;
  }
  body.hgnavi .hgnavi-fanclub__ver-col:nth-child(2) {
    min-width: unset;
    padding-left: 0;
  }
  body.hgnavi .hgnavi-fanclub__ver-title {
    font-size: 1rem;
    letter-spacing: 0.01em;
    transform: rotate(0.03deg);
  }
  body.hgnavi .hgnavi-fanclub__ver-images {
    margin-top: 0.5rem;
  }
  body.hgnavi .hgnavi-fanclub__text-cat {
    min-width: 12.5rem;
    font-size: 1.125rem;
    transform: rotate(0.03deg);
  }
  body.hgnavi .hgnavi-cheerup {
    margin-top: 9.375rem;
  }
  body.hgnavi .hgnavi-cheerup__card-title {
    width: 13.75rem;
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
  body.hgnavi .hgnavi-cheerup__card-title::after {
    margin-top: 0;
  }
  body.hgnavi .hgnavi-cheerup__card-text {
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
}