@charset "UTF-8";
/***********************
/* foundation
************************/
@import "https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&family=Zen+Old+Mincho&display=swap";
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css";
/* http://html5doctor.com Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

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

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

*:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}

body {
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic New", sans-serif, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 2;
  animation: fadein 1.5s forwards;
  background: #31a056;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

input {
  padding: 0;
  margin: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

button {
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.cf::after {
  display: block;
  width: 0;
  height: 0;
  clear: both;
  content: "";
}

pre {
  white-space: pre-wrap;
}

/*  base -------------------- */
:root {
  --content-width-xl: calc(100% - 80px);
  --content-width-md: calc(100% - 60px);
  --content-width-sm: calc(100% - 40px);
  --content-width-xs: calc(100% - 30px);
}

/***********************
/* layout
************************/
/*  header -------------------- */
.l-header {
  padding: 10px 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
}
.l-header img:nth-of-type(2) {
  vertical-align: bottom;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .l-header {
    padding: 0 0 0 20px;
    height: 50px;
  }
  .l-header__logo-img {
    width: 30px;
  }
  .l-header__logo-text {
    width: 100px;
  }
}

.l-header__menu {
  display: flex;
  gap: 20px 40px;
  align-items: stretch;
}
.l-header__menu.no-transition {
  transition: none;
}
.l-header__menu.panelactive {
  z-index: 999;
  width: 100vw;
  height: 100dvh;
  pointer-events: auto;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .l-header__menu {
    position: fixed;
    inset: 0;
    left: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    place-content: center;
    align-items: center;
    pointer-events: none;
    background: rgba(49, 160, 86, 0.9);
    border: 2px solid #31a056;
    opacity: 0;
    transition: all ease 0.3s;
  }
}

.l-header__list {
  display: flex;
  gap: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.l-header__list a {
  transition: color ease 0.3s;
  color: #fff;
}
.l-header__list a:hover {
  color: #31a056;
}
@media screen and (max-width: 768px) {
  .l-header__list a {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__list {
    gap: 20px 50px;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-direction: column;
  }
}

.l-header-openbtn {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .l-header-openbtn {
    position: absolute;
    z-index: 9999;
    width: 50px;
    height: 50px;
    right: 40px;
    cursor: pointer;
    flex-direction: column;
    text-align: center;
    background: none;
  }
  .l-header-openbtn a {
    display: block;
    font-size: 20px;
    color: #fff;
  }
  .l-header-openbtn a:hover {
    color: #000;
  }
  .l-header-openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 15px;
    transform: translateY(6px) rotate(45deg);
  }
  .l-header-openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 15px;
    transform: translateY(-6px) rotate(-45deg);
  }
  .l-header-openbtn.active span:nth-of-type(3) {
    display: none;
  }
  .l-header-openbtn span {
    position: absolute;
    left: 14px;
    display: inline-block;
    width: 45%;
    height: 1px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s;
  }
  .l-header-openbtn span:nth-of-type(3) {
    top: 26px;
  }
  .l-header-openbtn span:nth-of-type(2) {
    top: 28px;
  }
  .l-header-openbtn span:nth-of-type(1) {
    top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-header-openbtn {
    right: 20px;
  }
}

/*  footer -------------------- */
.l-footer {
  padding: 15px;
  font-size: 0.9375rem;
  border-top: 1px solid #000;
  text-align: center;
}
.l-footer__inner {
  margin: 0 auto;
  max-width: 800px;
}
.l-footer__title {
  font-weight: bold;
}
.l-footer__contact {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
}
.l-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
}
.l-footer__contact li a {
  color: #000;
  text-decoration: none;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .l-footer__contact {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}

/*  main -------------------- */
.l_wrapper {
  display: grid;
  grid-template-columns: 60px calc(100% - 120px) 60px;
}
@media screen and (max-width: 1024px) {
  .l_wrapper {
    grid-template-columns: 40px calc(100% - 80px) 40px;
  }
}
@media screen and (max-width: 768px) {
  .l_wrapper {
    grid-template-columns: 20px calc(100% - 40px) 20px;
  }
}

.l_side {
  background: url("../images/img_side@2x.png") #31a056 repeat-y top center/21px;
}
@media screen and (max-width: 1024px) {
  .l_side {
    background: url("../images/img_side@2x.png") #31a056 repeat-y top center/14px;
  }
}
@media screen and (max-width: 768px) {
  .l_side {
    background: url("../images/img_side@2x.png") #31a056 repeat-y top center/10px;
  }
}

.l_center {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

/***********************
/* component
************************/
/*  block -------------------- */
.c-inner {
  position: relative;
  margin: 0 4vw;
}

.c-column2 {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .c-column2 {
    grid-template-columns: 1fr;
    gap: 20px 40px;
  }
}

.c-column3 {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .c-column3 {
    grid-template-columns: 1fr;
    gap: 20px 40px;
  }
}

/* title ---------------------- */
.c-heading {
  background: #fff;
}
.c-heading__title {
  display: flex;
  align-items: flex-end;
  width: var(--content-width-xl);
  padding-bottom: 3.4375rem;
  margin: 0 auto;
  font-size: clamp(1.5rem, 0.227rem + 6.36vw, 5rem);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-heading__title {
    width: var(--content-width-md);
    height: 12.5rem;
    padding-bottom: 1.875rem;
  }
  .c-heading__title img {
    width: 70%;
  }
  .p-about .c-heading__title img {
    width: 60%;
  }
  .p-bikotsuon .c-heading__title img {
    width: 59%;
  }
  .p-policy .c-heading__title img {
    width: 80%;
  }
  .p-menu .c-heading__title img {
    width: 31%;
  }
  .p-contact .c-heading__title img {
    width: 45%;
  }
  .p-access .c-heading__title img {
    width: 40%;
  }
  .p-thanks .c-heading__title img {
    width: 50%;
  }
  .p-news .c-heading__title img {
    width: 30%;
  }
}
@media screen and (max-width: 640px) {
  .c-heading__title {
    width: var(--content-width-sm);
  }
}

.c-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}
.c-title span {
  display: block;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 1.875rem;
  }
}

