@charset "UTF-8";

.page .entry .button a,
.page #detail .button a {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.3s;
  width: 72vw;
  padding: 2.9333333333vw 2.9333333333vw 2.9333333333vw 8vw;
}

.page .entry .button a::before,
.page #detail .button a::before,
.page .entry .button a::after,
.page #detail .button a::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  clip-path: polygon(4vw 0, 100% 0, calc(100% - 4vw) 100%, 0 100%);
}

.page .entry .button a::before,
.page #detail .button a::before {
  background: var(--color-black);
}

.page .entry .button a::after,
.page #detail .button a::after {
  background: rgba(var(--color-black-rgb), 0.4);
  transform: translate(0.9333333333vw, 0.9333333333vw);
}

.page .entry .button a .text,
.page #detail .button a .text {
  display: flex;
  align-items: center;
  color: var(--color-white);
  font-style: italic;
  gap: 1.6vw;
  font-size: 20px;
}

.page .entry .button a[href^=http] .text::after,
.page #detail .button a[href^=http] .text::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1;
  background: url(../img/common/ic_link.svg) no-repeat;
  background-size: contain;
  width: 0.8em;
}

.page .entry .button a .icon,
.page #detail .button a .icon {
  position: relative;
  background: var(--color-white);
  aspect-ratio: 48/38;
  width: 10.6666666667vw;
  clip-path: polygon(2.4vw 0, 100% 0, calc(100% - 2.4vw) 100%, 0 100%);
}

.page .entry .button a .icon::after,
.page #detail .button a .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../img/common/ic_arrow@sp.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 18/27;
  width: 2.6666666667vw;
}

.page {
  position: relative;
  padding-bottom: 66.6666666667vw;
}

.page #header {
  box-sizing: border-box;
  position: relative;
  display: flex;
  justify-content: center;
  height: 66.6666666667vw;
  padding-top: 37.3333333333vw;
}

.page #header::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  aspect-ratio: 750/500;
  width: 100%;
  background-image: url(../img/common/header@sp.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.page h1 {
  margin: 0 auto;
  transform: translateZ(0);
  filter: drop-shadow(0 0 0.8vw rgba(var(--color-navy-rgb), 0.8));
}

.page .box {
  box-sizing: border-box;
  padding: 13.3333333333vw 5.3333333333vw;
  line-height: 1.66;
  font-weight: 400;
  font-size: 18px;
}

.page #flow {
  position: relative;
}

.page .lead {
  position: relative;
  z-index: 1;
  line-height: 2;
  font-weight: 500;
  font-size: 20px;
}

.page .lead:not(:last-child) {
  margin-bottom: 10.6666666667vw;
}

.page .flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8vw;
}

.page .flow::before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../img/common/bg_flow@sp.svg);
  top: 50%;
  width: 100vw;
  aspect-ratio: 750/617;
}

.page .flow li {
  position: relative;
}

.page .flow li:not(:first-child)::before {
  content: "";
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% auto;
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  position: absolute;
  top: -5.6vw;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 66/30;
  width: 8.8vw;
  -webkit-mask-image: url(../img/common/ic_flow@sp.svg);
  mask-image: url(../img/common/ic_flow@sp.svg);
}

.page .flow li .frame {
  display: block;
  padding: 2px;
  background: var(--color-white);
  clip-path: polygon(9.3333333333vw 0, 100% 0, calc(100% - 9.3333333333vw) 100%, 0 100%);
}

.page .flow li .inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  clip-path: polygon(9.3333333333vw 0, 100% 0, calc(100% - 9.3333333333vw) 100%, 0 100%);
  gap: 3.2vw;
  height: 21.3333333333vw;
}

.page .flow li .inner::before,
.page .flow li .inner::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.page .flow li .inner::after {
  opacity: 0.1;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, var(--color-white), var(--color-white) 4px);
}

.page .flow li .title,
.page .flow li .content {
  position: relative;
  z-index: 1;
  line-height: 0;
  transform: translateZ(0);
  filter: drop-shadow(2px 2px 0px var(--color-black));
}

.page .flow li .title img,
.page .flow li .content img {
  width: auto;
}

.page .entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4vw;
  margin-top: 21.3333333333vw;
}

.page .entry h2 {
  position: relative;
  line-height: 1;
  width: 44.6666666667vw;
}

.page .entry h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 527/15;
  width: 70.2666666667vw;
  background-image: url(../img/cardgame/bg_h2@sp.svg);
}

.page .entry h3 {
  font-weight: 700;
  color: var(--color-key2);
  font-size: 24px;
}

.page .entry dl {
  font-weight: 700;
  display: flex;
  flex-direction: column;
}

.page .entry dl div {
  display: flex;
  justify-content: center;
}

.page .entry dl dt {
  font-size: 16px;
}

.page .entry dl dd {
  font-size: 18px;
}

.page .entry .button .text {
  font-weight: 700;
}

.page .schedule-col-1,
.page .schedule-col-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9.3333333333vw;
  padding-top: 4vw;
}

