/*!**************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/style.scss ***!
  \**************************************************************************************************************/
@charset "UTF-8";
/***
    The new CSS reset - version 1.9 (last updated 19.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable='false'])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable='true']) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/*ブレークポイントの設定*/
/*ブレークポイント*/
._2p3a {
  width: 100% !important;
}

html {
  scroll-behavior: smooth;
}

@media screen and (min-width: 701px) {
  :target {
    scroll-margin-top: 80px;
  }
}
body {
  color: #231815;
  background-color: #fff;
  font-size: 16px;
  font-family: 'Source Serif 4', 'Shippori Mincho', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body ::-webkit-scrollbar-track {
  background-color: #c5c5c5;
}
body ::-webkit-scrollbar-thumb {
  background-color: #231815;
}
body ::placeholder {
  color: #888888;
}
body input:focus {
  background: #e3ffff;
}

@media screen and (min-width: 701px) {
  body ::-webkit-scrollbar {
    width: 8px;
  }
  body ::-webkit-scrollbar-thumb {
    border-radius: 4px;
  }
}
@media screen and (max-width: 700px) {
  body ::-webkit-scrollbar {
    width: 8px;
  }
  body ::-webkit-scrollbar-thumb {
    border-radius: 4px;
  }
}
img {
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 701px) {
  .if-pc {
    display: block;
  }
  .if-tab {
    display: none !important;
  }
  .if-sp {
    display: none !important;
  }
}
@media screen and (701px <= width <= 1300px) {
  .if-pc {
    display: block;
  }
  .if-tab {
    display: block;
  }
  .if-sp {
    display: none !important;
  }
}
@media screen and (max-width: 700px) {
  .if-pc {
    display: none !important;
  }
  .if-tab {
    display: none !important;
  }
  .if-sp {
    display: block;
  }
}
.v-leave-active,
.v-enter-active {
  transition: opacity 1s;
}

/* 表示アニメーション */
.v-enter {
  opacity: 0;
}

.v-enter-to {
  opacity: 1;
}

/* 非表示アニメーション */
.v-leave {
  opacity: 1;
}

.v-leave-to {
  opacity: 0;
}

[v-cloak] {
  visibility: hidden;
}

.swiper-container {
  position: relative;
}

/* スライドの動き等速 */
.swiper-wrapper--top {
  transition-timing-function: linear !important;
}

/* 画像のサイズ調整 */
.swiper-image {
  height: auto;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 55%) !important;
}

