/*
Google Fonts:
- Noto Serif JP
font-family: 'Noto Serif JP', serif;

ADOBE FONTs:
- Noto Sans CJK JP
font-family: noto-sans-cjk-jp, sans-serif;

Others:
- DIN NEXT LT PRO
font-family: "DINNextLTPro-MediumCond";
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}


@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
body.page-thankyou {
  font-family: "Noto Serif JP", serif;
  background-color: #001740;
  background-image: url("../../img/2023-thankyou/bg-overlay.png");
  background-size: cover;
  color: #fff;
  padding-top: 60px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 240%; /* 38.4px */
  letter-spacing: 0.8px;
}
body.page-thankyou #screenLoading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #001740;
  background-image: url("../../img/2023-thankyou/bg-overlay.png");
  background-size: cover;
  z-index: 1000;
  transition: none;
}
body.page-thankyou #screenLoading .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}
body.page-thankyou #screenLoading .loader::before, body.page-thankyou #screenLoading .loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: prixClipFix 2s linear infinite;
}
body.page-thankyou #screenLoading .loader::after {
  border-color: #FF3D00;
  animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
  inset: 6px;
}
body.page-thankyou img {
  max-width: 100%;
}
body.page-thankyou table {
  width: 100%;
  border: 1px solid #8C8C8C;
  border-collapse: collapse;
}
body.page-thankyou table tr {
  border: 1px solid #8C8C8C;
  border-collapse: collapse;
}
body.page-thankyou table tr td {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.7px;
  font-family: noto-sans-cjk-jp, sans-serif;
  padding: 8px 20px;
  border: 1px solid #8C8C8C;
  border-collapse: collapse;
}
body.page-thankyou .btn-detail {
  color: #fff;
  text-align: center;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.9px;
  display: inline-block;
  background-color: #00A0E9;
  padding: 12px 36px;
  text-decoration: none;
  margin-top: 80px;
  min-width: 262px;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
}
body.page-thankyou .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  body.page-thankyou .container {
    max-width: 1100px;
  }
}
body.page-thankyou .box-content {
  width: 100%;
  max-width: 880px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 0 auto;
  overflow: hidden;
}
body.page-thankyou .box-content img {
  max-width: 100%;
  height: auto;
}
body.page-thankyou .box-content iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
body.page-thankyou .page-header {
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
body.page-thankyou .page-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  opacity: 0.5;
  background: #000;
  mix-blend-mode: multiply;
  z-index: -1;
}
body.page-thankyou .page-header .page-title {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 14px */
  letter-spacing: 2.1px;
}
body.page-thankyou .page-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding-left: 40px;
  padding-right: 40px;
}
body.page-thankyou.admin-bar .page-header {
  top: 32px;
}
@media screen and (max-width: 480px) {
  body.page-thankyou.admin-bar .page-header {
    top: 0;
    position: sticky;
  }
}
body.page-thankyou.admin-bar .sidebar-menu {
  top: 32px;
  height: calc(100vh - 32px);
}
body.page-thankyou #main-visual {
  width: 100%;
  height: 100vh;
  position: relative;
  margin-top: -60px;
}
body.page-thankyou #main-visual .background-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 480px) {
  body.page-thankyou #main-visual {
    margin-top: 0;
    height: calc(100vh - 48px);
  }
  body.page-thankyou #main-visual .background-video {
    height: calc(100vh - 48px);
    display: none;
  }
  body.page-thankyou #main-visual .background-video--sp {
    display: block !important;
  }
}
body.page-thankyou .page-content #thanks-msg {
  margin-top: -150px;
}
@media screen and (max-width: 480px) {
  body.page-thankyou .page-content #thanks-msg {
    margin-top: -100px;
  }
}
body.page-thankyou .page-content .animation-title {
  color: #FFF;
  font-family: "DINNextLTPro-MediumCond", serif;
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 120px */
  letter-spacing: 3.6px;
  position: relative;
  margin-top: -150px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  body.page-thankyou .page-content .animation-title {
    margin-top: 0;
    font-size: 36px;
  }
}
body.page-thankyou .page-content .animation-title span {
  display: inline-block;
  position: relative;
}
body.page-thankyou .page-content .animation-title span:first-child {
  left: 100%;
  transform: translateX(-100%);
  margin-bottom: 10px;
}
body.page-thankyou .page-content .thanks-box {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 240%; /* 38.4px */
  letter-spacing: 2.4px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  body.page-thankyou .page-content .thanks-box {
    margin-top: 40px;
  }
}
body.page-thankyou .page-content .page-section {
  padding: 80px 0;
}
body.page-thankyou .page-content .page-section__title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 80px;
  margin-top: 0;
}
body.page-thankyou .page-content .page-section__title img {
  position: relative;
  top: 3px;
}
body.page-thankyou .page-content .page-section__title .block-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 50px;
  gap: 24px;
  position: relative;
}
body.page-thankyou .page-content .page-section__title .block-heading__ja {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  letter-spacing: 3.6px;
}
body.page-thankyou .page-content .page-section__title .block-heading__en {
  font-family: "DINNextLTPro-MediumCond", serif;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
  text-transform: uppercase;
  font-size: 14px;
}
body.page-thankyou .page-content .page-section__title .block-heading:before, body.page-thankyou .page-content .page-section__title .block-heading:after {
  content: "";
  position: absolute;
  width: 522px;
  height: 21px;
  top: 3px;
}
body.page-thankyou .page-content .page-section__title .block-heading:before {
  background-image: url(../../img/2023-thankyou/heading-line-left.png);
  right: 100%;
}
body.page-thankyou .page-content .page-section__title .block-heading:after {
  background-image: url(../../img/2023-thankyou/heading-line-right.png);
  left: 100%;
}
body.page-thankyou .page-content .page-section .scheduler-box {
  text-align: center;
}
body.page-thankyou .page-content .page-section .scheduler-box__date {
  font-size: 160px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 160px */
  text-transform: uppercase;
  font-family: "DINNextLTPro-MediumCond", serif;
  margin-bottom: 15px;
}
body.page-thankyou .page-content .page-section .scheduler-box__time {
  font-size: 78px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 78px */
  text-transform: uppercase;
  font-family: "DINNextLTPro-MediumCond", serif;
  margin-bottom: 20px;
}
body.page-thankyou .page-content .page-section .scheduler-box__place {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 240%; /* 48px */
  letter-spacing: 3px;
}
body.page-thankyou .page-content .page-section .scheduler-box__opponent {
  font-family: "DINNextLTPro-MediumCond", serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  body.page-thankyou .page-content .page-section .scheduler-box__opponent {
    font-size: 22px;
  }
}
body.page-thankyou .page-content #retirement-match {
  padding-top: 0;
  padding-bottom: 160px;
  background-image: url(../../img/2023-thankyou/bg-retirement-match.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: -250px;
  overflow: hidden;
}
body.page-thankyou .page-content #gallery {
  overflow: hidden;
  padding-top: 0;
  margin-top: -50px;
}
body.page-thankyou .page-content .gallery-images {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
body.page-thankyou .page-content .gallery-images__item img {
  position: relative;
}
body.page-thankyou .page-content .gallery-images__item:nth-child(1) img {
  left: 100%;
  transform: translateX(-50%);
}
body.page-thankyou .page-content .gallery-images__item:nth-child(2) img {
  margin-top: -100px;
}
body.page-thankyou .page-content .gallery-images__item:nth-child(3) img {
  margin-top: -160px;
  left: 100%;
  transform: translateX(calc(-100% + 100px));
}
body.page-thankyou .page-content .gallery-images__item:nth-child(4) img {
  margin-top: -200px;
  left: 252px;
  top: -320px;
}
body.page-thankyou .page-content .gallery-images__item:nth-child(5) img {
  margin-top: -300px;
  top: -200px;
  left: -100px;
}
body.page-thankyou .page-content .gallery-images__item:nth-child(6) img {
  margin-top: -160px;
  left: -135px;
}
body.page-thankyou .page-content .gallery-images__item:nth-child(7) img {
  margin-top: -300px;
  left: 100%;
  transform: translateX(-62%);
  top: -120px;
}
body.page-thankyou .page-content .gallery-images__item:nth-child(8) img {
  margin-top: -10px;
  left: 100%;
  transform: translateX(calc(-100% + 100px));
}
body.page-thankyou .page-content .gallery-images__item:nth-child(9) img {
  margin-top: -450px;
  top: -260px;
  left: 200px;
}
body.page-thankyou .page-content .gallery-images__item:nth-child(10) img {
  margin-top: -370px;
  left: -35px;
}
body.page-thankyou .page-content .gallery-images__item:nth-child(11) img {
  margin-top: -65px;
  left: 35%;
}
body.page-thankyou .page-content .message-box {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 240%; /* 38.4px */
  letter-spacing: 0.8px;
}
body.page-thankyou .page-content .message-box p {
  margin: 0;
}
body.page-thankyou .page-content .message-box__signed {
  text-align: right;
  margin-top: 60px;
}
body.page-thankyou .page-content .info-box {
  max-width: 880px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 0 auto;
  max-height: 442px;
  overflow-y: auto;
}
body.page-thankyou .page-content .info-box__item {
  display: flex;
}
body.page-thankyou .page-content .info-box__item:not(:last-child) {
  margin-bottom: 24px;
}
body.page-thankyou .page-content .info-box__item .published-date {
  width: 135px;
  flex: 0 0 135px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
}
body.page-thankyou .page-content .info-box__item .post-title a {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
  color: #fff;
  text-decoration: none;
}
body.page-thankyou .page-content .television-list {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
body.page-thankyou .page-content .television-list img {
  border: 1px solid #8C8C8C;
}
body.page-thankyou .page-content .television-list__item {
  text-align: center;
}
body.page-thankyou .page-content .television-list__links {
  margin-top: 30px;
}
body.page-thankyou .page-content .television-list__links p, body.page-thankyou .page-content .television-list__links a {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.8px;
  color: #fff;
  margin: 0;
}
@media (max-width: 480px) {
  body.page-thankyou .page-content .television-list__links {
    margin-top: 15px;
  }
  body.page-thankyou .page-content .television-list__links p, body.page-thankyou .page-content .television-list__links a {
    font-size: 12px;
  }
}
body.page-thankyou .page-content .ticket-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
body.page-thankyou .page-content .ticket-box__item {
  text-align: center;
  padding: 24px;
  background-image: url(../../img/2023-thankyou/gradient-border-big.png);
  background-size: 100% 100%;
}
body.page-thankyou .page-content .ticket-box__title {
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 48px */
  letter-spacing: 1.2px;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
}
body.page-thankyou .page-content .ticket-box__detail {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
}
body.page-thankyou .page-content .ticket-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}
body.page-thankyou .page-content .ticket-links__item {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 80px;
  color: #fff;
  text-decoration: none;
  font-family: noto-sans-cjk-jp, sans-serif;
  background-image: url(../../img/2023-thankyou/gradient-border-small.png);
  background-size: 100% 100%;
  justify-content: center;
}
body.page-thankyou .page-content .ticket-links__title {
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
}
body.page-thankyou .page-content .ticket-links__openTime {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
}
body.page-thankyou .page-content .ticket-featured {
  margin-bottom: 40px;
}
body.page-thankyou .page-content .ticket-notes {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
  margin-top: 24px;
}
body.page-thankyou .page-content .ticket-link-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
body.page-thankyou .page-content .ticket-link-group a {
  transform: none;
  left: auto;
  min-width: 360px;
  background-color: #2D9CDB;
  color: #fff;
}
@media screen and (max-width: 768px) {
  body.page-thankyou .page-content .ticket-link-group a:last-child {
    margin-top: 0;
  }
}
body.page-thankyou .page-content .ticket-table table {
  margin-bottom: 80px;
}
body.page-thankyou .page-content .ticket-table table tr td {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.7px;
  text-align: center;
}
body.page-thankyou .page-content .ticket-table table tr td.ticket-label {
  text-align: left;
}
body.page-thankyou .page-content .ticket-table table thead tr td:first-child {
  width: 400px;
}
@media screen and (max-width: 768px) {
  body.page-thankyou .page-content .ticket-table table thead tr td:first-child {
    width: auto;
  }
}
@media (max-width: 480px) {
  body.page-thankyou .page-content .ticket-table table {
    margin-bottom: 40px;
  }
}
body.page-thankyou .page-content .ticket-partner {
  text-align: center;
  margin-top: 120px;
}
body.page-thankyou .page-content .ticket-partner .page-section__subTitle {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
  font-family: noto-sans-cjk-jp, sans-serif;
  margin-top: 0;
  margin-bottom: 40px;
  overflow: hidden;
}
body.page-thankyou .page-content .ticket-partner .page-section__subTitle span {
  display: inline-block;
  padding: 0 40px;
  position: relative;
}
body.page-thankyou .page-content .ticket-partner .page-section__subTitle span:before, body.page-thankyou .page-content .ticket-partner .page-section__subTitle span:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #8C8C8C;
  left: 100%;
  top: 50%;
}
body.page-thankyou .page-content .ticket-partner .page-section__subTitle span:before {
  left: auto;
  right: 100%;
}
body.page-thankyou .page-content .ticket-partner__item h4 {
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
  color: #fff;
}
body.page-thankyou .page-content .game-info__title {
  margin: 0;
  text-align: center;
  font-family: "DINNextLTPro-MediumCond", serif;
  font-size: 112px;
  font-style: normal;
  font-weight: 400;
  line-height: 84%; /* 94.08px */
  text-transform: uppercase;
  padding-top: 5px;
}
body.page-thankyou .page-content .game-info__subTitle {
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 240%; /* 40.8px */
  letter-spacing: 2.55px;
  text-align: center;
  margin-bottom: 72px;
}
body.page-thankyou .page-content .game-info__subTitle span {
  display: inline-block;
  padding: 0 24px;
  position: relative;
}
body.page-thankyou .page-content .game-info__subTitle span:before, body.page-thankyou .page-content .game-info__subTitle span:after {
  position: absolute;
  content: "";
  width: 120px;
  height: 1px;
  right: 100%;
  top: 50%;
  background: linear-gradient(90deg, #001E55 12.5%, rgba(0, 0, 0, 0) 99.91%), #8C8C8C;
}
body.page-thankyou .page-content .game-info__subTitle span:after {
  right: auto;
  left: 100%;
  transform: rotate(180deg);
}
body.page-thankyou .page-content .game-info__scheduler {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
  background-image: url(../../img/2023-thankyou/gradient-border-extra.png);
  background-size: 100% 100%;
}
body.page-thankyou .page-content .game-info__scheduler .game-scheduler {
  display: flex;
}
body.page-thankyou .page-content .game-info__scheduler .game-scheduler__label {
  width: 130px;
  flex: 0 0 130px;
}
body.page-thankyou .page-content .game-info__scheduler .game-scheduler__detail {
  width: calc(100% - 130px);
  flex: 0 0 calc(100% - 130px);
  font-family: noto-sans-cjk-jp, sans-serif;
}
body.page-thankyou .page-content .good-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
body.page-thankyou .page-content .good-list__item {
  width: calc((100% - 120px) / 4);
}
body.page-thankyou .page-content .good-list__item img {
  width: 100%;
}
body.page-thankyou .page-content .access-highlight {
  display: flex;
  gap: 40px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
body.page-thankyou .page-content .access-highlight__img {
  width: 380px;
  flex: 0 0 380px;
}
body.page-thankyou .page-content .access-highlight__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  letter-spacing: 1.2px;
  margin-top: 0;
  margin-bottom: 16px;
}
body.page-thankyou .page-content .access-highlight__subTitle {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
body.page-thankyou .page-content .access-highlight__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.7px;
}
body.page-thankyou .page-content .guide-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
body.page-thankyou .page-content .guide-list .guide-item {
  border: 1px solid #8C8C8C;
  font-family: noto-sans-cjk-jp, sans-serif;
}
body.page-thankyou .page-content .guide-list .guide-item__header {
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-thankyou .page-content .guide-list .guide-item__header:hover {
  cursor: pointer;
}
body.page-thankyou .page-content .guide-list .guide-item__header h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
  margin: 0;
}
body.page-thankyou .page-content .guide-list .guide-item__header span {
  transition: transform 0.25s ease-in-out;
}
body.page-thankyou .page-content .guide-list .guide-item__content {
  border-top: 1px solid #8C8C8C;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: 0.7px;
  padding: 40px;
  display: none;
}
body.page-thankyou .page-content .guide-list .guide-item.expanded .guide-item__header span {
  transform: rotate(-180deg);
}
body.page-thankyou .page-content .partner-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
body.page-thankyou .page-content .partner-list__item {
  flex: 0 0 calc(50% - 20px);
}
body.page-thankyou .page-content .partner-list__item a {
  display: flex;
}
body.page-thankyou .page-content .partner-list__item img {
  width: 100%;
  border: 1px solid #8C8C8C;
}
body.page-thankyou .page-content .partner-list--medium .partner-list__item {
  flex: 0 0 calc((100% - 80px) / 3);
}
body.page-thankyou .page-content .partner-list--small .partner-list__item {
  flex: 0 0 calc((100% - 120px) / 4);
}
body.page-thankyou .page-content .partner-list-wrapper {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
body.page-thankyou #stories {
  background-image: url(../../img/2023-thankyou/data_photo_pc.png);
  background-position: top center;
  background-size: 100% auto;
  padding-top: 220px;
  background-repeat: no-repeat;
}
body.page-thankyou #stories .profile {
  padding-bottom: 65px;
}
body.page-thankyou #stories .profile__name--ja {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 40px */
  letter-spacing: 2px;
  margin-bottom: 20px;
}
body.page-thankyou #stories .profile__name--en {
  font-family: "DINNextLTPro-MediumCond", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
  text-transform: uppercase;
  margin-bottom: 65px;
}
body.page-thankyou #stories .profile__simple, body.page-thankyou #stories .profile__dob {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
body.page-thankyou #stories .team-history {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.09) 100%);
  padding: 60px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.7px;
}
body.page-thankyou #stories .team-history__block:not(:last-child) {
  margin-bottom: 40px;
}
body.page-thankyou #stories .team-history__block p {
  margin: 0;
}
body.page-thankyou #stories .team-history__block table, body.page-thankyou #stories .team-history__block tr, body.page-thankyou #stories .team-history__block td {
  border: none !important;
}
body.page-thankyou #stories .team-history__block table tr td {
  padding: 3px 0;
  vertical-align: top;
}
body.page-thankyou #stories .team-history__heading {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  letter-spacing: 3px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid #fff;
}
body.page-thankyou .time-schedule__img {
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  body.page-thankyou .time-schedule__img {
    margin-bottom: 24px;
  }
}
body.page-thankyou .time-schedule__img img {
  width: 100%;
  height: auto;
}
body.page-thankyou .time-schedule__tbl table {
  border: none;
}
body.page-thankyou .time-schedule__tbl table tr {
  border: none;
  border-top: 1px solid #8C8C8C;
}
body.page-thankyou .time-schedule__tbl table tr td {
  border: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
  font-family: noto-sans-cjk-jp, sans-serif;
  padding: 24px 0;
}
body.page-thankyou .time-schedule__tbl table tr td:first-child {
  width: 160px;
}
@media (max-width: 480px) {
  body.page-thankyou .time-schedule__tbl table tr td {
    font-size: 12px;
    padding: 16px 0;
  }
  body.page-thankyou .time-schedule__tbl table tr td:first-child {
    width: 110px;
  }
}
body.page-thankyou .page-footer {
  background: #001740;
  text-align: center;
}
body.page-thankyou .page-footer__content {
  padding-top: 160px;
  padding-bottom: 40px;
}
body.page-thankyou .page-footer__content .sns-links {
  margin-bottom: 56px;
  display: flex;
  gap: 48px;
  justify-content: center;
}
body.page-thankyou .page-footer__content .footer-policy {
  margin-top: 80px;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
}
body.page-thankyou .page-footer__content .copyright-group {
  margin: 80px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px 60px;
  flex-wrap: wrap;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 480px) {
  body.page-thankyou .page-footer__content .copyright-group {
    gap: 10px 40px;
    font-size: 12px;
  }
}
body.page-thankyou .page-footer__content .copyright-group__item {
  position: relative;
}
body.page-thankyou .page-footer__content .copyright-group__item:not(:first-child):after {
  position: absolute;
  content: "";
  width: 1px;
  height: 16px;
  background-color: #fff;
  top: 0;
  left: -29px;
}
@media screen and (max-width: 480px) {
  body.page-thankyou .page-footer__content .copyright-group__item:not(:first-child):after {
    left: -20px;
    height: 12px;
    top: 1px;
  }
}
@media screen and (max-width: 480px) {
  body.page-thankyou .page-footer__content .copyright-group__item:nth-child(4):after {
    display: none;
  }
}
body.page-thankyou .page-footer__copyright {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  font-family: "DINNextLTPro-MediumCond", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
  text-transform: uppercase;
}
body.page-thankyou .page-footer__copyright .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: -1;
  opacity: 0.5;
  background: #000;
  mix-blend-mode: multiply;
}
body.page-thankyou .sidebar-menu {
  position: fixed;
  z-index: 15;
  top: 0;
  right: -100%;
  width: 30vw;
  height: 100vh;
  background: rgba(0, 12, 32, 0.8);
  transition: all 0.3s ease-in-out;
  padding: 6vw;
  box-sizing: border-box;
}
body.page-thankyou .sidebar-menu__close {
  position: absolute;
  right: 40px;
  top: 6px;
}
body.page-thankyou .sidebar-menu .menu-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}
body.page-thankyou .sidebar-menu .menu-links__item a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2vw;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 2.4px;
}
body.page-thankyou .sidebar-menu .link-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
body.page-thankyou .sidebar-menu .link-groups .btn-detail {
  margin: 0;
  width: 100%;
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  border-radius: 30px;
  padding-top: 0;
  padding-bottom: 0;
  max-width: 200px;
  min-width: auto;
  left: 0;
  transform: none;
}
body.page-thankyou .sidebar-menu .sns-links {
  position: absolute;
  bottom: 6vh;
  display: flex;
  gap: 32px;
}
body.page-thankyou .sidebar-menu .sns-links a svg {
  width: 3vw;
}
body.page-thankyou .sidebar-menu.show {
  right: 0;
}
@media screen and (max-width: 768px) {
  body.page-thankyou .sidebar-menu {
    width: 40vw;
  }
}
@media screen and (max-width: 480px) {
  body.page-thankyou .sidebar-menu {
    width: 300px;
    padding: 55px 40px;
    height: 100%;
    background: rgba(0, 12, 32, 0.95);
  }
  body.page-thankyou .sidebar-menu__close {
    right: 20px;
    top: 2.5px;
  }
  body.page-thankyou .sidebar-menu .menu-links {
    gap: 12px;
  }
  body.page-thankyou .sidebar-menu .menu-links__item a {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    letter-spacing: 2.1px;
  }
  body.page-thankyou .sidebar-menu .sns-links {
    bottom: 20px;
  }
  body.page-thankyou .sidebar-menu .sns-links a svg {
    width: 32px;
  }
}
@media screen and (max-width: 768px) {
  body.page-thankyou .page-content .animation-title {
    font-size: 44px;
  }
  body.page-thankyou .page-content .page-section .scheduler-box__date {
    font-size: 120px;
  }
  body.page-thankyou .page-content .gallery-images__item:first-child img {
    transform: translateX(-100%);
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(2) img {
    width: 360px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(3) img {
    width: 380px;
    transform: translateX(-100%);
    margin-top: 30px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(4) img {
    top: -370px;
    left: 0;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(5) img {
    width: 150px;
    margin-top: -120px;
    left: 30px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(6) img {
    width: 500px;
    left: 0;
    margin-top: -100px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(7) img {
    width: 300px;
    margin-top: 30px;
    top: 0;
    transform: translateX(-100%);
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(8) img {
    width: 380px;
    top: 400px;
    transform: translateX(-100%);
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(11) img {
    margin-top: 310px;
    left: 50px;
  }
  body.page-thankyou .page-content .game-info__title {
    font-size: 60px;
  }
  body.page-thankyou .page-content .game-info__scheduler {
    font-size: 14px;
  }
}
body.page-thankyou .flex-break {
  display: none;
}
@media screen and (max-width: 480px) {
  body.page-thankyou {
    padding-top: 0;
    font-size: 12px;
  }
  body.page-thankyou .flex-break {
    display: block;
    flex-basis: 100%;
    height: 0;
  }
  body.page-thankyou .page-header {
    height: 48px;
  }
  body.page-thankyou .page-header__overlay {
    height: 48px;
  }
  body.page-thankyou .page-header__content {
    padding-left: 20px;
    padding-right: 20px;
    height: 48px;
  }
  body.page-thankyou .page-header__content .page-title {
    font-size: 10px;
  }
  body.page-thankyou .page-content {
    padding-top: 48px;
  }
  body.page-thankyou .page-content .page-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  body.page-thankyou .page-content .page-section__title {
    margin-bottom: 40px;
  }
  body.page-thankyou .page-content .page-section__title .block-heading {
    padding-left: 16px;
    padding-right: 16px;
    gap: 16px;
  }
  body.page-thankyou .page-content .page-section__title .block-heading__ja {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    letter-spacing: 2.1px;
  }
  body.page-thankyou .page-content .page-section__title .block-heading__en {
    font-size: 10px;
  }
  body.page-thankyou .page-content .page-section__title .block-heading:before, body.page-thankyou .page-content .page-section__title .block-heading:after {
    background-size: auto 16px;
    background-position: top right;
    background-repeat: no-repeat;
    top: 0;
  }
  body.page-thankyou .page-content .page-section__title .block-heading:after {
    background-position: top left;
  }
  body.page-thankyou .page-content .page-section .scheduler-box__date {
    font-size: 62px;
    margin-bottom: 10px;
    letter-spacing: 0;
  }
  body.page-thankyou .page-content .page-section .scheduler-box__time {
    font-size: 32px;
    margin-bottom: 15px;
  }
  body.page-thankyou .page-content .page-section .scheduler-box__place {
    font-size: 12px;
  }
  body.page-thankyou .page-content .animation-title {
    padding-top: 50px;
    font-size: 36px;
    overflow: unset;
    overflow-x: hidden;
  }
  body.page-thankyou .page-content .animation-title__name {
    margin-bottom: 10px !important;
    opacity: 1 !important;
  }
  body.page-thankyou .page-content .animation-title__farewell {
    opacity: 1 !important;
  }
  body.page-thankyou .page-content .thanks-box {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 210%; /* 30.8px */
    letter-spacing: 2.1px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  body.page-thankyou .page-content .thanks-box br.only-sp {
    display: block !important;
  }
  body.page-thankyou .page-content #retirement-match {
    margin-top: -200px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(1) img {
    width: 150px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(2) img {
    width: 200px;
    margin-top: -80px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(3) img {
    width: 213px;
    margin-top: 15px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(4) img {
    width: 150px;
    margin-top: 0;
    top: -300px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(5) img {
    width: 100px;
    margin-top: -85px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(6) img {
    width: 320px;
    top: -60px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(7) img {
    width: 200px;
    margin-top: -35px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(8) img {
    width: 215px;
    top: 305px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(9) img {
    width: 150px;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(10) img {
    width: 150px;
    top: 0;
    left: 0px;
    margin-top: -145px;
  }
  body.page-thankyou .page-content .gallery-images__item:nth-child(11) img {
    width: 280px;
    margin-top: 215px;
    left: 50%;
    transform: translateX(-50%);
  }
  body.page-thankyou .page-content .message-box {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 24px */
    letter-spacing: 0.6px;
  }
  body.page-thankyou .page-content .message-box__signed {
    margin-top: 30px;
  }
  body.page-thankyou .page-content .info-box__item .published-date {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 24px */
    letter-spacing: 0.6px;
    width: 90px;
    flex: 0 0 90px;
  }
  body.page-thankyou .page-content .info-box__item .post-title {
    display: flex;
  }
  body.page-thankyou .page-content .info-box__item .post-title a {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 24px */
    letter-spacing: 0.6px;
  }
  body.page-thankyou .page-content .game-info__title {
    font-size: 40px;
  }
  body.page-thankyou .page-content .game-info__subTitle {
    font-size: 12px;
    margin-bottom: 40px;
    padding: 0 25px;
  }
  body.page-thankyou .page-content .game-info__scheduler {
    font-size: 12px;
    padding: 15px;
    gap: 16px;
  }
  body.page-thankyou .page-content .game-info__scheduler .game-scheduler__label {
    width: 100px;
    flex: 0 0 100px;
  }
  body.page-thankyou .page-content .game-info__scheduler .game-scheduler__detail {
    width: calc(100% - 100px);
    flex: 0 0 calc(100% - 100px);
  }
  body.page-thankyou .page-content .television-list {
    flex-direction: column;
    gap: 20px;
  }
  body.page-thankyou .page-content .ticket-links {
    gap: 20px;
    margin-bottom: 40px;
  }
  body.page-thankyou .page-content .ticket-links__title {
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 20px */
    letter-spacing: 0.5px;
  }
  body.page-thankyou .page-content .ticket-links__openTime {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 20px */
    letter-spacing: 0.5px;
  }
  body.page-thankyou .page-content .ticket-links__item {
    height: 40px;
    gap: 20px;
  }
  body.page-thankyou .page-content .ticket-table table tr td {
    padding: 8px;
    font-size: 8px;
  }
  body.page-thankyou .page-content .ticket-table table tr td.ticket-label {
    width: 120px;
  }
  body.page-thankyou .page-content .ticket-box {
    gap: 20px;
    margin-bottom: 20px;
  }
  body.page-thankyou .page-content .ticket-box__title {
    font-size: 16px;
  }
  body.page-thankyou .page-content .ticket-box__detail {
    font-size: 12px;
  }
  body.page-thankyou .page-content .ticket-notes {
    font-size: 12px;
  }
  body.page-thankyou .page-content .ticket-link-group {
    margin-top: 30px;
    gap: 20px;
  }
  body.page-thankyou .page-content .ticket-link-group > a {
    width: 100%;
    min-width: 0;
    font-size: 14px;
    height: 44px;
    line-height: 44px;
    margin-top: 24px;
    padding: 0;
  }
  body.page-thankyou .page-content .ticket-partner {
    margin-top: 60px;
  }
  body.page-thankyou .page-content .ticket-partner .page-section__subTitle {
    font-size: 14px;
  }
  body.page-thankyou .page-content .ticket-partner .page-section__subTitle span {
    padding: 0 20px;
    margin: 0 60px;
  }
  body.page-thankyou .btn-detail {
    height: 56px;
    font-size: 16px;
    margin-top: 56px;
  }
  body.page-thankyou .page-content .good-list {
    gap: 20px;
  }
  body.page-thankyou .page-content .good-list__item {
    width: calc((100% - 20px) / 2);
  }
  body.page-thankyou .page-content .access-highlight {
    flex-direction: column;
  }
  body.page-thankyou .page-content .access-highlight__img {
    width: 100%;
    flex: 0 0 100%;
    display: flex;
  }
  body.page-thankyou .page-content .access-highlight__title {
    font-size: 20px;
  }
  body.page-thankyou .page-content .access-highlight__subTitle {
    font-size: 14px;
  }
  body.page-thankyou .page-content .access-highlight__text {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 20.4px */
    letter-spacing: 0.6px;
  }
  body.page-thankyou .page-content .guide-list .guide-item__header {
    padding: 10px 20px;
  }
  body.page-thankyou .page-content .guide-list .guide-item__header h3 {
    font-size: 14px;
  }
  body.page-thankyou .page-content .guide-list .guide-item__header svg {
    width: 16px;
  }
  body.page-thankyou .page-content .guide-list .guide-item__content {
    padding: 20px;
    font-size: 12px;
  }
  body.page-thankyou #stories {
    background-size: 600px auto;
    padding-top: 290px;
  }
  body.page-thankyou #stories .profile {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
    letter-spacing: 0.6px;
    padding-bottom: 40px;
  }
  body.page-thankyou #stories .profile__name--ja {
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 22px */
    letter-spacing: 1.1px;
  }
  body.page-thankyou #stories .profile__name--en {
    font-size: 10px;
    margin-bottom: 30px;
  }
  body.page-thankyou #stories .team-history {
    padding: 40px 20px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 20.4px */
    letter-spacing: 0.6px;
  }
  body.page-thankyou #stories .team-history h3 {
    margin-top: 0;
  }
  body.page-thankyou #stories .team-history__heading {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    letter-spacing: 2.4px;
  }
  body.page-thankyou #stories .team-history table tr td {
    font-size: 12px;
  }
  body.page-thankyou #stories .team-history table tr:first-child td:first-child {
    width: 80px;
  }
  body.page-thankyou .partner-list {
    gap: 15px !important;
  }
  body.page-thankyou .partner-list__item {
    flex: 0 0 calc((100% - 15px) / 2) !important;
  }
  body.page-thankyou .partner-list--medium .partner-list__item {
    flex: 0 0 calc((100% - 30px) / 3) !important;
  }
  body.page-thankyou .partner-list--small .partner-list__item {
    flex: 0 0 calc((100% - 45px) / 4) !important;
  }
  body.page-thankyou .partner-list-wrapper {
    gap: 15px !important;
  }
  body.page-thankyou .page-footer__content .footer-policy {
    margin-top: 40px;
    font-size: 12px;
    padding: 0 20px;
  }
  body.page-thankyou .page-footer__copyright {
    font-size: 10px;
  }
}
body.page-thankyou .team-match {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
}
body.page-thankyou .team-match .team-info {
  width: calc(50% - 20px);
}
body.page-thankyou .team-match .team-info__name h2 {
  text-align: center;
  font-family: "DINNextLTPro-MediumCond", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 32px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  margin: 0 0 40px;
  padding: 16px 0 12px;
  border: 1px solid #8C8C8C;
}
body.page-thankyou .team-match .team-info__image {
  margin-bottom: 56px;
}
body.page-thankyou .team-match .team-info__person {
  display: flex;
  padding: 12px 0;
  border-top: 1px solid #8C8C8C;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
body.page-thankyou .team-match .team-info__person--head-coach, body.page-thankyou .team-match .team-info__person--staff {
  padding-bottom: 24px;
}
body.page-thankyou .team-match .team-info__label {
  width: 140px;
}
body.page-thankyou .team-match .team-info__label span {
  display: inline-block;
  width: 70px;
}
body.page-thankyou .team-match .team-info__data p {
  margin: 0;
}
body.page-thankyou .team-match-notes {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 28px */
  letter-spacing: 0.7px;
}
body.page-thankyou .team-match-group:not(:last-child) {
  margin-bottom: 80px;
}
body.page-thankyou .team-match-group__title {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 32px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  font-family: "DINNextLTPro-MediumCond", serif;
  text-align: center;
  padding: 16px 0 12px;
  margin: 0 0 56px;
  border: 1px solid #8C8C8C;
}
body.page-thankyou .team-match-group__members {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 40px;
}
body.page-thankyou .team-match-group__members span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
  letter-spacing: 0.8px;
  font-family: noto-sans-cjk-jp, sans-serif;
  text-align: center;
}
body.page-thankyou .team-match-group__members span:first-child {
  padding-right: 10px;
}
body.page-thankyou .team-match-group__members span:first-child + span {
  padding-left: 10px;
}
@media screen and (max-width: 480px) {
  body.page-thankyou .team-match {
    gap: 20px;
    margin-bottom: 54px;
  }
  body.page-thankyou .team-match .team-info {
    width: calc(50% - 10px);
  }
  body.page-thankyou .team-match .team-info__name h2 {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
    letter-spacing: 0.48px;
    margin-bottom: 24px;
    padding: 10px 0 8px;
  }
  body.page-thankyou .team-match .team-info__image {
    margin-bottom: 24px;
  }
  body.page-thankyou .team-match .team-info__person {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%; /* 20px */
    letter-spacing: 0.5px;
    padding: 10px 0;
  }
  body.page-thankyou .team-match .team-info__person--head-coach, body.page-thankyou .team-match .team-info__person--staff {
    padding-bottom: 24px;
  }
  body.page-thankyou .team-match .team-info__label {
    width: 100px;
  }
  body.page-thankyou .team-match .team-info__label span {
    width: 45px;
  }
  body.page-thankyou .team-match-notes {
    font-size: 12px;
    margin-top: 40px;
  }
  body.page-thankyou .team-match-group:not(:last-child) {
    margin-bottom: 40px;
  }
  body.page-thankyou .team-match-group__title {
    font-size: 16px;
    margin-bottom: 22px;
  }
  body.page-thankyou .team-match-group__members {
    gap: 10px 30px;
  }
  body.page-thankyou .team-match-group__members span {
    font-size: 10px;
  }
}

#uniform-emblem {
  overflow-x: hidden;
}
#uniform-emblem .uniform-emblem {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}
#uniform-emblem .uniform-emblem__img {
  flex: 0 0 400px;
}
#uniform-emblem .uniform-emblem__title {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  letter-spacing: 1.2px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
#uniform-emblem .uniform-emblem__text p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.9px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
#uniform-emblem .uniform-team {
  display: flex;
  gap: 120px;
}
#uniform-emblem .uniform-team:not(:last-child) {
  margin-bottom: 80px;
}
#uniform-emblem .uniform-team__name {
  margin-top: 60px;
  margin-bottom: 16px;
  font-family: DINNextLTPro-MediumCond, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 32px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  position: relative;
}
#uniform-emblem .uniform-team__name:after {
  content: "";
  position: absolute;
  width: 184px;
  height: 1px;
  background-color: #8C8C8C;
  top: 14px;
  margin-left: 21px;
}
#uniform-emblem .uniform-team__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
  letter-spacing: 0.7px;
}
#uniform-emblem .uniform-team__images {
  flex: 0 0 420px;
}
#uniform-emblem .uniform-team__sub-img {
  margin-top: -110px;
  margin-left: -200px;
}
#uniform-emblem .uniform-team--reverse {
  flex-direction: row-reverse;
}
#uniform-emblem .uniform-team--reverse .uniform-team__sub-img {
  position: relative;
  left: calc(100% + 140px);
}
#uniform-emblem .uniform-team--reverse .uniform-team__name:after {
  right: calc(100% + 21px);
  width: 150px;
}
#uniform-emblem .uniform-team-slider {
  max-width: 1280px;
  margin: 120px auto 40px;
}
#uniform-emblem .uniform-team-slider .slick-list {
  margin: 0 -16px;
}
#uniform-emblem .uniform-team-slider__item {
  padding: 0 16px;
}
#uniform-emblem .uniform-team-slider__item img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  #uniform-emblem .uniform-team-slider .slick-list {
    margin: 0 -8px;
  }
  #uniform-emblem .uniform-team-slider__item {
    padding: 0 8px;
  }
}
@media screen and (max-width: 768px) {
  #uniform-emblem .uniform-emblem__img {
    flex: 0 0 calc(50% - 20px);
  }
  #uniform-emblem .uniform-team {
    gap: 40px;
  }
  #uniform-emblem .uniform-team__images {
    flex: 0 0 320px;
  }
  #uniform-emblem .uniform-team__sub-img {
    margin-top: -80px;
  }
}
@media screen and (max-width: 480px) {
  #uniform-emblem .uniform-emblem {
    flex-direction: column;
  }
  #uniform-emblem .uniform-emblem__title {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 18px */
    letter-spacing: 0.9px;
  }
  #uniform-emblem .uniform-emblem__text p {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 21.6px */
    letter-spacing: 0.6px;
  }
  #uniform-emblem .uniform-team {
    flex-direction: column;
  }
  #uniform-emblem .uniform-team__name {
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 24px */
    letter-spacing: 0.72px;
    text-transform: uppercase;
    margin-top: 0;
  }
  #uniform-emblem .uniform-team__name:after {
    display: none;
  }
  #uniform-emblem .uniform-team__text {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 21.6px */
    letter-spacing: 0.6px;
  }
  #uniform-emblem .uniform-team__text p {
    margin-bottom: 0;
  }
  #uniform-emblem .uniform-team__sub-img {
    position: static !important;
    margin-top: 40px;
    margin-left: 0;
    text-align: center;
  }
}