.page .schedule-col-1 .date1,
.page .schedule-col-1 .date2,
.page .schedule-col-2 .date1,
.page .schedule-col-2 .date2 {
  position: relative;
  background: #fff8c6;
  padding: 9.3333333333vw 5.3333333333vw 5.3333333333vw 5.3333333333vw;
}

.page .schedule-col-1 .date1 .date,
.page .schedule-col-1 .date2 .date,
.page .schedule-col-2 .date1 .date,
.page .schedule-col-2 .date2 .date {
  box-sizing: border-box;
  background: var(--color-black);
  color: var(--color-white);
  position: absolute;
  line-height: 1;
  font-weight: 700;
  top: -4vw;
  left: -4vw;
  width: 53.3333333333vw;
  padding: 2.4vw 4vw;
  clip-path: polygon(0 0, 100% 0, calc(100% - 5.3333333333vw) 100%, 0% 100%);
  font-size: 30px;
}

.page .schedule-col-1 .date1,
.page .schedule-col-2 .date1 {
  margin-left: 4vw;
}

.page .schedule-col-1 .date2,
.page .schedule-col-2 .date2 {
  margin-left: 4vw;
}

.page #priority {
  margin-top: 8vw;
}

.page #detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f1f1f1;
  gap: 4vw;
  padding: 6.6666666667vw 0 8vw 0;
}

.page #detail h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}

.page #outline {
  margin-top: 53.3333333333vw;
  margin-bottom: 13.3333333333vw;
}

.page #outline,
.page #attention {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5.3333333333vw;
}

.page .outline-header {
  position: relative;
  margin-bottom: 4vw;
}

.page .outline-header::before {
  content: "";
  position: absolute;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, var(---h2before) 2px, var(---h2before) 4px);
  aspect-ratio: 750/400;
  top: -32vw;
  left: -5.3333333333vw;
  width: 100vw;
}

.page .outline-header .image {
  position: absolute;
  right: 0;
  width: 94.6666666667vw;
  top: -40vw;
  margin-right: -5.3333333333vw;
}

.page h2.type1 {
  position: relative;
  width: 94.6666666667vw;
  margin-left: -5.3333333333vw;
}

.page h2.type1::before,
.page h2.type1::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10.6666666667vw) 100%, 0% 100%);
}

.page h2.type1::before {
  transform: translate(1.6vw, 1.6vw);
}

.page h2.type1::after {
  background-image: linear-gradient(180deg, rgb(21, 43, 123), rgb(55, 87, 166));
}

.page h2.type1 span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.5;
  height: 32vw;
  padding: 0 5.3333333333vw;
  font-size: 36px;
}

.page h2.type1 span::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -webkit-mask-image: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 60%);
  mask-image: linear-gradient(45deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 60%);
  opacity: 0.1;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2vw, var(--color-white) 2vw, var(--color-white) 4vw);
  width: 61.3333333333vw;
}

.page h2.type1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1;
  -webkit-mask: url(../img/common/ic_monbo.svg) no-repeat;
  -webkit-mask-size: contain;
  mask: url(../img/common/ic_monbo.svg) no-repeat;
  mask-size: contain;
  background-image: linear-gradient(180deg, #091b65, #1b4092);
  right: 8vw;
  width: 34.6666666667vw;
}

.page h2.type2 {
  color: var(--color-white);
  font-weight: 700;
  margin-left: -5.3333333333vw;
  padding: 4vw 5.3333333333vw;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8vw) 100%, 0% 100%);
  font-size: 26px;
}

.page .type-h3 {
  position: relative;
  display: flex;
  line-height: 1.5;
  font-weight: 700;
  gap: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
  margin-bottom: 4.6666666667vw;
  font-size: 24px;
}

.page .type-h3::before {
  content: "";
  flex: 0 0 auto;
  -webkit-mask: url(../img/common/ic_monbo.svg) no-repeat;
  -webkit-mask-size: contain;
  mask: url(../img/common/ic_monbo.svg) no-repeat;
  mask-size: contain;
  aspect-ratio: 1;
  width: 5.3333333333vw;
  transform: translateY(0.8vw);
}

.page .type-h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  -webkit-mask-image: url(../img/common/line@sp.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url(../img/common/line@sp.svg);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.page .type-h4 {
  border-left: 4px solid #000;
  font-weight: 700;
  line-height: 1;
  padding-left: 2.4vw;
  font-size: 18px;
}

.page .caution {
  color: #666;
  font-size: 14px;
}

.page .caution-box {
  background: #f1f1f1;
  padding: 4vw 5.3333333333vw;
  font-size: 14px;
}

.page .caution-box strong {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.2em;
}

.page .link {
  font-weight: 500;
  color: #4b5ca8;
  text-decoration: underline;
}

.page .link[href^=http] {
  text-decoration: none;
}

.page .link[href^=http]::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1;
  width: 0.8em;
  margin: 0 0.1em;
  mask: url(../img/common/ic_link.svg) no-repeat;
  mask-size: contain;
  background: #4b5ca8;
}

.page .table {
  width: 100%;
  border-collapse: collapse;
}

