@charset "UTF-8";
/*
  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;
}

html {
  margin: 0;
  font-size: 62.5%;
  font-weight: 500;
  word-wrap: break-word;
  scrollbar-gutter: stable;
  scroll-padding-top: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  min-height: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  background: initial;
  overflow-x: clip;
}

/* 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 {
  vertical-align: bottom;
  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;
  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;
  width: 100%;
  z-index: 1000;
  background: #0064BE;
  /* ---------- nav（同一ソース） ---------- */
  /* ---------- hamburger ---------- */
  /* ---------- overlay ---------- */
}
.l-header__inner {
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    height: 80px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 50px;
    padding: 0 10px;
  }
}
.l-header__logo ._img {
  aspect-ratio: 120/114;
  display: block;
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-header__logo ._img {
    width: 78px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo ._img {
    width: 44px;
  }
}
@media screen and (min-width: 768px) {
  .l-header__logo--sp {
    display: none;
  }
}
.l-header__nav {
  position: static;
  transform: none;
  transition: none;
  width: auto;
  height: auto;
  background: transparent;
  z-index: auto;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: 100%;
    height: 100%;
    background-color: #d9d9d9;
    background-image: url(/specialevent/visitoruniform/assets/img/common/nav-bg_sp.jpg);
    background-size: cover;
    padding: 10px 10px 24px;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 767px) {
  .l-header.is-open .l-header__nav {
    transform: translateX(0);
  }
}
.l-header__navList {
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-header__navList {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__navList {
    margin: 100px 0 0 0;
    display: grid;
    gap: 8px;
  }
}
.l-header__navLink {
  text-decoration: none;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .l-header__navLink {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 6px;
    color: #fff;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__navLink {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #0064BE;
  }
  .l-header__navLink:focus-visible {
    background: #f5f5f5;
  }
}
@media screen and (max-width: 767px) and (hover: hover) and (pointer: fine) {
  .l-header__navLink:hover {
    background: #f5f5f5;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__navLink:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header__navLink ._en {
    display: block;
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header__navLink ._ja {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__navLink ._ja {
    display: block;
    font-size: 1.6rem;
  }
}
.l-header__toggle {
  display: none;
}
@media screen and (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: 2px;
  background: #fff;
  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 screen and (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: #0064BE;
}
.l-header.is-open .l-header__toggleLine:nth-child(1) {
  top: 21px;
  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: 21px;
  transform: rotate(-45deg);
}
.l-header__overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.35);
}
@media screen and (min-width: 768px) {
  .l-header__overlay {
    pointer-events: none;
  }
}

@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 50px;
  }
}

.l-footer {
  background: #0064BE;
}
.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 16px;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    position: relative;
    padding-top: 94px;
  }
}
.l-footer__sns {
  margin: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer__sns {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    gap: 35px;
  }
}
.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 #fff;
  outline-offset: 4px;
  border-radius: 6px;
}
.l-footer__sns ._logo {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-footer__sns ._logo {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns ._logo {
    width: 28px;
    height: 28px;
  }
}
.l-footer__copyright {
  text-align: center;
  color: #fff;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.1rem;
  }
}

