@charset "UTF-8";
/* ======================================
   section spacing（上下）
====================================== */
/* pc */
/* sp */
/* ======================================
   inner（左右）
====================================== */
/* PC width */
/* SP padding */
/* ==========================================================================
   Primitive color
========================================================================== */
/* Base */
/* Blue scale */
/* Navy */
/* Gray */
/* ==========================================================================
   Semantic color
========================================================================== */
/* Brand */
/* Accent */
/* Text */
/* ==========================================================================
   Surface
========================================================================== */
/* ==========================================================================
   State
========================================================================== */
/* Button - CTA */
/* Button - Primary */
/* Button - Secondary */
/* Header */
/* Footer */
/* breakpoint */
/* sp */
/* pc */
/* tablet */
/* hover */
/* reduce motion */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

:root {
  --header-h: 80px;
}

@media (max-width: 767px) {
  :root {
    --header-h: 50px;
  }
}
html {
  margin: 0;
  font-size: 62.5%;
  line-height: 1.5;
  word-wrap: break-word;
  scrollbar-gutter: stable;
  scroll-padding-top: var(--header-h);
}
@media (min-width: 768px) and (max-width: 1279px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  min-height: 100%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  overflow-x: hidden;
  overflow-x: clip;
  padding-top: var(--header-h);
}

/* motion軽減設定の人にはスムーズスクロールを無効化 */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
a {
  text-decoration: none;
  transition: opacity 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    cursor: pointer;
  }
}
a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

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

ol,
ul {
  padding-inline-start: 0;
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

button {
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* visually-hidden（フォーカス時は見える） */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #003B90;
  color: #ffffff;
}
.l-header__inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
  min-width: 0;
}
@media (min-width: 768px) {
  .l-header__inner {
    height: 80px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .l-header__inner {
    justify-content: space-between;
    height: 50px;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .l-header__logo {
    flex-shrink: 0;
  }
}
@media (min-width: 768px) {
  .l-header__logo img {
    width: 165px;
    height: 44px;
  }
}
@media (max-width: 767px) {
  .l-header__logo img {
    width: 120px;
    height: 32px;
  }
}
@media (min-width: 768px) {
  .l-header__nav {
    display: block;
    position: static;
    transform: none;
    height: auto;
    min-width: 0;
    flex: 1 1 auto;
    margin-left: 24px;
  }
}
@media (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    padding: 107px 22px;
    transform: translateX(100%);
    transition: transform 0.2s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1300;
  }
}
@media (max-width: 767px) {
  .l-header.is-open .l-header__nav {
    transform: translateX(0);
  }
}
.l-header__nav-list {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .l-header__nav-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 1.6rem;
    min-width: 0;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .l-header__nav-list {
    width: 100%;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    gap: 34px;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
  }
}
.l-header__nav-list a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__nav-list a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .l-header__overlay {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-image: url(/specialevent/girlsfes/assets/img/common/navi-bg_sp.jpg);
  }
}
@media (min-width: 768px) {
  .l-header__drawer-extra {
    display: none;
  }
}
@media (max-width: 767px) {
  .l-header__drawer-extra {
    display: block;
    margin-top: 60px;
  }
}
.l-header__sns {
  margin: 40px 0 0 0;
  padding: 30px 0 0 0;
  border-top: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.l-header__sns ._logo {
  max-width: 27px;
  max-height: 27px;
}
.l-header {
  /* ---------- hamburger ---------- */
}
@media (min-width: 768px) {
  .l-header__toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .l-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    padding: 0;
    position: relative;
  }
}
.l-header__toggleLine {
  position: absolute;
  left: 5px;
  right: 5px;
  height: 4px;
  background: #E95B95;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.l-header__toggleLine:nth-child(1) {
  top: 11px;
}
.l-header__toggleLine:nth-child(2) {
  top: 21px;
}
.l-header__toggleLine:nth-child(3) {
  top: 31px;
}
@media (max-width: 767px) {
  .l-header.is-open .l-header__toggle {
    position: fixed;
    top: 8px;
    right: 10px;
    z-index: 1300;
  }
}
.l-header.is-open .l-header__toggleLine {
  background: #E95B95;
}
.l-header.is-open .l-header__toggleLine:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.l-header.is-open .l-header__toggleLine:nth-child(2) {
  opacity: 0;
}
.l-header.is-open .l-header__toggleLine:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