.page .table th,
.page .table td {
  border: 1px solid #ccc;
}

.page .table th {
  text-align: left;
  font-weight: 700;
  color: #fff;
  background: #222;
  padding: 2vw 3.3333333333vw;
  border-bottom: none;
}

.page .table td {
  background: #fff;
}

.page .table td strong {
  font-weight: 700;
}

.page .table td p:not(:last-child) {
  margin-bottom: 0.5em;
}

.page.game h1 {
  width: 42.4vw;
}

.page.game .flow li:not(:first-child)::before {
  background: #19d473;
}

.page.game .flow li .title img {
  height: 5.7333333333vw;
}

.page.game .flow li .content img {
  height: 3.4666666667vw;
}

.page.game .flow li.flow-1 .title img {
  height: 4.9333333333vw;
}

.page.game .flow li.flow-2 .title img {
  height: 5.0666666667vw;
}

.page.game .flow li.flow-3 .title img {
  height: 4.9333333333vw;
}

.page.game .flow li .inner {
  background: #009246;
}

.page.game .flow li .inner::before {
  background: var(--color-key1);
}

.page.game .outline-header::before {
  ---h2before: #c6e7d6;
}

.page.game h2.type1 span {
  font-size: 26px;
}

.page.game h2.type1::before {
  background: var(--color-key1);
}

.page.game h2.type2 {
  background: var(--color-key1);
}

.page.game .type-h3::before,
.page.game .type-h3::after {
  background: var(--color-key1);
}

.page.game .type-h4 {
  border-color: var(--color-key1);
}

.page.cardgame h1 {
  width: 45.2vw;
}

.page.cardgame .flow li:not(:first-child)::before {
  background: #ff7c7f;
}

.page.cardgame .flow li .title img {
  height: 4.9333333333vw;
}

.page.cardgame .flow li .content img {
  height: 3.4666666667vw;
}

.page.cardgame .flow li.flow-1 .content img {
  height: 13.0666666667vw;
}

.page.cardgame .flow li .inner {
  background: #d1141c;
}

.page.cardgame .flow li .inner::before {
  background: var(--color-key2);
}

.page.cardgame .flow::before {
  top: 175%;
}

.page.cardgame .outline-header::before {
  ---h2before: #ffd8d9;
}

.page.cardgame h2.type1::before {
  background: var(--color-key2);
}

.page.cardgame h2.type2 {
  background: var(--color-key2);
}

.page.cardgame .type-h3::before,
.page.cardgame .type-h3::after {
  background: var(--color-key2);
}

.page.cardgame .type-h4 {
  border-color: var(--color-key2);
}

.page.pokemongo h1 {
  width: 69.7333333333vw;
}

.page.pokemongo .flow li:not(:first-child)::before {
  background: #257cd4;
}

.page.pokemongo .flow li .inner {
  background: #004a95;
}

.page.pokemongo .flow li .inner::before {
  background: var(--color-key3);
}

.page.pokemongo .flow li.flow-1 .title img {
  height: 5.7333333333vw;
}

.page.pokemongo .flow li.flow-1 .content img {
  height: 9.6vw;
}

.page.pokemongo .flow li.flow-2 .title img {
  height: 4.9333333333vw;
}

.page.pokemongo .flow li.flow-2 .content img {
  height: 3.4666666667vw;
}

.page.pokemongo .outline-header::before {
  ---h2before: #c2e0ff;
}

.page.pokemongo h2.type1::before {
  background: #257cd4;
}

.page.pokemongo h2.type2 {
  background: var(--color-key3);
}

.page.pokemongo .type-h3::before,
.page.pokemongo .type-h3::after {
  background: var(--color-key3);
}

.page.pokemongo .type-h4 {
  border-color: var(--color-key3);
}

.page.pokemonunite h1 {
  width: 67.8666666667vw;
}

.page.pokemonunite .flow li:not(:first-child)::before {
  background: #ffd733;
}

.page.pokemonunite .flow li.flow-1 .content {
  padding-right: 2.1333333333vw;
}

.page.pokemonunite .flow li .inner {
  background: #eebf00;
}

.page.pokemonunite .flow li .inner::before {
  background: var(--color-key4);
}

.page.pokemonunite .flow li.flow-1 .title img {
  height: 5.7333333333vw;
}

.page.pokemonunite .flow li.flow-1 .content img {
  height: 9.6vw;
}

.page.pokemonunite .flow li.flow-2 .title img {
  height: 4.9333333333vw;
}

.page.pokemonunite .flow li.flow-2 .content img {
  height: 3.4666666667vw;
}

.page.pokemonunite .outline-header::before {
  ---h2before: #fff0b4;
}

.page.pokemonunite h2.type1::before {
  background: var(--color-key4);
}

.page.pokemonunite h2.type2 {
  background: var(--color-key4);
}

.page.pokemonunite .type-h3::before,
.page.pokemonunite .type-h3::after {
  background: var(--color-key4);
}

.page.pokemonunite .type-h4 {
  border-color: var(--color-key4);
}

.page.guideline #header {
  padding-top: 35.3333333333vw;
}