.c-title {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 3.6rem;
  }
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  border-radius: 5px;
  transition: opacity 0.2s ease-in-out;
  /* バリアント（見た目の種類） */
}
.c-button:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}
.c-button::after {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 86px;
  height: 25px;
  content: "";
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: right 0.2s ease-in-out;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .c-button {
    height: 80px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-button {
    height: 60px;
    padding: 0 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    opacity: 0.6;
  }
  .c-button:hover::after {
    right: -30px;
  }
}
.c-button--primary {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, #0064BE 0%, #5ab1ff 80.29%);
}
.c-button--primary::after {
  background-image: url(/specialevent/visitoruniform/assets/img/common/button-icon-primary.svg);
}
@media screen and (min-width: 768px) {
  .c-button--primary {
    width: 440px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-button--primary {
    width: 85vw;
    font-size: 1.6rem;
  }
}
.c-button--secondary {
  color: #102c65;
  background: #fff;
  border: 2px solid #102c65;
}
.c-button--secondary::after {
  background-image: url(/specialevent/visitoruniform/assets/img/common/button-icon-secondary.svg);
}
@media screen and (min-width: 768px) {
  .c-button--secondary {
    width: 440px;
    min-width: 340px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-button--secondary {
    width: 85vw;
    font-size: 1.5rem;
  }
}

.c-movie {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.c-movie iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.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;
  }
}
.p-button {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
.p-button__txt {
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-button__txt {
    font-size: 1.2rem;
  }
}

.p-kv {
  position: relative;
  overflow: hidden;
  background-color: #cad4de;
  border-top: 1px #cad4de solid;
  /* 背景 */
  /* レイヤー共通 */
}
@media screen and (min-width: 768px) {
  .p-kv {
    aspect-ratio: 1920/830;
    --header-h: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv {
    aspect-ratio: 108/192;
    --header-h: 50px;
  }
}
.p-kv__bg {
  position: relative;
  width: 100%;
}
.p-kv__bg ._img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .p-kv__bg ._over {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-kv__bg ._over {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    pointer-events: none;
  }
}
.p-kv__layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
.p-kv__layer ._img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ======================================
   KV Animation (js-kv.is-ready で発火)
====================================== */
.js-kv.is-ready .p-kv__layer {
  animation-duration: 900ms;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-fill-mode: both;
  will-change: transform, opacity;
}
.js-kv.is-ready .p-kv__layer--1 {
  animation-name: kv-in-left;
  animation-delay: 0ms;
  z-index: 6;
}
.js-kv.is-ready .p-kv__layer--2 {
  animation-name: kv-in-right;
  animation-delay: 500ms;
  z-index: 5;
}
.js-kv.is-ready .p-kv__layer--3 {
  animation-name: kv-in-left;
  animation-delay: 1000ms;
  z-index: 4;
}
.js-kv.is-ready .p-kv__layer--4 {
  animation-name: kv-in-right;
  animation-delay: 1500ms;
  z-index: 3;
}
.js-kv.is-ready .p-kv__layer--5 {
  animation-name: kv-in-left;
  animation-delay: 2000ms;
  z-index: 2;
}
.js-kv.is-ready .p-kv__img--3mask {
  animation: kv-mask-on 1ms linear 750ms both;
}
.js-kv.is-ready .p-kv__img--3 {
  animation: kv-mask-off 1ms linear 750ms both;
}

@keyframes kv-in-left {
  from {
    opacity: 0;
    transform: translateX(-8%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes kv-in-right {
  from {
    opacity: 0;
    transform: translateX(8%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes kv-mask-on {
  to {
    opacity: 1;
  }
}
@keyframes kv-mask-off {
  to {
    opacity: 0;
  }
}
/* 動きが苦手な人用 */
@media (prefers-reduced-motion: reduce) {
  .js-kv.is-ready .p-kv__layer {
    animation: none !important;
    opacity: 1;
    transform: none;
    will-change: auto;
  }
  .js-kv.is-ready .p-kv__img--3 {
    opacity: 0;
  }
  .js-kv.is-ready .p-kv__img--3mask {
    opacity: 1;
  }
}
.p-movie {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-movie {
    background-image: url(/specialevent/visitoruniform/assets/img/movie-bg_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  .p-movie {
    background-image: url(/specialevent/visitoruniform/assets/img/movie-bg_sp.jpg);
  }
}
.p-movie__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-movie__inner {
    max-width: 1020px;
    padding: 120px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-movie__inner {
    padding: 50px 20px;
  }
}

.p-uniform {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-uniform {
    padding: 100px 0 120px;
    background-image: url(/specialevent/visitoruniform/assets/img/uniform-bg_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  .p-uniform {
    padding: 60px 0 100px;
    background-image: url(/specialevent/visitoruniform/assets/img/uniform-bg_sp.jpg);
  }
}
.p-uniform__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-uniform__inner {
    max-width: 980px;
  }
}
@media screen and (max-width: 767px) {
  .p-uniform__inner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-uniform__visual {
    margin: 55px auto 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-uniform__visual {
    margin: 44px auto 20px;
  }
}
.p-uniform__visual ._img {
  aspect-ratio: 98/50;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.p-uniform__text {
  line-height: 1.6;
  margin: 0 0 60px;
  text-align: center;
}
.p-uniform__title {
  margin: 0 0 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-uniform__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-uniform__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-uniform__txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-uniform__txt {
    font-size: 1.4rem;
  }
}
.p-uniform__txt + .p-uniform__txt {
  margin-top: 2rem;
}

.p-gallery {
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-gallery {
    padding: 100px 0 120px;
    background-image: url(/specialevent/visitoruniform/assets/img/gallery-bg_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  .p-gallery {
    padding: 60px 0 50px;
    background-image: url(/specialevent/visitoruniform/assets/img/gallery-bg_sp.jpg);
  }
}
.p-gallery__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-gallery__inner {
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__inner {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-gallery__head {
    position: relative;
    margin: 0 0 75px;
  }
}
.p-gallery__nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-gallery__nav {
    position: absolute;
    right: 0;
    top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__nav {
    position: absolute;
    left: 20px;
    bottom: 13vh;
    z-index: 5;
  }
}
.p-gallery__arrow {
  background: transparent;
  border: 0;
  cursor: pointer;
  /* 例：SVGを背景にしている場合 */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-gallery__arrow {
    width: 90px;
    height: 41px;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__arrow {
    width: 67px;
    height: 30px;
  }
}
.p-gallery__arrow--prev {
  background-image: url(/specialevent/visitoruniform/assets/img/common/button-slider-prev.svg);
}
.p-gallery__arrow--next {
  background-image: url(/specialevent/visitoruniform/assets/img/common/button-slider-next.svg);
}
.p-gallery__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .p-gallery__slidewrap {
    position: relative;
    padding: 22vh 0;
    margin: 30px 0 0 0;
  }
}
.p-gallery__slider {
  min-width: 0;
}
.p-gallery__slider .swiper {
  width: 100%;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-gallery__slider .swiper-wrapper {
    align-items: center;
  }
}
.p-gallery__slider .swiper-slide {
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-gallery__slider .swiper-slide {
    width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__slider .swiper-slide {
    width: 90vw;
    opacity: 0;
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__slider .swiper-slide.swiper-slide-active, .p-gallery__slider .swiper-slide.swiper-slide-prev, .p-gallery__slider .swiper-slide.swiper-slide-next {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__slider .swiper-slide.swiper-slide-active {
    pointer-events: auto;
    z-index: 3;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__slider .swiper-slide.swiper-slide-prev, .p-gallery__slider .swiper-slide.swiper-slide-next {
    z-index: 2;
  }
}
.p-gallery__item {
  transition: transform 0.5s ease, opacity 0.5s ease;
  will-change: transform;
  /* active */
  /* prev：左上 */
  /* next：右下 */
}
@media screen and (min-width: 768px) {
  .p-gallery__item {
    width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__item {
    width: 90vw;
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide-active .p-gallery__item {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}
@media screen and (min-width: 768px) {
  .swiper-slide-prev .p-gallery__item {
    transform: rotate(6deg) scale(0.85);
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide-prev .p-gallery__item {
    transform: translate3d(54vw, -24vh, 0) rotate(5deg) scale(0.7);
  }
}
@media screen and (min-width: 768px) {
  .swiper-slide-next .p-gallery__item {
    transform: rotate(6deg) scale(0.85);
  }
}
@media screen and (max-width: 767px) {
  .swiper-slide-next .p-gallery__item {
    transform: translate3d(-54vw, 24vh, 0) rotate(5deg) scale(0.7);
  }
}
.p-gallery__item ._img {
  display: block;
  width: 100%;
  height: auto;
}

.p-slogan {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-slogan {
    padding: 100px 0 120px;
    background-image: url(/specialevent/visitoruniform/assets/img/slogan-bg_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  .p-slogan {
    padding: 60px 0 100px;
    background-image: url(/specialevent/visitoruniform/assets/img/slogan-bg_sp.jpg);
  }
}
.p-slogan__text {
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-slogan__text {
    margin: 84px auto;
  }
}
@media screen and (max-width: 767px) {
  .p-slogan__text {
    margin: 60px auto;
  }
}
.p-slogan__txt {
  margin: 0 0 3rem;
}
@media screen and (min-width: 768px) {
  .p-slogan__txt {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-slogan__txt {
    font-size: 1.6rem;
  }
}
.p-slogan__txt span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-slogan__txt .u-sp-break {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .p-slogan__txt .u-sp-break {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-slogan__em {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-slogan__em {
    font-size: 2.4rem;
  }
}
.p-slogan__logo {
  text-align: center;
}
.p-slogan__logo picture {
  display: inline-block;
}
.p-slogan__logo ._img {
  display: block;
  height: auto;
}

.p-promotion {
  overflow-x: hidden;
  overflow-x: clip;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-promotion {
    padding: 120px 0;
    background-image: url(/specialevent/visitoruniform/assets/img/promotion-bg_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  .p-promotion {
    padding: 60px 0 80px;
    background-image: url(/specialevent/visitoruniform/assets/img/promotion-bg_sp.jpg);
  }
}
.p-promotion__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-promotion__inner {
    max-width: 980px;
  }
}
@media screen and (max-width: 767px) {
  .p-promotion__inner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-promotion__banner {
    margin: 0 auto 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-promotion__banner {
    margin: 0 auto 35px;
  }
}
.p-promotion__img {
  aspect-ratio: 192/108;
  width: 100%;
  height: auto;
  display: block;
}

.p-goods {
  overflow-x: hidden;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-goods {
    padding: 100px 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-goods {
    padding: 60px 0 100px;
  }
}
.p-goods__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-goods__inner {
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .p-goods__inner {
    padding-left: 20px;
  }
}
.p-goods__slidewrap {
  display: flex;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-goods__slidewrap {
    align-items: center;
    max-width: 1200px;
    margin: 80px auto 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-goods__slidewrap {
    flex-direction: column-reverse;
    margin: 60px 0 40px;
    gap: 18px;
  }
}
@media screen and (min-width: 768px) {
  .p-goods__nav {
    flex: 0 0 110px;
    display: grid;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-goods__nav {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    padding-right: 20px;
  }
}
.p-goods__arrow {
  background: transparent;
  border: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-goods__arrow {
    width: 120px;
    height: 55px;
  }
}
@media screen and (max-width: 767px) {
  .p-goods__arrow {
    width: 67px;
    height: 30px;
  }
}
.p-goods__arrow--prev {
  background-image: url(/specialevent/visitoruniform/assets/img/common/button-slider-prev.svg);
}
.p-goods__arrow--next {
  background-image: url(/specialevent/visitoruniform/assets/img/common/button-slider-next.svg);
}
.p-goods__arrow:disabled, .p-goods__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.p-goods__arrow.swiper-button-lock {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-goods__arrow:hover {
    opacity: 0.85;
  }
}
.p-goods__arrow:focus-visible {
  outline: 2px solid #102C65;
  outline-offset: 4px;
  border-radius: 6px;
}
.p-goods__slider {
  flex: 1 1 auto;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-goods__slider {
    margin-right: calc(50% - 50vw);
  }
}
.p-goods__slider .swiper {
  width: 100%;
}
.p-goods__slider .swiper-slide {
  width: auto;
}
.p-goods__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-goods__item {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-goods__item {
    width: 230px;
  }
}
.p-goods__img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.p-goods__name {
  color: #102C65;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-goods__name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-goods__name {
    font-size: 1.6rem;
  }
}
.p-goods__price {
  color: #000;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-goods__price {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-goods__price {
    font-size: 1.4rem;
  }
}

.p-news {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding: 100px 0 120px;
    background-image: url(/specialevent/visitoruniform/assets/img/news-bg_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  .p-news {
    padding: 60px 0 80px;
    background-image: url(/specialevent/visitoruniform/assets/img/news-bg_sp.jpg);
  }
}
.p-news__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .p-news__inner {
    padding: 0 20px;
  }
}
.p-news__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    margin: 60px auto;
    max-width: 890px;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-news__list {
    margin: 60px auto 40px;
    gap: 20px;
  }
}
.p-news__item {
  width: 100%;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}
@media screen and (min-width: 768px) {
  .p-news__item {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-news__item {
    padding: 12px;
    font-size: 1.4rem;
  }
}
.p-news__link {
  width: 100%;
}
.p-news__link:focus-visible {
  outline: 2px solid #102C65;
  outline-offset: 4px;
  border-radius: 6px;
}
@media (hover: hover) and (pointer: fine) {
  .p-news__link:hover {
    opacity: 0.7;
  }
}
.p-news__date {
  color: #747474;
  margin: 0 0 10px;
}
.p-news__title {
  color: #102C65;
}

@media screen and (min-width: 768px) {
  .p-copy {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-copy {
    padding: 75px 0;
  }
}
.p-copy__inner {
  overflow: hidden;
}
.p-copy__slider {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: copy-marquee 15s linear infinite;
}
.p-copy__img {
  flex-shrink: 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-copy__img {
    width: 1050px;
    height: 75px;
  }
}
@media screen and (max-width: 767px) {
  .p-copy__img {
    width: 437px;
    height: 36px;
  }
}
@keyframes copy-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-copy__slider {
    animation: none;
    transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  .p-pagetop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1300;
    /* 初期は非表示（PCのみ） */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
}
@media screen and (max-width: 767px) {
  .p-pagetop {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-pagetop.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.p-pagetop__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cad4de;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-pagetop__link {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-pagetop__link {
    width: 68px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-pagetop__link:hover {
    opacity: 0.85;
  }
}
.p-pagetop__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.p-pagetop__img {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-pagetop__img {
    width: 30px;
    height: 68px;
  }
}
@media screen and (max-width: 767px) {
  .p-pagetop__img {
    width: 20px;
    height: 46px;
  }
}

.u-color--white {
  color: #fff;
}
.u-color--black {
  color: #000;
}
.u-color--navy {
  color: #102C65;
}

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