.swiper-button-prev {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.swiper-button-next {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*　デフォルトのページネーションを消す */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}

.swiper-title {
  color: #fff;
  text-align: center;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.swiper-title--ticket {
  background-color: #cc7db1;
}

.swiper-slide--ticket {
  padding-left: 8px;
  padding-right: 8px;
}
.swiper-slide--sold-out {
  position: relative;
  pointer-events: none;
}
.swiper-slide--sold-out:after {
  position: absolute;
  content: 'SOLD OUT';
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  color: #fff;
  display: grid;
  place-items: center;
}

@media screen and (min-width: 701px) {
  .swiper--top {
    margin-top: 120px;
  }
  .swiper--ticket {
    max-width: 1300px;
  }
  .swiper-container {
    max-width: 1300px;
    width: 80%;
    margin: 0 auto;
  }
  .swiper-slide--ticket {
    padding-left: 8px;
    padding-right: 8px;
  }
  .swiper-image--top {
    aspect-ratio: 3/2;
  }
  .swiper-image--ticket {
    aspect-ratio: 3/2;
  }
  .swiper-button-prev {
    height: 36.3730669589px !important;
    width: 32px !important;
    left: var(--swiper-navigation-sides-offset, -3%) !important;
  }
  .swiper-button-next {
    height: 36.3730669589px !important;
    width: 32px !important;
    right: var(--swiper-navigation-sides-offset, -3%) !important;
  }
  .swiper-title {
    font-size: 16px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc7db1;
    background-color: #fff;
    font-weight: 800;
  }
  .swiper-button-prev--ticket,
  .swiper-button-next--ticket {
    background: #fff;
  }
}
@media screen and (701px <= width <= 1300px) {
  .swiper-button-prev {
    height: 27.7128129211px !important;
    width: 24px !important;
    left: var(--swiper-navigation-sides-offset, -3%) !important;
  }
  .swiper-button-next {
    height: 27.7128129211px !important;
    width: 24px !important;
    right: var(--swiper-navigation-sides-offset, -3%) !important;
  }
  .swiper-title {
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 700px) {
  .swiper--top {
    margin-top: 80px;
  }
  .swiper-image--top {
    aspect-ratio: 3/2;
  }
  .swiper-image--ticket {
    aspect-ratio: 3/2;
  }
  .swiper-button-prev {
    height: 17.3205080757px;
    width: 20px !important;
    left: var(--swiper-navigation-sides-offset, 3%) !important;
  }
  .swiper-button-next {
    height: 17.3205080757px;
    width: 20px !important;
    right: var(--swiper-navigation-sides-offset, 3%) !important;
  }
  .swiper-title {
    font-size: 16px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc7db1;
    background-color: #fff;
    font-weight: 800;
  }
  .swiper-button-prev--ticket,
  .swiper-button-next--ticket {
    background: #cc7db1;
  }
}
.l-header {
  transition: all 0.6s ease;
  z-index: 999999;
}

@media screen and (min-width: 701px) {
  .l-header {
    background-color: rgba(255, 255, 255, 0.93);
    position: fixed;
    width: 100%;
    height: 80px;
    box-sizing: content-box;
    opacity: 0;
    visibility: hidden;
  }
  .l-header--SP {
    display: none;
  }
  .l-header.active {
    opacity: 1;
    visibility: visible;
  }
  .l-header__inner {
    position: relative;
    max-width: 1300px;
    width: 100%;
    height: inherit;
    margin: 0 auto;
  }
  .l-header__logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
  }
  .l-header__sub-nav {
    position: absolute;
    top: 6px;
    right: 0;
    display: flex;
    column-gap: 16px;
  }
  .l-header__sub-nav-item {
    font-family:
      'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
    color: #727171;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    column-gap: 4px;
  }
  .l-header__sub-nav-item--triangle::before {
    content: '';
    display: block;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: 8px;
    height: 11px;
    background-color: #727171;
  }
  .l-header__sub-nav-item--new-tab::after {
    content: '';
    display: block;
    background-image: url(./background-images/new-tab-icon--gray.webp);
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .l-header__sub-nav-item--lock::before {
    content: '';
    display: block;
    background-image: url(./background-images/lock-icon.webp);
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 12px;
  }
  .l-header__nav-inner {
    position: absolute;
    right: 0;
    bottom: 8px;
    display: flex;
    justify-content: space-between;
    width: 80%;
  }
  .l-header__main-nav {
    display: flex;
    align-items: center;
    column-gap: 24px;
  }
  .l-header__main-nav-border {
    width: 2px;
    background-color: #c9caca;
    height: 24px;
  }
  .l-header__main-nav-item {
    color: #231815;
    font-weight: 400;
    font-size: 14px;
  }
  .l-header__SNS {
    display: flex;
    align-items: center;
    column-gap: 16px;
    right: 0;
    bottom: 8px;
  }
  .l-header__SNS-item {
    height: 24px;
  }
  .l-header__SNS-mypage {
    color: #fff;
    background-color: #231815;
    line-height: 1;
    display: flex;
    align-items: center;
    column-gap: 4px;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
  }
  .l-header__SNS-mypage-logo {
    width: 14px;
    object-fit: contain;
  }
}
@media screen and (701px <= width <= 1300px) {
  .l-header__inner {
    width: 97%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 700px) {
  .l-header--PC {
    display: none;
  }
  .l-header__hamburger {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 99999;
    opacity: 0;
    transition: all 0.6s ease;
    visibility: hidden;
  }
  .l-header__hamburger.active {
    opacity: 1;
    visibility: visible;
  }
  .l-header__hamburger-line {
    position: absolute;
    height: 2px;
    background-color: #dddccf;
    display: block;
    width: 32px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.4s;
    z-index: 2;
  }
  .l-header__hamburger-line--1 {
    top: 18px;
  }
  .l-header__hamburger-line--1.active {
    transform: rotate(-225deg);
    top: 27px;
  }
  .l-header__hamburger-line--2 {
    top: 50%;
    transform: translateY(-50%);
  }
  .l-header__hamburger-line--2.active {
    display: none;
  }
  .l-header__hamburger-line--3 {
    bottom: 18px;
  }
  .l-header__hamburger-line--3.active {
    transform: rotate(225deg);
    bottom: 27px;
  }
  .l-header__hamburger-background {
    position: fixed;
    right: 16px;
    top: 16px;
    display: block;
    width: 56px;
    height: 56px;
    background: #be0040;
    mix-blend-mode: multiply;
    border-radius: 50%;
    z-index: 9999;
    opacity: 0;
    transition: all 0.6s ease;
    visibility: hidden;
  }
  .l-header__hamburger-background.active {
    opacity: 1;
    visibility: visible;
  }
  .l-header__nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100dvh;
    transform: translateX(100%);
    background-color: #fff;
    z-index: 999;
    transition: all 0.4s;
    opacity: 0;
    padding: 64px 40px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
  }
  .l-header__nav.active {
    transform: translateX(0);
    opacity: 1;
  }
  .l-header__nav-title {
    text-align: center;
    border-top: 2px solid #cb3a39;
    border-bottom: 2px solid #cb3a39;
    padding-top: 16px;
    padding-bottom: 16px;
    font-weight: 600;
    color: #cb3a39;
    font-size: 20px;
  }
  .l-header__nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    place-items: center;
  }
  .l-header__nav-item {
    color: #cb3a39;
    padding-bottom: 2px;
    border-bottom: 1px dotted #cb3a39;
    font-weight: 600;
  }
  .l-header__nav-item--new-tab {
    display: flex;
    align-items: center;
    column-gap: 8px;
  }
  .l-header__nav-item--new-tab::after {
    content: '';
    display: block;
    background-image: url(./background-images/new-tab-icon--red.webp);
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .l-header__SNS {
    display: flex;
    margin: 0 auto;
    column-gap: 16px;
  }
  .l-header__SNS-image {
    height: 32px;
  }
  .l-header__SNS-mypage {
    color: #fff;
    background-color: #231815;
    line-height: 1;
    display: flex;
    align-items: center;
    column-gap: 4px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    width: fit-content;
    margin: 0 auto;
  }
  .l-header__SNS-mypage-logo {
    width: 14px;
    object-fit: contain;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #fff;
}
.l-footer__top {
  background-color: #414141;
}
.l-footer__bottom {
  background-color: #231815;
}
.l-footer__description-list {
  display: flex;
  align-items: start;
  width: 100%;
  justify-content: space-between;
}
.l-footer__description-list-title {
  display: block;
  font-weight: 600;
}
.l-footer__description-list-images {
  display: flex;
  flex-wrap: wrap;
}
.l-footer__bottom-list {
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.l-footer__copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  color: #fff;
  text-align: center;
  width: 100%;
}
.l-footer__description-list-title-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-footer__sponsor-list {
  display: flex;
}

@media screen and (min-width: 701px) {
  .l-footer__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 64px;
    padding-bottom: 64px;
    row-gap: 32px;
  }
  .l-footer__description-list {
    font-size: 18px;
    flex-direction: column;
    row-gap: 4px;
    justify-content: start;
  }
  .l-footer__description-list--1 {
    order: 1;
  }
  .l-footer__description-list--2 {
    order: 3;
  }
  .l-footer__description-list--3 {
    order: 2;
  }
  .l-footer__description-list--4 {
    order: 4;
  }
  .l-footer__description-list-title {
    display: flex;
    justify-content: space-between;
  }
  .l-footer__description-list-title--column {
    flex-direction: column;
    row-gap: 8px;
    align-items: center;
  }
  .l-footer__description-list-title-inner-sub {
    font-size: 14px;
  }
  .l-footer__description-list-text {
    line-break: auto;
    word-wrap: break-word;
    width: 87%;
  }
  .l-footer__description-list-images {
    width: 87%;
    gap: 24px;
  }
  .l-footer__kyosan-logo {
    height: 48px;
  }
  .l-footer__bottom-list {
    justify-content: space-between;
    font-size: 14px;
  }
  .l-footer__bottom-logo-list {
    display: flex;
    align-items: center;
    column-gap: 32px;
    width: fit-content;
    margin: 0 auto;
  }
  .l-footer__bottom-logo-image {
    height: 48px;
  }
  .l-footer__copyright {
    font-size: 14px;
  }
  .l-footer__sponsor-list {
    width: 87%;
    column-gap: 16px;
  }
  .l-footer__logo-image {
    height: 40px;
  }
  .l-footer__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .l-footer__description-list-text-hiroshima {
    display: flex;
    align-items: center;
    column-gap: 16px;
  }
  .l-footer__description-list-text-hiroshima-image {
    height: 36px;
  }
}
@media screen and (701px <= width <= 1300px) {
  .l-footer__inner {
    width: 97%;
  }
}
@media screen and (max-width: 700px) {
  .l-footer__inner {
    margin-left: 16px;
    margin-right: 16px;
    padding-top: 40px;
    padding-bottom: 56px;
    row-gap: 24px;
  }
  .l-footer__description-list {
    font-size: 16px;
    flex-direction: column;
    row-gap: 4px;
  }
  .l-footer__description-list-title {
    display: flex;
    justify-content: space-between;
  }
  .l-footer__description-list-title--column {
    flex-direction: column;
    row-gap: 4px;
    align-items: center;
  }
  .l-footer__description-list-title-inner-sub {
    font-size: 12px;
  }
  .l-footer__description-list-text {
    line-break: auto;
    word-wrap: break-word;
    width: 100%;
  }
  .l-footer__description-list-images {
    flex-direction: column;
    row-gap: 16px;
    width: 76%;
  }
  .l-footer__content {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  .l-footer__bottom-list {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    font-size: 14px;
  }
  .l-footer__bottom-logo-list {
    display: flex;
    flex-direction: column;
    width: 80%;
    row-gap: 16px;
    margin: 0 auto;
  }
  .l-footer__copyright {
    font-size: 12px;
  }
  .l-footer__sponsor-list {
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    row-gap: 16px;
    align-items: center;
  }
  .l-footer__logo-image {
    height: 48px;
  }
  .l-footer__description-list-text-hiroshima {
    display: flex;
    align-items: center;
    column-gap: 16px;
  }
  .l-footer__description-list-text-hiroshima-image {
    height: 40px;
  }
}
.l-main {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
}
.l-main--question {
  background-color: #ffe9f8;
  /* background-color: #b3eaec; */
}

@media screen and (min-width: 701px) {
  .l-main {
    padding-top: 160px;
    padding-bottom: 80px;
    row-gap: 32px;
  }
  .l-main--ticket {
    row-gap: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  .l-main {
    padding-top: 120px;
    padding-bottom: 64px;
    row-gap: 32px;
  }
  .l-main--ticket {
    row-gap: 0;
    padding-bottom: 0;
  }
}
.l-section {
  display: flex;
  flex-direction: column;
}
.l-section--background {
  background-repeat: no-repeat;
  background-position-x: center;
}
.l-section--background--1 {
  background-image: url(./background-images/background-top--1--dark.webp);
}
.l-section--background--2 {
  background-image: url(./background-images/background-top--2.webp);
}
.l-section--background--3 {
  background-image: url(./background-images/background-top--3.webp);
}

@media screen and (min-width: 701px) {
  .l-section {
    row-gap: 64px;
  }
  .l-section--background--1 {
    background-position-y: 30%;
    background-size: 120%;
  }
  .l-section--background--2 {
    background-position-y: 3%;
    background-size: 120%;
  }
  .l-section--background--3 {
    background-position-y: 52%;
    background-size: 130%;
  }
}
@media screen and (max-width: 700px) {
  .l-section {
    row-gap: 24px;
  }
  .l-section--background--1 {
    background-size: 390%;
    background-position: 50% 0%;
  }
  .l-section--background--2 {
    background-size: cover;
    background-position: 87% 0%;
  }
  .l-section--background--3 {
    background-size: cover;
    background-position: 70% 0%;
  }
}
.p-main-visual {
  background-repeat: no-repeat;
  position: relative;
}
.p-main-visual__inner {
  position: relative;
}
.p-main-visual__title,
.p-main-visual__text {
  opacity: 0;
  transition: all 0.6s ease;
}
.p-main-visual__title.active,
.p-main-visual__text.active {
  opacity: 1;
}

@media screen and (min-width: 701px) {
  .p-main-visual {
    height: 80vh;
    background-image: url(./background-images/main-visual--PC.webp);
    background-size: 135%;
    background-position: 50% 30%;
    animation: zoom-in;
    animation-duration: 4s;
  }
  .p-main-visual--SP {
    display: none;
  }
  .p-main-visual__inner {
    height: inherit;
    max-width: 1300px;
    margin: 0 auto;
  }
  .p-main-visual__title {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 35%;
  }
  .p-main-visual__title--SP {
    display: none;
  }
  .p-main-visual__text {
    position: absolute;
    width: 17vw;
    right: 26vw;
    top: 35%;
  }
  .p-main-visual__text--SP {
    display: none;
  }
  .p-main-visual__end-text {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    right: 0;
    width: fit-content;
  }
  .p-main-visual__end-text-inner {
    border-top: 2px solid #231815;
    border-bottom: 2px solid #231815;
  }
  .p-main-visual__end-text {
    padding-top: 24px;
    padding-bottom: 24px;
    bottom: 5%;
  }
  .p-main-visual__end-text-inner {
    padding: 24px;
  }
  @keyframes zoom-in {
    0% {
      background-size: 115%;
    }
    100% {
      background-size: 135%;
    }
  }
}
@media screen and (max-width: 700px) {
  .p-main-visual {
    height: 100svh;
    background-image: url(./background-images/main-visual--SP.webp);
    background-position: 50% 80%;
    animation: zoom-in;
    animation-duration: 3s;
    background-size: 290%;
  }
  .p-main-visual--PC {
    display: none;
  }
  .p-main-visual__inner {
    height: inherit;
    width: 100%;
  }
  .p-main-visual__title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60%;
  }
  .p-main-visual__title--SP--new {
    position: static;
    width: 50%;
    margin: 0 auto;
    transform: none;
  }
  .p-main-visual__title--PC {
    display: none;
  }
  .p-main-visual__text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1%;
    width: 30%;
  }
  .p-main-visual__text--PC {
    display: none;
  }
  .p-main-visual__end {
    position: absolute;
    bottom: 0;
  }
  .p-main-visual__end-text {
    padding-top: 8px;
    padding-bottom: 8px;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .p-main-visual__end-text-inner {
    padding: 16px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #231815;
    border-bottom: 1px solid #231815;
  }
  @keyframes zoom-in {
    0% {
      background-size: 240%;
    }
    100% {
      background-size: 290%;
    }
  }
}
.p-ticket-button {
  position: fixed;
  right: 0;
  bottom: 40px;
  background: rgb(231, 72, 138);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
  border-radius: 15px 0 0 15px;
  opacity: 0;
}
.p-ticket-button__text {
  color: #fff;
  text-orientation: upright;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 600;
}

@media screen and (min-width: 701px) {
  .p-ticket-button {
    padding: 10px;
    row-gap: 4px;
    width: 80px;
    opacity: 0;
  }
  .p-ticket-button__text {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 700px) {
  .p-ticket-button {
    padding: 8px;
    row-gap: 8px;
    width: 64px;
    opacity: 0;
  }
  .p-ticket-button__text {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 2px;
  }
}
.p-top-information {
  display: flex;
  flex-direction: column;
}
.p-top-information__content {
  position: relative;
}
.p-top-information__content::after {
  content: '';
  position: absolute;
  top: 0;
  display: block;
  background-color: #86badc;
  mix-blend-mode: multiply;
  width: inherit;
  height: inherit;
  opacity: 1;
}
.p-top-information__image {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

@media screen and (min-width: 701px) {
  .p-top-information {
    padding-top: 64px;
    row-gap: 24px;
  }
  .p-top-information__content {
    height: 152px;
    width: 100%;
  }
  .p-top-information__image {
    height: 75%;
  }
  .p-top-information__image--PC {
    display: block;
  }
  .p-top-information__image--SP {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .p-top-information {
    row-gap: 24px;
  }
  .p-top-information__content {
    height: 470px;
    width: 100%;
  }
  .p-top-information__image {
    height: 80%;
  }
  .p-top-information__image--PC {
    display: none;
  }
  .p-top-information__image--SP {
    display: block;
  }
}
.p-top-news {
  display: flex;
  flex-direction: column;
}
.p-top-news__list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.p-top-news__list-item {
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
}
.p-top-news__list-time {
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.p-top-news__list-title {
  font-weight: 500;
}

@media screen and (min-width: 701px) {
  .p-top-news {
    padding-top: 64px;
    padding-bottom: 120px;
    row-gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
  }
  .p-top-news__list {
    width: 70%;
    row-gap: 16px;
  }
  .p-top-news__list-item {
    padding: 24px;
    font-size: 18px;
    column-gap: 40px;
  }
  .p-top-news__list-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  .p-top-news {
    padding: 64px 16px 104px;
    row-gap: 24px;
    width: 100%;
  }
  .p-top-news__list {
    width: 100%;
    row-gap: 16px;
  }
  .p-top-news__list-item {
    padding: 24px;
    flex-direction: column;
    align-items: start;
    font-size: 16px;
    row-gap: 4px;
  }
  .p-top-news__list-time {
    font-size: 18px;
  }
  .p-top-news__list-title {
    font-size: 14px;
  }
}
.p-top-exhibition {
  display: flex;
  flex-direction: column;
}
.p-top-exhibition__content {
  background-color: rgba(255, 255, 255, 0.8);
}
.p-top-exhibition__content-title {
  font-weight: 900;
  text-align: center;
}
.p-top-exhibition__content-texts {
  display: flex;
  flex-direction: column;
}
.p-top-exhibition__content-description {
  font-weight: 500;
}

@media screen and (min-width: 701px) {
  .p-top-exhibition {
    row-gap: 40px;
  }
  .p-top-exhibition__content-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
  }
  .p-top-exhibition__content-inner--2 {
    flex-direction: row-reverse;
  }
  .p-top-exhibition__content-image {
    width: 60%;
    aspect-ratio: 65/38;
  }
  .p-top-exhibition__content-title {
    font-size: 20px;
  }
  .p-top-exhibition__content-texts {
    row-gap: 40px;
    width: 40%;
    justify-content: center;
    padding: 80px;
    align-items: center;
  }
  .p-top-exhibition__content-description {
    font-size: 15px;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 700px) {
  .p-top-exhibition {
    row-gap: 32px;
  }
  .p-top-exhibition__content-inner {
    width: 100%;
  }
  .p-top-exhibition__content-image {
    width: 100%;
    aspect-ratio: 39/23;
  }
  .p-top-exhibition__content-title {
    font-size: 18px;
  }
  .p-top-exhibition__content-texts {
    row-gap: 16px;
    width: 100%;
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
    width: 80%;
    margin: 0 auto;
    align-items: center;
  }
  .p-top-exhibition__content-description {
    font-size: 15px;
    letter-spacing: -0.5px;
  }
}
.p-top-special-exhibition {
  display: flex;
  flex-direction: column;
}
.p-top-special-exhibition__item {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.p-top-special-exhibition__item-title {
  text-align: center;
  font-weight: 800;
}
.p-top-special-exhibition__item-image {
  aspect-ratio: 1/1;
  width: 100%;
  display: block;
  position: relative;
}
.p-top-special-exhibition__item-image-wrap--coming {
  position: relative;
}
.p-top-special-exhibition__item-image-text {
  font-weight: 500;
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  width: fit-content;
  height: fit-content;
  text-align: center;
}
.p-top-special-exhibition__item-description {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 701px) {
  .p-top-special-exhibition {
    row-gap: 56px;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 80px;
  }
  .p-top-special-exhibition__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 64px;
    margin: 0 auto;
    width: 80%;
  }
  .p-top-special-exhibition__item--1 {
    row-gap: 16px;
  }
  .p-top-special-exhibition__item--2 {
    row-gap: 16px;
  }
  .p-top-special-exhibition__item--3 {
    row-gap: 16px;
  }
  .p-top-special-exhibition__item-title {
    font-size: 20px;
  }
  .p-top-special-exhibition__item-description {
    font-size: 15px;
    letter-spacing: -0.5px;
    row-gap: 16px;
  }
  .p-top-special-exhibition__item-title-image {
    height: 64px;
    margin: 0 auto;
  }
  .p-top-special-exhibition__item-image-text {
    font-size: 30px;
    letter-spacing: 1.8px;
  }
}
@media screen and (max-width: 700px) {
  .p-top-special-exhibition {
    padding-top: 64px;
    row-gap: 48px;
    padding-bottom: 64px;
  }
  .p-top-special-exhibition__list {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    width: 100%;
  }
  .p-top-special-exhibition__item {
    row-gap: 16px;
    width: 80%;
    margin: 0 auto;
  }
  .p-top-special-exhibition__item--1 {
    row-gap: 16px;
  }
  .p-top-special-exhibition__item--2 {
    row-gap: 16px;
  }
  .p-top-special-exhibition__item--3 {
    row-gap: 16px;
  }
  .p-top-special-exhibition__item-image-wrap {
    width: 75%;
    margin: 0 auto;
  }
  .p-top-special-exhibition__item-title {
    font-size: 18px;
  }
  .p-top-special-exhibition__item-description {
    font-size: 15px;
    letter-spacing: -0.5px;
    row-gap: 16px;
  }
  .p-top-special-exhibition__item-title-image {
    height: 64px;
    margin: 0 auto;
  }
  .p-top-special-exhibition__item-image-text {
    font-size: 24px;
    letter-spacing: 2.4px;
  }
}
.p-top-contest {
  display: flex;
  flex-direction: column;
}
.p-top-contest__list-item {
  display: flex;
  flex-direction: column;
}
.p-top-contest__list-text {
  font-weight: 500;
  color: #414141;
  background-color: rgba(255, 255, 255, 0.8);
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}
.p-top-contest__button {
  margin: 0 auto;
  color: #fff;
  background-color: #231815;
  position: relative;
  width: fit-content;
}
.p-top-contest__button-icon {
  position: absolute;
}

@media screen and (min-width: 701px) {
  .p-top-contest {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    row-gap: 80px;
    padding-top: 160px;
  }
  .p-top-contest__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 64px;
    width: 90%;
    margin: 0 auto;
  }
  .p-top-contest__list-item {
    row-gap: 8px;
  }
  .p-top-contest__list-text {
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-top-contest__button {
    padding: 40px 64px;
    font-size: 18px;
  }
  .p-top-contest__button-icon {
    top: 50%;
    transform: translateY(-50%);
  }
  .p-top-contest__button-icon--book {
    height: 30px;
    left: 16px;
  }
  .p-top-contest__button-icon--arrow {
    height: 30px;
    right: 16px;
  }
}
@media screen and (max-width: 700px) {
  .p-top-contest {
    margin: 0 auto;
    position: relative;
    row-gap: 40px;
  }
  .p-top-contest__list {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
  }
  .p-top-contest__list-item {
    row-gap: 8px;
  }
  .p-top-contest__list-text {
    text-align: center;
    font-size: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .p-top-contest__button {
    padding: 64px 16px 24px 16px;
    font-size: 16px;
    text-align: center;
  }
  .p-top-contest__button--map {
    padding: 16px 64px;
  }
  .p-top-contest__button-icon--book {
    top: 16px;
    height: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-top-contest__button-icon--arrow {
    top: 16px;
    height: 30px;
    right: 16px;
  }
  .p-top-contest__button-icon--arrow--map {
    top: 14px;
  }
}
.p-top-slider__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

@media screen and (min-width: 701px) {
  .p-top-slider {
    margin-top: 120px;
  }
  .p-top-slider--SP {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .p-top-slider {
    margin-top: 64px;
  }
  .p-top-slider__hooper {
    height: 50vw !important;
  }
  .p-top-slider--PC {
    display: none;
  }
}
.p-top-market {
  display: flex;
  flex-direction: column;
  position: relative;
}
.p-top-market__description {
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
}
.p-top-market__list-content {
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
}
.p-top-market__image-item {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.p-top-market__button-image {
  object-fit: contain;
  margin: 0 0 0 auto;
}
.p-top-market__button {
  display: flex;
  align-items: center;
  width: fit-content;
}

@media screen and (min-width: 701px) {
  .p-top-market {
    row-gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 80px;
  }
  .p-top-market__description {
    line-height: 1.7;
    padding: 24px;
  }
  .p-top-market__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 96px;
    width: 70%;
    margin: 0 auto;
  }
  .p-top-market__list-content {
    padding: 40px 8px;
    row-gap: 24px;
  }
  .p-top-market__image-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .p-top-market__button {
    margin: 0 0 0 auto;
    column-gap: 16px;
    padding-right: 16px;
  }
  .p-top-market__button-image {
    height: 40px;
  }
}
@media screen and (max-width: 700px) {
  .p-top-market {
    padding-top: 64px;
    row-gap: 32px;
  }
  .p-top-market__description {
    width: 90%;
    margin: 0 auto;
    text-align: left;
    padding: 24px;
  }
  .p-top-market__list {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    width: 90%;
    margin: 0 auto;
  }
  .p-top-market__list-content {
    padding: 40px 8px;
    row-gap: 24px;
  }
  .p-top-market__image-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .p-top-market__button {
    margin: 0 0 0 auto;
    column-gap: 16px;
  }
  .p-top-market__button-image {
    height: 40px;
    padding-right: 16px;
  }
}
.p-top-more {
  display: flex;
  flex-direction: column;
}
.p-top-more__content {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.p-top-more__content-title {
  font-weight: 600;
  text-align: center;
}
.p-top-more__content-texts {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
}
.p-top-more__content-image {
  width: 100%;
}

@media screen and (min-width: 701px) {
  .p-top-more {
    padding-top: 240px;
    row-gap: 40px;
  }
  .p-top-more__content-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 64px;
    padding-bottom: 64px;
    column-gap: 64px;
    width: 60%;
  }
  .p-top-more__content-list--double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
  }
  .p-top-more__content-image--single {
    aspect-ratio: 4/3;
  }
  .p-top-more__content-image--double {
    aspect-ratio: 3/4;
  }
  .p-top-more__content-title {
    font-size: 22px;
  }
  .p-top-more__content-texts {
    row-gap: 24px;
  }
  .p-top-more__content-description {
    font-size: 15px;
    letter-spacing: -0.5px;
  }
}
@media screen and (max-width: 700px) {
  .p-top-more {
    padding-top: 144px;
    row-gap: 40px;
  }
  .p-top-more__content-inner {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
    row-gap: 16px;
    width: 90%;
    margin: 0 auto;
  }
  .p-top-more__content-list--double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
  }
  .p-top-more__content-image--single {
    aspect-ratio: 4/3;
  }
  .p-top-more__content-image--double {
    aspect-ratio: 3/4;
  }
  .p-top-more__content-title {
    font-size: 18px;
  }
  .p-top-more__content-texts {
    row-gap: 16px;
  }
  .p-top-more__content-description {
    font-size: 15px;
    letter-spacing: -0.5px;
  }
  .p-top-more__type-text--price {
    white-space: nowrap;
  }
}
.p-top-SNS {
  display: flex;
  flex-direction: column;
}
.p-top-SNS__icon-list {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (min-width: 701px) {
  .p-top-SNS {
    padding-top: 120px;
    padding-bottom: 120px;
    row-gap: 40px;
  }
  .p-top-SNS__icon-list {
    column-gap: 24px;
  }
  .p-top-SNS__icon-image {
    height: 40px;
  }
  .p-top-SNS__frame-wrap {
    width: 100%;
    text-align: center !important;
    margin: 0 auto !important;
  }
}
@media screen and (max-width: 700px) {
  .p-top-SNS {
    padding-top: 64px;
    padding-bottom: 64px;
    row-gap: 40px;
  }
  .p-top-SNS__icon-list {
    column-gap: 24px;
  }
  .p-top-SNS__icon-image {
    height: 40px;
  }
  .p-top-SNS__frame-wrap {
    width: 90%;
    text-align: center !important;
    margin: 0 auto !important;
  }
}
.p-shop-detail {
  display: flex;
  flex-direction: column;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}

.p-shop-detail__background {
  background-color: #f7eaf1;
}
.p-shop-detail__number {
  line-height: 1;
  color: #fff;
  background-color: #cb3a39;
  width: fit-content;
  font-weight: 700;
}
.p-shop-detail__title {
  display: flex;
  flex-direction: column;
}
.p-shop-detail__title-inner {
  display: flex;
}
.p-shop-detail__title-inner-left {
  font-weight: 600;
  width: fit-content;
  white-space: nowrap;
  border-bottom: 1px solid #cb3a39;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-shop-detail__title-inner-right {
  border-bottom: 1px solid #231815;
}
.p-shop-detail__content {
  display: grid;
}
.p-shop-detail__information {
  display: flex;
  flex-direction: column;
  height: fit-content;
  background-color: rgba(236, 115, 134, 0.7);
}
.p-shop-detail__image {
  aspect-ratio: 1/1;
}
.p-shop-detail__information-title {
  display: flex;
}
.p-shop-detail__information-element {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.9);
}
.p-shop-detail__information-title-left {
  white-space: nowrap;
  border-bottom: 1px solid #cb3a39;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 4px;
}
.p-shop-detail__information-title-right {
  border-bottom: 1px solid #231815;
}
.p-shop-detail__information-list {
  display: flex;
  flex-wrap: wrap;
}
.p-shop-detail__information-item {
  background-color: #fff;
  border: 1px solid #231815;
  line-height: 1;
  white-space: nowrap;
}
.p-shop-detail__right {
  display: flex;
  flex-direction: column;
}
.p-shop-detail__PR {
  background-color: white;
  border: 1px solid #231815;
  text-align: left;
  position: relative;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-shop-detail__PR-title {
  position: absolute;
  color: #fff;
  background-color: #e677a2;
  width: fit-content;
  line-height: 1;
  transform: rotate(-6deg);
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-shop-detail__PR-text {
  white-space: pre-wrap;
}
.p-shop-detail__product-title {
  font-weight: 600;
  font-size: 18px;
  border-left: 4px solid #cb3a39;
  padding-left: 4px;
}
.p-shop-detail__product-image {
  border: 1px solid #cb3a39;
  aspect-ratio: 1/1;
}
.p-shop-detail__product-list-inner {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.p-shop-detail__product-item {
  display: flex;
  flex-direction: column;
}
.p-shop-detail__URL {
  word-break: break-all;
}

@media screen and (min-width: 701px) {
  .p-shop-detail {
    max-width: 1300px;
    margin: 0 auto;
    row-gap: 32px;
    width: 100%;
  }
  .p-shop-detail__number {
    font-size: 20px;
    padding: 8px 16px;
  }
  .p-shop-detail__title {
    row-gap: 4px;
    font-family:
      'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  }
  .p-shop-detail__title-inner-left {
    font-size: 26px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .p-shop-detail__title-kana {
    padding-left: 8px;
  }
  .p-shop-detail__title-inner-right {
    width: 100%;
  }
  .p-shop-detail__content {
    grid-template-columns: 7fr 3fr;
    column-gap: 32px;
  }
  .p-shop-detail__information {
    row-gap: 16px;
    padding: 16px;
  }
  .p-shop-detail__information-element {
    row-gap: 8px;
    padding: 16px;
  }
  .p-shop-detail__information-title-left {
    font-size: 18px;
  }
  .p-shop-detail__information-title-right {
    width: 100%;
  }
  .p-shop-detail__information-list {
    gap: 16px;
  }
  .p-shop-detail__information-item {
    padding: 4px 24px;
    border-radius: 16px;
  }
  .p-shop-detail__right {
    row-gap: 24px;
  }
  .p-shop-detail__PR {
    padding: 56px 56px 32px;
  }
  .p-shop-detail__PR-title {
    padding: 8px 24px;
    left: -24px;
    top: 0;
  }
  .p-shop-detail__product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .p-shop-detail__product-item {
    row-gap: 16px;
  }
  .p-shop-detail__recommend-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
  }
  .p-shop-detail__recommend-item {
    aspect-ratio: 1/1;
  }
  .p-shop-detail__recommend-item-image {
    width: 100%;
    height: 100%;
  }
}
@media screen and (701px <= width <= 1300px) {
  .p-shop-detail__product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .p-shop-detail__PR-title {
    left: -16px;
  }
}
@media screen and (max-width: 700px) {
  .p-shop-detail {
    padding-left: 16px;
    padding-right: 16px;
    row-gap: 16px;
  }
  .p-shop-detail__number {
    font-size: 16px;
    padding: 8px 16px;
  }
  .p-shop-detail__title {
    row-gap: 4px;
  }
  .p-shop-detail__title-inner-left {
    font-size: 22px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .p-shop-detail__title-kana {
    font-size: 14px;
    padding-left: 8px;
  }
  .p-shop-detail__title-inner-right {
    width: 100%;
  }
  .p-shop-detail__content {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 24px;
  }
  .p-shop-detail__information {
    row-gap: 16px;
    padding: 16px;
  }
  .p-shop-detail__information-element {
    row-gap: 8px;
    padding: 16px;
  }
  .p-shop-detail__information-title-left {
    font-size: 18px;
  }
  .p-shop-detail__information-title-right {
    width: 100%;
  }
  .p-shop-detail__information-list {
    gap: 16px;
    flex-wrap: wrap;
  }
  .p-shop-detail__information-item {
    padding: 4px 24px;
    border-radius: 16px;
    white-space: nowrap;
  }
  .p-shop-detail__right {
    row-gap: 16px;
  }
  .p-shop-detail__PR {
    padding: 48px 24px 24px 24px;
  }
  .p-shop-detail__PR-title {
    padding: 8px 24px;
    left: -8px;
    top: 0;
  }
  .p-shop-detail__product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .p-shop-detail__product-list-inner {
    row-gap: 8px;
  }
  .p-shop-detail__product-item {
    row-gap: 8px;
  }
  .p-shop-detail__recommend-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.p-contest {
  /* background-image: url(./background-images/main-background--contest.webp); */
  background-color: rgba(240, 153, 166, 0.9);
  background-size: 100%;
  display: flex;
  flex-direction: column;
}
.p-contest__section {
  display: flex;
  flex-direction: column;
}
.p-contest__section--system {
  background-color: #d9d0c1;
  background: url(./background-images/main-background--contest.webp);
  background-size: cover;
}
.p-contest__section-inner {
  display: flex;
  flex-direction: column;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.p-contest__content--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.p-contest__content--image {
  display: flex;
  flex-direction: column;
}
.p-contest__content-border {
  height: 2px;
  background-color: #fff;
}
.p-contest__content-title {
  font-weight: 800;
  letter-spacing: 0.1em;
}
.p-contest__content-sub-title {
  text-align: center;
  font-weight: 500;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.15em;
}
.p-contest__content-image-text {
  text-align: center;
  color: #414141;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.p-contest__award-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.p-contest__award-title-text {
  font-weight: 600;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.15em;
}
.p-contest__item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-contest__item-number {
  position: absolute;
  color: #fff;
  background-color: #231815;
  border-radius: 50% 50%;
  aspect-ratio: 1/1;
  width: fit-content;
  display: grid;
  place-items: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.p-contest__item-text {
  font-weight: 400;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.p-contest__system-title {
  color: #fff;
  background-color: #231815;
  width: fit-content;
  margin: 0 auto;
}
.p-contest__system-title--2 {
  position: relative;
  margin-bottom: 26px;
}
.p-contest__system-title--2::after {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  content: '※一般の部';
  font-weight: 700;
  font-size: 14px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #231815;
  display: none;
}
.p-contest__system-item {
  background-color: #fff;
  display: flex;
}
.p-contest__system-item--entry {
  font-weight: 700;
  text-align: center;
  justify-content: center;
}
.p-contest__system-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.p-contest__system-triangle {
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.p-contest__system-item-inner-number {
  position: absolute;
  color: #c3ba9b;
  font-weight: 700;
}
.p-contest__system-item-inner-title {
  font-weight: 800;
}
.p-contest__system-item-inner-text {
  font-weight: 600;
}
.p-contest__system-item-inner-text--sp {
  display: none;
}

@media screen and (min-width: 701px) {
  .p-contest {
    row-gap: 80px;
  }
  .p-contest__section {
    row-gap: 40px;
  }
  .p-contest__section--system {
    padding-top: 104px;
    padding-bottom: 104px;
  }
  .p-contest__section--max {
    max-width: 1300px;
    margin: 0 auto;
  }
  .p-contest__section-inner {
    row-gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
  }
  .p-contest__inner {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    column-gap: 64px;
  }
  .p-contest__inner--2 {
    flex-direction: row-reverse;
  }
  .p-contest__content {
    width: 50%;
  }
  .p-contest__content--text {
    row-gap: 24px;
  }
  .p-contest__content--image {
    row-gap: 18px;
  }
  .p-contest__content-text {
    width: 74%;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 15px;
    text-align: center;
  }
  .p-contest__content-title {
    font-size: 24px;
    font-family: 'shippori-mincho', serif;
  }
  .p-contest__content-border {
    width: 100px;
  }
  .p-contest__content-sub-title {
    font-size: 20px;
  }
  .p-contest__content-flower {
    width: 88px;
  }
  .p-contest__content-image {
    aspect-ratio: 59/35;
  }
  .p-contest__item-image--japan {
    aspect-ratio: 29/19;
  }
  .p-contest__item-image--flower {
    aspect-ratio: 19/29;
  }
  .p-contest__content-image-text {
    font-size: 12px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
  }
  .p-contest__award-title-image {
    width: 90px;
  }
  .p-contest__award-title {
    row-gap: 16px;
  }
  .p-contest__award-title-text {
    font-size: 20px;
  }
  .p-contest__list {
    margin: 0 auto;
    max-width: 1300px;
    display: grid;
    column-gap: 64px;
  }
  .p-contest__list + small {
    margin: 0 auto;
    width: 90%;
    max-width: 1300px;
    text-align: right;
    font-size: 14px;
  }
  .p-contest__list--2 {
    width: 90%;
    max-width: 780px;
    grid-template-columns: repeat(3, 1fr);
  }
  .p-contest__list--2 + small {
    width: 90%;
    max-width: 780px;
    text-align: right;
    font-size: 14px;
  }
  .p-contest__list--3 {
    width: 90%;
    grid-template-columns: repeat(3, 1fr);
  }
  .p-contest__item {
    row-gap: 24px;
  }
  .p-contest__item-number {
    top: -24px;
    right: -24px;
    width: 64px;
    font-size: 14px;
    line-height: 1;
    text-align: center;
  }
  .p-contest__item-number span {
    font-size: 11px;
  }
  .p-contest__item-text {
    line-height: 1.5;
    font-size: 14px;
  }
  .p-contest__system-title {
    padding: 4px 8px;
    font-size: 20px;
  }
  .p-contest__system-list {
    width: 80%;
    row-gap: 16px;
  }
  .p-contest__system-item {
    padding: 40px 24px;
    width: 100%;
    border-radius: 8px;
  }
  .p-contest__system-item--entry {
    font-size: 18px;
    padding: 24px;
  }
  .p-contest__system-triangle {
    height: 25px;
    width: 50px;
  }
  .p-contest__system-item-inner--1 {
    display: grid;
    place-items: center;
    position: relative;
    border-right: 2px dotted #231815;
    width: 25%;
  }
  .p-contest__system-item-inner--2 {
    width: 75%;
    padding-left: 64px;
  }
  .p-contest__system-item-inner-number {
    top: -32px;
    left: -8px;
    font-size: 28px;
  }
  .p-contest__system-item-inner-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 700px) {
  .p-contest {
    row-gap: 64px;
  }
  .p-contest__section {
    row-gap: 32px;
  }
  .p-contest__section--system {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .p-contest__section-inner {
    row-gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
  }
  .p-contest__inner {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    row-gap: 32px;
  }
  .p-contest__content {
    width: 100%;
  }
  .p-contest__content--text {
    row-gap: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .p-contest__content--image {
    row-gap: 16px;
  }
  .p-contest__content-title {
    font-size: 22px;
    font-family: 'shippori-mincho', serif;
  }
  .p-contest__content-border {
    width: 100px;
  }
  .p-contest__content-sub-title {
    font-size: 18px;
  }
  .p-contest__content-text .br-pc {
    display: none;
  }
  .p-contest__content-flower {
    width: 88px;
  }
  .p-contest__content-image {
    aspect-ratio: 59/35;
  }
  .p-contest__item-image--japan {
    aspect-ratio: 29/19;
  }
  .p-contest__item-image--flower {
    aspect-ratio: 19/29;
  }
  .p-contest__content-image-text {
    font-size: 14px;
  }
  .p-contest__award-title-image {
    width: 90px;
    margin-bottom: 24px;
  }
  .p-contest__award-title {
    row-gap: 16px;
  }
  .p-contest__award-title-text {
    font-size: 20px;
  }
  .p-contest__list {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-contest__item {
    row-gap: 20px;
  }
  .p-contest__item-number {
    top: -16px;
    right: -8px;
    width: 72px;
    font-size: 15px;
    line-height: 1;
    text-align: center;
  }
  .p-contest__item-number span {
    font-size: 12px;
  }
  .p-contest__item-text {
    line-height: 1.4;
  }
  .p-contest__system-title {
    padding: 4px;
    font-size: 18px;
  }
  .p-contest__system-list {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    row-gap: 16px;
  }
  .p-contest__system-item {
    padding: 24px;
    width: 100%;
    border-radius: 8px;
    flex-direction: column;
  }
  .p-contest__system-item--entry {
    font-size: 18px;
    padding: 24px;
  }
  .p-contest__system-triangle {
    height: 25px;
    width: 50px;
  }
  .p-contest__system-item-inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    flex-direction: column;
  }
  .p-contest__system-item-inner--1 {
    border-bottom: 2px dotted #231815;
  }
  .p-contest__system-item-inner-number {
    top: -32px;
    left: -8px;
    font-size: 28px;
  }
  .p-contest__system-item-inner-title {
    font-size: 18px;
    text-align: center;
    padding-bottom: 24px;
  }
  .p-contest__system-item-inner-text {
    padding-top: 24px;
  }
}
@media screen and (max-width: 550px) {
  .p-contest__system-item-inner-text--sp {
    width: 100%;
    display: block;
  }
  .p-contest__system-item-inner-text--pc {
    display: none;
  }
}
.p-ticket {
  background-image: url(./background-images/main-background--ticket.webp) !important;
  background-color: #bbe2f1;
  background-size: 110%;
}
.p-ticket__section {
  display: flex;
  flex-direction: column;
}
.p-ticket__section--blue {
  background-color: #65aadd;
}
.p-ticket__section--red {
  background-color: #cc7db1;
}
.p-ticket__section-wrap {
  display: flex;
  flex-direction: column;
}
.p-ticket__information {
  font-weight: 500;
  background-color: #fff;
  width: fit-content;
  margin: 0 auto;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  letter-spacing: 0.05em;
}
.p-ticket__information-dl {
  display: flex;
  align-items: center;
  border-bottom: 2px dotted #231815;
  letter-spacing: 0.05em;
}
.p-ticket__information-dl:last-child {
  border-bottom: none;
}
.p-ticket__information-dd {
  border-left: 2px solid #c9caca;
  letter-spacing: 0.05em;
}
.p-ticket__type {
  display: grid;
  width: 100%;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 500;
}
.p-ticket__type-box {
  color: #fff;
  height: 100%;
}
.p-ticket__type-box--blue {
  background-color: #65aadd;
}
.p-ticket__type-box--pink {
  background-color: #cc7db1;
}
.p-ticket__type-list {
  position: relative;
  display: flex;
  flex-direction: column;
}

.p-ticket__sub-text {
  text-align: center;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 500;
  max-width: 600px;
  width: 96%;
  margin: 0 auto;
  text-align: left;
}

.p-ticket__type-item {
  display: flex;
  justify-content: space-between;
  position: relative;
  font-weight: 600;
}
.p-ticket__type-item:hover {
  color: inherit;
}
.p-ticket__type-item:nth-child(odd) {
  background-color: #fff;
}
.p-ticket__type-item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.7);
}
.p-ticket__type-list--gray .p-ticket__type-item {
  background-color: #d3d3d3;
}
.p-ticket__type-item::after {
  /* content: ''; */
  display: block;
  background-image: url(./background-images/next-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-ticket__type-item.is-new {
  position: relative;
}
.p-ticket__type-text--new-label {
  position: absolute;
  top: -4px;
  left: -8px;
  color: #fff;
  color: rgb(20, 145, 248);
  font-size: 12px;
  padding: 2px 6px;
  font-weight: 700;
  /* 斜めにする */
  transform: rotate(-20deg);
}
/* NEWの左斜め線を追加 */
.p-ticket__type-text--new-label::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 2px;
  width: 38%;
  height: 100%;
  border-top: 2px solid rgb(20, 145, 248);
  transform: rotate(240deg);
}
/* NEWの右斜め線を追加 */
.p-ticket__type-text--new-label::after {
  content: '';
  position: absolute;
  top: -5px;
  right: 2px;
  width: 38%;
  height: 100%;
  border-top: 2px solid rgb(20, 145, 248);
  transform: rotate(120deg);
}

.p-ticket__type-text--title {
  position: relative;
}
.p-ticket__type-text--title span {
  position: absolute;
  color: rgb(20, 145, 248);
  font-size: 12px;
  top: -16px;
  left: 0;
}
.p-ticket__price {
  display: flex;
}
.p-ticket__price-content {
  color: #fff;
  display: flex;
  flex-direction: column;
}
.p-ticket__price-title {
  font-weight: 600;
  text-align: center;
}
.p-ticket__price-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.p-ticket__price-description {
  font-weight: 300;
}
.p-ticket__content {
  background-color: #fff;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-ticket__content-title {
  color: #fff;
  text-align: center;
}
.p-ticket__content-title--blue {
  background-color: #005aa0;
}
.p-ticket__content-title--red {
  background-color: #900071;
}
.p-ticket__content-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-ticket__content-inner {
  display: flex;
}
.p-ticket__content-inner--playguide {
  flex-direction: column;
}
.p-ticket__content-inner--special {
  flex-direction: column;
}
.p-ticket__content-inner--gray {
  background-color: #d3d3d3;
}
.p-ticket__content-description {
  display: flex;
  flex-direction: column;
}
.p-ticket__content-text {
  font-weight: 600;
}
.p-ticket__content-text--attention {
  font-weight: 400;
  font-size: 15px;
}
.p-ticket__content-text--center {
  margin: 0 auto;
  text-align: center;
}
.p-ticket__content-list {
  display: flex;
}
.p-ticket__content-code {
  text-align: center;
}
.p-ticket__content-item-image {
  object-fit: contain;
}
.p-ticket__content-item-number {
  font-weight: 700;
}
.p-ticket__content-item-text {
  font-weight: 600;
  margin-top: -16px;
}
.p-ticket__content-confetti {
  display: flex;
  align-items: center;
}
.p-ticket__content-confetti-image {
  object-fit: contain;
}
.p-ticket__special-info {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}
.p-ticket__special-info {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2.5px dotted #ea5514;
  align-items: center;
}
.p-ticket__special-price-dl {
  display: flex;
  align-items: center;
}
.p-ticket__special-inner {
  display: flex;
}
.p-ticket__special-inner--jewel {
  border: 1px solid #900071;
}
.p-ticket__special-image {
  aspect-ratio: 4/3;
}
.p-ticket__special-image-list {
  display: flex;
  flex-direction: column;
}
.p-ticket__special-description {
  display: flex;
  flex-direction: column;
}
.p-ticket__special-title {
  color: #fff;
  background-color: #cc7db1;
  width: fit-content;
}
.p-ticket__special-dt {
  color: #900071;
  font-weight: 700;
}
.p-ticket__popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 24, 21, 0.7);
  z-index: 999999;
  display: none;
}
.p-ticket__popup.active {
  display: block;
}
.p-ticket__popup-inner {
  position: fixed;
  background-color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  border: 2px solid #d4b776;
}
.p-ticket__popup-content {
  border: 2px solid #d4b776;
}
.p-ticket__popup-content-title {
  color: #fff;
  background-color: #d4b776;
  text-align: center;
  font-weight: 700;
}
.p-ticket__popup-information {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.p-ticket__popup-information--happy {
  border: 1px solid #231815;
  padding: 0;
}
.p-ticket__popup-information-dt--happy {
  border-right: 1px dotted #231815;
  background-color: #414141;
  text-align: center;
  color: #fff;
}
.p-ticket__popup-information-dl {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.p-ticket__popup-information-dl--happy {
  border-bottom: 1px solid #231815;
}
.p-ticket__popup-decoration {
  position: absolute;
}
.p-ticket__popup-close {
  position: absolute;
  background-color: #fff;
  border: 2px solid #900071;
}
.p-ticket__popup-close-line {
  height: 2px;
  background-color: #900071;
  width: 80%;
  position: absolute;
}
.p-ticket__popup-close-line--1 {
  transform: rotate(45deg);
}
.p-ticket__popup-close-line--2 {
  transform: rotate(-45deg);
}
.p-ticket__outer-attention-text {
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-ticket__content-wrap {
  display: flex;
}
.p-ticket__content-inner-text {
  text-align: center;
  width: 100%;
  font-weight: 700;
}

@media screen and (min-width: 701px) {
  .p-ticket {
    background-position-y: -5%;
  }
  .p-ticket__section {
    row-gap: 48px;
  }
  .p-ticket__section--padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .p-ticket__section--padding-bottom {
    padding-bottom: 80px;
  }
  .p-ticket__section-wrap {
    row-gap: 40px;
    padding-bottom: 80px;
  }
  .p-ticket__information {
    background-color: #fff;
    padding: 24px 40px;
    font-family:
      'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
    letter-spacing: 0.05em;
  }
  .p-ticket__information-dl {
    padding-bottom: 24px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
  }
  .p-ticket__information-dl:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .p-ticket__information-dt,
  .p-ticket__information-dd {
    font-size: 20px;
    padding-left: 40px;
    padding-right: 40px;
    letter-spacing: 0.05em;
  }
  .p-ticket__information-dd-text--small {
    font-size: 18px;
  }
  .p-ticket__information-dd-text--small small {
    font-size: 14px;
  }
  .p-ticket__information-dd-text--large {
    font-size: 20px;
    display: flex;
  }
  .p-ticket__type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
    max-width: 1300px;
    width: 86%;
    margin: 0 auto;
    column-gap: 24px;
  }
  .p-ticket__type-box {
    display: grid;
    place-items: center;
    width: 30%;
    font-size: 20px;
  }
  .p-ticket__type-box--blue {
    background-color: #65aadd;
    height: 134px;
  }
  .p-ticket__type-box--pink {
    background-color: #cc7db1;
    height: 360px;
  }
  .p-ticket__type-box--pink--mini {
    height: 60px;
  }
  .p-ticket__type-list {
    row-gap: 16px;
    width: 100%;
  }
  .p-ticket__type-item {
    padding: 16px 80px 16px 40px;
    font-size: 16px;
  }
  .p-ticket__type-item::after {
    right: 16px;
    width: 24px;
    height: 24px;
  }
  .p-ticket__price {
    max-width: 1300px;
    width: 60%;
    margin: 0 auto;
    column-gap: 80px;
  }
  .p-ticket__price-content {
    width: 50%;
    row-gap: 16px;
  }
  .p-ticket__price-title {
    font-size: 22px;
  }
  .p-ticket__price-item {
    border-bottom: 2px dotted #fff;
    padding: 16px;
    font-size: 20px;
  }
  .p-ticket__price-item:first-child {
    border-top: 2px dotted #fff;
  }
  .p-ticket__price-description {
    font-size: 15px;
  }
  .p-ticket__content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
  }
  .p-ticket__content-title {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 20px;
  }
  .p-ticket__content-item {
    width: 25%;
    row-gap: 16px;
  }
  .p-ticket__content-item--densi {
    /* width: auto; */
  }
  .p-ticket__content-description {
    width: 75%;
  }
  .p-ticket__content-inner {
    padding: 56px 80px;
    column-gap: 40px;
    align-items: center;
  }
  .p-ticket__content-inner--playguide,
  .p-ticket__content-inner--special {
    row-gap: 40px;
  }
  .p-ticket__content-inner--densi {
    flex-direction: column;
    align-items: start;
    row-gap: 32px;
  }
  .p-ticket__content-description {
    row-gap: 16px;
  }
  .p-ticket__content-item-image {
    height: 88px;
  }
  .p-ticket__content-item-image--asobyu {
    height: 64px;
  }
  .p-ticket__content-item-image--dome-ticket {
    height: 64px;
  }
  .p-ticket__content-list {
    column-gap: 48px;
  }
  .p-ticket__content-item-number {
    font-size: 30px;
  }
  .p-ticket__content-item-text {
    font-size: 30px;
  }
  .p-ticket__content-confetti {
    column-gap: 8px;
  }
  .p-ticket__content-confetti-text {
    font-size: 20px;
  }
  .p-ticket__special-info {
    column-gap: 40px;
    padding-bottom: 60px;
  }
  .p-ticket__special-price-dl {
    column-gap: 24px;
  }
  .p-ticket__special-price-dt {
    font-size: 16px;
  }
  .p-ticket__special-price-dd {
    position: relative;
    font-size: 26px;
  }
  .p-ticket__special-price-dd span {
    position: absolute;
    top: 50px;
    left: -120px;
    width: 200px;
    font-size: 14px;
    text-align: center;
  }
  .p-ticket__special-inner {
    column-gap: 40px;
    padding: 24px;
  }
  .p-ticket__special-image-list {
    width: 30%;
    row-gap: 16px;
  }
  .p-ticket__special-description {
    width: 70%;
    row-gap: 24px;
  }
  .p-ticket__special-title {
    border-radius: 0;
    padding: 8px 16px;
  }
  .p-ticket__attention-text {
    font-size: 14px;
    color: #414141;
  }
  .p-ticket__popup-inner {
    padding: 56px 40px 40px;
    width: 40%;
  }
  .p-ticket__popup-inner--happy {
    height: 80%;
    width: fit-content;
  }
  .p-ticket__popup-content-title {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .p-ticket__popup-information {
    row-gap: 8px;
  }
  .p-ticket__popup-information--happy {
    row-gap: 0;
    margin: 0 auto;
  }
  .p-ticket__popup-content--happy {
    overflow-y: scroll;
    height: 100%;
  }
  .p-ticket__popup-information-dt--happy {
    width: 30%;
    padding: 4px;
  }
  .p-ticket__popup-information-dd--happy {
    width: 70%;
    padding: 4px;
  }
  .p-ticket__popup-decoration--1 {
    top: -32px;
    left: -32px;
    width: 160px;
  }
  .p-ticket__popup-decoration--2 {
    bottom: -32px;
    right: -32px;
    width: 120px;
  }
  .p-ticket__attention {
    font-size: 14px;
    margin-top: 16px;
  }
  .p-ticket__popup-close {
    top: 0;
    right: 0;
    height: 48px;
    width: 48px;
    cursor: pointer;
  }
  .p-ticket__popup-close-line--1 {
    top: 21px;
    left: 4px;
  }
  .p-ticket__popup-close-line--2 {
    top: 21px;
    right: 4px;
  }
  .p-ticket__outer-attention-text {
    max-width: 1300px;
    width: 100%;
    margin: -40px auto 0;
    font-size: 14px;
  }
  .p-ticket__content-confetti-image {
    height: 40px;
  }
  .p-ticket__content-wrap {
    width: 100%;
    justify-content: space-around;
  }
}
@media screen and (701px <= width <= 1300px) {
  .p-ticket__content {
    width: 97%;
  }
}
@media screen and (max-width: 700px) {
  .p-ticket__section {
    row-gap: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-ticket__section--padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .p-ticket__section-wrap {
    row-gap: 40px;
    padding-bottom: 40px;
  }
  .p-ticket__information {
    padding: 16px;
    width: 100%;
  }
  .p-ticket__information-dl {
    padding-bottom: 16px;
    margin-bottom: 16px;
    flex-direction: column;
  }
  .p-ticket__information-dl:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .p-ticket__information-dt {
    white-space: nowrap;
    font-size: 18px;
    padding: 8px;
  }
  .p-ticket__information-dd {
    padding: 8px;
    border-left: none;
    border-top: 2px solid #c9caca;
  }
  .p-ticket__information-dd-text--small {
    font-size: 16px;
  }
  .p-ticket__information-dd-text--large {
    font-size: 18px;
  }
  .p-ticket__type {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    row-gap: 8px;
  }
  .p-ticket__type-box {
    display: grid;
    place-items: center;
    font-size: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
    height: fit-content;
  }
  .p-ticket__type-list {
    row-gap: 8px;
    width: 100%;
  }
  .p-ticket__sub-text {
    font-size: 14px;
  }
  .p-ticket__type-item {
    padding: 16px 48px 16px 16px;
    font-size: 16px;
    align-items: center;
  }
  .p-ticket__type-item::after {
    right: 16px;
    width: 24px;
    height: 24px;
  }
  .p-ticket__price {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    row-gap: 40px;
  }
  .p-ticket__price-content {
    width: 100%;
    row-gap: 16px;
  }
  .p-ticket__price-title {
    font-size: 18px;
  }
  .p-ticket__price-item {
    border-bottom: 2px dotted #fff;
    padding: 16px;
    font-size: 16px;
  }
  .p-ticket__price-item:first-child {
    border-top: 2px dotted #fff;
  }
  .p-ticket__price-description {
    font-size: 15px;
  }
  .p-ticket__content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
  }
  .p-ticket__content-title {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 17px;
  }
  .p-ticket__content-item {
    width: 100%;
    row-gap: 8px;
  }
  .p-ticket__content-description {
    width: 100%;
  }
  .p-ticket__content-wrap {
    flex-direction: column;
    row-gap: 36px;
  }
  .p-ticket__content-inner {
    padding: 40px 24px;
    row-gap: 32px;
    align-items: center;
    flex-direction: column;
  }
  .p-ticket__content-inner--densi {
    flex-direction: column;
    row-gap: 16px;
  }
  .p-ticket__content-inner--playguide {
    flex-direction: column;
    row-gap: 24px;
  }
  .p-ticket__content-description {
    row-gap: 16px;
  }
  .p-ticket__content-item-image {
    height: 88px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .p-ticket__content-list {
    justify-content: space-between;
    flex-direction: column;
    row-gap: 24px;
  }
  .p-ticket__content-item-number {
    font-size: 30px;
  }
  .p-ticket__content-item-text {
    font-size: 30px;
  }
  .p-ticket__content-confetti {
    column-gap: 8px;
  }
  .p-ticket__content-confetti-image {
    height: 32px;
  }
  .p-ticket__content-confetti-text {
    font-size: 20px;
  }
  .p-ticket__special-info {
    row-gap: 16px;
    padding-bottom: 34px;
    flex-direction: column;
  }
  .p-ticket__special-price-dl {
    column-gap: 24px;
  }
  .p-ticket__special-price-dt {
    font-size: 16px;
  }
  .p-ticket__special-price-dd {
    font-size: 24px;
  }
  .p-ticket__special-price-dd span {
    font-size: 14px;
    margin-left: -10px;
    width: 160px;
    display: block;
  }
  .p-ticket__special-inner {
    flex-direction: column;
    row-gap: 24px;
  }
  .p-ticket__special-inner--jewel {
    padding: 16px;
  }
  .p-ticket__special-image-list {
    width: 100%;
    row-gap: 16px;
  }
  .p-ticket__special-description {
    width: 100%;
    row-gap: 24px;
  }
  .p-ticket__special-title {
    border-radius: 0;
    padding: 8px 16px;
    margin: 0 auto;
  }
  .p-ticket__attention-text {
    font-size: 14px;
    color: #414141;
  }
  .p-ticket__popup-inner {
    padding: 56px 16px 16px;
    width: 90%;
  }
  .p-ticket__popup-inner--happy {
    padding: 24px 16px;
  }
  .p-ticket__popup-content-title {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .p-ticket__popup-information {
    row-gap: 8px;
  }
  .p-ticket__popup-decoration--1 {
    top: -32px;
    left: -16px;
    width: 80px;
  }
  .p-ticket__popup-decoration--2 {
    bottom: -16px;
    right: -16px;
    width: 72px;
  }
  .p-ticket__popup-close {
    top: 0;
    right: 0;
    height: 40px;
    width: 40px;
    cursor: pointer;
  }
  .p-ticket__popup-close-line--1 {
    top: 18px;
    left: 4px;
  }
  .p-ticket__popup-close-line--2 {
    top: 18px;
    right: 4px;
  }
  .p-ticket__attention {
    font-size: 14px;
    margin-top: 16px;
  }
  .p-ticket__outer-attention-text {
    width: 100%;
    margin-top: -24px;
    font-size: 14px;
  }
  .p-ticket__popup-inner--happy {
    height: 80%;
    width: fit-content;
  }
  .p-ticket__popup-information {
    row-gap: 8px;
  }
  .p-ticket__popup-information--happy {
    row-gap: 0;
    margin: 0 auto;
  }
  .p-ticket__popup-content--happy {
    overflow-y: scroll;
    height: 100%;
  }
  .p-ticket__popup-information-dt--happy {
    width: 30%;
    padding: 4px;
  }
  .p-ticket__popup-information-dd--happy {
    width: 70%;
    padding: 4px;
  }
}
.p-question__title {
  color: #231815;
  background-color: #fff;
  border: 1px solid #231815;
  text-align: center;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-question__section {
  display: flex;
  flex-direction: column;
}
.p-question__inquiry-element,
.p-question__inquiry-element-inner {
  display: flex;
  flex-direction: column;
}
.p-question__inquiry-buttons {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}
.p-question__popup {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.8);
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  display: none;
}
.p-question__popup.active {
  display: block;
}
.p-question__popup-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: solid 2px #d4b776;
  background-color: #fff;
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
.p-question__popup-title {
  font-weight: 800;
  color: #900071;
  text-align: center;
  font-size: 20px;
}
.p-question__popup-description {
  display: flex;
  flex-direction: column;
}
.p-question__popup-text {
  text-align: center;
}
.p-question__popup-close-button {
  position: absolute;
  background-color: #900071;
  cursor: pointer;
}
.p-question__popup-close-line {
  position: absolute;
  height: 2px;
  background-color: #fff;
  width: 80%;
}
.p-question__popup-close-line:nth-child(1) {
  top: 18px;
  left: 5px;
  transform: rotate(45deg);
}
.p-question__popup-close-line:nth-child(2) {
  top: 18px;
  right: 4px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 701px) {
  .p-question__section {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    row-gap: 32px;
  }
  .p-question__title {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
  }
  .p-question__inquiry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .p-question__inquiry-element {
    row-gap: 16px;
  }
  .p-question__inquiry-element-inner {
    row-gap: 4px;
  }
  .p-question__inquiry-buttons {
    column-gap: 24px;
  }
  .p-question__popup-description {
    row-gap: 8px;
  }
  .p-question__popup-inner {
    padding: 56px;
    row-gap: 16px;
  }
  .p-question__popup-close-button {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
  }
  .p-question__popup-close-line:nth-child(1) {
    top: 18px;
    left: 5px;
  }
  .p-question__popup-close-line:nth-child(2) {
    top: 18px;
    right: 4px;
  }
}
@media screen and (701px <= width <= 1300px) {
  .p-question__title {
    width: 97%;
    margin: 0 auto;
  }
  .p-question__inquiry {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 700px) {
  .p-question__section {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    row-gap: 24px;
  }
  .p-question__section--no-padding--SP {
    padding-left: 0;
    padding-right: 0;
  }
  .p-question__title {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
  }
  .p-question__inquiry {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  .p-question__inquiry-element {
    row-gap: 16px;
  }
  .p-question__inquiry-element-inner {
    row-gap: 4px;
  }
  .p-question__inquiry-buttons {
    flex-direction: column;
    row-gap: 24px;
  }
  .p-question__popup-description {
    row-gap: 8px;
  }
  .p-question__popup-inner {
    padding-top: 24px;
    padding-bottom: 24px;
    width: 90%;
    row-gap: 16px;
  }
  .p-question__popup-close-button {
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
  }
  .p-question__popup-close-line:nth-child(1) {
    top: 15px;
    left: 4px;
  }
  .p-question__popup-close-line:nth-child(2) {
    top: 15px;
    right: 3px;
  }
}
.p-market {
  position: relative;
  background: linear-gradient(90deg, #f6efdf 0%, #f5ebf3 50%, #f8daf2 100%);
  overflow: hidden; /* 念のため */
}

/* 上部○○px だけ背景＋グラデを敷く */
.p-market::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 420px; /* ← ここを好みの高さに調整（例：320px） */

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35)),
    url(./background-images/main-background--market.webp);

  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;

  z-index: 0;
}

/* 中身は背景レイヤーより前面に出す */
.p-market > * {
  position: relative;
  z-index: 1;
}

.p-market__tab {
  justify-content: space-between;
}
.p-market__tab-element {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.p-market__tab-element--green {
  background-color: rgba(236, 115, 134, 0.7);
}
.p-market__tab-element--yellow {
  background-color: rgba(255, 187, 78, 0.9);
}
.p-market__search {
  width: 100%;
}
.p-market__search--green {
  background-color: rgba(236, 115, 134, 0.7);
}
.p-market__search--yellow {
  background-color: rgba(255, 187, 78, 0.9);
}
.p-market__select-wrap {
  position: relative;
}
.p-market__select-wrap::after {
  position: absolute;
  content: '';
  display: block;
  background: #646464;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.p-market__select {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-market__select,
.p-market__input {
  background-color: #fff;
  border: 1px solid #231815;
  cursor: pointer;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-market__search-button {
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  line-height: 1;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  width: fit-content;
}
.p-market__search-button--green {
  background-color: #631c3a;
}
.p-market__search-button--blue {
  background-color: #631c3a;
}
.p-market__search-inner {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.p-market__list-wrap {
  width: 100%;
  /* background-color: rgba(249, 131, 208, 0.4); */
}
.p-market__item-image {
  aspect-ratio: 1/1;
  width: 100%;
}
.p-market__item-title {
  font-weight: 500;
}
.p-market__item-title--shop {
  color: #a10058;
}
.p-market__pagenation {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: fit-content;
}
.p-market__pagenation B {
  border: 1px solid #631c3a;
  background-color: #fff;
  color: #fff;
  background-color: #631c3a;
  padding: 8px 12px;
}
.p-market__pagenation a {
  border: 1px solid #631c3a;
  background-color: #631c3a;
  color: #fff;
  padding: 8px 12px;
}
.p-market__pagenation a.active {
  background-color: #fff;
  color: #631c3a;
}

@media screen and (min-width: 701px) {
  .p-market {
    background-size: 110%;
    background-position: right -20px top;
  }
  .p-market__section {
    font-family:
      'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
    font-weight: 500;
  }
  .p-market__tab {
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
  }
  .p-market__tab-element {
    width: 49%;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
    column-gap: 8px;
    border-radius: 0 16px 0 0;
  }
  .p-market__search-inner {
    margin: 0 auto;
    max-width: 1300px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .p-market__select-wrap {
    width: 40%;
  }
  .p-market__select-wrap::after {
    top: 16px;
    right: 8px;
    height: 10.3923048454px;
    width: 16px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .p-market__select {
    padding: 4px;
  }
  .p-market__input {
    width: 40%;
    padding: 4px;
  }
  .p-market__search-button {
    padding: 12px 40px;
  }
  .p-market__list {
    margin: 0 auto;
    max-width: 1300px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-market__item-title {
    font-size: 16px;
  }
  .p-market__pagenation {
    column-gap: 16px;
  }
  .p-market__pagenation-item {
    padding: 8px;
  }
}
@media screen and (701px <= width <= 1300px) {
  .p-market__tab,
  .p-market__list {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 700px) {
  .p-market {
    background-size: 170%;
    background-position: 90% 0%;
  }
  .p-market__section {
    font-family:
      'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  }
  .p-market__tab {
    margin: 0 auto;
    max-width: 1300px;
    display: flex;
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-market__tab-element {
    width: 49%;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 16px;
    column-gap: 8px;
    border-radius: 0 8px 0 0;
  }
  .p-market__search-inner {
    margin: 0 auto;
    max-width: 1300px;
    padding: 24px 16px;
    flex-direction: column;
    row-gap: 16px;
  }
  .p-market__select-wrap {
    width: 100%;
  }
  .p-market__select-wrap::after {
    top: 13px;
    right: 8px;
    height: 10.3923048454px;
    width: 16px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .p-market__select,
  .p-market__input {
    width: 100%;
    padding: 4px;
  }
  .p-market__search-button {
    padding: 14px 40px;
    margin: 0 auto;
  }
  .p-market__list {
    margin: 0 auto;
    max-width: 1300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 32px 16px;
  }
  .p-market__item-title {
    font-size: 18px;
    word-break: break-all;
  }
  .p-market__pagenation {
    column-gap: 16px;
  }
  .p-market__pagenation-item {
    padding: 8px;
  }
}
.p-news__item {
  display: flex;
  flex-direction: column;
}
.p-news__item-image {
  object-fit: contain;
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
}
.p-news__image-item-image {
  object-fit: contain;
}
.p-news__item-title {
  font-weight: 800;
}
.p-news__section {
  display: flex;
  flex-direction: column;
}
.p-news__release-date {
  text-align: right;
}
.p-news__item-image-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
}
.p-news em {
  font-style: italic;
}

@media screen and (min-width: 701px) {
  .p-news__main-visual {
    width: 60%;
    margin: 0 auto;
  }
  .p-news__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 1300px;
    margin: 0 auto;
    gap: 24px;
  }
  .p-news__item {
    row-gap: 8px;
  }
  .p-news__section {
    row-gap: 40px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
  }
  .p-news__image-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .p-news__image-item {
    width: 30%;
  }
}
@media screen and (701px <= width <= 1300px) {
  .p-news__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 700px) {
  .p-news__main-visual {
    width: 100%;
  }
  .p-news__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1300px;
    margin: 0 auto;
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-news__item {
    row-gap: 8px;
  }
  .p-news__section {
    row-gap: 24px;
  }
  .p-news__release-date,
  .p-news__description {
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-news__image-list {
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    row-gap: 16px;
  }
  .p-news__image-item {
    width: 100%;
  }
}
.p-map {
  background-image: url(./background-images/main-background--map.webp);
  background-color: #fff;
}
.p-map__section {
  display: flex;
  flex-direction: column;
}
.p-map__attention {
  display: block;
  width: fit-content;
  margin: 0 0 0 auto;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-map__table {
  display: flex;
  flex-direction: column;
  border: 1px solid #231815;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-map__table-wrap {
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-map__table-record {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #231815;
}
.p-map__table-record--1 {
  font-weight: 800;
}
.p-map__table-record--abroad:last-child {
  border-bottom: none;
}
.p-map__table-column {
  text-align: center;
  background-color: #fff;
  display: grid;
  place-items: center;
  border-right: 1px dotted #231815;
}
.p-map__table-column--1 {
  background-color: #ffc8ef;
}
.p-map__table-column--1-1 {
  color: #fff;
  background-color: #b60081;
}
.p-map__table-column--1-2 {
  color: #fff;
  background-color: #327d8b !important;
}
.p-map__table-column--1-3 {
  color: #fff;
  background-color: #a57d25;
}
.p-map__table-column--1-4 {
  color: #fff;
  background-color: #a57d25;
}
.p-map__table-column--1-5 {
  color: #fff;
  background-color: #a57d25;
}
.p-map__table-column--1-6 {
  color: #fff;
  background-color: #a57d25;
}
.p-map__table-column--1-7 {
  color: #fff;
  background-color: #a57d25;
}
.p-map__table-column--1-8 {
  color: #fff;
  background-color: #a57d25;
}
.p-map__table-column--2 {
  background-color: #e1faff;
}

.p-map__table-column:last-child {
  border-right: none;
}
.p-map__table-column--sponsor--1 {
  background-color: #dadada;
}
.p-map__table-column--title {
  color: #fff;
  background-color: #231815;
}
.p-map__table-column--abroad--title {
  color: #fff;
  background-color: #585858;
}
.p-map__image-wrap {
  display: flex;
  flex-direction: column;
}
.p-map__table-wrap {
  display: flex;
  background-color: #fff;
}

@media screen and (min-width: 701px) {
  .p-map {
    background-size: 100%;
    background-position: 0% -6%;
    row-gap: 64px;
    padding-top: 240px;
  }
  .p-map__section {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    row-gap: 24px;
  }
  .p-map__attention {
    font-size: 14px;
    font-family:
      'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  }
  .p-map__table--sponsor {
    border-right: 1px solid #231815;
    border-bottom: 1px solid #231815;
  }
  .p-map__table--sponsor--1 {
    border-left: 1px solid #231815;
  }
  .p-map__table--abroad {
    border-right: 1px solid #231815;
    border-bottom: 1px solid #231815;
  }
  .p-map__table--abroad--1 {
    border-left: 1px solid #231815;
  }
  .p-map__table-column {
    padding: 16px;
  }
  .p-map__table-column--1 {
    width: 10%;
  }
  .p-map__table-column--2 {
    width: 25%;
  }
  .p-map__table-column--3 {
    width: 12%;
  }
  .p-map__table-column--4 {
    width: 12%;
  }
  .p-map__table-column--5 {
    width: 12%;
  }
  .p-map__table-column--6 {
    width: 12%;
  }
  .p-map__table-column--7 {
    width: 12%;
  }
  .p-map__table-column--8 {
    width: 12%;
  }
  .p-map__table-column--abroad--0 {
    width: 20%;
  }
  .p-map__table-column--abroad--0--old {
    width: 60%;
  }
  .p-map__table-column--abroad--1 {
    width: 60%;
  }
  .p-map__table-column--abroad--1--old {
    width: 40%;
  }
  .p-map__table-column--abroad--2 {
    width: 20%;
  }
  .p-map__image-wrap {
    row-gap: 16px;
  }
  .p-map__table--sponsor {
    width: 50%;
  }
  .p-map__table-record--sponsor {
    width: 100%;
  }
  .p-map__table-record--sponsor--9 {
    border-bottom: 1px solid #231815 !important;
  }
  .p-map__table-record:last-child {
    border-bottom: none;
  }
  .p-map__table-column--sponsor--1 {
    width: 20%;
  }
  .p-map__table-column--sponsor--2 {
    width: 80%;
  }
  .p-map__table-column--sponsor--0-1 {
    border-right: 1px solid #fff;
  }
  .p-map__table-column--sponsor--0-2 {
    border-right: 1px solid #fff;
  }
}
@media screen and (701px <= width <= 1300px) {
  .p-map__section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 700px) {
  .p-map {
    padding-left: 16px;
    padding-right: 16px;
    background-size: 100%;
    background-position: 100% -1%;
    row-gap: 48px;
  }
  .p-map__section {
    width: 100%;
    margin: 0 auto;
    row-gap: 24px;
  }
  .p-map__image-wrap {
    row-gap: 16px;
  }
  .p-map__attention {
    font-size: 14px;
  }
  .p-map__table {
    font-size: 14px;
  }
  .p-map__table-column {
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    word-break: break-all;
  }
  .p-map__table-column--1 {
    width: 15%;
  }
  .p-map__table-column--1-3 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 5px;
  }
  .p-map__table-column--1-4 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 5px;
  }
  .p-map__table-column--1-5 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 5px;
  }
  .p-map__table-column--1-6 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 5px;
  }
  .p-map__table-column--1-7 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 5px;
  }
  .p-map__table-column--1-8 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 5px;
  }
  .p-map__table-column--2 {
    width: 37%;
  }
  .p-map__table-column--3 {
    width: 8%;
  }
  .p-map__table-column--4 {
    width: 8%;
  }
  .p-map__table-column--5 {
    width: 8%;
  }
  .p-map__table-column--6 {
    width: 8%;
  }
  .p-map__table-column--7 {
    width: 8%;
  }
  .p-map__table-column--8 {
    width: 8%;
  }
  .p-map__table-column--sponsor--0-1 {
    border-right: 1px solid #fff;
  }
  .p-map__table-column--sponsor--1 {
    width: 20%;
  }
  .p-map__table-column--sponsor--2 {
    width: 80%;
  }
  .p-map__table-column--abroad--0 {
    width: 20%;
  }
  .p-map__table-column--abroad--0--old {
    width: 60%;
  }
  .p-map__table-column--abroad--1 {
    width: 50%;
    flex-direction: column;
  }
  .p-map__table-column--abroad--1--old {
    width: 40%;
  }
  .p-map__table-column--abroad--2 {
    width: 30%;
  }
  .p-map__table-record--sponsor--0-2 {
    display: none;
  }
  .p-map__table-wrap {
    flex-direction: column;
    border-left: 1px solid #231815;
    border-right: 1px solid #231815;
  }

  .p-map__image-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .p-map__image-scroll .p-map__image {
    display: block;
    height: 320px;
    width: auto;
    max-width: none;
    min-width: 650px;
  }
}
.p-cultivation {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25), /* 上：しっかり白 */ rgba(255, 255, 255, 0.25) /* 下：薄く白 */),
    url(./background-images/main-background--cultivation.webp);
  background-color: #f8cfe1;
  background-attachment: fixed;
  background-size: cover;
}
.p-cultivation__section {
  display: flex;
  flex-direction: column;
}
.p-cultivation__section--illustrated-book {
  background-color: rgba(236, 115, 134, 0.95);
}
.p-cultivation__title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.p-cultivation__title-text {
  position: absolute;
  text-align: center;
  font-weight: 600;
  color: #fff;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-cultivation__top-list-item {
  display: flex;
  position: relative;
  box-shadow: 1px 1px 3px rgba(71, 71, 71, 0.6);
}
.p-cultivation__top-list-item-inner {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.p-cultivation__top-list-title {
  font-weight: 600;
}
.p-cultivation__top-list-title--red {
  color: #c30d23;
}
.p-cultivation__top-list-title--orange {
  color: #cf7124;
}
.p-cultivation__top-list-content {
  display: flex;
  flex-direction: column;
}
.p-cultivation__top-list-text {
  color: #898989;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 400;
}
.p-cultivation__top-list-circle {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.p-cultivation__top-list-circle--red {
  background-color: #e677a2;
}
.p-cultivation__top-list-circle--orange {
  background-color: #eea967;
}
.p-cultivation__illustrated-book-item {
  display: flex;
  filter: drop-shadow(3px 3px 1px rgba(71, 71, 71, 0.6));
}
.p-cultivation__illustrated-book-title {
  color: #c30d23;
  font-weight: 700;
  display: flex;
  text-align: center;
}
.p-cultivation__illustrated-book-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-cultivation__illustrated-book-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
.p-cultivation__illustrated-book-title-text {
  color: #fff;
}
.p-cultivation__illustrated-book-title-sub-text {
  color: #fff;
  color: #c30d23;
}
.p-cultivation__illustrated-book-title-sub {
  text-align: center;
  font-weight: 600;
  color: #c30d23;
}

@media screen and (min-width: 701px) {
  .p-cultivation {
    padding-bottom: 0;
    row-gap: 0;
  }
  .p-cultivation__section {
    row-gap: 48px;
    margin-bottom: 64px;
  }
  .p-cultivation__section--2 {
    margin-top: 120px;
  }
  .p-cultivation__section--illustrated-book {
    padding-top: 80px;
    padding-bottom: 144px;
    margin-bottom: 0;
  }
  .p-cultivation__title-image--red {
    height: 240px;
  }
  .p-cultivation__title-image--orange {
    height: 196px;
  }
  .p-cultivation__title-text {
    font-size: 20px;
  }
  .p-cultivation__title-text--red {
    top: 41%;
    left: 23%;
  }
  .p-cultivation__title-text--orange {
    top: 34%;
    left: 23%;
  }
  .p-cultivation__top-list {
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 144px;
    row-gap: 80px;
  }
  .p-cultivation__top-list-title {
    font-size: 24px;
    line-height: 24px;
  }
  .p-cultivation__top-list-item-image {
    aspect-ratio: 1/1;
  }
  .p-cultivation__top-list-item-image,
  .p-cultivation__top-list-item-inner {
    width: 50%;
  }
  .p-cultivation__top-list-item-inner {
    padding: 32px 48px;
  }
  .p-cultivation__top-list-icon {
    width: 32px;
  }
  .p-cultivation__top-list-content {
    row-gap: 8px;
  }
  .p-cultivation__top-list-circle {
    width: 88px;
    height: 88px;
    top: -24px;
    left: -24px;
  }
  .p-cultivation__illustrated-book {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .p-cultivation__illustrated-book-inner {
    background-color: #fff;
    width: 75%;
  }
  .p-cultivation__illustrated-book-image {
    aspect-ratio: 1/1;
    width: 25%;
  }
  .p-cultivation__illustrated-book-title {
    font-size: 20px;
    row-gap: 8px;
  }
  .p-cultivation__illustrated-book-title-image {
    width: 56px;
  }
  .p-cultivation__illustrated-book-title-text {
    font-size: 22px;
  }
  .p-cultivation__top-list-title-text {
    font-size: 18px;
  }
  .p-cultivation__illustrated-book-title-sub {
    font-size: 20px;
  }
  .p-cultivation__illustrated-book-title-sub-text {
    font-size: 16px;
  }
}
@media screen and (701px <= width <= 1300px) {
  .p-cultivation__section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-cultivation__section--2 {
    margin-top: 64px;
  }
  .p-cultivation__top-list {
    column-gap: 40px;
    row-gap: 56px;
  }
  .p-cultivation__top-list-item-inner {
    row-gap: 24px;
    padding: 24px;
  }
  .p-cultivation__top-list-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 700px) {
  .p-cultivation {
    background-size: 100%;
    background-position: 0% 0%;
    padding-bottom: 0;
    row-gap: 0;
  }
  .p-cultivation__section {
    row-gap: 24px;
    margin-bottom: 64px;
  }
  .p-cultivation__section--1,
  .p-cultivation__section--2 {
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-cultivation__section--illustrated-book {
    padding-top: 64px;
    padding-bottom: 96px;
    margin-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-cultivation__title-image--red {
    height: 204px;
  }
  .p-cultivation__title-image--orange {
    height: 184px;
  }
  .p-cultivation__title-text {
    font-size: 18px;
  }
  .p-cultivation__title-text--red {
    top: 40%;
    left: 21%;
  }
  .p-cultivation__title-text--orange {
    top: 37%;
    left: 24%;
  }
  .p-cultivation__top-list {
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    row-gap: 48px;
  }
  .p-cultivation__top-list-item {
    flex-direction: column;
  }
  .p-cultivation__top-list-title {
    font-size: 22px;
  }
  .p-cultivation__top-list-item-image {
    aspect-ratio: 1/1;
  }
  .p-cultivation__top-list-item-image,
  .p-cultivation__top-list-item-inner {
    width: 100%;
  }
  .p-cultivation__top-list-item-inner {
    padding: 32px;
    row-gap: 24px;
  }
  .p-cultivation__top-list-icon {
    width: 32px;
  }
  .p-cultivation__top-list-content {
    row-gap: 8px;
  }
  .p-cultivation__top-list-circle {
    width: 88px;
    height: 88px;
    top: -24px;
    left: -8px;
  }
  .p-cultivation__illustrated-book {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  .p-cultivation__illustrated-book-inner {
    background-color: #fff;
    width: 75%;
  }
  .p-cultivation__illustrated-book-image {
    aspect-ratio: 1/1;
    width: 25%;
  }
  .p-cultivation__illustrated-book-title {
    font-size: 20px;
    row-gap: 8px;
  }
  .p-cultivation__illustrated-book-title-image {
    width: 56px;
  }
  .p-cultivation__illustrated-book-title-sub {
    font-size: 18px;
  }
  .p-cultivation__illustrated-book-title-text {
    font-size: 20px;
  }
  .p-cultivation__top-list-title-text {
    font-size: 16px;
    white-space: pre-line;
  }
}
.p-cultivation-detail {
  width: 100%;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  font-weight: 400;
  color: #333;
}
.p-cultivation-detail__key-visual {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25), /* 上：しっかり白 */ rgba(255, 255, 255, 0.25) /* 下：薄く白 */),
    url(./background-images/main-background--cultivation.webp);
  background-size: cover;
  position: relative;
  border-bottom: 1px solid rgba(182, 0, 129, 0.3);
}
.p-cultivation-detail__key-visual-image {
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1/1;
  left: 50%;
  transform: translateX(-50%);
}
.p-cultivation-detail__title {
  border-bottom: 3px solid #b60081;
  position: relative;
  width: 100%;
  font-family: 'Shippori Mincho', serif;
}
.p-cultivation-detail__title-icon {
  color: #b60081;
  border-right: 3px solid #b60081;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  position: absolute;
}
.p-cultivation-detail__title-text {
  font-weight: 700;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-cultivation-detail__main {
  display: flex;
}
.p-cultivation-detail__main-image {
  aspect-ratio: 1/1;
}
.p-cultivation-detail__main-title {
  font-weight: 800;
  color: #b60081;
}
.p-cultivation-detail__main-content {
  display: flex;
  flex-direction: column;
}
.p-cultivation-detail__nav {
  border-bottom: 3px solid #b60081;
  display: flex;
  justify-content: space-between;
}
.p-cultivation-detail__nav-item {
  color: #fff;
  background-color: #b60081;
  text-align: center;
  position: relative;
}
.p-cultivation-detail__nav-item::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  content: '';
  display: block;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.p-cultivation-detail__basic {
  display: flex;
  flex-direction: column;
}
.p-cultivation-detail__basic-item-title {
  text-align: center;
  color: #b60081;
  font-weight: 700;
}
.p-cultivation-detail__basic-item-border-line {
  height: 1px;
  width: 100%;
  background-color: #b60081;
}
.p-cultivation-detail__basic-point {
  background-color: #fffeee;
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-cultivation-detail__basic-point-top-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.p-cultivation-detail__basic-point-title {
  color: #b60081;
}
.p-cultivation-detail__basic-point-text {
  color: #b60081;
  text-align: center;
}
.p-cultivation-detail__basic-point-description {
  color: #231815;
  font-weight: 400;
}
.p-cultivation-detail__basic-point-list {
  width: 100%;
}
.p-cultivation-detail__basic-point-list-item {
  width: 100%;
  display: flex;
}
.p-cultivation-detail__basic-sub-item {
  display: flex;
  flex-direction: column;
}
.p-cultivation-detail__basic-sub-title {
  border: 2px solid #b60081;
  width: fit-content;
  font-weight: 700;
  color: #b60081;
}
.p-cultivation-detail__basic-sub-title--1 {
  color: #fff;
  background-color: #b60081;
}
.p-cultivation-detail__past {
  width: 100%;
  background-color: #fef3f3;
}
.p-cultivation-detail__past-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
.p-cultivation-detail__past-title-text {
  color: #b60081;
  font-weight: 700;
}
.p-cultivation-detail__past-list-title {
  font-weight: 700;
}
.p-cultivation-detail__element {
  border: 1px solid #b60081;
  display: flex;
  flex-direction: column;
}
.p-cultivation-detail__element-title {
  color: #b60081;
  font-weight: 700;
}
.p-cultivation-detail__element-inner {
  display: flex;
}
.p-cultivation-detail__element-image {
  aspect-ratio: 1/1;
  display: block;
}
.p-cultivation-detail__element-definition-title {
  font-weight: 700;
}
.p-cultivation-detail__element-definition-list {
  display: flex;
}
.p-cultivation-detail__basic-sub-description {
  white-space: pre-wrap;
}
.p-cultivation-detail__past-list-description {
  font-weight: 400;
}

@media screen and (min-width: 701px) {
  .p-cultivation-detail {
    padding-top: 80px;
  }
  .p-cultivation-detail__key-visual {
    height: 240px;
    background-position: 0% 70%;
    margin-bottom: 120px;
  }
  .p-cultivation-detail__key-visual-image {
    width: 200px;
    bottom: -25%;
  }
  .p-cultivation-detail__section {
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
  }
  .p-cultivation-detail__title {
    height: 56px;
    margin-bottom: 64px;
  }
  .p-cultivation-detail__title-icon {
    padding: 8px 48px;
    font-size: 26px;
    bottom: 0;
  }
  .p-cultivation-detail__title-text {
    font-size: 24px;
  }
  .p-cultivation-detail__main {
    column-gap: 40px;
  }
  .p-cultivation-detail__main-image {
    width: 40%;
    border-radius: 20px;
  }
  .p-cultivation-detail__main-content {
    width: 60%;
    row-gap: 24px;
  }
  .p-cultivation-detail__main-title {
    font-size: 18px;
  }
  .p-cultivation-detail__nav {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .p-cultivation-detail__nav-item {
    width: 30%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-cultivation-detail__nav-item::after {
    width: 10px;
    height: 10px;
    bottom: 8px;
  }
  .p-cultivation-detail__calender {
    width: 80%;
    margin: 0 auto;
    object-fit: contain;
  }
  .p-cultivation-detail__basic {
    row-gap: 56px;
  }
  .p-cultivation-detail__basic-list {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .p-cultivation-detail__basic-item {
    width: 30%;
  }
  .p-cultivation-detail__basic-item-icon {
    height: 48px;
    margin: 0 auto;
  }
  .p-cultivation-detail__basic-item-border-line {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .p-cultivation-detail__basic-point {
    padding: 40px;
    row-gap: 24px;
  }
  .p-cultivation-detail__basic-point-top-title {
    top: -24px;
    width: 96px;
  }
  .p-cultivation-detail__basic-point-title {
    width: 10%;
  }
  .p-cultivation-detail__basic-point-description {
    width: 90%;
  }
  .p-cultivation-detail__basic-point-list-item {
    align-items: center;
    padding: 20px 0;
    border-top: 2px dotted #fcd7a1;
  }
  .p-cultivation-detail__basic-point-list-item:last-child {
    border-bottom: 2px dotted #fcd7a1;
  }
  .p-cultivation-detail__basic-sub {
    display: flex;
    column-gap: 32px;
  }
  .p-cultivation-detail__basic-sub-item {
    width: 50%;
  }
  .p-cultivation-detail__basic-sub-item {
    row-gap: 16px;
  }
  .p-cultivation-detail__basic-sub-title {
    border-radius: 20px;
    padding: 4px 16px;
  }
  .p-cultivation-detail__past {
    width: 100%;
    background-color: #fef3f3;
    padding-top: 64px;
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
  }
  .p-cultivation-detail__past-title {
    row-gap: 16px;
  }
  .p-cultivation-detail__past-title-icon {
    width: 48px;
  }
  .p-cultivation-detail__past-title-text {
    font-size: 20px;
  }
  .p-cultivation-detail__past-list {
    margin: 0 auto;
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    gap: 64px;
  }
  .p-cultivation-detail__past-list-item {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }
  .p-cultivation-detail__past-list-image {
    aspect-ratio: 3/2;
  }
  .p-cultivation-detail__element {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    row-gap: 24px;
  }
  .p-cultivation-detail__element-inner {
    column-gap: 32px;
  }
  .p-cultivation-detail__element-title {
    font-size: 20px;
  }
  .p-cultivation-detail__element-image {
    width: 20%;
    border-radius: 8px;
  }
  .p-cultivation-detail__element-text {
    display: flex;
    flex-direction: column;
    width: 80%;
    row-gap: 8px;
  }
}
@media screen and (701px <= width <= 1300px) {
  .p-cultivation-detail__section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 700px) {
  .p-cultivation-detail {
    padding-top: 0;
  }
  .p-cultivation-detail__key-visual {
    height: 176px;
    background-position: 0% 70%;
    margin-bottom: 80px;
  }
  .p-cultivation-detail__key-visual-image {
    width: 148px;
    bottom: -32%;
  }
  .p-cultivation-detail__section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-cultivation-detail__section--no-padding {
    padding: 0;
  }
  .p-cultivation-detail__title {
    height: 56px;
    margin-bottom: 40px;
  }
  .p-cultivation-detail__title-icon {
    padding: 0 16px;
    font-size: 20px;
    top: -24px;
    border-right: none;
    border-left: 3px solid #b60081;
  }
  .p-cultivation-detail__title-text {
    font-size: 20px;
  }
  .p-cultivation-detail__main {
    flex-direction: column;
    row-gap: 40px;
  }
  .p-cultivation-detail__main-image {
    width: 100%;
    border-radius: 20px;
  }
  .p-cultivation-detail__main-content {
    width: 100%;
    row-gap: 24px;
  }
  .p-cultivation-detail__main-title {
    font-size: 18px;
    text-align: center;
  }
  .p-cultivation-detail__nav {
    margin-top: 64px;
    margin-bottom: 40px;
  }
  .p-cultivation-detail__nav-item {
    width: 30%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .p-cultivation-detail__nav-item::after {
    width: 10px;
    height: 10px;
    bottom: 8px;
  }
  .p-cultivation-detail__calender {
    width: 100%;
    aspect-ratio: 10/4;
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-cultivation-detail__basic {
    row-gap: 56px;
  }
  .p-cultivation-detail__basic-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 24px;
  }
  .p-cultivation-detail__basic-item {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-cultivation-detail__basic-item-icon {
    height: 48px;
    margin: 0 auto;
  }
  .p-cultivation-detail__basic-item-border-line {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .p-cultivation-detail__basic-point {
    padding: 40px 16px;
    row-gap: 24px;
  }
  .p-cultivation-detail__basic-point-top-title {
    top: -16px;
    width: 96px;
  }
  .p-cultivation-detail__basic-point-title {
    width: 100%;
  }
  .p-cultivation-detail__basic-point-description {
    width: 100%;
  }
  .p-cultivation-detail__basic-point-list-item {
    align-items: center;
    padding: 20px 0;
    flex-direction: column;
    border-top: 2px dotted #fcd7a1;
    row-gap: 8px;
  }
  .p-cultivation-detail__basic-point-list-item:last-child {
    border-bottom: 2px dotted #fcd7a1;
  }
  .p-cultivation-detail__basic-sub {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-cultivation-detail__basic-sub-item {
    width: 100%;
  }
  .p-cultivation-detail__basic-sub-item {
    row-gap: 16px;
  }
  .p-cultivation-detail__basic-sub-title {
    border-radius: 20px;
    padding: 4px 16px;
  }
  .p-cultivation-detail__past {
    width: 100%;
    background-color: #fef3f3;
    padding: 64px 16px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
  }
  .p-cultivation-detail__past-title {
    row-gap: 16px;
  }
  .p-cultivation-detail__past-title-icon {
    width: 48px;
  }
  .p-cultivation-detail__past-title-text {
    font-size: 20px;
  }
  .p-cultivation-detail__past-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }
  .p-cultivation-detail__past-list-item {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }
  .p-cultivation-detail__past-list-image {
    aspect-ratio: 3/2;
  }
  .p-cultivation-detail__shop-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .p-cultivation-detail__element {
    width: 100%;
    margin: 0 auto;
    padding: 24px;
    row-gap: 40px;
  }
  .p-cultivation-detail__element-inner {
    flex-direction: column;
    row-gap: 24px;
  }
  .p-cultivation-detail__element-title {
    font-size: 20px;
  }
  .p-cultivation-detail__element-image {
    width: 100%;
    border-radius: 8px;
  }
  .p-cultivation-detail__element-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 8px;
  }
  .p-cultivation-detail__element-definition-list {
    flex-direction: column;
  }
}
.p-entry-popup {
  position: fixed;
  z-index: 999999;
  background-color: rgba(35, 24, 21, 0.8);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
.p-entry-popup.active {
  opacity: 1;
  visibility: visible;
}
.p-entry-popup__inner {
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}
.p-entry-popup__title {
  color: #b60081;
  font-weight: 900;
  text-align: center;
}
.p-entry-popup__description {
  color: #231815;
  text-align: center;
}
.p-entry-popup__dt {
  color: #b60081;
  border: 1px solid #b60081;
  background-color: #fff;
  width: fit-content;
  line-height: 1;
  font-weight: 900;
}
.p-entry-popup__dl {
  display: flex;
  align-items: center;
}
.p-entry-popup__close-button {
  position: absolute;
  background-color: #b60081;
}
.p-entry-popup__button-line {
  position: absolute;
  height: 2px;
  background-color: #fff;
  width: 80%;
}
.p-entry-popup__button-line:nth-child(1) {
  rotate: 45deg;
}
.p-entry-popup__button-line:nth-child(2) {
  rotate: -45deg;
}
.p-entry-popup__content {
  display: flex;
  flex-direction: column;
}
.p-entry-popup__content-box {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.p-entry-popup__content--shop {
  background-color: #ffedf2;
}
.p-entry-popup__content--contest {
  background-color: #e1efd8;
}
.p-entry-popup__content-title {
  color: #b60081;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-weight: 900;
}
.p-entry-popup__content-title--2 {
  color: #70ad47;
}
.p-entry-popup__content-description {
  text-align: center;
}
.p-entry-popup__content-description--sp {
  display: none;
}
.p-entry-popup__content-description--center {
  margin-left: 150px;
}
.p-entry-popup__button {
  position: relative;
  color: #fff;
  display: block;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 2px 2px rgba(71, 71, 71, 0.2));
}
.p-entry-popup__button--pink {
  background-color: #b60081;
}
.p-entry-popup__button--orange {
  background-color: #ccc;
  color: #333333;
  opacity: 0.8;
  pointer-events: none;
}
.p-entry-popup__button--gray {
  background-color: #707070;
}
.p-entry-popup__button--green {
  background-color: #70ad47;
}
.p-entry-popup__button-icon {
  position: absolute;
}
.p-entry-popup__button-list {
  display: flex;
}
.p-entry-popup__button-list--2 {
  position: relative;
  column-gap: 26px;
}
.p-entry-popup__button-list--2::before {
  position: absolute;
  top: -40px;
  right: 470px;
}
.p-entry-popup__info {
  margin: 0 auto;
}

@media screen and (min-width: 701px) {
  .p-entry-popup__inner {
    background-color: #fff;
    padding: 32px 48px;
    row-gap: 24px;
    max-height: 96%;
    width: 90%;
    max-width: 1500px;
  }
  .p-entry-popup__title {
    font-size: 26px;
  }
  .p-entry-popup__info {
    display: flex;
    column-gap: 40px;
  }
  .p-entry-popup__dl {
    column-gap: 8px;
  }
  .p-entry-popup__dt {
    padding: 8px 16px;
    font-size: 18px;
  }
  .p-entry-popup__dd {
    font-size: 18px;
  }
  .p-entry-popup__close-button {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    top: 16px;
    right: 16px;
    cursor: pointer;
  }
  .p-entry-popup__button {
    min-width: 188px;
    min-height: 56px;
    column-gap: 8px;
  }
  .p-entry-popup__button-list {
    column-gap: 40px;
    margin: 0 auto;
  }
  .p-entry-popup__button-list--2 {
    position: relative;
    column-gap: 26px;
  }
  .p-entry-popup__button-list--2 a {
    text-align: center;
  }
  .p-entry-popup__button-list--2 a:last-child {
    background-color: #ccc;
    color: #333;
    opacity: 0.8;
  }
  .p-entry-popup__button-icon {
    width: 24px;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .p-entry-popup__button-line {
    position: absolute;
    height: 2px;
    background-color: #fff;
    width: 70%;
    top: 48%;
  }
  .p-entry-popup__button-line:nth-child(1) {
    left: 8px;
  }
  .p-entry-popup__button-line:nth-child(2) {
    right: 8px;
  }
  .p-entry-popup__content {
    width: 48%;
    min-width: 680px;
    padding: 32px 24px;
    row-gap: 16px;
  }
  .p-entry-popup__content-title-text--large {
    font-size: 22px;
  }
  .p-entry-popup__content-title-text--small {
    font-size: 18px;
  }
  .p-entry-popup__description {
    font-size: 16px;
  }
  .p-entry-popup__flex {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 2%;
  }
  .p-entry-popup__flex--image {
    justify-content: center;
    gap: 4%;
  }
  .p-entry-popup__image--shop {
    width: 70%;
    height: 240px;
    max-width: 380px;
    object-fit: cover;
    margin: 0 auto;
  }
  .p-entry-popup__image--contest {
    width: 40%;
    height: 240px;
    object-fit: cover;
    max-width: 160px;
  }
}
@media screen and (max-width: 1501px) {
  .p-entry-popup__inner {
    width: 60%;
  }
  .p-entry-popup__content {
    width: 100%;
    margin-bottom: 40px;
  }
  .p-entry-popup__flex {
    flex-direction: column-reverse;
  }
  .p-entry-popup__flex--image {
    flex-direction: row;
  }
}
@media screen and (701px <= width <= 1300px) {
  .p-entry-popup__inner {
    width: 90%;
  }
  .p-entry-popup__content {
    min-width: unset;
  }
}
@media screen and (max-width: 864px) {
  .p-entry-popup__content-box {
    display: none;
  }
  .p-entry-popup__content-description--sp {
    display: block;
    margin-bottom: 0.92vw;
  }
  .p-entry-popup__button-list {
    flex-direction: column;
  }
  .p-entry-popup__button-list--2 {
    margin-top: 40px;
  }
  .p-entry-popup__button-list--2::before {
    display: none;
  }
  .p-entry-popup__button-list--2 a:nth-child(1):before {
    position: absolute;
    top: -36px;
    color: #231815;
    font-family: 'Source Serif 4', 'Shippori Mincho', 'Noto Sans JP', sans-serif;
    font-weight: 500;
  }
  .p-entry-popup__button {
    min-width: 35vw;
    margin-bottom: 10px;
  }
  .p-entry-popup__button-icon {
    left: 60px;
  }
}
@media screen and (max-width: 700px) {
  .p-entry-popup__inner {
    background-color: #fff;
    padding: 32px 16px;
    row-gap: 24px;
    width: 90%;
    max-height: 85%;
    margin: auto;
  }
  .p-entry-popup__title {
    font-size: 4.8vw;
  }
  .p-entry-popup__info {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  .p-entry-popup__dl {
    flex-direction: column;
    row-gap: 8px;
  }
  .p-entry-popup__dt {
    padding: 8px 16px;
    font-size: 4.4vw;
  }
  .p-entry-popup__dd {
    font-size: 4vw;
  }
  .p-entry-popup__close-button {
    position: fixed;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    top: 4%;
    right: 8px;
    cursor: pointer;
  }
  .p-entry-popup__button {
    min-width: 55vw;
    min-height: 56px;
    column-gap: 8px;
  }
  .p-entry-popup__button-list {
    flex-direction: column;
    row-gap: 8px;
    margin: 0 auto;
  }
  .p-entry-popup__button-list--2 {
    margin-top: 40px;
  }
  .p-entry-popup__button-list--2 a:nth-child(1):before {
    font-size: 3.8vw;
    top: -7.85vw;
  }
  .p-entry-popup__button-icon {
    width: 24px;
    left: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .p-entry-popup__button-line {
    position: absolute;
    height: 2px;
    background-color: #fff;
    width: 70%;
    top: 48%;
  }
  .p-entry-popup__button-line:nth-child(1) {
    left: 8px;
  }
  .p-entry-popup__button-line:nth-child(2) {
    right: 8px;
  }
  .p-entry-popup__content {
    padding: 24px;
    row-gap: 16px;
  }
  .p-entry-popup__content-description {
    font-size: 4vw;
  }
  .p-entry-popup__content-description--sp {
    font-size: 3.8vw;
  }
  .p-entry-popup__content-title-text--large {
    font-size: 5.8vw;
  }
  .p-entry-popup__content-title-text--small {
    font-size: 4.8vw;
  }
  .p-entry-popup__description {
    font-size: 3.6vw;
  }
  .p-entry-popup__image--contest:nth-child(1) {
    margin-bottom: 20px;
  }
  .p-entry-popup__button-list--2 a {
    text-align: center;
  }
  .p-entry-popup__image--contest {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
  .p-entry-popup__flex {
    display: flex;
  }
  .p-entry-popup__flex--image {
    display: block;
  }
}
.c-title--vector {
  display: flex;
  flex-direction: column;
}
.c-title--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-title--product {
  font-weight: 700;
  border-left: 4px solid #cb3a39;
  padding-left: 4px;
}
.c-title--large {
  font-weight: 700;
  text-align: center;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.c-title--normal {
  text-align: center;
  font-weight: 700;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.c-title--small {
  text-align: left;
  border-left: 4px solid #b60081;
  padding-left: 4px;
  font-weight: 700;
}
.c-title__icon-text {
  font-weight: 700;
  text-align: center;
}
.c-title__icon-text--white {
  color: #fff;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.c-title__image {
  margin: 0 auto;
}
.c-title__image-sub {
  width: 40px;
  margin-right: auto;
  margin-left: auto;
}
.c-title__image--Cultivation {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: -16px;
}
.c-title__text {
  color: #000;
  text-align: center;
  font-family: 'sawarabi gothic', sans-serif;

  /* background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(35, 24, 21) 50%, rgba(255, 255, 255, 0) 100%); */
  display: block;
  margin: 0 auto;
  width: fit-content;
}
.c-title__text--no-color {
  color: #231815;
  background: none;
}
.c-title__text--bold {
  font-weight: 800;
}
.c-title__description {
  width: fit-content;
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
  font-family: 'sawarabi gothic', sans-serif;
  font-weight: 500;
}
.c-title__description--white {
  color: #fff;
}
.c-title__english {
  text-align: center;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
}

@media screen and (min-width: 701px) {
  .c-title--vector {
    row-gap: 24px;
  }
  .c-title--vector--small {
    row-gap: 8px;
  }
  .c-title--icon {
    row-gap: 16px;
    margin-bottom: -16px;
  }
  .c-title--large {
    font-size: 34px;
    font-family:
      'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  }
  .c-title--normal {
    font-size: 24px;
    font-family:
      'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  }
  .c-title--small {
    font-size: 18px;
  }
  .c-title__icon-image--ticket {
    height: 32px;
  }
  .c-title__icon-image--present {
    height: 48px;
  }
  .c-title__icon-text {
    font-family:
      'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
    font-size: 20px;
  }
  .c-title--product {
    font-size: 18px;
  }
  .c-title__image {
    height: 34px;
  }
  .c-title__image--Market {
    height: 110px;
  }
  .c-title__image-sub {
    width: 50px;
    margin: 0 auto;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  }
  .c-title__image--Schedule-Ticket {
    height: 24px;
  }
  .c-title__image--News {
    height: 40px;
  }
  .c-title__image--Exhibition {
    height: 40px;
  }
  .c-title__image--Special-Exhibition {
    height: 48px;
  }
  .c-title__image--Special-Exhibition--PC {
    display: block;
  }
  .c-title__image--Special-Exhibition--SP {
    display: none;
  }
  .c-title__image--Shop {
    height: 40px;
  }
  .c-title__image--Item {
    height: 32px;
  }
  .c-title__image--SNS {
    height: 32px;
  }
  .c-title__text {
    letter-spacing: 3.4px;
    padding: 2px 40px;
  }
  .c-title__description {
    /* background-color: #fff; */
    padding: 2px 4px;
    font-size: 16px;
    margin-top: 8px;
    text-align: center;
    font-family: 'Sawarabi Gothic', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 19px;
    letter-spacing: 0.15em;
    margin-bottom: 0px;
  }
  .c-title__description--PC {
    display: block;
  }
  .c-title__description--SP {
    display: none;
  }
  .c-title__description--no-color {
    background-color: rgba(0, 0, 0, 0);
  }
  .c-title__english {
    font-size: 56px;
  }
}
@media screen and (max-width: 700px) {
  .c-title--vector {
    row-gap: 24px;
  }
  .c-title--Schedule-Ticket {
    display: none;
  }
  .c-title--icon {
    row-gap: 16px;
  }
  .c-title--large {
    font-size: 28px;
  }
  .c-title--normal {
    font-size: 20px;
  }
  .c-title--small {
    font-size: 18px;
  }
  .c-title__icon-image--ticket {
    height: 32px;
  }
  .c-title__icon-image--present {
    height: 48px;
  }
  .c-title__icon-text {
    font-size: 20px;
  }
  .c-title__image {
    height: 28px;
  }
  .c-title__image--Market {
    height: 88px;
    margin-top: 0px;
  }
  .c-title__image--Schedule-Ticket {
    display: none;
  }
  .c-title__image--News {
    height: 24px;
  }
  .c-title__image--Exhibition {
    height: 28px;
  }
  .c-title__image--Special-Exhibition {
    height: 68px;
  }
  .c-title__image--Special-Exhibition--PC {
    display: none;
  }
  .c-title__image--Special-Exhibition--SP {
    display: block;
  }
  .c-title__image--Contest {
    height: 28px;
  }
  .c-title__imageMarket {
    height: 28px;
  }
  .c-title__image--Shop {
    height: 40px;
  }
  .c-title__image--Item {
    height: 32px;
  }
  .c-title__image--More {
    height: 28px;
  }
  .c-title__image--SNS {
    height: 28px;
  }
  .c-title__image--Cultivation {
    height: auto;
  }
  .c-title__text {
    letter-spacing: 3.4px;
    padding: 2px 40px;
  }
  .c-title__description {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
  }
  .c-title__description--PC {
    display: none;
  }
  .c-title__description-inner {
    padding: 2px 4px;
    display: block;
    text-align: center;
  }
  .c-title__english {
    font-size: 40px;
  }
}
.c-more-button {
  display: block;
  margin: 0 0 0 auto;
}
.c-more-button__image {
  object-fit: contain;
}

@media screen and (min-width: 701px) {
  .c-more-button {
    width: 132px;
  }
  .c-more-button--contest--PC {
    position: absolute;
    top: 288px;
    right: 0;
  }
  .c-more-button--contest--SP {
    display: none;
  }
  .c-more-button--market {
    position: absolute;
    top: 356px;
    right: 0;
  }
}
@media screen and (701px <= width <= 1300px) {
  .c-more-button__image {
    padding-right: 16px;
  }
}
@media screen and (max-width: 700px) {
  .c-more-button {
    width: 120px;
  }
  .c-more-button--contest--PC {
    display: none;
  }
  .c-more-button--contest--SP {
    display: block;
    margin-right: 16px;
  }
  .c-more-button--market {
    margin-right: 16px;
  }
}
.c-new-tab-icon {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.c-new-tab-icon--white::after {
  content: '';
  display: block;
  background-image: url(./background-images/new-tab-icon--white.webp);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-new-tab-icon--black::after {
  content: '';
  display: block;
  background-image: url(./background-images/new-tab-icon--black.webp);
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-SNS-icon {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (min-width: 701px) {
  .c-SNS-icon {
    column-gap: 24px;
  }
  .c-SNS-icon__image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }
}
@media screen and (701px <= width <= 1300px) {
  .c-SNS-icon {
    column-gap: 16px;
  }
  .c-SNS-icon__image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 700px) {
  .c-SNS-icon {
    column-gap: 24px;
  }
  .c-SNS-icon__image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
}
.c-description-list {
  display: flex;
  flex-direction: column;
}
.c-description-list__title {
  font-weight: 600;
  border-bottom: 1px solid #231815;
  display: flex;
  align-items: center;
}
.c-description-list__title::before {
  content: '';
  background-color: #cb3a39;
  display: block;
  border-radius: 50%;
}

@media screen and (min-width: 701px) {
  .c-description-list {
    row-gap: 4px;
  }
  .c-description-list__title {
    font-size: 18px;
    column-gap: 4px;
  }
  .c-description-list__title::before {
    width: 8px;
    height: 8px;
  }
  .c-description-list__description {
    font-size: 18px;
  }
}
@media screen and (max-width: 700px) {
  .c-description-list {
    row-gap: 4px;
  }
  .c-description-list__title {
    font-size: 16px;
    column-gap: 4px;
  }
  .c-description-list__title::before {
    width: 8px;
    height: 8px;
  }
}
.c-button {
  cursor: pointer;
  line-height: 1;
  display: block;
  width: fit-content;
  text-align: center;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.c-button--ticket {
  position: relative;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #ea5514;
  line-height: 1;
  width: fit-content;
}
/* .c-button--ticket::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 14px;
  color: #231815;
  font-weight: 400;
  white-space: nowrap;
}
.c-button--ticket-guideTour::after {
  content: 'セブンコード：113-698';
}
.c-button--ticket-withFlower::after {
  content: 'セブンコード：108-740';
} */
.c-button--ticket:hover {
  color: white;
  opacity: 0.8;
}
.c-button--ticket--code_1,
.c-button--ticket--code_2,
.c-button--ticket--code_3,
.c-button--ticket--code_4,
.c-button--ticket--code_5,
.c-button--ticket--code_6 {
  position: relative;
}
.c-button--ticket--code_1::after,
.c-button--ticket--code_2::after,
.c-button--ticket--code_3::after,
.c-button--ticket--code_4::after,
.c-button--ticket--code_5::after,
.c-button--ticket--code_6::after {
  position: absolute;
  content: 'セブンコード：108-740';
  width: 100%;
  bottom: -24px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 13px;
  color: #231815;
}
.c-button--ticket--code_2::after {
  content: 'セブンコード：113-697';
}
.c-button--ticket--code_3::after {
  content: 'セブンコード：113-694';
}
.c-button--ticket--code_4::after {
  content: 'セブンコード：113-696';
}
.c-button--ticket--code_5::after {
  content: 'セブンコード：113-700';
}
.c-button--ticket--code_6::after {
  content: 'セブンコード：113-700';
}
.c-button--normal {
  color: #fff;
  background-color: #b60081;
  /* background-color: #009d91; */
}
.c-button--gray {
  color: #fff;
  background-color: #414141;
}
.c-button--soldout {
  position: relative;
  pointer-events: none;
}
.c-button--soldout::after {
  position: absolute;
  content: 'SOLD OUT';
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: grid;
  place-items: center;
}

@media screen and (min-width: 701px) {
  .c-button {
    min-width: 160px;
    padding: 16px 32px;
  }
  .c-button--ticket {
    position: relative;
    padding: 16px 36px;
  }
  /* .c-button--ticket::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 14px;
  color: #231815;
  font-weight: 400;
  white-space: nowrap;
}
.c-button--ticket-guideTour::after {
  content: 'セブンコード：113-698';
}
.c-button--ticket-withFlower::after {
  content: 'セブンコード：113-697';
} */
  .c-button--ticket--code_1,
  .c-button--ticket--code_2,
  .c-button--ticket--code_3,
  .c-button--ticket--code_4,
  .c-button--ticket--code_5,
  .c-button--ticket--code_6 {
    position: relative;
  }
  .c-button--ticket--code_1::after,
  .c-button--ticket--code_2::after,
  .c-button--ticket--code_3::after,
  .c-button--ticket--code_4::after,
  .c-button--ticket--code_5::after,
  .c-button--ticket--code_6::after {
    position: absolute;
    content: 'セブンコード：113-697';
    width: 100%;
    bottom: -24px;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 14px;
    color: #231815;
  }
  .c-button--ticket--code_2::after {
    content: 'セブンコード：113-697';
  }
  .c-button--ticket--code_3::after {
    content: 'セブンコード：113-694';
  }
  .c-button--ticket--code_4::after {
    content: 'セブンコード：113-696';
  }
  .c-button--ticket--code_5::after {
    content: 'セブンコード：113-700';
  }
  .c-button--ticket--code_6::after {
    content: 'セブンコード：113-700';
  }
  .c-button--normal {
    padding: 16px 32px;
    border-radius: 2px;
  }
}
@media screen and (max-width: 700px) {
  .c-button {
    min-width: 160px;
    padding: 16px 32px;
  }
  .c-button--ticket {
    padding: 16px 48px;
  }
  .c-button--normal {
    padding: 16px 32px;
    border-radius: 2px;
  }
}
.c-accordion-menu {
  display: flex;
  flex-direction: column;
}
.c-accordion-menu__title {
  background-color: rgba(255, 255, 255, 0.7);
  position: relative;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.c-accordion-menu__title--red {
  color: #fff;
  background-color: rgba(219, 62, 62, 0.7);
}
.c-accordion-menu__title::after {
  position: absolute;
  content: '';
  display: block;
  background: #231815;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: all 0.4s;
}
.c-accordion-menu__title.active::after {
  transform: rotate(180deg);
}
.c-accordion-menu__description {
  opacity: 0;
  height: 0;
  overflow-y: hidden;
  transition: all 0.4s;
  background-color: rgba(255, 255, 255, 0.7);
}
.c-accordion-menu__description.active {
  opacity: 1;
  height: auto;
  font-family: 'sawarabi gothic', sans-serif;
}
.c-accordion-menu__list {
  list-style: circle;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 701px) {
  .c-accordion-menu {
    margin: 0 auto;
    max-width: 1300px;
    width: 100%;
    row-gap: 16px;
  }
  .c-accordion-menu__title {
    padding: 16px 24px;
    cursor: pointer;
    font-family:
      'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  }
  .c-accordion-menu__title::after {
    top: 45%;
    right: 24px;
    height: 10px;
    width: 20px;
  }
  .c-accordion-menu__title.active::after {
    top: 45%;
    height: 10px;
  }
  .c-accordion-menu__description {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 24px;
    padding-right: 24px;
  }
  .c-accordion-menu__description.active {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .c-accordion-menu__list {
    margin-left: 24px;
    row-gap: 8px;
  }
}
@media screen and (701px <= width <= 1300px) {
  .c-accordion-menu__wrap {
    width: 97%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 700px) {
  .c-accordion-menu {
    margin: 0 auto;
    max-width: 1300px;
    width: 100%;
    row-gap: 16px;
  }
  .c-accordion-menu__title {
    padding: 16px 40px 16px 16px;
    cursor: pointer;
  }
  .c-accordion-menu__title::after {
    top: 45%;
    right: 16px;
    height: 8px;
    width: 16px;
  }
  .c-accordion-menu__title.active::after {
    transform: rotate(180deg);
  }
  .c-accordion-menu__description {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 24px;
    padding-right: 24px;
  }
  .c-accordion-menu__description.active {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .c-accordion-menu__list {
    margin-left: 24px;
    row-gap: 8px;
  }
}
.c-advertise-banner {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.c-select-box {
  border: 1px solid #231815;
  background-color: #fff;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
  cursor: pointer;
}
.c-select-box__wrap {
  position: relative;
  height: fit-content;
  width: fit-content;
}
.c-select-box__wrap:after {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  right: 0;
  background-color: #6d6d6d;
  pointer-events: none;
}
.c-select-box__wrap::before {
  background-color: #fff;
  position: absolute;
  content: '';
  display: block;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
  pointer-events: none;
}

@media screen and (min-width: 701px) {
  .c-select-box {
    padding: 4px;
    width: 100%;
  }
  .c-select-box__wrap {
    position: relative;
    height: fit-content;
    width: 100%;
  }
  .c-select-box__wrap:after {
    height: 34px;
    width: 34px;
  }
  .c-select-box__wrap::before {
    height: 13.8564064606px;
    width: 20px;
    top: 11px;
    right: 7px;
  }
}
@media screen and (max-width: 700px) {
  .c-select-box {
    padding: 4px;
    width: 100%;
    font-size: 16px;
  }
  .c-select-box__wrap {
    position: relative;
    height: fit-content;
    width: 100%;
  }
  .c-select-box__wrap:after {
    height: 34px;
    width: 34px;
  }
  .c-select-box__wrap::before {
    height: 13.8564064606px;
    width: 20px;
    top: 11px;
    right: 7px;
  }
}
.c-input {
  border: 1px solid #231815;
  background-color: #fff;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}

@media screen and (min-width: 701px) {
  .c-input {
    padding: 4px;
    width: 100%;
  }
  .c-input--textarea {
    width: 100%;
    height: 120px;
  }
}
@media screen and (max-width: 700px) {
  .c-input {
    padding: 4px;
    width: 100%;
  }
  .c-input--textarea {
    width: 100%;
    height: 200px;
  }
}
.u-margin--0auto {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.u-margin--top--8 {
  margin-top: 8px;
}
.u-margin--top--16 {
  margin-top: 16px;
}
.u-margin--top--24 {
  margin-top: 24px;
}
.u-margin--top--32 {
  margin-top: 32px;
}
.u-margin--top--40 {
  margin-top: 40px;
}
.u-margin--top--48 {
  margin-top: 48px;
}
.u-margin--top--56 {
  margin-top: 56px;
}
.u-margin--top--64 {
  margin-top: 64px;
}
.u-margin--bottom--8 {
  margin-bottom: 8px;
}
.u-margin--bottom--16 {
  margin-bottom: 16px;
}
.u-margin--bottom--24 {
  margin-bottom: 24px;
}
.u-margin--bottom--32 {
  margin-bottom: 32px;
}
.u-margin--bottom--40 {
  margin-bottom: 40px;
}
.u-margin--bottom--48 {
  margin-bottom: 48px;
}
.u-margin--bottom--56 {
  margin-bottom: 56px;
}
.u-margin--bottom--64 {
  margin-bottom: 64px;
}
.u-margin--right--8 {
  margin-right: 8px;
}
.u-margin--right--16 {
  margin-right: 16px;
}
.u-margin--right--24 {
  margin-right: 24px;
}
.u-margin--right--32 {
  margin-right: 32px;
}
.u-margin--right--40 {
  margin-right: 40px;
}
.u-margin--right--48 {
  margin-right: 48px;
}
.u-margin--right--56 {
  margin-right: 56px;
}
.u-margin--right--64 {
  margin-right: 64px;
}
.u-margin--left--8 {
  margin-left: 8px;
}
.u-margin--left--16 {
  margin-left: 16px;
}
.u-margin--left--24 {
  margin-left: 24px;
}
.u-margin--left--32 {
  margin-left: 32px;
}
.u-margin--left--40 {
  margin-left: 40px;
}
.u-margin--left--48 {
  margin-left: 48px;
}
.u-margin--left--56 {
  margin-left: 56px;
}
.u-margin--left--64 {
  margin-left: 64px;
}

@media screen and (min-width: 701px) {
  .u-margin--PC--top--8 {
    margin-top: 8px;
  }
  .u-margin--PC--top--16 {
    margin-top: 16px;
  }
  .u-margin--PC--top--24 {
    margin-top: 24px;
  }
  .u-margin--PC--top--32 {
    margin-top: 32px;
  }
  .u-margin--PC--top--40 {
    margin-top: 40px;
  }
  .u-margin--PC--top--48 {
    margin-top: 48px;
  }
  .u-margin--PC--top--56 {
    margin-top: 56px;
  }
  .u-margin--PC--top--64 {
    margin-top: 64px;
  }
  .u-margin--PC--bottom--8 {
    margin-bottom: 8px;
  }
  .u-margin--PC--bottom--16 {
    margin-bottom: 16px;
  }
  .u-margin--PC--bottom--24 {
    margin-bottom: 24px;
  }
  .u-margin--PC--bottom--32 {
    margin-bottom: 32px;
  }
  .u-margin--PC--bottom--40 {
    margin-bottom: 40px;
  }
  .u-margin--PC--bottom--48 {
    margin-bottom: 48px;
  }
  .u-margin--PC--bottom--56 {
    margin-bottom: 56px;
  }
  .u-margin--PC--bottom--64 {
    margin-bottom: 64px;
  }
  .u-margin--PC--right--8 {
    margin-right: 8px;
  }
  .u-margin--PC--right--16 {
    margin-right: 16px;
  }
  .u-margin--PC--right--24 {
    margin-right: 24px;
  }
  .u-margin--PC--right--32 {
    margin-right: 32px;
  }
  .u-margin--PC--right--40 {
    margin-right: 40px;
  }
  .u-margin--PC--right--48 {
    margin-right: 48px;
  }
  .u-margin--PC--right--56 {
    margin-right: 56px;
  }
  .u-margin--PC--right--64 {
    margin-right: 64px;
  }
  .u-margin--PC--left--8 {
    margin-left: 8px;
  }
  .u-margin--PC--left--16 {
    margin-left: 16px;
  }
  .u-margin--PC--left--24 {
    margin-left: 24px;
  }
  .u-margin--PC--left--32 {
    margin-left: 32px;
  }
  .u-margin--PC--left--40 {
    margin-left: 40px;
  }
  .u-margin--PC--left--48 {
    margin-left: 48px;
  }
  .u-margin--PC--left--56 {
    margin-left: 56px;
  }
  .u-margin--PC--left--64 {
    margin-left: 64px;
  }
}
@media screen and (max-width: 700px) {
  .u-margin--SP--top--8 {
    margin-top: 8px;
  }
  .u-margin--SP--top--16 {
    margin-top: 16px;
  }
  .u-margin--SP--top--24 {
    margin-top: 24px;
  }
  .u-margin--SP--top--32 {
    margin-top: 32px;
  }
  .u-margin--SP--top--40 {
    margin-top: 40px;
  }
  .u-margin--SP--top--48 {
    margin-top: 48px;
  }
  .u-margin--SP--top--56 {
    margin-top: 56px;
  }
  .u-margin--SP--top--64 {
    margin-top: 64px;
  }
  .u-margin--SP--bottom--8 {
    margin-bottom: 8px;
  }
  .u-margin--SP--bottom--16 {
    margin-bottom: 16px;
  }
  .u-margin--SP--bottom--24 {
    margin-bottom: 24px;
  }
  .u-margin--SP--bottom--32 {
    margin-bottom: 32px;
  }
  .u-margin--SP--bottom--40 {
    margin-bottom: 40px;
  }
  .u-margin--SP--bottom--48 {
    margin-bottom: 48px;
  }
  .u-margin--SP--bottom--56 {
    margin-bottom: 56px;
  }
  .u-margin--SP--bottom--64 {
    margin-bottom: 64px;
  }
  .u-margin--SP--right--8 {
    margin-right: 8px;
  }
  .u-margin--SP--right--16 {
    margin-right: 16px;
  }
  .u-margin--SP--right--24 {
    margin-right: 24px;
  }
  .u-margin--SP--right--32 {
    margin-right: 32px;
  }
  .u-margin--SP--right--40 {
    margin-right: 40px;
  }
  .u-margin--SP--right--48 {
    margin-right: 48px;
  }
  .u-margin--SP--right--56 {
    margin-right: 56px;
  }
  .u-margin--SP--right--64 {
    margin-right: 64px;
  }
  .u-margin--SP--left--8 {
    margin-left: 8px;
  }
  .u-margin--SP--left--16 {
    margin-left: 16px;
  }
  .u-margin--SP--left--24 {
    margin-left: 24px;
  }
  .u-margin--SP--left--32 {
    margin-left: 32px;
  }
  .u-margin--SP--left--40 {
    margin-left: 40px;
  }
  .u-margin--SP--left--48 {
    margin-left: 48px;
  }
  .u-margin--SP--left--56 {
    margin-left: 56px;
  }
  .u-margin--SP--left--64 {
    margin-left: 64px;
  }
}
.u-padding--top--8 {
  padding-top: 8px;
}
.u-padding--top--16 {
  padding-top: 16px;
}
.u-padding--top--24 {
  padding-top: 24px;
}
.u-padding--top--32 {
  padding-top: 32px;
}
.u-padding--top--40 {
  padding-top: 40px;
}
.u-padding--top--48 {
  padding-top: 48px;
}
.u-padding--top--56 {
  padding-top: 56px;
}
.u-padding--top--64 {
  padding-top: 64px;
}
.u-padding--bottom--8 {
  padding-bottom: 8px;
}
.u-padding--bottom--16 {
  padding-bottom: 16px;
}
.u-padding--bottom--24 {
  padding-bottom: 24px;
}
.u-padding--bottom--32 {
  padding-bottom: 32px;
}
.u-padding--bottom--40 {
  padding-bottom: 40px;
}
.u-padding--bottom--48 {
  padding-bottom: 48px;
}
.u-padding--bottom--56 {
  padding-bottom: 56px;
}
.u-padding--bottom--64 {
  padding-bottom: 64px;
}
.u-padding--right--8 {
  padding-right: 8px;
}
.u-padding--right--16 {
  padding-right: 16px;
}
.u-padding--right--24 {
  padding-right: 24px;
}
.u-padding--right--32 {
  padding-right: 32px;
}
.u-padding--right--40 {
  padding-right: 40px;
}
.u-padding--right--48 {
  padding-right: 48px;
}
.u-padding--right--56 {
  padding-right: 56px;
}
.u-padding--right--64 {
  padding-right: 64px;
}
.u-padding--left--8 {
  padding-left: 8px;
}
.u-padding--left--16 {
  padding-left: 16px;
}
.u-padding--left--24 {
  padding-left: 24px;
}
.u-padding--left--32 {
  padding-left: 32px;
}
.u-padding--left--40 {
  padding-left: 40px;
}
.u-padding--left--48 {
  padding-left: 48px;
}
.u-padding--left--56 {
  padding-left: 56px;
}
.u-padding--left--64 {
  padding-left: 64px;
}

@media screen and (min-width: 701px) {
  .u-padding--PC--top--8 {
    padding-top: 8px;
  }
  .u-padding--PC--top--16 {
    padding-top: 16px;
  }
  .u-padding--PC--top--24 {
    padding-top: 24px;
  }
  .u-padding--PC--top--32 {
    padding-top: 32px;
  }
  .u-padding--PC--top--40 {
    padding-top: 40px;
  }
  .u-padding--PC--top--48 {
    padding-top: 48px;
  }
  .u-padding--PC--top--56 {
    padding-top: 56px;
  }
  .u-padding--PC--top--64 {
    padding-top: 64px;
  }
  .u-padding--PC--bottom--8 {
    padding-bottom: 8px;
  }
  .u-padding--PC--bottom--16 {
    padding-bottom: 16px;
  }
  .u-padding--PC--bottom--24 {
    padding-bottom: 24px;
  }
  .u-padding--PC--bottom--32 {
    padding-bottom: 32px;
  }
  .u-padding--PC--bottom--40 {
    padding-bottom: 40px;
  }
  .u-padding--PC--bottom--48 {
    padding-bottom: 48px;
  }
  .u-padding--PC--bottom--56 {
    padding-bottom: 56px;
  }
  .u-padding--PC--bottom--64 {
    padding-bottom: 64px;
  }
  .u-padding--PC--right--8 {
    padding-right: 8px;
  }
  .u-padding--PC--right--16 {
    padding-right: 16px;
  }
  .u-padding--PC--right--24 {
    padding-right: 24px;
  }
  .u-padding--PC--right--32 {
    padding-right: 32px;
  }
  .u-padding--PC--right--40 {
    padding-right: 40px;
  }
  .u-padding--PC--right--48 {
    padding-right: 48px;
  }
  .u-padding--PC--right--56 {
    padding-right: 56px;
  }
  .u-padding--PC--right--64 {
    padding-right: 64px;
  }
  .u-padding--PC--left--8 {
    padding-left: 8px;
  }
  .u-padding--PC--left--16 {
    padding-left: 16px;
  }
  .u-padding--PC--left--24 {
    padding-left: 24px;
  }
  .u-padding--PC--left--32 {
    padding-left: 32px;
  }
  .u-padding--PC--left--40 {
    padding-left: 40px;
  }
  .u-padding--PC--left--48 {
    padding-left: 48px;
  }
  .u-padding--PC--left--56 {
    padding-left: 56px;
  }
  .u-padding--PC--left--64 {
    padding-left: 64px;
  }
}
@media screen and (max-width: 700px) {
  .u-padding--SP--top--8 {
    padding-top: 8px;
  }
  .u-padding--SP--top--16 {
    padding-top: 16px;
  }
  .u-padding--SP--top--24 {
    padding-top: 24px;
  }
  .u-padding--SP--top--32 {
    padding-top: 32px;
  }
  .u-padding--SP--top--40 {
    padding-top: 40px;
  }
  .u-padding--SP--top--48 {
    padding-top: 48px;
  }
  .u-padding--SP--top--56 {
    padding-top: 56px;
  }
  .u-padding--SP--top--64 {
    padding-top: 64px;
  }
  .u-padding--SP--bottom--8 {
    padding-bottom: 8px;
  }
  .u-padding--SP--bottom--16 {
    padding-bottom: 16px;
  }
  .u-padding--SP--bottom--24 {
    padding-bottom: 24px;
  }
  .u-padding--SP--bottom--32 {
    padding-bottom: 32px;
  }
  .u-padding--SP--bottom--40 {
    padding-bottom: 40px;
  }
  .u-padding--SP--bottom--48 {
    padding-bottom: 48px;
  }
  .u-padding--SP--bottom--56 {
    padding-bottom: 56px;
  }
  .u-padding--SP--bottom--64 {
    padding-bottom: 64px;
  }
  .u-padding--SP--right--8 {
    padding-right: 8px;
  }
  .u-padding--SP--right--16 {
    padding-right: 16px;
  }
  .u-padding--SP--right--24 {
    padding-right: 24px;
  }
  .u-padding--SP--right--32 {
    padding-right: 32px;
  }
  .u-padding--SP--right--40 {
    padding-right: 40px;
  }
  .u-padding--SP--right--48 {
    padding-right: 48px;
  }
  .u-padding--SP--right--56 {
    padding-right: 56px;
  }
  .u-padding--SP--right--64 {
    padding-right: 64px;
  }
  .u-padding--SP--left--8 {
    padding-left: 8px;
  }
  .u-padding--SP--left--16 {
    padding-left: 16px;
  }
  .u-padding--SP--left--24 {
    padding-left: 24px;
  }
  .u-padding--SP--left--32 {
    padding-left: 32px;
  }
  .u-padding--SP--left--40 {
    padding-left: 40px;
  }
  .u-padding--SP--left--48 {
    padding-left: 48px;
  }
  .u-padding--SP--left--56 {
    padding-left: 56px;
  }
  .u-padding--SP--left--64 {
    padding-left: 64px;
  }
}
.u-text--link {
  color: #1a0dab;
  text-decoration: underline;
  text-underline-offset: 2px;
  width: fit-content;
  cursor: pointer;
}
.u-text--italic {
  font-style: italic;
}
.u-text--cursor {
  cursor: pointer;
}
.u-text--no-wrap {
  white-space: nowrap;
}
.u-text--pre-wrap {
  white-space: pre-wrap;
}
.u-text--false {
  pointer-events: none;
  color: #b3b3b3;
}
.u-text--new-tab:after {
  content: '\f08e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  vertical-align: middle;
  margin-left: 0.5em;
}
.u-text--noto {
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.u-text--mincho {
  font-family: 'Shippori Mincho', sans-serif;
}
.u-text--center {
  text-align: center;
  font-family:
    'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP', 'Yu Gothic', sans-serif;
}
.u-text--right {
  text-align: right;
}
.u-text--left {
  text-align: left;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--brown {
  color: #746b60;
}
.u-text--black {
  color: #231815;
}
.u-text--white {
  color: #fff;
}
.u-text--blue {
  color: #0092b9;
}
.u-text--red {
  color: #cb3a39;
}
.u-text--purple {
  color: #900071;
}
.u-text--border-bottom {
  text-decoration: underline;
}
.u-text--italic {
  font-style: italic;
}
.u-text--under-line {
  border-bottom: 1px solid #231815;
}
.u-text--line-through {
  text-decoration: line-through;
}

@media screen and (min-width: 701px) {
  .u-text--large {
    font-size: 20px;
  }
  .u-text--small {
    font-size: 14px;
  }
  .u-text--PC--center {
    text-align: center;
  }
  .u-text--PC--right {
    text-align: right;
  }
  .u-text--PC--left {
    text-align: left;
  }
  .u-text--PC--small {
    font-size: 14px;
  }
  .u-text--PC--normal {
    font-size: 16px;
  }
  .u-text--PC--large {
    font-size: 18px;
  }
  .u-text--PC--no-wrap {
    white-space: nowrap;
  }
}
@media screen and (max-width: 700px) {
  .u-text--large {
    font-size: 18px;
  }
  .u-text--small {
    font-size: 14px;
  }
  .u-text--SP--center {
    text-align: center;
  }
  .u-text--SP--right {
    text-align: right;
  }
  .u-text--SP--left {
    text-align: left;
  }
  .u-text--SP--small {
    font-size: 14px;
  }
  .u-text--SP--normal {
    font-size: 16px;
  }
  .u-text--SP--large {
    font-size: 18px;
  }
  .u-text--SP--no-wrap {
    white-space: nowrap;
  }
}
.u-display--false {
  pointer-events: none;
  position: relative;
}
.u-display--false::after {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #fff;
  content: 'Coming Soon';
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 24, 21, 0.6);
}

@media screen and (min-width: 701px) {
  .u-display--PC {
    display: block;
  }
  .u-display--TAB {
    display: none;
  }
  .u-display--SP {
    display: none;
  }
  .u-display__text--SP {
    display: none;
  }
}
@media screen and (701px <= width <= 1300px) {
  .u-display--PC {
    display: block;
  }
  .u-display--TAB {
    display: block;
  }
  .u-display--SP {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .u-display--PC {
    display: none;
  }
  .u-display--TAB {
    display: none;
  }
  .u-display--SP {
    display: block;
  }
  .u-display__text--PC {
    display: none;
  }
}
.u-animation--bounce {
  animation: bounce 2s infinite normal;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
  100% {
    transform: translateY(0);
  }
}
.u-flex--column {
  display: flex;
  flex-direction: column;
}
.u-flex--column-reverse {
  display: flex;
  flex-direction: column-reverse;
}
.u-flex--row {
  display: flex;
  flex-direction: row;
}
.u-flex--row-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.u-flex--button {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (min-width: 701px) {
  .u-flex--PC--column {
    display: flex;
    flex-direction: column;
  }
  .u-flex--PC--column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .u-flex--PC--row {
    display: flex;
    flex-direction: row;
  }
  .u-flex--PC--row-reverse {
    display: flex;
    flex-direction: row-reverse;
  }
  .u-flex--button {
    align-items: center;
    column-gap: 64px;
  }
}
@media screen and (max-width: 700px) {
  .u-flex--SP--column {
    display: flex;
    flex-direction: column;
  }
  .u-flex--SP--column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .u-flex--SP--row {
    display: flex;
    flex-direction: row;
  }
  .u-flex--SP--row-reverse {
    display: flex;
    flex-direction: row-reverse;
  }
  .u-flex--button {
    align-items: center;
    flex-direction: column;
    row-gap: 16px;
  }
}
.u-gap--2 {
  gap: 2px;
}
.u-gap--4 {
  gap: 4px;
}
.u-gap--8 {
  gap: 8px;
}
.u-gap--16 {
  gap: 16px;
}
.u-gap--24 {
  gap: 24px;
}
.u-gap--32 {
  gap: 32px;
}
.u-gap--40 {
  gap: 40px;
}
.u-gap--48 {
  gap: 48px;
}
.u-gap--56 {
  gap: 56px;
}
.u-gap--64 {
  gap: 64px;
}
.u-gap--row--2 {
  row-gap: 2px;
}
.u-gap--row--4 {
  row-gap: 4px;
}
.u-gap--row--8 {
  row-gap: 8px;
}
.u-gap--row--16 {
  row-gap: 16px;
}
.u-gap--row--24 {
  row-gap: 24px;
}
.u-gap--row--32 {
  row-gap: 32px;
}
.u-gap--row--40 {
  row-gap: 40px;
}
.u-gap--row--48 {
  row-gap: 48px;
}
.u-gap--row--56 {
  row-gap: 56px;
}
.u-gap--row--64 {
  row-gap: 64px;
}
.u-gap--column--2 {
  column-gap: 2px;
}
.u-gap--column--4 {
  column-gap: 4px;
}
.u-gap--column--8 {
  column-gap: 8px;
}
.u-gap--column--16 {
  column-gap: 16px;
}
.u-gap--column--24 {
  column-gap: 24px;
}
.u-gap--column--32 {
  column-gap: 32px;
}
.u-gap--column--40 {
  column-gap: 40px;
}
.u-gap--column--48 {
  column-gap: 48px;
}
.u-gap--column--56 {
  column-gap: 56px;
}
.u-gap--column--64 {
  column-gap: 64px;
}

@media screen and (min-width: 701px) {
  .u-gap--PC--2 {
    gap: 2px;
  }
  .u-gap--PC--4 {
    gap: 4px;
  }
  .u-gap--PC--8 {
    gap: 8px;
  }
  .u-gap--PC--16 {
    gap: 16px;
  }
  .u-gap--PC--24 {
    gap: 24px;
  }
  .u-gap--PC--32 {
    gap: 32px;
  }
  .u-gap--PC--40 {
    gap: 40px;
  }
  .u-gap--PC--48 {
    gap: 48px;
  }
  .u-gap--PC--56 {
    gap: 56px;
  }
  .u-gap--PC--64 {
    gap: 64px;
  }
  .u-gap--PC--row--2 {
    row-gap: 2px;
  }
  .u-gap--PC--row--4 {
    row-gap: 4px;
  }
  .u-gap--PC--row--8 {
    row-gap: 8px;
  }
  .u-gap--PC--row--16 {
    row-gap: 16px;
  }
  .u-gap--PC--row--24 {
    row-gap: 24px;
  }
  .u-gap--PC--row--32 {
    row-gap: 32px;
  }
  .u-gap--PC--row--40 {
    row-gap: 40px;
  }
  .u-gap--PC--row--48 {
    row-gap: 48px;
  }
  .u-gap--PC--row--56 {
    row-gap: 56px;
  }
  .u-gap--PC--row--64 {
    row-gap: 64px;
  }
  .u-gap--PC--column--2 {
    column-gap: 2px;
  }
  .u-gap--PC--column--4 {
    column-gap: 4px;
  }
  .u-gap--PC--column--8 {
    column-gap: 8px;
  }
  .u-gap--PC--column--16 {
    column-gap: 16px;
  }
  .u-gap--PC--column--24 {
    column-gap: 24px;
  }
  .u-gap--PC--column--32 {
    column-gap: 32px;
  }
  .u-gap--PC--column--40 {
    column-gap: 40px;
  }
  .u-gap--PC--column--48 {
    column-gap: 48px;
  }
  .u-gap--PC--column--56 {
    column-gap: 56px;
  }
  .u-gap--PC--column--64 {
    column-gap: 64px;
  }
}
@media screen and (max-width: 700px) {
  .u-gap--SP--2 {
    gap: 2px;
  }
  .u-gap--SP--4 {
    gap: 4px;
  }
  .u-gap--SP--8 {
    gap: 8px;
  }
  .u-gap--SP--16 {
    gap: 16px;
  }
  .u-gap--SP--24 {
    gap: 24px;
  }
  .u-gap--SP--32 {
    gap: 32px;
  }
  .u-gap--SP--40 {
    gap: 40px;
  }
  .u-gap--SP--48 {
    gap: 48px;
  }
  .u-gap--SP--56 {
    gap: 56px;
  }
  .u-gap--SP--64 {
    gap: 64px;
  }
  .u-gap--SP--row--2 {
    row-gap: 2px;
  }
  .u-gap--SP--row--4 {
    row-gap: 4px;
  }
  .u-gap--SP--row--8 {
    row-gap: 8px;
  }
  .u-gap--SP--row--16 {
    row-gap: 16px;
  }
  .u-gap--SP--row--24 {
    row-gap: 24px;
  }
  .u-gap--SP--row--32 {
    row-gap: 32px;
  }
  .u-gap--SP--row--40 {
    row-gap: 40px;
  }
  .u-gap--SP--row--48 {
    row-gap: 48px;
  }
  .u-gap--SP--row--56 {
    row-gap: 56px;
  }
  .u-gap--SP--row--64 {
    row-gap: 64px;
  }
  .u-gap--SP--column--2 {
    column-gap: 2px;
  }
  .u-gap--SP--column--4 {
    column-gap: 4px;
  }
  .u-gap--SP--column--8 {
    column-gap: 8px;
  }
  .u-gap--SP--column--16 {
    column-gap: 16px;
  }
  .u-gap--SP--column--24 {
    column-gap: 24px;
  }
  .u-gap--SP--column--32 {
    column-gap: 32px;
  }
  .u-gap--SP--column--40 {
    column-gap: 40px;
  }
  .u-gap--SP--column--48 {
    column-gap: 48px;
  }
  .u-gap--SP--column--56 {
    column-gap: 56px;
  }
  .u-gap--SP--column--64 {
    column-gap: 64px;
  }
}
/*!************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/swiper/swiper-bundle.min.css ***!
  \************************************************************************************************************************************/
/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map*/
/* らんの育て方 メイン画像 表示が崩れているためCSS修正 */
@media screen and (max-width: 1800px) {
  .p-ticket {
    background-size: 125%;
  }
}
@media screen and (max-width: 1600px) {
  .p-ticket {
    background-size: 130%;
  }
}
@media screen and (max-width: 1500px) {
  .p-ticket {
    background-size: 140%;
  }
  .p-ticket__type-item {
    padding: 16px 50px 16px 40px;
    font-size: 16px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1400px) {
  .p-ticket {
    background-size: 160%;
  }
}
@media screen and (max-width: 1300px) {
  .p-ticket {
    background-size: 168%;
  }
}
@media screen and (max-width: 1240px) {
  .p-ticket {
    background-size: 173%;
  }
}
@media screen and (max-width: 1200px) {
  .p-ticket {
    background-size: 203%;
  }
  .p-ticket__type-item {
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1140px) {
  .p-ticket {
    background-size: 240%;
  }
}
@media screen and (max-width: 1000px) {
  .p-ticket {
    background-size: 280%;
  }
  .p-ticket__type-item {
    width: 100%;
  }
  .p-ticket__content-list {
    column-gap: 16px;
  }
}
@media screen and (max-width: 900px) {
  .p-ticket {
    background-size: 296%;
  }
}
@media screen and (max-width: 800px) {
  .p-ticket {
    background-size: 328%;
  }
}
@media screen and (max-width: 760px) {
  .p-ticket {
    background-size: 348%;
  }
  .p-ticket__type-item {
    padding: 16px 20px 16px 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .p-ticket {
    background-size: 390%;
  }
}
@media screen and (max-width: 461px) {
  .p-ticket {
    background-size: 460%;
  }
}
@media screen and (max-width: 400px) {
  .p-ticket {
    background-size: 490%;
  }
}
@media screen and (max-width: 385px) {
  .p-ticket {
    background-size: 520%;
  }
}
@media screen and (max-width: 375px) {
  .p-ticket {
    background-size: 540%;
  }
}
@media screen and (max-width: 1200px) {
  .p-ticket__type {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   東京ドームシティ用（dome 風レイアウト）
   他セクションに影響しないように
   すべて .p-ticket__content--dome 配下に限定
   ========================================= */

/* 枠だけ専用デザインにしたい場合 */
.p-ticket__content--dome {
  background-color: #fff;
  color: #2c2c2c;
  border-radius: 20px;
  box-shadow: 0px 2px 2px 0px #555;
  margin-bottom: 36px;
}

/* 内側ボックスの余白など */
.p-ticket__content--dome .p-ticket__content-inner--dome {
  padding: 50px 45px;
  text-align: center;
}

/* flex ラップ */
.p-ticket__content--dome .p-ticket__content-wrap--dome {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* justify-content: center; */
  align-items: center;
}

/* 各ボックス（前売券・当日券） */
.p-ticket__content--dome .p-ticket__content-item--dome {
  width: 290px;
  height: 260px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
}

/* 上部の赤いラベル部分 */
.p-ticket__content--dome .p-ticket__content-item-header {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e42f2f;
  border-radius: 5px 5px 0 0;
}

.p-ticket__content--dome .p-ticket__content-item-header a,
.p-ticket__content--dome .p-ticket__content-item-header span {
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.1em;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 50px;
}

/* 中身のテキスト部分 */
.p-ticket__content--dome .p-ticket__content-description {
  width: 100%;
  height: 167px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* 見出しテキスト */
.p-ticket__content--dome .p-ticket__content-text {
  font-size: 16px;
  margin-bottom: 19px;
}

/* 注意書きリスト */
.p-ticket__content--dome .p-ticket__content-list--dome {
  font-size: 12px;
  text-align: left;
  flex-direction: column;
}

/* コンテストスライダー */
.swiper img {
  border: 1px solid #d2ac47;
}
/* スライダー全体の囲い */
.p-contest__slider-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 120px;
  padding: 0 50px; /* 矢印を外に置くための余白 */
}

.p-contest__slider-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px; /* キャプションとの間隔を調整 */
}

.p-contest__slider-title-image {
  object-fit: contain;
  margin: 0 10px;
}

/* --- 追加・修正：キャプションをタイトルの下に配置 --- */
.contestSwiper .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column; /* 上から下に並べる */
  align-items: center; /* 中央寄せ */
}

.p-contest__caption {
  /* width: 100%;
  text-align: center; 
  margin-bottom: 26px; 
  color: #231815; 
  font-size: 20px;
  font-family: 'shippori-mincho', serif;
  font-weight: 800;
  letter-spacing: 0.15em; */
  width: fit-content;
  font-weight: 500;
  margin: 0 auto;
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.15em;
}

.p-contest__caption-sp {
  display: none;
}
/* -------------------------------------- */

/* 矢印（＜ ＞）の強制色変更と配置 */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  clip-path: none;
  top: 50%;
  margin-top: 0;
}

/* .swiper-button-prevの上に＜矢印アイコンを中央配置 */
.swiper-button-prev::after {
  position: absolute;
  content: '◀' !important;
  font-family: serif !important;
  color: #fff !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 18px !important;
  font-weight: bold;
}

/* .swiper-button-nextの上に＞矢印アイコンを中央配置 */
.swiper-button-next::after {
  position: absolute;
  content: '▶' !important;
  font-family: serif !important;
  color: #fff !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 18px !important;
  font-weight: bold;
}

/* 矢印を画像の外側に追い出す場合 */
.swiper-button-prev {
  left: 10px !important;
}
.swiper-button-next {
  right: 10px !important;
}
.swiper-pagination-bullet-active {
  background-color: #d2ac47 !important;
}

@media screen and (max-width: 768px) {
  .p-contest__slider-container {
    width: 100%;
    padding: 0 16px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 36px !important;
    height: 36px !important;
    top: 70% !important;
  }

  .p-contest__caption {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    margin-bottom: 16px;
  }
  .p-contest__caption-sp {
    display: block;
  }
}
@media screen and (min-width: 701px) {
  .p-contest__caption {
    padding: 2px 4px;
    font-size: 16px;
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
    font-style: normal;
    font-size: 19px;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
  }
}

/* コンテストの背景画像 */
.p-contest__section-award {
  background: url(./background-images/main-background--contest.webp);
  background-size: cover;
  padding: 100px 0 0;
}