.page.guideline h1 {
  width: 79.3333333333vw;
}

.page.guideline h2.type2 {
  background: var(--color-key5);
}

.page.guideline .type-h3::before,
.page.guideline .type-h3::after {
  background: var(--color-key5);
}

.page.guideline .type-h4 {
  border-color: var(--color-key5);
}

.page div:has(.ill) {
  position: relative;
}

.page div:has(.ill) .ill {
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.page.game .ill1 {
  width: 33.7333333333vw;
  bottom: -15.3333333333vw;
  left: -10.6666666667vw;
}

.page.game .ill2 {
  width: 43.6vw;
  top: -57.3333333333vw;
  right: -13.3333333333vw;
}

.page.game .ill3 {
  width: 51.7333333333vw;
  top: 10.6666666667vw;
  right: -22vw;
}

.page.cardgame .ill1 {
  width: 61.8666666667vw;
  top: -53.3333333333vw;
  left: -22.6666666667vw;
}

.page.cardgame .ill2 {
  width: 23.3333333333vw;
  top: -22.6666666667vw;
  right: -10.6666666667vw;
}

.page.cardgame .ill3 {
  width: 70.5333333333vw;
  top: -58.6666666667vw;
  left: -32vw;
}

.page.cardgame .ill4 {
  width: 50.2666666667vw;
  bottom: -40vw;
  right: -10.6666666667vw;
}

.page.pokemongo .ill1 {
  width: 33.7333333333vw;
  bottom: -18.6666666667vw;
  left: -10.6666666667vw;
}

.page.pokemongo .ill2 {
  width: 43.6vw;
  top: -58.6666666667vw;
  right: -12.6666666667vw;
}

.page.pokemongo .ill3 {
  width: 51.7333333333vw;
  top: -12vw;
  right: -21.3333333333vw;
}

.page.pokemonunite .ill1 {
  width: 61.8666666667vw;
  bottom: -30.6666666667vw;
  left: -22.6666666667vw;
}

.page.pokemonunite .ill2 {
  width: 23.3333333333vw;
  bottom: -31.3333333333vw;
  right: -9.3333333333vw;
}

.page.pokemonunite .ill3 {
  width: 50.2666666667vw;
  bottom: -68.6666666667vw;
  right: -12vw;
}

.page.pokemonunite .ill4 {
  width: 70.5333333333vw;
  bottom: -50.6666666667vw;
  left: -28vw;
}

.gap {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.gap-s {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.gap-l {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.indent {
  text-indent: -1em;
  margin-left: 1em;
}

.indent-dot li {
  position: relative;
  padding-left: 1em;
}

.indent-dot li::before {
  content: "・";
  position: absolute;
  left: 0.2em;
  top: 0;
}

.mb-4l {
  margin-bottom: 3.2em;
}

.mb-3l {
  margin-bottom: 2.4em;
}

.mb-2l {
  margin-bottom: 1.6em;
}

.mb-1l {
  margin-bottom: 0.8em !important;
}

.mb-hl {
  margin-bottom: 0.5em;
}

.mt-hl {
  margin-top: 0.5em;
}

.mt-1l {
  margin-top: 1.2em;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-2l {
  padding-top: 1.6em;
}

@media print, screen and (min-width: 768px) {
  .page .entry .button a,
  .page #detail .button a {
    width: min(380px,  calc(380 / 1366 * 100vw));
    padding: min(20px,  calc(20 / 1366 * 100vw)) min(24px,  calc(24 / 1366 * 100vw)) min(20px,  calc(20 / 1366 * 100vw)) min(40px,  calc(40 / 1366 * 100vw));
  }

  .page .entry .button a::before,
  .page #detail .button a::before,
  .page .entry .button a::after,
  .page #detail .button a::after {
    clip-path: polygon(min(18px,  calc(18 / 1366 * 100vw)) 0, 100% 0, calc(100% - min(18px,  calc(18 / 1366 * 100vw))) 100%, 0 100%);
  }

  .page .entry .button a::after,
  .page #detail .button a::after {
    transform: translate(min(7px,  calc(7 / 1366 * 100vw)), min(7px,  calc(7 / 1366 * 100vw)));
  }

  .page .entry .button a .text,
  .page #detail .button a .text {
    gap: min(10px,  calc(10 / 1366 * 100vw));
  }

  .page .entry .button a .icon,
  .page #detail .button a .icon {
    width: min(48px,  calc(48 / 1366 * 100vw));
    clip-path: polygon(min(9px,  calc(9 / 1366 * 100vw)) 0, 100% 0, calc(100% - min(9px,  calc(9 / 1366 * 100vw))) 100%, 0 100%);
  }

  .page .entry .button a .icon::after,
  .page #detail .button a .icon::after {
    background-image: url(../img/common/ic_arrow@pc.svg);
    aspect-ratio: 12/18;
    width: min(12px,  calc(12 / 1366 * 100vw));
  }

  .page {
    padding-bottom: min(80px,  calc(80 / 1366 * 100vw));
  }

  .page #header {
    height: min(340px,  calc(340 / 1366 * 100vw));
    padding-top: min(180px,  calc(180 / 1366 * 100vw));
  }

  .page #header::before {
    aspect-ratio: 1920/994;
    background-image: url(../img/common/header@pc.webp);
  }

  .page h1 {
    filter: drop-shadow(0 0 min(10px,  calc(10 / 1366 * 100vw)) var(--color-navy));
  }

  .page .box {
    background: var(--color-white);
    margin: 0 auto;
    width: min(1100px,  calc(1100 / 1366 * 100vw));
    padding: min(75px,  calc(75 / 1366 * 100vw)) min(80px,  calc(80 / 1366 * 100vw));
  }

  .page .lead:not(:last-child) {
    margin-bottom: min(55px,  calc(55 / 1366 * 100vw));
  }

  .page .flow {
    gap: 0;
  }

  .page .flow.col-2 {
    grid-template-columns: 1fr 1fr;
    width: min(830px,  calc(830 / 1366 * 100vw));
    margin: 0 auto;
  }

  .page .flow.col-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page .flow::before {
    top: 35%;
    aspect-ratio: 1366/567;
    background-image: url(../img/common/bg_flow@pc.svg);
  }

  .page .flow li:not(:first-child)::before {
    top: 50%;
    transform: translateY(-50%);
    left: max(-13px,  calc(-13 / 1366 * 100vw));
    aspect-ratio: 22/25;
    width: min(22px,  calc(22 / 1366 * 100vw));
    -webkit-mask-image: url(../img/common/ic_flow@pc.svg);
    mask-image: url(../img/common/ic_flow@pc.svg);
  }

  .page .flow li .frame {
    clip-path: polygon(min(40px,  calc(40 / 1366 * 100vw)) 0, 100% 0, calc(100% - min(40px,  calc(40 / 1366 * 100vw))) 100%, 0 100%);
  }

  .page .flow li .inner {
    clip-path: polygon(min(40px,  calc(40 / 1366 * 100vw)) 0, 100% 0, calc(100% - min(40px,  calc(40 / 1366 * 100vw))) 100%, 0 100%);
    gap: min(20px,  calc(20 / 1366 * 100vw));
    height: min(130px,  calc(130 / 1366 * 100vw));
  }

  .page .entry {
    gap: min(20px,  calc(20 / 1366 * 100vw));
    margin-top: min(60px,  calc(60 / 1366 * 100vw));
  }

  .page .entry h2 {
    width: min(267px,  calc(267 / 1366 * 100vw));
  }

  .page .entry h2::before {
    aspect-ratio: 444/10;
    width: min(444px,  calc(444 / 1366 * 100vw));
    background-image: url(../img/cardgame/bg_h2@pc.svg);
    margin-left: min(3px,  calc(3 / 1366 * 100vw));
  }

  .page .entry dl div {
    gap: 0.8em;
  }

  .page .schedule-col-1,
  .page .schedule-col-2 {
    grid-template-columns: 1fr 1fr;
    gap: min(40px,  calc(40 / 1366 * 100vw));
    padding-top: min(12px,  calc(12 / 1366 * 100vw));
  }

  .page .schedule-col-1 .date1,
  .page .schedule-col-1 .date2,
  .page .schedule-col-2 .date1,
  .page .schedule-col-2 .date2 {
    padding: min(60px,  calc(60 / 1366 * 100vw)) min(30px,  calc(30 / 1366 * 100vw)) min(30px,  calc(30 / 1366 * 100vw)) min(30px,  calc(30 / 1366 * 100vw));
  }

  .page .schedule-col-1 .date1 .date,
  .page .schedule-col-1 .date2 .date,
  .page .schedule-col-2 .date1 .date,
  .page .schedule-col-2 .date2 .date {
    top: max(-12px,  calc(-12 / 1366 * 100vw));
    left: max(-12px,  calc(-12 / 1366 * 100vw));
    width: min(355px,  calc(355 / 1366 * 100vw));
    padding: min(12px,  calc(12 / 1366 * 100vw)) min(20px,  calc(20 / 1366 * 100vw));
    clip-path: polygon(0 0, 100% 0, calc(100% - min(30px,  calc(30 / 1366 * 100vw))) 100%, 0% 100%);
  }

  .page .schedule-col-1 .date1,
  .page .schedule-col-2 .date1 {
    margin-left: min(12px,  calc(12 / 1366 * 100vw));
  }

  .page .schedule-col-1 .date2,
  .page .schedule-col-2 .date2 {
    margin-left: 0;
  }

  .page .schedule-col-1 {
    grid-template-columns: 1fr;
  }

  .page #priority {
    margin-top: min(50px,  calc(50 / 1366 * 100vw));
    padding-bottom: min(40px,  calc(40 / 1366 * 100vw));
  }

  .page #detail {
    gap: min(26px,  calc(26 / 1366 * 100vw));
    padding: min(35px,  calc(35 / 1366 * 100vw)) 0 min(40px,  calc(40 / 1366 * 100vw)) 0;
  }

  .page #outline {
    margin-top: min(140px,  calc(140 / 1366 * 100vw));
    margin-bottom: min(80px,  calc(80 / 1366 * 100vw));
  }

  .page #outline,
  .page #attention {
    gap: min(40px,  calc(40 / 1366 * 100vw));
  }

  .page .outline-header {
    margin-bottom: min(60px,  calc(60 / 1366 * 100vw));
  }

  .page .outline-header::before {
    aspect-ratio: 1100/180;
    top: max(-40px,  calc(-40 / 1366 * 100vw));
    left: max(-80px,  calc(-80 / 1366 * 100vw));
    width: min(1100px,  calc(1100 / 1366 * 100vw));
  }

  .page .outline-header .image {
    width: min(516px,  calc(516 / 1366 * 100vw));
    top: max(-60px,  calc(-60 / 1366 * 100vw));
    margin-right: max(-80px,  calc(-80 / 1366 * 100vw));
  }

  .page h2.type1 {
    width: min(690px,  calc(690 / 1366 * 100vw));
    margin-left: max(-30px,  calc(-30 / 1366 * 100vw));
  }

  .page h2.type1::before,
  .page h2.type1::after {
    clip-path: polygon(0 0, 100% 0, calc(100% - min(70px,  calc(70 / 1366 * 100vw))) 100%, 0% 100%);
  }

  .page h2.type1::before {
    transform: translate(min(8px,  calc(8 / 1366 * 100vw)), min(8px,  calc(8 / 1366 * 100vw)));
  }

  .page h2.type1 span {
    height: min(180px,  calc(180 / 1366 * 100vw));
    padding: 0 min(30px,  calc(30 / 1366 * 100vw));
  }

  .page h2.type1 span::before {
    background-image: repeating-linear-gradient(0deg, transparent, transparent min(10px,  calc(10 / 1366 * 100vw)), var(--color-white) min(10px,  calc(10 / 1366 * 100vw)), var(--color-white) min(20px,  calc(20 / 1366 * 100vw)));
    width: min(400px,  calc(400 / 1366 * 100vw));
  }

  .page h2.type1 span::after {
    right: min(60px,  calc(60 / 1366 * 100vw));
    width: min(200px,  calc(200 / 1366 * 100vw));
  }

  .page h2.type2 {
    margin-left: 0;
    padding: min(10px,  calc(10 / 1366 * 100vw)) min(20px,  calc(20 / 1366 * 100vw));
    clip-path: polygon(0 0, 100% 0, calc(100% - min(40px,  calc(40 / 1366 * 100vw))) 100%, 0% 100%);
  }

  .page .type-h3 {
    gap: min(12px,  calc(12 / 1366 * 100vw));
    padding-bottom: min(16px,  calc(16 / 1366 * 100vw));
    margin-bottom: min(30px,  calc(30 / 1366 * 100vw));
  }

  .page .type-h3::before {
    width: min(30px,  calc(30 / 1366 * 100vw));
    transform: translateY(min(4px,  calc(4 / 1366 * 100vw)));
  }

  .page .type-h3::after {
    -webkit-mask-image: url(../img/common/line@pc.svg);
    mask-image: url(../img/common/line@pc.svg);
    aspect-ratio: 940/8;
    height: auto;
  }

  .page .type-h4 {
    padding-left: min(10px,  calc(10 / 1366 * 100vw));
  }

  .page .caution-box {
    padding: min(15px,  calc(15 / 1366 * 100vw)) min(20px,  calc(20 / 1366 * 100vw));
  }

  .page .link {
    transition: opacity 0.3s;
  }

  .page .table th,
  .page .table td {
    padding: min(16px,  calc(16 / 1366 * 100vw)) min(20px,  calc(20 / 1366 * 100vw));
  }

  .page .table th {
    width: min(240px,  calc(240 / 1366 * 100vw));
    vertical-align: top;
  }

  .page.game h1 {
    width: min(318px,  calc(318 / 1366 * 100vw));
  }

  .page.game .flow li .title img {
    height: min(28px,  calc(28 / 1366 * 100vw));
  }

  .page.game .flow li .content img {
    height: min(18px,  calc(18 / 1366 * 100vw));
  }

  .page.game .flow li.flow-1 .title img {
    height: min(53px,  calc(53 / 1366 * 100vw));
    margin-left: min(16px,  calc(16 / 1366 * 100vw));
  }

  .page.game .flow li.flow-2 .title img {
    height: min(55px,  calc(55 / 1366 * 100vw));
  }

  .page.game .flow li.flow-2 .content {
    padding-right: min(18px,  calc(18 / 1366 * 100vw));
  }

  .page.game .flow li.flow-3 .title img {
    height: min(24px,  calc(24 / 1366 * 100vw));
  }

  .page.cardgame h1 {
    width: min(495px,  calc(495 / 1366 * 100vw));
  }

  .page.cardgame .flow li .title img {
    height: min(24px,  calc(24 / 1366 * 100vw));
  }

  .page.cardgame .flow li .content img {
    height: min(18px,  calc(18 / 1366 * 100vw));
  }

  .page.cardgame .flow li.flow-1 .content img {
    height: min(55px,  calc(55 / 1366 * 100vw));
  }

  .page.cardgame .flow::before {
    top: 185%;
  }

  .page.pokemongo h1 {
    width: min(542px,  calc(542 / 1366 * 100vw));
  }

  .page.pokemongo .flow li.flow-1 .title img {
    height: min(28px,  calc(28 / 1366 * 100vw));
  }

  .page.pokemongo .flow li.flow-1 .content img {
    height: min(44px,  calc(44 / 1366 * 100vw));
  }

  .page.pokemongo .flow li.flow-2 .title img {
    height: min(24px,  calc(24 / 1366 * 100vw));
  }

  .page.pokemongo .flow li.flow-2 .content img {
    height: min(18px,  calc(18 / 1366 * 100vw));
  }

  .page.pokemonunite h1 {
    width: min(624px,  calc(624 / 1366 * 100vw));
  }

  .page.pokemonunite .flow li.flow-1 .content {
    padding-right: min(9px,  calc(9 / 1366 * 100vw));
  }

  .page.pokemonunite .flow li.flow-1 .title img {
    height: min(28px,  calc(28 / 1366 * 100vw));
  }

  .page.pokemonunite .flow li.flow-1 .content img {
    height: min(44px,  calc(44 / 1366 * 100vw));
  }

  .page.pokemonunite .flow li.flow-2 .title img {
    height: min(24px,  calc(24 / 1366 * 100vw));
  }

  .page.pokemonunite .flow li.flow-2 .content img {
    height: min(18px,  calc(18 / 1366 * 100vw));
  }

  .page.guideline #header {
    padding-top: min(150px,  calc(150 / 1366 * 100vw));
  }

  .page.guideline h1 {
    width: min(595px,  calc(595 / 1366 * 100vw));
  }

  .page.game .ill1 {
    width: min(253px,  calc(253 / 1366 * 100vw));
    bottom: max(-170px,  calc(-170 / 1366 * 100vw));
    left: max(-190px,  calc(-190 / 1366 * 100vw));
  }

  .page.game .ill2 {
    width: min(327px,  calc(327 / 1366 * 100vw));
    top: auto;
    bottom: max(-115px,  calc(-115 / 1366 * 100vw));
    right: max(-200px,  calc(-200 / 1366 * 100vw));
  }

  .page.game .ill3 {
    width: min(388px,  calc(388 / 1366 * 100vw));
    top: auto;
    bottom: max(-310px,  calc(-310 / 1366 * 100vw));
    right: max(-205px,  calc(-205 / 1366 * 100vw));
  }

  .page.game .ill4._only_pc {
    width: min(269px,  calc(269 / 1366 * 100vw));
    top: max(-190px,  calc(-190 / 1366 * 100vw));
    right: max(-210px,  calc(-210 / 1366 * 100vw));
  }

  .page.cardgame .ill1 {
    width: min(464px,  calc(464 / 1366 * 100vw));
    top: max(-110px,  calc(-110 / 1366 * 100vw));
    left: max(-260px,  calc(-260 / 1366 * 100vw));
  }

  .page.cardgame .ill2 {
    width: min(175px,  calc(175 / 1366 * 100vw));
    top: min(40px,  calc(40 / 1366 * 100vw));
    right: max(-95px,  calc(-95 / 1366 * 100vw));
  }

  .page.cardgame .ill3 {
    width: min(529px,  calc(529 / 1366 * 100vw));
    top: max(-210px,  calc(-210 / 1366 * 100vw));
    left: max(-360px,  calc(-360 / 1366 * 100vw));
  }

  .page.cardgame .ill4 {
    width: min(377px,  calc(377 / 1366 * 100vw));
    bottom: auto;
    top: max(-210px,  calc(-210 / 1366 * 100vw));
    right: max(-170px,  calc(-170 / 1366 * 100vw));
  }

  .page.pokemongo .ill1 {
    width: min(253px,  calc(253 / 1366 * 100vw));
    bottom: max(-160px,  calc(-160 / 1366 * 100vw));
    left: max(-190px,  calc(-190 / 1366 * 100vw));
  }

  .page.pokemongo .ill2 {
    width: min(327px,  calc(327 / 1366 * 100vw));
    top: max(-110px,  calc(-110 / 1366 * 100vw));
    right: max(-205px,  calc(-205 / 1366 * 100vw));
  }

  .page.pokemongo .ill3 {
    width: min(388px,  calc(388 / 1366 * 100vw));
    top: max(-30px,  calc(-30 / 1366 * 100vw));
    right: max(-195px,  calc(-195 / 1366 * 100vw));
  }

  .page.pokemongo .ill4._only_pc {
    width: min(267px,  calc(267 / 1366 * 100vw));
    top: max(-380px,  calc(-380 / 1366 * 100vw));
    right: max(-210px,  calc(-210 / 1366 * 100vw));
  }

  .page.pokemonunite .ill1 {
    width: min(464px,  calc(464 / 1366 * 100vw));
    bottom: max(-160px,  calc(-160 / 1366 * 100vw));
    left: max(-280px,  calc(-280 / 1366 * 100vw));
  }

  .page.pokemonunite .ill2 {
    width: min(175px,  calc(175 / 1366 * 100vw));
    bottom: max(-160px,  calc(-160 / 1366 * 100vw));
    right: max(-140px,  calc(-140 / 1366 * 100vw));
  }

  .page.pokemonunite .ill3 {
    width: min(377px,  calc(377 / 1366 * 100vw));
    bottom: auto;
    top: min(10px,  calc(10 / 1366 * 100vw));
    right: max(-235px,  calc(-235 / 1366 * 100vw));
  }

  .page.pokemonunite .ill4 {
    width: min(529px,  calc(529 / 1366 * 100vw));
    bottom: auto;
    top: min(40px,  calc(40 / 1366 * 100vw));
    left: max(-300px,  calc(-300 / 1366 * 100vw));
  }

  .gap {
    gap: 0.8em;
  }

  .gap-s {
    gap: 0.6em;
  }

  .gap-l {
    gap: 1.4em;
  }

  .mb-4l {
    margin-bottom: 4em;
  }

  .mb-3l {
    margin-bottom: 3em;
  }

  .mb-2l {
    margin-bottom: 2em;
  }

  .mb-1l {
    margin-bottom: 1em !important;
  }

  .pt-2l {
    padding-top: 2em;
  }
}