.page-history .top-banner {
  position: relative;
  display: flex;
}
.page-history .top-banner h1 {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 100px */
  letter-spacing: 3px;
  font-family: DINNextLTPro-MediumCond, serif;
  text-transform: uppercase;
}
.page-history .top-banner img {
  width: 100%;
  height: auto;
}
.page-history .subpages__item:not(:last-child) {
  margin-bottom: 56px;
}
.page-history .subpages__item img {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
.page-history .subpages__item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
  letter-spacing: 0.72px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
.page-history .subpages__item h3 a {
  color: #fff;
  text-decoration: none;
}
.page-history .subpages__item p {
  margin-bottom: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.54px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
@media (max-width: 480px) {
  .page-history .top-banner img {
    height: 240px;
    width: auto;
    max-width: none;
    left: 50%;
    position: relative;
    transform: translateX(-52%);
    z-index: -1;
  }
  .page-history .top-banner h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 100px */
    letter-spacing: 3px;
  }
  .page-history .subpages__item img {
    margin-bottom: 20px;
  }
  .page-history .subpages__item h3 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 36px */
    letter-spacing: 0.6px;
    margin-bottom: 8px;
  }
  .page-history .subpages__item p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 27px */
    letter-spacing: 0.45px;
  }
}

.page-history-detail .page-content {
  max-width: 1020px;
  padding: 0 20px;
  margin: 120px auto;
}
.page-history-detail .page-content .history-detail__featured {
  display: flex;
}
.page-history-detail .page-content .history-detail__featured img {
  width: 100%;
  height: auto;
}
.page-history-detail .page-content .history-detail__content {
  padding: 60px;
  background-color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.54px;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #000;
}
.page-history-detail .page-content .history-detail__content img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  .page-history-detail .page-content {
    margin-top: 30px;
    margin-bottom: 80px;
  }
  .page-history-detail .page-content .history-detail__content {
    padding: 20px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 27px */
    letter-spacing: 0.45px;
  }
}