/* button ---------------------- */
.c-btn {
  margin: 5rem 0;
}
.c-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 170px;
  padding: 0.5rem 0.9375rem;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
  cursor: pointer;
  background-color: #000;
  transition: background-color ease 0.3s;
}
.c-btn a:hover {
  background: #525252;
}
@media screen and (max-width: 768px) {
  .c-btn {
    margin: 3rem 0 2rem;
  }
  .c-btn a {
    min-width: 100px;
  }
}
.c-btn__black a::before {
  border: 1px solid #000;
}
.c-btn__black a::after {
  filter: none;
}
.c-btn__black a:hover {
  color: #000;
}
.c-btn__black a:hover::before {
  background: #000;
}
.c-btn__black a:hover::after {
  background: url("../images/icon_arrow_w.svg") no-repeat left top/contain;
  filter: none;
}
.c-btn-primary {
  width: 100%;
  max-width: 275px;
}
.c-btn-primary a {
  display: block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  background: #000;
  border-radius: calc(infinity * 1px);
  transition: opacity ease 0.3s;
}
.c-btn-primary a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-btn a {
    padding: 10px 20px;
  }
  .c-btn a::before {
    width: 40px;
    height: 40px;
  }
  .c-btn a::after {
    right: 10px;
  }
  .c-btn-primary {
    margin: auto;
  }
  .c-btn-primary a {
    padding: 5px 20px;
    font-size: 14px;
  }
}

/*  table --------------------*/
.c-table {
  width: 100%;
}
.c-table th,
.c-table td {
  width: 50%;
  border-bottom: 1px solid #e4e4e4;
  padding: 20px;
}
.c-table tr:last-of-type th,
.c-table tr:last-of-type td {
  border: none;
}
.c-table th {
  width: 30%;
  text-align: left;
  vertical-align: middle;
}
.c-table__2col th {
  width: 50%;
  background: #fff;
}
.c-table__2col td {
  width: 50%;
}
.c-table__3col td {
  width: 33.3333333333%;
}
.c-table__3col th {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .c-table th,
  .c-table td {
    line-height: 1.5;
    vertical-align: middle;
    padding: 20px 0;
  }
  .c-table td {
    padding-left: 15px;
  }
  .c-table .empty {
    display: none;
  }
}

/* text ---------------------- */
.c-text + .c-text {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .c-text {
    font-size: 16px;
  }
  .c-text + .c-text {
    margin-top: 15px;
  }
}

.c-annotation {
  font-size: 14px;
}

.c-serif {
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.2em;
}