@media print and (hover: hover), screen and (min-width: 768px) and (hover: hover) {
  .page .entry .button a:hover,
  .page #detail .button a:hover {
    opacity: 0.6;
  }

  .page .link:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .page .entry .button a:hover,
  .page #detail .button a:hover {
    opacity: 0.6;
  }

  .page .link:hover {
    opacity: 0.7;
  }
}

@media only screen and (max-width: 767.8px) {
  .page .entry .button a .text,
  .page #detail .button a .text {
    font-size: 2.8rem;
  }

  .page .box {
    font-size: 3rem;
  }

  .page .lead {
    font-size: 3rem;
  }

  .page .entry h3 {
    font-size: 4.4rem;
  }

  .page .entry dl {
    gap: 0.8em;
  }

  .page .entry dl div {
    flex-direction: column;
  }

  .page .entry dl dt {
    font-size: 2.8rem;
  }

  .page .entry dl dt {
    gap: 0.8em;
  }

  .page .entry dl dd {
    font-size: 3rem;
  }

  .page .entry .caution {
    text-align: left;
  }

  .page .schedule-col-1 .date1 .date,
  .page .schedule-col-1 .date2 .date,
  .page .schedule-col-2 .date1 .date,
  .page .schedule-col-2 .date2 .date {
    font-size: 4rem;
  }

  .page #detail h2 {
    font-size: 3.8rem;
  }

  .page h2.type1 span {
    font-size: 5.4rem;
  }

  .page h2.type2 {
    font-size: 4rem;
  }

  .page .type-h3 {
    font-size: 3.6rem;
  }

  .page .type-h4 {
    font-size: 3rem;
  }

  .page .caution {
    font-size: 2.4rem;
  }

  .page .caution-box {
    font-size: 2.4rem;
  }

  .page .table {
    border-bottom: 1px solid #ccc;
  }

  .page .table th,
  .page .table td {
    display: block;
  }

  .page .table td {
    padding: 2.6666666667vw 5.3333333333vw 4vw 5.3333333333vw;
    border-bottom: none;
  }

  .page.game h2.type1 span {
    font-size: 4rem;
  }

  .page.cardgame #header {
    padding-top: 33.3333333333vw;
  }

  .page.pokemongo .flow li .inner {
    height: 26.6666666667vw;
  }

  .page.pokemonunite #header {
    padding-top: 33.3333333333vw;
  }

  .page.pokemonunite .flow li .inner {
    height: 26.6666666667vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1365.8px) {
  .page .entry .button a .text,
  .page #detail .button a .text {
    font-size: 2rem;
  }

  .page .box {
    font-size: 1.8rem;
  }

  .page .lead {
    font-size: 2rem;
  }

  .page .entry h3 {
    font-size: 2.4rem;
  }

  .page .entry dl dt {
    font-size: 1.6rem;
  }

  .page .entry dl dd {
    font-size: 1.8rem;
  }

  .page .schedule-col-1 .date1 .date,
  .page .schedule-col-1 .date2 .date,
  .page .schedule-col-2 .date1 .date,
  .page .schedule-col-2 .date2 .date {
    font-size: 3rem;
  }

  .page #detail h2 {
    font-size: 2.4rem;
  }

  .page h2.type1 span {
    font-size: 3.6rem;
  }

  .page h2.type2 {
    font-size: 2.6rem;
  }

  .page .type-h3 {
    font-size: 2.4rem;
  }

  .page .type-h4 {
    font-size: 1.8rem;
  }

  .page .caution {
    font-size: 1.4rem;
  }

  .page .caution-box {
    font-size: 1.4rem;
  }

  .page.game h2.type1 span {
    font-size: 2.6rem;
  }
}