#goods .shopify-wrapper {
  margin: 0 -20px;
  display: flex;
  flex-wrap: wrap;
}
#goods .shopify-wrapper .shopify-product {
  width: 25%;
  padding: 0 20px;
  margin-bottom: 40px;
  box-sizing: border-box;
}
#goods .shopify-wrapper .shopify-product__image a {
  display: block;
  position: relative;
  background-color: #fff;
  width: 100%;
  padding-top: 100%;
}
#goods .shopify-wrapper .shopify-product__image a img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#goods .shopify-wrapper .shopify-product__summary h3 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.7px;
  font-family: noto-sans-cjk-jp, sans-serif;
}
#goods .shopify-wrapper .shopify-product__summary h3 a {
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  white-space: pre-wrap;
  text-decoration: none;
}
#goods .shopify-wrapper .shopify-product__summary .price {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 18px */
  letter-spacing: 0.9px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0;
}
#goods .shopify-wrapper .shopify-product__summary .price__compare {
  font-size: 14px;
  font-weight: 300;
  color: #bdbdbd;
  text-decoration: line-through;
}
@media screen and (max-width: 767px) {
  #goods .shopify-wrapper {
    margin: 0 -5px;
  }
  #goods .shopify-wrapper .shopify-product {
    width: 50%;
    padding: 5px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 480px) {
  #goods .shopify-wrapper .shopify-product__summary h3 {
    font-size: 10px;
  }
  #goods .shopify-wrapper .shopify-product__summary .price {
    font-size: 14px;
  }
  #goods .shopify-wrapper .shopify-product__summary .price__compare {
    font-size: 12px;
  }
}
#goods a.btn-detail {
  margin-top: 40px;
}

#image-gallery .photo-gallery {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}
#image-gallery .photo-gallery > li {
  width: calc((100% - 60px) / 3);
}
#image-gallery .photo-gallery > li > a {
  display: flex;
}
#image-gallery .photo-gallery > li > a img {
  width: 100%;
  height: auto;
}
@media (max-width: 480px) {
  #image-gallery .photo-gallery {
    gap: 15px;
  }
  #image-gallery .photo-gallery > li {
    width: calc(50% - 7.5px);
  }
}

/*# sourceMappingURL=thankyou-ldp.css.map */