/*  top ---------------------------------- */
/*  メインビジュアル ------------ */
.p-top-mainvs {
  display: grid;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 80px 30px 120px;
  gap: 0 40px;
  grid-template-columns: auto minmax(0, 550px);
  text-align: center;
}
.p-top-mainvs__wrapper {
  background: url("../images/bg_mv@2x.png") no-repeat left top 10%/50vw;
}
.p-top-mainvs__text {
  display: grid;
  align-items: center;
  gap: 20px 0;
  grid-row: 1/span 2;
  grid-template-columns: repeat(2, 1fr);
}
.p-top-mainvs__day {
  width: 100%;
  padding: 25px 40px 25px 0;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
}
.p-top-mainvs__place {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: clamp(16px, 9.6363636364px + 1.696969697vw, 30px);
  color: #faf303;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  font-weight: bold;
  line-height: 1;
}
.p-top-mainvs__place span {
  display: block;
  width: 80%;
  padding: 5px 10px;
  font-size: clamp(12px, 10.1818181818px + 0.4848484848vw, 16px);
  color: #000;
  border: 1px solid #fff;
  background-color: #fff;
  margin-top: 0.5rem;
}
.p-top-mainvs__place::before {
  position: absolute;
  left: 0;
  display: block;
  height: calc(100% - 40px);
  border-left: 1px solid #fff;
  content: "";
}
.p-top-mainvs__pickup {
  margin-bottom: 15px;
  margin-top: auto;
}
.p-top-mainvs__title {
  width: 100%;
  grid-area: 1/span 2;
}
.p-top-mainvs__title img {
  width: 100%;
}
.p-top-mainvs__image {
  margin-right: 20px;
  margin-top: 20px;
}
.p-top-mainvs__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.p-top-mainvs__table p {
  background: #fff;
}
.p-top-mainvs__table .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-top-mainvs .swiper-backface-hidden .swiper-slide {
  justify-content: center;
  gap: 10px;
}
.p-top-mainvs__note {
  display: flex;
  justify-content: center;
  gap: 20px;
  grid-column: 1/span 2;
}
@media screen and (max-width: 1024px) {
  .p-top-mainvs__note {
    flex-direction: column;
  }
}
.p-top-mainvs__target--title {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
}
.p-top-mainvs__target--title strong {
  background: linear-gradient(transparent 70%, #ff7e00 30%);
}
.p-top-mainvs__target--title span {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.p-top-mainvs__target--title span::after, .p-top-mainvs__target--title span::before {
  position: relative;
  bottom: -5px;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-left: 1px solid #fff;
  content: "";
  margin-right: 20px;
  transform: rotate(150deg);
}
.p-top-mainvs__target--title span::after {
  margin-left: 20px;
  margin-right: 0;
  transform: rotate(30deg);
}
.p-top-mainvs__target--list {
  display: grid;
  flex-wrap: wrap;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-top-mainvs__target--list {
    display: flex;
    justify-content: center;
    gap: 5px;
  }
}
.p-top-mainvs__target li {
  padding: 5px 10px;
  font-size: 0.75rem;
  background-color: #fff;
  border-radius: 5px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-top-mainvs__target li {
    padding: 5px 8px;
    font-size: 0.625rem;
  }
}
.p-top-mainvs__movie {
  display: flex;
  align-items: baseline;
  border-radius: 10px;
}
.p-top-mainvs__movie a {
  margin-top: auto;
  transition: background-color 0.3s;
}
.p-top-mainvs__movie a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.p-top-mainvs__movie div {
  display: grid;
  align-items: center;
  padding: 12px 15px 12px 20px;
  font-size: 0.625rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  gap: 10px;
  grid-template-columns: 1fr auto;
  line-height: 1.2;
  text-align: left;
}
.p-top-mainvs__movie div p span {
  display: inline-block;
  font-size: 0.875rem;
  margin-top: 8px;
}
.p-top-mainvs__movie figure {
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .p-top-mainvs__movie div {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .p-top-mainvs__movie div {
    grid-template-columns: 1fr auto;
  }
  .p-top-mainvs__movie a {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-mainvs {
    padding: 3.125rem 1.25rem 5rem;
    grid-template-columns: 1fr;
  }
  .p-top-mainvs__wrapper {
    background: url("../images/bg_mv@2x.png") no-repeat left bottom/100vw;
  }
  .p-top-mainvs__text {
    display: grid;
    gap: 10px 0;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
  }
  .p-top-mainvs__table .swiper-slide {
    gap: 10px;
  }
  .p-top-mainvs__place::before {
    height: calc(100% - 10px);
  }
  .p-top-mainvs__image {
    margin-top: 0.625rem;
  }
  .p-top-mainvs__pickup {
    margin: 30px 0 15px;
  }
}

.p-top-mainvs__day,
.p-top-mainvs__place {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-mainvs__day,
  .p-top-mainvs__place {
    padding: 1.25rem;
  }
}
@media screen and (max-width: 640px) {
  .p-top-mainvs__day,
  .p-top-mainvs__place {
    padding: 0.625rem;
  }
}

/*  カルーセル ------------ */
.p-top-logo {
  background: #fff;
}
.p-top-logo .swiper-wrapper {
  align-items: center;
  padding: 10px 0;
  transition-timing-function: linear !important;
}

/*  イベント情報 ------------ */
.p-top-overview {
  font-size: 1.125rem;
  border-bottom: 1px solid #000;
  font-weight: 700;
}
.p-top-overview__inner {
  display: grid;
  margin: 0 auto;
  border-top: 1px solid #000;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 768px) {
  .p-top-overview__inner {
    gap: 0;
    grid-template-columns: 1fr;
  }
}
.p-top-overview__image {
  display: grid;
  padding: 3vw;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-overview__image {
    display: none;
  }
}
.p-top-overview__title {
  padding: 9.375rem 0 2.5rem 4vw;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-top-overview__title {
    padding: 3.125rem 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-overview__title {
    padding: 3.125rem 1.25rem 1.25rem;
    font-size: 2rem;
  }
  .p-top-overview__title img {
    max-width: 200px;
  }
}
.p-top-overview__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 3.125rem 0;
  border-left: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-top-overview__content {
    padding: 1.875rem 0;
    padding: 0;
    border-left: none;
  }
}
.p-top-overview__row {
  display: flex;
  align-items: center;
  padding: 1rem 2rem 1rem 4rem;
  border-bottom: 1px solid #000;
  gap: 1rem;
}
.p-top-overview__row:last-of-type {
  border-bottom: none;
}
.p-top-overview__row--ticket {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .p-top-overview__row {
    padding: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-overview__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .p-top-overview__row--ticket {
    margin-top: 0;
  }
}
.p-top-overview__label {
  font-weight: bold;
  min-width: 120px;
  white-space: nowrap;
}
.p-top-overview__value {
  flex: 1;
  line-height: 1;
}
.p-top-overview__value--kotoshi {
  font-size: 1.25rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.p-top-overview__value--kotoshi small {
  display: inline-block;
  font-size: 0.875rem;
  color: #31a056;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 0.3125rem;
}
.p-top-overview__value--kotoshi small::after {
  position: relative;
  bottom: 2px;
  display: inline-block;
  width: 10px;
  height: 6px;
  aspect-ratio: 1;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  margin-left: 5px;
}
@media screen and (max-width: 640px) {
  .p-top-overview__value--kotoshi small {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-overview__value--kotoshi {
    margin-bottom: 5px;
  }
}
.p-top-overview__day {
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 0.591rem + 1.55vw, 3.125rem);
  font-weight: 900;
  gap: 1.875rem;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom: 10px;
}
.p-top-overview__day span {
  font-size: clamp(1.563rem, 0.994rem + 2.84vw, 6.125rem);
}
@media screen and (width <= 1300px) {
  .p-top-overview__day {
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 768px) {
  .p-top-overview__day {
    font-size: 1.875rem;
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .p-top-overview__day span {
    font-size: 3.125rem;
  }
}
.p-top-overview__note {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  border: 1px solid #000;
  border-radius: 4px;
  letter-spacing: 0;
}
@media screen and (width <= 1300px) {
  .p-top-overview__note {
    margin: 0.625rem 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-top-overview__note {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-overview__note {
    margin: 10px 0 0;
  }
}
.p-top-overview__note-text {
  padding: 0.5rem 0.625rem 0.3125rem;
  background: #fff;
  border-bottom: 1px solid;
  border-radius: 5px 5px 0 0;
}
.p-top-overview__note img {
  width: 100%;
  max-width: 400px;
}
.p-top-overview__ticket-list {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  list-style: none;
}
.p-top-overview__ticket-list--archive {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding-bottom: 5px;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-underline-offset: 5px;
}
@media screen and (max-width: 640px) {
  .p-top-overview__ticket-list--archive {
    font-size: 0.875rem;
  }
}
.p-top-overview__ticket-list .is-tag {
  display: inline-block;
  padding: 10px 15px;
  font-size: 1.125rem;
  color: #fff;
  background: #000;
  border-radius: 4px;
  margin-right: 0.5em;
}
.p-top-overview__ticket-list .is-tag--gray {
  background: #999;
}
@media screen and (max-width: 1024px) {
  .p-top-overview__ticket-list .is-tag {
    font-size: 0.875rem;
  }
}
.p-top-overview__ticket-list .is-tax {
  font-size: 0.75rem;
}
.p-top-overview__ticket-list li {
  margin-bottom: 0.5em;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-top-overview__ticket-list li {
    margin-bottom: 0;
  }
}
.p-top-overview__ticket {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-top-overview__ticket li {
  font-size: 1.25rem;
}
.p-top-overview__ticket-note {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.875rem;
  font-size: 0.875rem;
  background: #fff;
  margin-top: 2.5rem;
}
.p-top-overview__ticket-note h3 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.p-top-overview__ticket-note h3 span {
  color: #ec9907;
  border-bottom: 1px solid;
}
.p-top-overview__ticket-note .is-tag {
  display: inline-block;
  padding: 8px 15px;
  font-size: 0.875rem;
  background: none;
  border: 1px solid #000;
  border-radius: 4px;
  margin-right: 0.5em;
  margin-top: 5px;
}
.p-top-overview__ticket-note .is-tag--gray {
  background: #999;
  border: none;
}
@media screen and (max-width: 1024px) {
  .p-top-overview__ticket-note .is-tag {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-overview__ticket-note .is-tag {
    padding: 5px 15px;
  }
}
.p-top-overview__ticket-note .is-tax {
  font-size: 0.875rem;
}
.p-top-overview__ticket-note p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-overview__ticket-note {
    line-height: 1.3;
  }
}

/*  タイムテーブル ------------ */
.p-top-timetable__inner {
  display: grid;
  align-items: start;
  margin: 0 auto;
  padding: 0 20px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .p-top-timetable__inner {
    padding: 0;
    gap: 0;
    grid-template-columns: 1fr;
  }
}
.p-top-timetable__wrapper {
  padding: 3.125rem 1.875rem;
}
.p-top-timetable__wrapper:not(:has(.modal)) {
  padding: 0.3125rem 1.25rem;
}
.p-top-timetable__wrapper:not(:has(.modal)) .p-top-timetable__heading {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-top-timetable__wrapper {
    padding: 1.25rem;
  }
}
.p-top-timetable__channel {
  padding: 0.625rem 1.25rem;
  color: #fff;
  background: #000;
  border-radius: 5px 5px 0 0;
  text-align: center;
}
.p-top-timetable__title {
  padding: 9.375rem 3vw 2vw 4vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-timetable__title {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 6.25rem;
  }
  .p-top-timetable__title img {
    max-width: 150px;
  }
}
.p-top-timetable__list {
  height: auto;
  margin: 40px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 10px 10px 0 0;
}
.p-top-timetable__list:first-of-type {
  margin-right: 20px;
}
.p-top-timetable__list:last-of-type {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-timetable__list {
    margin: 50px 0 0;
    border: none;
  }
  .p-top-timetable__list:first-of-type {
    margin-right: 0;
    margin-top: 1.875rem;
  }
  .p-top-timetable__list:last-of-type {
    margin-left: 0;
  }
}
.p-top-timetable__item {
  display: grid;
  align-items: center;
  border-bottom: 2px solid #000;
  grid-template-columns: 80px auto;
}
.p-top-timetable__item:last-of-type {
  border: none;
}
@media screen and (max-width: 768px) {
  .p-top-timetable__item:last-of-type {
    border-bottom: 1px solid #000;
  }
}
@media screen and (max-width: 1024px) {
  .p-top-timetable__item {
    flex-direction: column;
    grid-template-columns: 100px auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top-timetable__item {
    grid-template-columns: 50px auto;
  }
}
.p-top-timetable__time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.625rem;
  font-size: 1.125rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-right: 1px dotted #000;
  font-weight: bold;
}
.p-top-timetable__time.meishi {
  background: #ffce00;
}
.p-top-timetable__time.kouryu {
  background: #31a056;
}
.p-top-timetable__time-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-top-timetable__time .p-top-timetable__time-line {
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-top-timetable__time {
    font-size: 12px;
  }
}
.p-top-timetable__heading {
  margin: 10px 0 20px;
  font-size: 1.5rem;
  color: #000;
  border-bottom: 1px dotted #ccc;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 15px;
}
.p-top-timetable__heading i {
  margin-right: 8px;
}
.p-top-timetable__heading.meishi {
  color: #ec9907;
}
.p-top-timetable__heading.kouryu {
  color: #31a056;
}
@media screen and (max-width: 768px) {
  .p-top-timetable__heading {
    font-size: 1.125rem;
  }
}
.p-top-timetable__desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.p-top-timetable__speaker {
  display: flex;
  align-items: center;
}
.p-top-timetable__speaker-wrapper {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 1fr;
}
.p-top-timetable__speaker-wrapper2 {
  display: grid;
  gap: 1rem 2rem;
  grid-template-columns: 1fr 1fr;
}
.p-top-timetable__speaker--logo {
  display: flex;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 10px;
  font-size: 10px;
  background: #fff;
  line-height: 1.5;
}
.p-top-timetable__speaker--picture {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: border ease 0.3s;
}
.p-top-timetable__speaker--picture img {
  border-radius: 5px;
  transition: border-radius ease 0.3s;
}
.p-top-timetable__speaker--name {
  margin: 0 0 0 20px;
  font-size: 0.9375rem;
  color: #000;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  transition: color ease 0.3s;
}
.p-top-timetable__speaker--name small {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-top-timetable__speaker--name small {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-top: 5px;
  }
}
.p-top-timetable__speaker:hover span {
  color: #31a056;
}
.p-top-timetable__speaker:hover .p-top-timetable__speaker--picture img {
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .p-top-timetable__speaker {
    display: grid;
    grid-template-columns: 1fr 1fr 2.5fr;
  }
  .p-top-timetable__speaker-wrapper {
    gap: 5px;
    grid-template-columns: 1fr;
  }
  .p-top-timetable__speaker--name {
    margin: 0 0 0 10px;
  }
  .p-top-timetable__speaker--picture {
    width: auto;
    height: auto;
  }
  .p-top-timetable__speaker--logo {
    width: auto;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.p-top-timetable__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.p-top-timetable__logos div {
  text-align: center;
}
.p-top-timetable__logos div img {
  width: 60px;
  height: 60px;
  margin-bottom: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top-timetable__logos div p {
  font-size: 0.9rem;
}
.p-top-timetable__canfarence {
  display: flex;
  gap: 10px;
}

/*  スポンサー ------------ */
.p-top-sponsor {
  padding: 9.375rem 0 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-top-sponsor {
    padding: 3.125rem 0 6.25rem;
  }
}
.p-top-sponsor a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  aspect-ratio: 1/1;
  transition: border ease 0.3s;
}
.p-top-sponsor a:hover {
  border: 1px solid #000;
}
.p-top-sponsor__title {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-top-sponsor__title img {
    max-width: 190px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-sponsor__title {
    margin-bottom: 1.25rem;
  }
  .p-top-sponsor__title img {
    max-width: 120px;
  }
}
.p-top-sponsor__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .p-top-sponsor__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-top-sponsor__grid {
    grid-template-columns: 1fr;
  }
}
.p-top-sponsor__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  aspect-ratio: 1/1;
}
.p-top-sponsor__item img {
  max-height: 80%;
  max-width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*  サポート ------------ */
.p-top-support {
  padding: 0 0 6.25rem;
}
.p-top-support a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  transition: border ease 0.3s;
}
.p-top-support a:hover {
  border: 1px solid #000;
}
.p-top-support__title {
  margin-bottom: 3.125rem;
}
.p-top-support__title img {
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .p-top-support__title img {
    max-width: 190px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-support__title {
    margin-bottom: 1.25rem;
  }
  .p-top-support__title img {
    margin-right: 10px;
    max-width: 120px;
  }
}
.p-top-support__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1024px) {
  .p-top-support__grid {
    gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-top-support__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top-support__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #fff;
  min-height: 180px;
}
.p-top-support__item img {
  max-height: 70%;
  max-width: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-top-support__item {
    min-height: 100px;
  }
}

/*  協会 ------------ */
.p-top-association {
  padding: 0 0 6.25rem;
}
.p-top-association__title {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-top-association__title img {
    max-width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-association__title {
    margin-bottom: 1.25rem;
  }
  .p-top-association__title img {
    max-width: 180px;
  }
}
.p-top-association__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 1024px) {
  .p-top-association__grid {
    gap: 10px;
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-top-association__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-top-association__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

/*  市場 ------------ */
.p-top-market {
  padding: 0 0 6.25rem;
}
.p-top-market__title {
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-top-market__title {
    margin-bottom: 1.25rem;
  }
  .p-top-market__title img {
    max-width: 100px;
  }
}
.p-top-market__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 1024px) {
  .p-top-market__grid {
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-top-market__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top-market__grid li {
  display: flex;
  line-height: 1.5;
}
.p-top-market__grid li span {
  font-size: 12px;
}
.p-top-market__grid li a {
  position: relative;
  padding-left: 30px;
  transition: color ease 0.3s;
}
.p-top-market__grid li a::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  background: url("../images/img_arrow@2x.png") no-repeat center/contain;
  content: "";
}
.p-top-market__grid li a:hover {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top-market__grid li {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.2;
  }
  .p-top-market__grid li a {
    position: relative;
    padding-left: 16px;
    transition: color ease 0.3s;
  }
  .p-top-market__grid li a::before {
    top: 0;
    width: 12px;
    height: 12px;
    background: url("../images/img_arrow@2x.png") no-repeat center/contain;
  }
}

/*  その他 ------------ */
.comingsoon {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  color: #000;
  background: #fff;
  line-height: 1.5;
}

/* チケット */
.ticket {
  position: fixed;
  bottom: 20px;
  left: 80px;
  z-index: 99;
  transition: all ease 0.3s;
}
.ticket:hover {
  opacity: 0.8;
}
.ticket span {
  display: none;
}
@media screen and (max-width: 768px) {
  .ticket {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    font-size: 1rem;
    background: #ffce00;
    background: linear-gradient(90deg, rgb(255, 206, 0) 0%, rgb(255, 125, 0) 100%);
    font-weight: 700;
    text-align: center;
  }
  .ticket span {
    display: block;
  }
  .ticket img {
    display: none;
  }
  .ticket i {
    margin-right: 5px;
  }
}

/* ポップアップ */
.popup {
  position: fixed;
  right: 20px;
  bottom: 25px;
  z-index: 1000;
  width: 300px;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
@media screen and (max-width: 768px) {
  .popup {
    right: 5px;
    bottom: 45px;
    width: 40%;
  }
}
.popup a {
  flex: 1 1 100%;
}
.popup img {
  -o-object-fit: cover;
     object-fit: cover;
}

.is-show {
  opacity: 1;
}

.black-background {
  display: none;
}

.close-btn {
  position: absolute;
  top: -30px;
  right: -15px;
  cursor: pointer;
}
.close-btn img {
  width: 70%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .close-btn {
    top: -25px;
  }
  .close-btn img {
    width: 40%;
  }
}

.popup-inner {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.popup-inner a:hover {
  opacity: 1;
}

/* モーダル-------------- */
.btn {
  cursor: pointer;
}

.modal {
  margin: auto;
  padding: 0;
  color: #000;
  border: 1px solid #ccc;
  inset: 0;
  opacity: 0;
}
.modal__inner {
  display: grid;
  padding: 50px;
  background: #fff;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 750px;
}
@media screen and (max-width: 768px) {
  .modal__inner {
    width: auto;
    min-width: auto;
  }
}
@media screen and (max-width: 640px) {
  .modal__inner {
    padding: 30px;
  }
}
.modal__inner figure {
  display: grid;
  align-items: center;
  gap: 20px;
}
.modal__title {
  font-size: 1.125rem;
  color: #000;
  font-weight: 700;
  line-height: 1.5;
}
.modal__title span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 5px;
}
.modal__image {
  border-radius: 100%;
}
@media screen and (max-width: 640px) {
  .modal__image {
    margin: auto;
    max-width: 180px;
  }
}
.modal__profile {
  display: grid;
  align-items: center;
  gap: 20px;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: auto;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .modal__profile {
    grid-template-columns: 1fr;
  }
}
.modal__logo {
  margin-bottom: 20px;
  max-width: 200px;
}
.modal__text {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .modal__text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
}
.modal-close img {
  vertical-align: top;
}

/* backdrop 初期は透明 */
.modal::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.p-association__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 10px 20px;
  font-size: clamp(1.563rem, 1.222rem + 1.7vw, 2.5rem);
  margin-bottom: 0;
  min-height: 270px;
  place-items: center;
}
.p-association__title span {
  display: block;
  margin: 10px 0;
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-association__title {
    min-height: 120px;
    padding-top: 40px;
  }
  .p-association__title span {
    margin: 0 0 10px;
    font-size: 12px;
  }
}

.associationListBox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 5vw;
}
.associationListBox li {
  width: calc((100% - 40px) / 3);
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.associationListBox .name {
  color: #000;
}
.associationListBox .tag {
  color: #000;
  margin-bottom: 5px;
}

.association {
  padding: 30px 50px;
  background: rgba(255, 255, 255, 0.8);
}
.association a {
  color: #31a056;
}
.association table {
  width: 100%;
  margin-top: 50px;
}
.association td,
.association th {
  padding: 15px;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  word-break: break-all;
}
.association td img,
.association th img {
  width: 30px;
}
.association th {
  width: 15%;
}
.association tr + tr {
  border-top: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .association {
    padding: 20px;
  }
  .association table {
    margin-top: 20px;
  }
  .association th {
    display: block;
    width: 100%;
    padding: 5px 15px;
    font-size: 12px;
    color: #fff;
    background: #31a056;
    border-radius: 5px;
  }
  .association td {
    display: block;
    padding: 5px 0 20px;
    font-size: 12px;
  }
  .association tr + tr {
    border-top: none;
  }
}

.associationBox {
  display: flex;
  justify-content: stretch;
  gap: 40px;
}
.associationBox figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  background: #fff;
}
.associationBox .associationR {
  width: 60%;
}
.associationBox .associationR .comment {
  padding: 20px;
  font-size: 14px;
  color: #000;
  background: #f5f5f5;
  border-radius: 10px;
  line-height: 1.5em;
  margin-top: 30px;
}
.associationBox .ttl {
  margin: 20px 0;
  font-size: 25px;
  color: #000;
  font-weight: 600;
  line-height: 1.5;
}
.associationBox .txt {
  color: #000;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .associationBox {
    display: block;
  }
  .associationBox figure {
    width: 100%;
  }
  .associationBox .associationR {
    width: 100%;
  }
  .associationBox .ttl {
    font-size: 20px;
  }
}

.p-market__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 10px 20px;
  font-size: clamp(1.563rem, 1.222rem + 1.7vw, 2.5rem);
  margin-bottom: 0;
  min-height: 270px;
  place-items: center;
}
.p-market__title span {
  display: block;
  margin: 10px 0;
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-market__title {
    min-height: 120px;
    padding-top: 40px;
  }
  .p-market__title span {
    margin: 0 0 10px;
    font-size: 12px;
  }
}

.tagList {
  margin: 0 50px 40px;
  font-size: 0;
  border-radius: 10px;
  text-align: center;
}
.tagList li {
  display: inline-block;
  margin: 0 5px 5px;
  font-size: 16px;
}
.tagList li a {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 100px;
}
.tagList li a:hover {
  color: #000;
  background: #31a056;
}
@media screen and (max-width: 768px) {
  .tagList {
    margin: 0 0 30px;
  }
  .tagList li {
    margin: 0 2px 5px;
  }
}

.marketListBox {
  display: grid;
  color: #000;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.marketListBox > li {
  position: relative;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: background-color ease 0.3s;
}
.marketListBox > li:hover {
  background-color: #fff;
}
.marketListBox__title {
  margin: 40px 0;
  font-size: 22px;
  color: #000;
  font-weight: bold;
  line-height: 1.5em;
  text-align: center;
}
.marketListBox__info {
  color: #000;
  line-height: 1.5em;
  margin-bottom: 30px;
}
.marketListBox__text {
  color: #000;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}
.marketListBox .tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px;
  font-size: 16px;
  color: #fff;
  background: #31a056;
}
@media screen and (max-width: 768px) {
  .marketListBox .tag {
    padding: 8px 12px;
    font-size: 10px;
  }
}
.marketListBox .marketR {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.marketListBox .marketR li {
  width: 48%;
  padding: 10px;
  font-size: 13px;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  float: left;
  line-height: 1.3em;
  margin-bottom: 5px;
  text-align: center;
}
.marketListBox .marketR i {
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .marketListBox {
    grid-template-columns: repeat(1, 1fr);
  }
  .marketListBox .marketR li {
    font-size: 10px;
  }
  .marketListBox > li {
    padding: 20px;
  }
}

.p-market__article {
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.9);
}
.p-market__article a {
  color: #31a056;
}
.p-market__article a:hover {
  color: #000;
}
.p-market__article .handling {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}
.p-market__article .handling li {
  width: 80px;
  margin: 0 4px 8px;
  padding: 10px 0;
  font-size: 10px;
  color: #000;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  text-align: center;
}
.p-market__article .handling img {
  display: block;
  margin: 0 auto;
}
.p-market__article .comment {
  padding: 20px;
  font-size: 14px;
  color: #000;
  background: #fff;
  border-radius: 10px;
  line-height: 1.5em;
  margin-top: 30px;
}
.p-market__article table {
  width: 100%;
  border: 2px solid #666;
  margin-top: 30px;
}
.p-market__article table th {
  width: 30%;
}
.p-market__article table th,
.p-market__article table td {
  padding: 15px;
  font-size: 14px;
  color: #000;
  border: 1px solid #666;
  box-sizing: border-box;
  line-height: 1.3em;
  text-align: left;
  word-break: break-all;
}
.p-market__article table th img,
.p-market__article table td img {
  width: 30px;
}
.p-market__article .marketImg ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.p-market__article .marketImg li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .p-market__article {
    padding: 20px;
  }
  .p-market__article .handling li {
    width: calc((100% - 15px) / 4);
  }
  .p-market__article .handling li img {
    width: 24px;
    margin: 0 auto;
  }
  .p-market__article .comment {
    font-size: 12px;
  }
  .p-market__article table {
    width: 100%;
    border: 2px solid #666;
    margin-top: 30px;
  }
  .p-market__article table th,
  .p-market__article table td {
    padding: 10px;
    font-size: 12px;
  }
  .p-market__article .marketImg ul {
    gap: 10px;
  }
  .p-market__article .marketImg li {
    width: calc((100% - 20px) / 3);
  }
}

.p-policy {
  padding: 0 0 5rem;
}
.p-policy h2 {
  font-size: 1.5rem;
  text-align: center;
}
.p-policy h3 {
  font-size: 20;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-policy {
    padding: 0 0 2.5rem;
  }
  .p-policy h2 {
    font-size: 20;
  }
  .p-policy h3 {
    font-size: 18;
  }
}

.p-policy__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 10px 20px;
  font-size: clamp(1.563rem, 1.222rem + 1.7vw, 2.5rem);
  margin-bottom: 0;
  min-height: 270px;
  place-items: center;
}
.p-policy__title span {
  display: block;
  margin: 10px 0;
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-policy__title {
    min-height: 120px;
    padding-top: 40px;
  }
  .p-policy__title span {
    margin: 0 0 10px;
    font-size: 12px;
  }
}

/***********************
/* utility
************************/
.u-hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-hidden {
    display: block;
  }
}

.u-block {
  display: block;
}

.u-inline-block {
  display: inline-block;
}

.u-width-fill {
  width: 100% !important;
}

.u-flex {
  display: flex;
  flex-wrap: wrap;
}
.u-flex-h-start {
  justify-content: flex-start;
}
.u-flex-h-start-self {
  justify-self: flex-start;
}
.u-flex-h-center {
  justify-content: center;
}
.u-flex-h-center-self {
  justify-self: center;
}
.u-flex-h-end {
  justify-content: flex-end;
}
.u-flex-h-end-self {
  justify-self: flex-end;
}
.u-flex-h-between {
  justify-content: space-between;
}
.u-flex-h-between-self {
  justify-self: space-between;
}
.u-flex-v-start {
  align-items: flex-start;
}
.u-flex-v-start-self {
  align-self: flex-start;
}
.u-flex-v-center {
  align-items: center;
}
.u-flex-v-center-self {
  align-self: center;
}
.u-flex-v-end {
  align-items: flex-end;
}
.u-flex-v-end-self {
  align-self: flex-end;
}

.u-text-exsmall {
  font-size: 0.6rem;
}
.u-text-small {
  font-size: 0.8rem;
}
.u-text-medium-small {
  font-size: 0.9rem;
}
.u-text-medium {
  font-size: 1rem;
}
.u-text-medium-large {
  font-size: 1.1rem;
}
.u-text-large {
  font-size: 1.2rem;
}
.u-text-exlarge {
  font-size: 1.5rem;
}
.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-underline {
  text-decoration: underline;
}

.u-font-weight-normal {
  font-weight: normal;
}
.u-font-weight-bold {
  font-weight: bold;
}

.u-margin-auto {
  margin-right: auto;
  margin-left: auto;
}

.u-color-true-black {
  color: #000;
}
.u-color-black {
  color: #333;
}
.u-color-gray {
  color: #666;
}
.u-color-winered {
  color: #e12d5c;
}
.u-color-red {
  color: #e12d5c;
}

.u-xl {
  display: block;
}
@media screen and (max-width: 1280px) {
  .u-xl {
    display: none;
  }
}

.u-lg {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-lg {
    display: bblock;
  }
}

.u-md {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md {
    display: block;
  }
}

.u-sm {
  display: none;
}
@media screen and (max-width: 640px) {
  .u-sm {
    display: block;
  }
}

.u-xs {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-xs {
    display: block;
  }
}

.u-mt-0 {
  margin-top: calc(0rem / 2) !important;
}

.u-mb-0 {
  margin-bottom: calc(0rem / 2) !important;
}

.u-ml-0 {
  margin-left: calc(0rem / 2) !important;
}

.u-mr-0 {
  margin-right: calc(0rem / 2) !important;
}

.u-pt-0 {
  padding-top: calc(0rem / 2) !important;
}

.u-pb-0 {
  padding-bottom: calc(0rem / 2) !important;
}

.u-pl-0 {
  padding-left: calc(0rem / 2) !important;
}

.u-pr-0 {
  padding-right: calc(0rem / 2) !important;
}

.u-width-00p {
  width: calc(0 * 10%) !important;
}

.u-width-00vw {
  width: calc(0 * 10vw) !important;
}

.u-mt-1 {
  margin-top: calc(1rem / 2) !important;
}

.u-mb-1 {
  margin-bottom: calc(1rem / 2) !important;
}

.u-ml-1 {
  margin-left: calc(1rem / 2) !important;
}

.u-mr-1 {
  margin-right: calc(1rem / 2) !important;
}

.u-pt-1 {
  padding-top: calc(1rem / 2) !important;
}

.u-pb-1 {
  padding-bottom: calc(1rem / 2) !important;
}

.u-pl-1 {
  padding-left: calc(1rem / 2) !important;
}

.u-pr-1 {
  padding-right: calc(1rem / 2) !important;
}

.u-width-10p {
  width: calc(1 * 10%) !important;
}

.u-width-10vw {
  width: calc(1 * 10vw) !important;
}

.u-mt-2 {
  margin-top: calc(2rem / 2) !important;
}

.u-mb-2 {
  margin-bottom: calc(2rem / 2) !important;
}

.u-ml-2 {
  margin-left: calc(2rem / 2) !important;
}

.u-mr-2 {
  margin-right: calc(2rem / 2) !important;
}

.u-pt-2 {
  padding-top: calc(2rem / 2) !important;
}

.u-pb-2 {
  padding-bottom: calc(2rem / 2) !important;
}

.u-pl-2 {
  padding-left: calc(2rem / 2) !important;
}

.u-pr-2 {
  padding-right: calc(2rem / 2) !important;
}

.u-width-20p {
  width: calc(2 * 10%) !important;
}

.u-width-20vw {
  width: calc(2 * 10vw) !important;
}

.u-mt-3 {
  margin-top: calc(3rem / 2) !important;
}

.u-mb-3 {
  margin-bottom: calc(3rem / 2) !important;
}

.u-ml-3 {
  margin-left: calc(3rem / 2) !important;
}

.u-mr-3 {
  margin-right: calc(3rem / 2) !important;
}

.u-pt-3 {
  padding-top: calc(3rem / 2) !important;
}

.u-pb-3 {
  padding-bottom: calc(3rem / 2) !important;
}

.u-pl-3 {
  padding-left: calc(3rem / 2) !important;
}

.u-pr-3 {
  padding-right: calc(3rem / 2) !important;
}

.u-width-30p {
  width: calc(3 * 10%) !important;
}

.u-width-30vw {
  width: calc(3 * 10vw) !important;
}

.u-mt-4 {
  margin-top: calc(4rem / 2) !important;
}

.u-mb-4 {
  margin-bottom: calc(4rem / 2) !important;
}

.u-ml-4 {
  margin-left: calc(4rem / 2) !important;
}

.u-mr-4 {
  margin-right: calc(4rem / 2) !important;
}

.u-pt-4 {
  padding-top: calc(4rem / 2) !important;
}

.u-pb-4 {
  padding-bottom: calc(4rem / 2) !important;
}

.u-pl-4 {
  padding-left: calc(4rem / 2) !important;
}

.u-pr-4 {
  padding-right: calc(4rem / 2) !important;
}

.u-width-40p {
  width: calc(4 * 10%) !important;
}

.u-width-40vw {
  width: calc(4 * 10vw) !important;
}

.u-mt-5 {
  margin-top: calc(5rem / 2) !important;
}

.u-mb-5 {
  margin-bottom: calc(5rem / 2) !important;
}

.u-ml-5 {
  margin-left: calc(5rem / 2) !important;
}

.u-mr-5 {
  margin-right: calc(5rem / 2) !important;
}

.u-pt-5 {
  padding-top: calc(5rem / 2) !important;
}

.u-pb-5 {
  padding-bottom: calc(5rem / 2) !important;
}

.u-pl-5 {
  padding-left: calc(5rem / 2) !important;
}

.u-pr-5 {
  padding-right: calc(5rem / 2) !important;
}

.u-width-50p {
  width: calc(5 * 10%) !important;
}

.u-width-50vw {
  width: calc(5 * 10vw) !important;
}

.u-mt-6 {
  margin-top: calc(6rem / 2) !important;
}

.u-mb-6 {
  margin-bottom: calc(6rem / 2) !important;
}

.u-ml-6 {
  margin-left: calc(6rem / 2) !important;
}

.u-mr-6 {
  margin-right: calc(6rem / 2) !important;
}

.u-pt-6 {
  padding-top: calc(6rem / 2) !important;
}

.u-pb-6 {
  padding-bottom: calc(6rem / 2) !important;
}

.u-pl-6 {
  padding-left: calc(6rem / 2) !important;
}

.u-pr-6 {
  padding-right: calc(6rem / 2) !important;
}

.u-width-60p {
  width: calc(6 * 10%) !important;
}

.u-width-60vw {
  width: calc(6 * 10vw) !important;
}

.u-mt-7 {
  margin-top: calc(7rem / 2) !important;
}

.u-mb-7 {
  margin-bottom: calc(7rem / 2) !important;
}

.u-ml-7 {
  margin-left: calc(7rem / 2) !important;
}

.u-mr-7 {
  margin-right: calc(7rem / 2) !important;
}

.u-pt-7 {
  padding-top: calc(7rem / 2) !important;
}

.u-pb-7 {
  padding-bottom: calc(7rem / 2) !important;
}

.u-pl-7 {
  padding-left: calc(7rem / 2) !important;
}

.u-pr-7 {
  padding-right: calc(7rem / 2) !important;
}

.u-width-70p {
  width: calc(7 * 10%) !important;
}

.u-width-70vw {
  width: calc(7 * 10vw) !important;
}

.u-mt-8 {
  margin-top: calc(8rem / 2) !important;
}

.u-mb-8 {
  margin-bottom: calc(8rem / 2) !important;
}

.u-ml-8 {
  margin-left: calc(8rem / 2) !important;
}

.u-mr-8 {
  margin-right: calc(8rem / 2) !important;
}

.u-pt-8 {
  padding-top: calc(8rem / 2) !important;
}

.u-pb-8 {
  padding-bottom: calc(8rem / 2) !important;
}

.u-pl-8 {
  padding-left: calc(8rem / 2) !important;
}

.u-pr-8 {
  padding-right: calc(8rem / 2) !important;
}

.u-width-80p {
  width: calc(8 * 10%) !important;
}

.u-width-80vw {
  width: calc(8 * 10vw) !important;
}

.u-mt-9 {
  margin-top: calc(9rem / 2) !important;
}

.u-mb-9 {
  margin-bottom: calc(9rem / 2) !important;
}

.u-ml-9 {
  margin-left: calc(9rem / 2) !important;
}

.u-mr-9 {
  margin-right: calc(9rem / 2) !important;
}

.u-pt-9 {
  padding-top: calc(9rem / 2) !important;
}

.u-pb-9 {
  padding-bottom: calc(9rem / 2) !important;
}

.u-pl-9 {
  padding-left: calc(9rem / 2) !important;
}

.u-pr-9 {
  padding-right: calc(9rem / 2) !important;
}

.u-width-90p {
  width: calc(9 * 10%) !important;
}

.u-width-90vw {
  width: calc(9 * 10vw) !important;
}

.u-mt-10 {
  margin-top: calc(10rem / 2) !important;
}

.u-mb-10 {
  margin-bottom: calc(10rem / 2) !important;
}

.u-ml-10 {
  margin-left: calc(10rem / 2) !important;
}

.u-mr-10 {
  margin-right: calc(10rem / 2) !important;
}

.u-pt-10 {
  padding-top: calc(10rem / 2) !important;
}

.u-pb-10 {
  padding-bottom: calc(10rem / 2) !important;
}

.u-pl-10 {
  padding-left: calc(10rem / 2) !important;
}

.u-pr-10 {
  padding-right: calc(10rem / 2) !important;
}

.u-width-100p {
  width: calc(10 * 10%) !important;
}

.u-width-100vw {
  width: calc(10 * 10vw) !important;
}

.u-img {
  display: block;
  background-color: #00497b;
  filter: saturate(87%);
}
.u-img img {
  mix-blend-mode: screen;
}

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

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

.tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block;
  }
}

.u-screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}/*# sourceMappingURL=common.css.map */