.l-footer {
  background: #E95B95;
  color: #ffffff;
}
.l-footer__inner {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-footer__inner {
    max-width: 800px;
    padding: 60px 0 100px;
  }
}
@media (max-width: 767px) {
  .l-footer__inner {
    position: relative;
    padding: 40px 20px 120px;
  }
}
.l-footer__logo {
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__logo a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .l-footer__logo img {
    width: 90px;
    height: 84px;
  }
}
.l-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 0 0;
}
@media (min-width: 768px) {
  .l-footer__sns {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .l-footer__sns {
    gap: 25px;
  }
}
.l-footer__sns ._link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__sns ._link:hover {
    opacity: 0.7;
  }
}
.l-footer__sns ._link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
  border-radius: 6px;
}
.l-footer__sns ._logo {
  display: block;
}
@media (min-width: 768px) {
  .l-footer__sns ._logo {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .l-footer__sns ._logo {
    width: 28px;
    height: 28px;
  }
}
.l-footer__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 20px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 768px) {
  .l-footer__nav {
    margin: 40px 0 0 0;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .l-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 0 0;
    gap: 20px 40px;
  }
}
.l-footer__nav a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .l-footer__nav a {
    width: calc((100% - 40px) / 2);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__nav a:hover {
    opacity: 0.7;
  }
}
.l-footer__nav a:nth-child(odd) {
  text-align: right;
}
.l-footer__copyright {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    margin: 40px 0 0 0;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .l-footer__copyright {
    margin: 30px 0 0 0;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .l-section {
    padding-block-start: 60px;
    padding-block-end: 80px;
  }
}
@media (min-width: 768px) {
  .l-section {
    padding-block-start: 80px;
    padding-block-end: 100px;
  }
}
.l-section.p-goods, .l-section.p-food {
  background-repeat: no-repeat;
  background-image: url(/specialevent/girlsfes/assets/img/goods/bg_pc.png);
}
@media (min-width: 768px) {
  .l-section.p-goods, .l-section.p-food {
    background-size: 1114px 662px;
    background-position: center 167px;
  }
}
@media (max-width: 767px) {
  .l-section.p-goods, .l-section.p-food {
    background-size: 527px 313px;
    background-position: center 85px;
  }
}
.l-section.p-goods + .p-food {
  padding-top: 0;
}
@media (min-width: 768px) {
  .l-section.p-food {
    background-position: center 87px;
  }
}
@media (max-width: 767px) {
  .l-section.p-food {
    background-position: center 25px;
  }
}

.l-inner {
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-inner {
    padding-inline: 20px;
  }
}
@media (max-width: 767px) {
  .l-inner {
    padding-left: max(clamp(20px, 4vw, 55px), env(safe-area-inset-left));
    padding-right: max(clamp(20px, 4vw, 55px), env(safe-area-inset-right));
  }
}
@media (min-width: 768px) {
  .l-inner--sm {
    max-width: 840px;
  }
}
@media (min-width: 768px) {
  .l-inner--md {
    max-width: 1040px;
  }
}
@media (min-width: 768px) {
  .l-inner--lg {
    max-width: 1280px;
  }
}
.l-inner--full {
  max-width: none;
}
@media (max-width: 767px) {
  .l-inner--sp-wide {
    padding-inline: 55px;
  }
}

.c-title {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .c-title {
    margin-bottom: 30px;
  }
}
.c-title--pink {
  color: #E95B95;
}
.c-title--blue {
  color: #003B90;
}
.c-title__main {
  font-family: "Roboto", sans-serif;
  display: block;
  font-weight: 700;
}
@media (min-width: 768px) {
  .c-title__main {
    font-size: 5.4rem;
  }
}
@media (max-width: 767px) {
  .c-title__main {
    font-size: 3.6rem;
  }
}
.c-title__sub {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  display: block;
  font-weight: 600;
}
@media (min-width: 768px) {
  .c-title__sub {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .c-title__sub {
    font-size: 1.4rem;
  }
}
.c-title__sub--en {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid;
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  font-weight: 700;
}
.c-button__label {
  line-height: 1;
}
.c-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-button__icon svg {
  display: block;
}
.c-button__label {
  line-height: 1;
  pointer-events: none;
}
.c-button__icon {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-button {
  /* --------------------------
      通常ボタン共通
  -------------------------- */
}
.c-button--primary, .c-button--secondary, .c-button--tertiary {
  font-size: 1.8rem;
}
.c-button--primary .c-button__icon, .c-button--secondary .c-button__icon, .c-button--tertiary .c-button__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: 0.3s;
}
.c-button--primary .c-button__icon svg, .c-button--secondary .c-button__icon svg, .c-button--tertiary .c-button__icon svg {
  width: 12px;
  height: 12px;
}
.c-button--primary .c-button__icon svg path, .c-button--secondary .c-button__icon svg path, .c-button--tertiary .c-button__icon svg path {
  transition: 0.3s;
}
.c-button {
  /* --------------------------
      Primary
  -------------------------- */
}
.c-button--primary {
  border: 2px solid;
  background: #E95B95;
  color: #ffffff;
  border-color: #ffffff;
}
@media (min-width: 768px) {
  .c-button--primary {
    width: 380px;
    height: 70px;
  }
}
@media (max-width: 767px) {
  .c-button--primary {
    width: 100%;
    height: 60px;
  }
}
.c-button--primary {
  /* --- icon --- */
}
.c-button--primary .c-button__icon {
  background: #ffffff;
}
.c-button--primary .c-button__icon svg path {
  fill: #E95B95;
}
.c-button--primary:hover {
  background: #ffffff;
  color: #E95B95;
  border-color: #E95B95;
}
.c-button--primary:hover .c-button__icon {
  background: #E95B95;
}
.c-button--primary:hover .c-button__icon svg path {
  fill: #ffffff;
}
.c-button {
  /* --------------------------
      Secondary　goods、foods
  -------------------------- */
}
.c-button--secondary {
  width: 380px;
  height: 70px;
  background: #ffffff;
  color: #003B90;
  border-color: #ffffff;
  /* --- icon --- */
}
.c-button--secondary .c-button__icon {
  background: #003B90;
}
.c-button--secondary .c-button__icon svg path {
  fill: #ffffff;
}
.c-button--secondary span {
  font-family: "Roboto", sans-serif;
}
.c-button--secondary:hover {
  background: #003B90;
  color: #ffffff;
  border-color: #ffffff;
}
.c-button--secondary:hover .c-button__icon {
  background: #ffffff;
}
.c-button--secondary:hover .c-button__icon svg path {
  fill: #003B90;
}
.c-button {
  /* --------------------------
      Tertiary　一覧を見る
  -------------------------- */
}
.c-button--tertiary {
  width: 340px;
  height: 70px;
  background: #003B90;
  color: #ffffff;
  border-color: #003B90;
  /* --- icon --- */
}
.c-button--tertiary .c-button__icon {
  background: #ffffff;
}
.c-button--tertiary .c-button__icon svg path {
  fill: #003B90;
}
.c-button--tertiary:hover {
  background: #ffffff;
  color: #003B90;
  border-color: #003B90;
}
.c-button--tertiary:hover .c-button__icon {
  background: #003B90;
}
.c-button--tertiary:hover .c-button__icon svg path {
  fill: #ffffff;
}
.c-button {
  /* --------------------------
      Cta　チケット購入
  -------------------------- */
  /* ボタンの種類 */
}
.c-button--cta {
  border: 3px solid;
  font-size: 2.4rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .c-button--cta {
    width: 250px;
    height: 100px;
    gap: 3px;
  }
}
@media (max-width: 767px) {
  .c-button--cta {
    width: 330px;
    height: 65px;
    gap: 8px;
  }
}
.c-button--cta .c-button__icon {
  position: static;
  transform: none;
  border-radius: 0;
  background: none;
}
@media (min-width: 768px) {
  .c-button--cta .c-button__icon {
    width: 45px;
    height: 47px;
  }
}
@media (max-width: 767px) {
  .c-button--cta .c-button__icon {
    width: 41px;
    height: 42px;
  }
}
.c-button--cta {
  background: #E95B95;
  color: #ffffff;
  border-color: #ffffff;
  /* --- icon --- */
}
.c-button--cta .c-button__icon svg path {
  fill: #ffffff;
}
.c-button--cta:hover {
  background: #ffffff;
  color: #E95B95;
  border-color: #E95B95;
}
.c-button--cta:hover .c-button__icon svg path {
  fill: #E95B95;
}

.c-fade--up {
  opacity: 0;
  transform: translateY(30px);
}
.c-fade--up.is-animated {
  animation: fade-up 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  will-change: opacity, transform;
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-fade--up {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
.c-bounce {
  opacity: 0;
  transform: scale(0.8);
}
.c-bounce.is-animated {
  opacity: 1;
  animation: bounceIn 0.8s ease forwards;
}
@media (min-width: 768px) {
  .c-bounce.delay-1 {
    animation-delay: 0.3s;
  }
}
@media (min-width: 768px) {
  .c-bounce.delay-2 {
    animation-delay: 0.5s;
  }
}
@media (min-width: 768px) {
  .c-bounce.delay-3 {
    animation-delay: 0.7s;
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

.c-fixed-cta {
  position: fixed;
  z-index: 100;
}
@media (min-width: 768px) {
  .c-fixed-cta {
    bottom: 50px;
    right: 50px;
  }
}
@media (max-width: 767px) {
  .c-fixed-cta {
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
  }
}

.c-pagetop {
  position: fixed;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-pagetop {
    width: 108px;
    height: 109px;
    right: 50px;
    bottom: 165px;
  }
}
@media (max-width: 767px) {
  .c-pagetop {
    width: 85px;
    height: 85px;
    right: 16px;
    bottom: 90px;
  }
}
.c-pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.c-pagetop__icon {
  font-weight: 500;
  transition: transform 0.25s ease;
  line-height: 1;
}
@media (min-width: 768px) {
  .c-pagetop__icon {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .c-pagetop__icon {
    font-size: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-pagetop:hover .c-pagetop__icon {
    transform: translateY(-4px);
  }
}

.p-kv {
  position: relative;
  overflow: hidden;
  background-color: #003B90;
}
@media (min-width: 768px) {
  .p-kv {
    aspect-ratio: 1512/605;
  }
}
@media (max-width: 767px) {
  .p-kv {
    aspect-ratio: 1/1;
  }
}
.p-kv img {
  width: 100%;
  height: auto;
}

.p-gameinfo {
  overflow-x: hidden;
  overflow-x: clip;
  background-color: #003B90;
  color: #ffffff;
}
.p-gameinfo__detail {
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .p-gameinfo__detail {
    margin: 0 auto;
    width: 590px;
  }
}
.p-gameinfo {
  /* --------------------------
     上部
  -------------------------- */
}
.p-gameinfo__head {
  padding: 20px 0 0;
}
@media (max-width: 767px) {
  .p-gameinfo__head {
    margin: 20px 20px 0;
  }
}
.p-gameinfo__league {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-gameinfo__league {
    margin: 0 auto 10px;
    gap: 18px;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__league {
    margin: 0 auto 14px;
    gap: 6px;
  }
}
.p-gameinfo__league::before, .p-gameinfo__league::after {
  content: "";
  display: block;
  flex: 1 1 auto;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #fff 0, #fff 4px, transparent 4px, transparent 10px);
  background-repeat: repeat-x;
  background-position: center;
}
.p-gameinfo__date {
  position: relative;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-gameinfo__date {
    padding: 20px 0 15px;
    font-size: 5.4rem;
    letter-spacing: -3.78px;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__date {
    font-size: 3.6rem;
    letter-spacing: -2.52px;
  }
}
.p-gameinfo__date span {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .p-gameinfo__date span {
    margin-left: 6px;
    margin-right: 20px;
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__date span {
    margin-left: 3px;
    margin-right: 4px;
    font-size: 1.6rem;
  }
}
.p-gameinfo__date:after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #fff 0, #fff 4px, transparent 4px, transparent 10px);
  background-repeat: repeat-x;
  z-index: 0;
}
.p-gameinfo {
  /* --------------------------
     下部
  -------------------------- */
}
.p-gameinfo__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-gameinfo__body {
    margin-top: 20px;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__body {
    gap: 0px;
    margin-top: 28px;
  }
}
.p-gameinfo__match {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #003a8f;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-gameinfo__match {
    padding: 12px 24px;
    width: 330px;
    height: 77px;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__match {
    padding: 12px 15px;
    min-width: 242px;
    height: 66px;
  }
}
.p-gameinfo__match-inner {
  text-align: left;
}
.p-gameinfo__vs {
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-gameinfo__vs {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__vs {
    font-size: 2rem;
  }
}
.p-gameinfo__team {
  font-weight: 500;
  color: #0081cc;
}
@media (min-width: 768px) {
  .p-gameinfo__team {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__team {
    font-size: 2.6rem;
  }
}
.p-gameinfo__stadium {
  margin: 5px 0 0 0;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-gameinfo__stadium {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__stadium {
    font-size: 1.2rem;
  }
}
.p-gameinfo__logo {
  aspect-ratio: 1/1;
  flex-shrink: 0;
  height: auto;
}
@media (min-width: 768px) {
  .p-gameinfo__logo {
    width: 60px;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__logo {
    width: 44px;
  }
}
.p-gameinfo__time {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-image: url(/specialevent/girlsfes/assets/img/gameinfo/bg-time.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .p-gameinfo__time {
    width: 200px;
    height: 178px;
    margin-top: -26px;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__time {
    width: 122px;
    height: 105px;
    margin-top: -16px;
    margin-left: -8px;
  }
}
.p-gameinfo__time-main {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .p-gameinfo__time-main {
    font-size: 4.6rem;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__time-main {
    font-size: 3rem;
  }
}
.p-gameinfo__time-sub {
  margin-top: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .p-gameinfo__time-sub {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .p-gameinfo__time-sub {
    font-size: 2rem;
  }
}
.p-gameinfo {
  /* --------------------------
      theme
  -------------------------- */
}
.p-gameinfo__theme {
  margin: 20px 0 0 0;
}
.p-gameinfo__theme img {
  transform: rotate(-3deg);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-gameinfo__theme img {
    width: 100%;
  }
}

.p-uniform {
  overflow: hidden;
  background-image: repeating-linear-gradient(90deg, #dbdfea, #dbdfea 1px, transparent 1px, transparent 20px), repeating-linear-gradient(0deg, #dbdfea, #dbdfea 1px, #fff 1px, #fff 20px);
  color: #000000;
}
@media (max-width: 767px) {
  .p-uniform {
    overflow: hidden;
  }
}
.p-uniform__slidewrap {
  position: relative;
}
@media (max-width: 767px) {
  .p-uniform__slidewrap {
    margin: 100px 10px 290px;
  }
}
.p-uniform__slider {
  position: relative;
}
@media (max-width: 767px) {
  .p-uniform__slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: visible;
  }
}
@media (min-width: 768px) {
  .p-uniform__slider {
    overflow: visible;
  }
}
.p-uniform__slider::before, .p-uniform__slider::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .p-uniform__slider::before {
    top: -150px;
    right: -159px;
    width: 286px;
    height: 636px;
    background-image: url("/specialevent/girlsfes/assets/img/uniform/bg-top_pc.png");
  }
}
@media (max-width: 767px) {
  .p-uniform__slider::before {
    top: -105px;
    right: -30px;
    width: 217px;
    height: 148px;
    z-index: 5;
    background-image: url("/specialevent/girlsfes/assets/img/uniform/bg-top_sp.png");
  }
}
@media (min-width: 768px) {
  .p-uniform__slider::after {
    bottom: -80px;
    left: -200px;
    width: 294px;
    height: 381px;
    background-image: url("/specialevent/girlsfes/assets/img/uniform/bg-bottom_pc.png");
  }
}
@media (max-width: 767px) {
  .p-uniform__slider::after {
    bottom: -275px;
    right: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 780/459;
    z-index: 5;
    background-image: url("/specialevent/girlsfes/assets/img/uniform/bg-bottom_sp.png");
  }
}
.p-uniform__slide img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .p-uniform__slide--01 img {
    width: 402px;
    height: 548px;
  }
}
@media (min-width: 768px) {
  .p-uniform__slide--02 img {
    width: 413px;
    height: 550px;
  }
}
@media (min-width: 768px) {
  .p-uniform__slide--03 {
    margin-top: 13px;
  }
}
@media (min-width: 768px) {
  .p-uniform__slide--03 img {
    width: 414px;
    height: 557px;
  }
}
@media (min-width: 768px) {
  .p-uniform__slide--04 img {
    width: 409px;
    height: 548px;
  }
}
.p-uniform__nav {
  position: absolute;
  z-index: 20;
  background: #E95B95;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  cursor: pointer;
}
@media (min-width: 768px) {
  .p-uniform__nav {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-uniform__nav {
    bottom: -24px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .p-uniform__nav--prev {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .p-uniform__nav--next {
    right: 20px;
  }
}
.p-uniform__nav span {
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-uniform__nav span {
    font-size: 3.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-uniform__nav:hover {
    opacity: 0.7;
  }
}
.p-uniform__nav.is-disabled, .p-uniform__nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.p-uniform {
  /* ▼ 追加 */
}
.p-uniform__nav-icon {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.p-uniform__pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
}
@media (min-width: 768px) {
  .p-uniform__pagination {
    display: none;
  }
}
.p-uniform__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  border-radius: 0;
  background: #a3a3a3;
  opacity: 0.4;
}
.p-uniform__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #003B90;
}
.p-uniform__button {
  text-align: center;
}
@media (min-width: 768px) {
  .p-uniform__button {
    margin: 60px auto 10px;
  }
}
.p-uniform__note {
  font-size: 1rem;
  color: #003B90;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-uniform__note {
    margin: 20px auto 0;
  }
}
.p-uniform .swiper {
  overflow: visible;
}
@media (max-width: 767px) {
  .p-uniform .swiper {
    overflow: hidden;
    padding-inline: 20px;
  }
}
.p-uniform .swiper-wrapper {
  align-items: stretch;
  will-change: transform;
}
@media (min-width: 768px) {
  .p-uniform .swiper-wrapper {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 40px 51px;
    justify-content: center;
    transform: none !important;
  }
}
.p-uniform .swiper-slide {
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .p-uniform .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .p-uniform .swiper-slide {
    width: 100% !important;
    max-width: none;
  }
}

.p-guest {
  background-color: #E95B95;
  color: #ffffff;
}
@media (max-width: 767px) {
  .p-guest {
    overflow: hidden;
  }
}
.p-guest__item {
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .p-guest__item {
    width: 800px;
    padding: 75px 100px 50px;
  }
}
@media (max-width: 767px) {
  .p-guest__item {
    width: 100%;
    padding: 45px 20px 30px;
  }
}
.p-guest__img {
  margin: 0;
}
.p-guest__img img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  height: auto;
  display: block;
}
.p-guest__title {
  margin: -14px 0 0 0;
  display: inline-block;
  padding: 4px 16px;
  background-color: #003B90;
  transform: rotate(-2.249deg);
  transform-origin: center;
  font-weight: 800;
}
@media (min-width: 768px) {
  .p-guest__title {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .p-guest__title {
    font-size: 2rem;
  }
}
.p-guest__text {
  margin: 40px 0 0 0;
  color: #E95B95;
  line-height: 1.62;
  font-weight: 500;
}
.p-guest__button {
  margin: 40px 0 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .p-guest__button {
    margin: 40px 5px 0;
  }
}

.p-guest-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  background-color: #ffffff;
  overflow: hidden;
}
.p-guest-card__img {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-guest-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-guest-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 10px 15px 15px;
}
.p-guest-card__title {
  color: #003B90;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.4;
}
.p-guest-card__meta {
  color: #000000;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.15px;
}
.p-guest-card__link {
  margin-top: auto;
  color: #E95B95;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.08em;
}

.p-collabo {
  background-image: url("/specialevent/girlsfes/assets/img/bg/pattern-tile.png");
  background-repeat: repeat;
  background-position: top left;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-collabo {
    padding-block-end: 160px;
  }
}
@media (max-width: 767px) {
  .p-collabo {
    overflow: hidden;
    padding-block-end: 120px;
  }
}
.p-collabo__item {
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .p-collabo__item {
    padding: 50px 100px;
  }
}
@media (max-width: 767px) {
  .p-collabo__item {
    padding: 30px 20px;
  }
}
.p-collabo__img {
  margin: 0;
}
.p-collabo__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-collabo__title {
  margin: -14px 0 0 0;
  display: inline-block;
  padding: 4px 16px;
  background-color: #003B90;
  transform: rotate(-2.249deg);
  transform-origin: center;
  font-weight: 800;
}
@media (min-width: 768px) {
  .p-collabo__title {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .p-collabo__title {
    font-size: 2rem;
  }
}
.p-collabo__text {
  margin: 40px 0 0 0;
  color: #E95B95;
  line-height: 1.62;
  font-weight: 500;
}
.p-collabo__button {
  margin: 40px 0 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .p-collabo__button {
    margin: 40px 5px 0;
  }
}

.p-event {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-event {
    margin-top: -81px;
    margin-bottom: -81px;
    padding-top: calc(80px + 81px);
    padding-bottom: calc(100px + 81px);
    clip-path: polygon(0 81px, 100% 0, 100% calc(100% - 81px), 0 100%);
  }
}
@media (max-width: 767px) {
  .p-event {
    margin-top: -30px;
    margin-bottom: -30px;
    padding-top: calc(60px + 30px);
    padding-bottom: calc(80px + 30px);
    clip-path: polygon(0 30px, 100% 0, 100% calc(100% - 30px), 0 100%);
  }
}
.p-event {
  background-image: repeating-linear-gradient(90deg, #dbdfea, #dbdfea 1px, transparent 1px, transparent 20px), repeating-linear-gradient(0deg, #dbdfea, #dbdfea 1px, #fff 1px, #fff 20px);
  color: #000000;
}
@media (max-width: 767px) {
  .p-event {
    overflow: hidden;
  }
}
.p-event__slidewrap {
  position: relative;
}
@media (max-width: 767px) {
  .p-event__slidewrap {
    margin: 0 0 25px;
  }
}
.p-event__slider {
  position: relative;
}
@media (min-width: 768px) {
  .p-event__slider {
    max-width: 1140px;
    margin: 0 auto;
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .p-event__slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: visible;
  }
}
.p-event__slide img {
  display: block;
  width: 100%;
  height: auto;
}
.p-event__nav {
  position: absolute;
  z-index: 20;
  background: #E95B95;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  cursor: pointer;
}
@media (min-width: 768px) {
  .p-event__nav {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-event__nav {
    bottom: -24px;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .p-event__nav--prev {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .p-event__nav--next {
    right: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-event__nav:hover {
    opacity: 0.7;
  }
}
.p-event__nav.is-disabled, .p-event__nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.p-event {
  /* ▼ 追加 */
}
.p-event__nav-icon {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.p-event {
  /* 左だけ反転 */
}
.p-event__nav-icon--prev {
  transform: scaleX(-1);
}
.p-event__pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 55px;
}
@media (min-width: 768px) {
  .p-event__pagination {
    display: none;
  }
}
.p-event__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  border-radius: 0;
  background: #a3a3a3;
  opacity: 0.4;
}
.p-event__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #003B90;
}
.p-event__button {
  text-align: center;
}
.p-event__note {
  font-size: 1rem;
  color: #003B90;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.p-event .swiper {
  overflow: visible;
}
@media (max-width: 767px) {
  .p-event .swiper {
    padding-inline: 30px;
  }
}
.p-event .swiper-wrapper {
  align-items: stretch;
  will-change: transform;
}
@media (min-width: 768px) {
  .p-event .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: none !important;
  }
}
.p-event .swiper-slide {
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .p-event .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .p-event .swiper-slide {
    width: 100% !important;
    max-width: none;
  }
}

.p-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #003B90;
}
.p-event-card__img {
  margin: 0;
  aspect-ratio: 36/30;
  overflow: hidden;
}
.p-event-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-event-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 10px 15px 15px;
}
.p-event-card__title {
  color: #003B90;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.4;
}
.p-event-card__meta {
  color: #000000;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.15px;
}
.p-event-card__link {
  margin-top: auto;
  color: #E95B95;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.08em;
}

.p-areamap {
  overflow: hidden;
  background-color: #E95B95;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-areamap {
    padding-block-start: 160px;
    padding-block-end: 293px;
  }
}
@media (max-width: 767px) {
  .p-areamap {
    padding-block-start: 120px;
    padding-block-end: 184px;
  }
}
.p-areamap .l-inner {
  position: relative;
}
.p-areamap .l-inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .p-areamap .l-inner::after {
    bottom: -230px;
    right: -244px;
    width: 760px;
    height: 213px;
    background-image: url("/specialevent/girlsfes/assets/img/areamap/bg.png");
  }
}
@media (max-width: 767px) {
  .p-areamap .l-inner::after {
    bottom: -120px;
    right: 20px;
    aspect-ratio: 760/213;
    width: calc(100% - 40px);
    height: auto;
    background-image: url("/specialevent/girlsfes/assets/img/areamap/bg.png");
  }
}

.p-section-bg {
  position: relative;
  overflow: hidden;
  background-color: #003B90;
}

@media (min-width: 768px) {
  .p-item-slider {
    --content-w: 1040px;
    --slide-w: 300px;
  }
}
.p-item-slider__inner {
  position: relative;
}
@media (min-width: 768px) {
  .p-item-slider__inner {
    max-width: var(--content-w);
    margin: 0 auto;
    position: relative;
  }
}
@media (max-width: 767px) {
  .p-item-slider__inner {
    max-width: none;
    margin: 0 30px;
  }
}
.p-item-slider__rail {
  position: relative;
}
@media (min-width: 768px) {
  .p-item-slider__rail {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
@media (max-width: 767px) {
  .p-item-slider__rail {
    width: 100%;
    margin: 0;
  }
}
.p-item-slider__nav {
  position: absolute;
  transform: translateY(-50%);
  transition: opacity 0.2s;
  z-index: 10;
  background: #F2EA4C;
  color: #003B90;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .p-item-slider__nav {
    top: 50%;
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .p-item-slider__nav {
    bottom: -25px;
    width: 60px;
    height: 60px;
    transform: none;
  }
}
@media (min-width: 768px) {
  .p-item-slider__nav--prev {
    left: -92px;
  }
}
@media (max-width: 767px) {
  .p-item-slider__nav--prev {
    left: -30px;
  }
}
@media (min-width: 768px) {
  .p-item-slider__nav--next {
    right: -92px;
  }
}
@media (max-width: 767px) {
  .p-item-slider__nav--next {
    right: -30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-item-slider__nav:hover {
    opacity: 0.7;
  }
}
.p-item-slider__nav-icon {
  display: block;
  fill: currentColor;
}
@media (min-width: 768px) {
  .p-item-slider__nav-icon {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 767px) {
  .p-item-slider__nav-icon {
    width: 24px;
    height: 24px;
  }
}
.p-item-slider__pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 65px;
}
@media (min-width: 768px) {
  .p-item-slider__pagination {
    display: none;
  }
}
.p-item-slider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  border-radius: 0;
  background: #a3a3a3;
  opacity: 0.4;
}
.p-item-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #E95B95;
}
.p-item-slider__button {
  display: flex;
  justify-content: center;
  margin: 80px 0 0 0;
}
@media (min-width: 768px) {
  .p-item-slider .swiper {
    overflow: visible;
  }
}
.p-item-slider .swiper-wrapper {
  align-items: stretch;
}
@media (min-width: 768px) {
  .p-item-slider .swiper-wrapper {
    padding-left: max(20px, (100vw - 1040px) / 2);
    padding-right: max(20px, (100vw - 1040px) / 2);
  }
}
.p-item-slider .swiper-slide {
  flex: 0 0 auto;
  height: auto;
}
@media (min-width: 768px) {
  .p-item-slider .swiper-slide {
    width: 300px;
  }
}
.p-item-slider .swiper-slide > * {
  height: 100%;
}

.p-item-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background-color: #ffffff;
  height: 100%;
}
@media (min-width: 768px) {
  .p-item-card {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .p-item-card {
    width: 100%;
  }
}
.p-item-card__img {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.p-item-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-item-card__body {
  padding: 10px 15px 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.p-item-card__name {
  margin: 3px 0 0 0;
  font-size: 2rem;
  font-weight: 700;
  color: #E95B95;
}
.p-item-card__price {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-item-card__price span {
  margin: 0 3px 0 0;
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.p-news {
  overflow-x: hidden;
  overflow-x: clip;
  background-image: repeating-linear-gradient(90deg, #dbdfea, #dbdfea 1px, transparent 1px, transparent 20px), repeating-linear-gradient(0deg, #dbdfea, #dbdfea 1px, #fff 1px, #fff 20px);
  color: #000000;
}
.p-news__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-news__list {
    margin: 60px auto;
    max-width: 950px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .p-news__list {
    margin: 60px auto 40px;
    gap: 20px;
  }
}
.p-news__item {
  position: relative;
  width: 100%;
  border-radius: 10px;
  border: 2px solid #003B90;
  background: #FFF;
}
@media (min-width: 768px) {
  .p-news__item {
    padding: 20px 70px 20px 20px;
  }
}
@media (max-width: 767px) {
  .p-news__item {
    padding: 16px 40px 16px 20px;
    font-size: 1.4rem;
  }
}
.p-news__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #F2EA4C;
  z-index: 0;
}
@media (min-width: 768px) {
  .p-news__item::before {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .p-news__item::before {
    width: 30px;
    height: 30px;
  }
}
.p-news__item::after {
  content: "\e5df";
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #003B90;
  font-size: 3rem;
}
@media (min-width: 768px) {
  .p-news__item::before {
    right: 10px;
  }
  .p-news__item::after {
    right: 19px;
  }
}
@media (max-width: 767px) {
  .p-news__item::before {
    right: 10px;
  }
  .p-news__item::after {
    right: 10px;
  }
}
.p-news__link {
  width: 100%;
  display: flex;
}
@media (min-width: 768px) {
  .p-news__link {
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .p-news__link {
    flex-direction: column;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news__link:hover .p-news__title {
    text-decoration: underline;
  }
}
.p-news__date {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-news__date {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .p-news__date {
    margin: 0 0 10px;
    font-size: 1.4rem;
  }
}
.p-news__title {
  color: #003B90;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-news__title {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-news__title {
    font-size: 1.4rem;
  }
}
.p-news__button {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-news__button {
    margin: 60px 0 0 0;
  }
}
@media (max-width: 767px) {
  .p-news__button {
    margin: 50px 0 0 0;
  }
}

@media (min-width: 768px) {
  .u-display--sp-only {
    display: none;
  }
}
@media (max-width: 767px) {
  .u-display--sp-only {
    display: block;
  }
}
@media (min-width: 768px) {
  .u-display--pc-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .u-display--pc-only {
    display: none;
  }
}