@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: #f3f3f3;
  scroll-padding-top: 76px;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 14px;
    scroll-padding-top: 50px;
  }
}

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: #f4f4f4;
}
@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;
}
.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(255, 255, 255, 0.9);
    border: 2px solid #00c675;
    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;
}
.l-header__list a:hover {
  color: #00c675;
}
@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: #525252;
    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 {
  border-top: 1px solid #000;
  text-align: center;
  font-size: 0.9375rem;
  padding: 15px;
}
.l-footer__inner {
  max-width: 800px;
  margin: 0 auto;
}
.l-footer__title {
  font-weight: bold;
}
.l-footer__contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
}
.l-footer__contact li a {
  text-decoration: none;
  color: #000;
  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) #fff repeat-y top center/21px;
}
@media screen and (max-width: 1024px) {
  .l_side {
    background: url(../images/img_side@2x.png) #fff repeat-y top center/14px;
  }
}
@media screen and (max-width: 768px) {
  .l_side {
    background: url(../images/img_side@2x.png) #fff repeat-y top center/10px;
  }
}

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

/***********************
/* 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);
  max-width: 1260px;
  height: 18.75rem;
  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: #00c675;
  text-align: center;
  background: #fff;
}
.c-title span {
  display: block;
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 1.875rem;
  }
}

/* button ---------------------- */
.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: #525252;
  transition: background-color ease 0.3s;
}
.c-btn a:hover {
  background-color: #00c675;
}
.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: #f3f3f3;
}
.c-table__2col td {
  width: 50%;
}
.c-table__3col td {
  width: 33.3333333333%;
}
.c-table__3col th {
  background: #f3f3f3;
}
@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 {
  background-image: url(../images/bg_deco.png), url(../images/bg_main@2x.jpg);
  background-repeat: repeat, no-repeat;
  background-position: center, center;
  background-size: auto, cover;
  padding: 80px 30px 120px;
  text-align: center;
}
.p-top-mainvs__day {
  margin: 5px 0 30px;
}
@media screen and (max-width: 768px) {
  .p-top-mainvs__day {
    max-width: 80%;
    margin: 5px auto 30px;
  }
}
.p-top-mainvs__place {
  border: 2px solid transparent;
  -o-border-image: linear-gradient(to right, #408a04 20%, #6d8d0c 34%, #ea9500 55%) 1;
     border-image: linear-gradient(to right, #408a04 20%, #6d8d0c 34%, #ea9500 55%) 1;
  font-size: clamp(1rem, 0.682rem + 1.59vw, 1.875rem);
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  color: #fff;
  border-radius: 5px;
  margin: auto;
}
.p-top-mainvs__title {
  margin-right: 3vw;
}
.p-top-mainvs__target--title {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  margin-top: 1.25rem;
}
.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.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-top: 5px;
}
.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;
  justify-content: center;
  margin-top: 1.25rem;
}
.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;
  background-color: rgba(0, 0, 0, 0.7);
  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%;
  }
}

.slider {
  overflow: hidden;
  background: #fff;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .slider {
    padding: 10px 0;
  }
}

.slick-list {
  width: calc(100vw - 120px);
}
@media screen and (max-width: 1024px) {
  .slick-list {
    width: calc(100vw - 80px);
  }
}
@media screen and (max-width: 768px) {
  .slick-list {
    width: calc(100vw - 40px);
  }
}

.slider__images {
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .slider__images {
    padding: 0 10px;
  }
}

.slick-track {
  display: flex;
  align-items: center;
}

.p-top-message {
  padding: 6.25rem 0;
}
@media screen and (max-width: 1024px) {
  .p-top-message {
    padding: 3.75rem 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top-message {
    padding: 2.5rem 0;
  }
}
.p-top-message__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 6vw;
}
@media screen and (max-width: 1024px) {
  .p-top-message__inner {
    margin: 0 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-message__inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.p-top-message__btn {
  margin-top: 1.875rem;
  letter-spacing: 0;
  display: grid;
  grid-template-columns: auto auto;
  font-size: 1.125rem;
  font-weight: 700;
  gap: 20px;
  align-items: center;
  line-height: 1.8;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 0 0 0 20px;
}
.p-top-message__btn span {
  font-size: 0.75rem;
  display: block;
}
.p-top-message__btn span::after {
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
  width: 6px;
  height: 10px;
  aspect-ratio: 1;
  background-color: #333;
  display: inline-block;
  margin-left: 5px;
  background-color: #000;
  content: "";
}
.p-top-message__btn img {
  width: 250px;
}
.p-top-message__btn a {
  display: block;
  cursor: pointer;
  border: 1px solid #fff;
  transition: border 0.3s;
}
.p-top-message__btn a:hover {
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-top-message__btn {
    font-size: 0.75rem;
    padding: 0;
    background: none;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
  }
  .p-top-message__btn span {
    font-size: 0.625rem;
  }
  .p-top-message__btn a {
    margin-left: 10px;
  }
}
.p-top-message__text {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .p-top-message__text {
    width: 100%;
  }
}
.p-top-message__2day {
  background: #fff;
  border: 2px solid #000;
  padding: 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1;
  font-size: 1.875rem;
}
.p-top-message__2day span {
  font-size: 3.125rem;
  line-height: 1;
  display: inline-block;
}
.p-top-message__2day--title {
  line-height: 1;
}
.p-top-message__2day--text {
  font-size: 1.25rem;
}
.p-top-message__heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
}
.p-top-message__heading--day {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 1.875rem;
  align-items: baseline;
}
.p-top-message__heading--day img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-message__heading {
    font-size: 1.5rem;
  }
  .p-top-message__heading--day {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.p-top-message__lead {
  line-height: 2;
}
.p-top-message__image {
  max-width: 320px;
  text-align: center;
  margin: auto;
}
.p-top-message__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .p-top-message__image {
    max-width: 240px;
    margin-top: 20px;
  }
}

.p-top-gallery ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.p-top-gallery ul img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-gallery ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-top-overview {
  border-bottom: 1px solid #000;
  font-size: 1.125rem;
  font-weight: 700;
}
.p-top-overview__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-overview__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-top-overview__title {
  line-height: 1;
  white-space: nowrap;
  padding: 5rem 0 0 4vw;
}
@media screen and (max-width: 1024px) {
  .p-top-overview__title {
    padding: 3.125rem 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-top-overview__title {
    font-size: 2rem;
    padding: 3.125rem 1.25rem 1.25rem;
  }
  .p-top-overview__title img {
    max-width: 150px;
  }
}
.p-top-overview__content {
  border-left: 1px solid #000;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 3.125rem 0;
}
@media screen and (max-width: 768px) {
  .p-top-overview__content {
    padding: 1.875rem 0;
    border-left: none;
    padding: 0;
    border-top: 1px solid #000;
  }
}
.p-top-overview__row {
  display: flex;
  border-bottom: 1px solid #000;
  padding: 2rem 2rem 2rem 4rem;
  align-items: center;
  gap: 1rem;
}
.p-top-overview__row:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 1024px) {
  .p-top-overview__row {
    padding: 1rem 1rem 1rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-overview__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.p-top-overview__label {
  font-weight: bold;
  min-width: 20%;
  white-space: nowrap;
}
.p-top-overview__value {
  flex: 1;
  line-height: 1;
}
.p-top-overview__value--kotoshi {
  font-size: 1.25rem;
}
.p-top-overview__value--kotoshi small {
  font-size: 0.875rem;
  display: inline-block;
  margin-top: 0.3125rem;
  font-weight: 500;
  color: #31a056;
  letter-spacing: 0;
}
.p-top-overview__value--kotoshi small::after {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 10px;
  height: 6px;
  aspect-ratio: 1;
  display: inline-block;
  background-color: #31a056;
  content: "";
  position: relative;
  bottom: 2px;
  margin-left: 5px;
}
@media screen and (max-width: 640px) {
  .p-top-overview__value--kotoshi small {
    font-size: 12px;
  }
}
.p-top-overview__day {
  font-size: clamp(1rem, 0.591rem + 1.55vw, 3.125rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
.p-top-overview__day span {
  font-size: clamp(1.563rem, 0.994rem + 2.84vw, 6.125rem);
}
@media screen and (max-width: 768px) {
  .p-top-overview__day {
    flex-direction: column;
    align-items: start;
    font-size: 1.875rem;
    gap: 10px;
  }
  .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 {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
}
.p-top-overview__ticket-list li {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-top-overview__ticket-list li {
    margin-bottom: 5px;
  }
}
.p-top-overview__ticket-note {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}
.p-top-overview .is-tag {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 1.125rem;
  padding: 5px 15px;
  margin-right: 0.5em;
  border-radius: 4px;
}
.p-top-overview .is-tag--gray {
  background: #999;
}
@media screen and (max-width: 1024px) {
  .p-top-overview .is-tag {
    font-size: 0.875rem;
  }
}
.p-top-overview .is-tax {
  font-size: 0.875rem;
}

.p-top-history {
  padding: 6.25rem 0;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-top-history {
    padding: 2.5rem 0;
  }
}
.p-top-history__box {
  display: grid;
  grid-template-columns: auto 20%;
  margin-top: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .p-top-history__box {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .p-top-history__box {
    margin-top: 0;
  }
}
.p-top-history__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-top-history__list {
    flex-direction: column;
  }
}
.p-top-history__list li {
  position: relative;
  text-align: center;
  width: 14.2857142857%;
}
.p-top-history__list li + li::before {
  position: absolute;
  top: 40px;
  left: -50%;
  display: block;
  width: 100%;
  content: "";
  border-top: 1px solid #000;
}
.p-top-history__list li span {
  position: relative;
  background-color: #fff;
  border-radius: calc(infinity * 1px);
  z-index: 1;
  display: flex;
  place-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 1vw;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-top-history__list li {
    width: 100%;
    display: grid;
    grid-template-columns: 50px auto;
    text-align: left;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
  }
  .p-top-history__list li span {
    width: 50px;
    height: 50px;
  }
  .p-top-history__list li + li::before {
    top: -50px;
    left: 25px;
    width: 1px;
    height: 100%;
    content: "";
    border-left: 1px solid #000;
    background: red;
  }
}
.p-top-history__list .current {
  font-weight: 700;
  color: #00c675;
}
.p-top-history__list .current span {
  color: #fff;
  background: #00c675;
  border: none;
}
.p-top-history .current__text {
  color: #008850;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  font-weight: bold;
  line-height: 1.5;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-top-history .current__text {
    display: none;
  }
}
.p-top-history__name {
  font-size: 12px;
  line-height: 1.5;
}
.p-top-history__inner {
  display: flex;
  gap: 5rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-top-history__inner {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-history__inner {
    flex-direction: column;
  }
}
.p-top-history__media {
  width: 35%;
  background: url(../../assets/images/img_fasshion.jpg) no-repeat center top/cover;
  position: relative;
}
.p-top-history__media p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 1rem;
}
@media screen and (max-width: 1024px) {
  .p-top-history__media {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 768px) {
  .p-top-history__media p {
    left: 0;
    bottom: 0;
  }
}
.p-top-history__heading {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .p-top-history__heading img {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-history__heading {
    margin-bottom: 1.25rem;
    width: 130px;
  }
}
.p-top-history__highlight {
  font-weight: bold;
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
  margin: 1.25rem 0 3.125rem;
}
.p-top-history__highlight span {
  background: #ffd600;
  display: inline-block;
  padding: 0.625rem;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .p-top-history__highlight span {
    font-size: 1rem;
  }
}
.p-top-history__highlight strong {
  font-size: clamp(1.375rem, 1.125rem + 1.25vw, 2.063rem);
}
@media screen and (max-width: 768px) {
  .p-top-history__highlight {
    margin-bottom: 10px;
  }
}

.p-top-program {
  border-bottom: 1px solid #000;
}
.p-top-program__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-program__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-top-program__title {
  padding: 5rem 3vw 0 4vw;
}
@media screen and (max-width: 768px) {
  .p-top-program__title {
    max-width: 150px;
    margin-bottom: 1.25rem;
    padding-top: 6.25rem;
  }
}
.p-top-program__list {
  border-left: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-top-program__list {
    border: none;
    border-top: 1px solid #000;
  }
}
.p-top-program__item {
  align-items: center;
  border-bottom: 1px solid #000;
  display: grid;
  grid-template-columns: 180px auto;
}
.p-top-program__item:last-of-type {
  border: none;
}
@media screen and (max-width: 1024px) {
  .p-top-program__item {
    flex-direction: column;
    grid-template-columns: 100px auto;
  }
}
@media screen and (max-width: 768px) {
  .p-top-program__item {
    grid-template-columns: 50px auto;
  }
}
.p-top-program__time {
  font-weight: bold;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1.25rem;
  border-right: 1px solid #000;
}
.p-top-program__time.meishi {
  background: #ffce00;
}
.p-top-program__time.kouryu {
  background: #00c675;
}
.p-top-program__time-wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.p-top-program__time .p-top-program__time-line {
  display: block;
  margin: 0;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top-program__time {
    font-size: 12px;
  }
}
.p-top-program__content {
  flex: 1;
  padding: 3.75rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-program__content {
    padding: 2.5rem 0.9375rem;
  }
}
.p-top-program__heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.p-top-program__heading i {
  margin-right: 8px;
}
.p-top-program__heading.meishi {
  color: #ec9907;
}
.p-top-program__heading.kouryu {
  color: #00c675;
}
@media screen and (max-width: 768px) {
  .p-top-program__heading {
    font-size: 1.125rem;
  }
}
.p-top-program__desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.p-top-program__speaker {
  display: flex;
  align-items: center;
}
.p-top-program__speaker-wrapper {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 1fr;
}
.p-top-program__speaker-wrapper2 {
  display: grid;
  gap: 1rem 2rem;
  grid-template-columns: 1fr 1fr;
}
.p-top-program__speaker--logo {
  width: 100px;
  height: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 10px;
}
.p-top-program__speaker--picture {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: border ease 0.3s;
}
.p-top-program__speaker--picture img {
  transition: border-radius ease 0.3s;
}
.p-top-program__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-program__speaker--name small {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-top-program__speaker--name small {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-top: 5px;
  }
}
.p-top-program__speaker:hover span {
  color: #31a056;
}
.p-top-program__speaker:hover .p-top-program__speaker--picture img {
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .p-top-program__speaker {
    display: grid;
    grid-template-columns: 1fr 1fr 2.5fr;
  }
  .p-top-program__speaker-wrapper {
    gap: 5px;
    grid-template-columns: 1fr;
  }
  .p-top-program__speaker--name {
    margin: 0 0 0 10px;
  }
  .p-top-program__speaker--picture {
    height: auto;
    width: auto;
  }
  .p-top-program__speaker--logo {
    width: auto;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.p-top-program__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.p-top-program__logos div {
  text-align: center;
}
.p-top-program__logos div img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0.5rem;
}
.p-top-program__logos div p {
  font-size: 0.9rem;
}
.p-top-program__canfarence {
  display: flex;
  gap: 10px;
}
.p-top-program__box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-program__box {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-top-program__stamp {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .p-top-program__stamp {
    margin: auto;
  }
}

.p-top-booth {
  margin: 0 0 6.25rem 0;
}
.p-top-booth__wrapper {
  display: flex;
  justify-content: end;
  align-items: baseline;
}
.p-top-booth__balloon {
  background: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-right: 40px;
  position: relative;
  border: 1px solid #000;
  line-height: 1.3;
}
.p-top-booth__balloon::after {
  content: "";
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
  width: 10px;
  height: 10px;
  aspect-ratio: 1;
  background-color: #333;
  display: inline-block;
  position: absolute;
  background-color: #000;
  right: -10px;
  top: calc((100% - 10px) / 2);
}
@media screen and (max-width: 768px) {
  .p-top-booth__balloon {
    font-size: 12px;
    margin-bottom: 10px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 640px) {
  .p-top-booth__balloon {
    font-size: 10px;
    padding: 10px;
  }
}
.p-top-booth__title {
  text-align: right;
  margin: 6.25rem 0 3.125rem 0;
}
@media screen and (max-width: 1024px) {
  .p-top-booth__title img {
    max-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-booth__title {
    margin-bottom: 1.25rem;
  }
  .p-top-booth__title img {
    max-width: 90px;
  }
}
.p-top-booth__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #000;
}
@media screen and (max-width: 1024px) {
  .p-top-booth__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-top-booth__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-top-booth__item {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .p-top-booth__item {
    padding: 1rem;
  }
}
.p-top-booth__item:nth-of-type(1) {
  border-left: none;
}
.p-top-booth__item:nth-of-type(6n) {
  border-right: none;
}
.p-top-booth__item img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top-booth__item.is-video::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: url("assets/images/icon_play.svg") no-repeat center/contain;
}
@media screen and (max-width: 1024px) {
  .p-top-booth__item:nth-of-type(6n) {
    border-right: 1px solid #000;
  }
  .p-top-booth__item:nth-of-type(4n) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .p-top-booth__item:nth-of-type(4n) {
    border-right: 1px solid #000;
  }
  .p-top-booth__item:nth-of-type(3n) {
    border-right: none;
  }
}

.p-top-sponsor {
  padding: 0 0 6.25rem 0;
}
.p-top-sponsor a {
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  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;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@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 {
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-sponsor__item img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-support {
  padding: 0 0 6.25rem 0;
}
.p-top-support a {
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  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 {
    max-width: 120px;
    margin-right: 10px;
  }
}
.p-top-support__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .p-top-support__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-support__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top-support__item {
  min-height: 180px;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-support__item img {
  max-width: 70%;
  max-height: 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 0;
}
.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;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .p-top-association__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-association__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-top-association__item {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-top-market {
  padding: 0 0 6.25rem 0;
}
.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;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .p-top-market__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@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 {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  display: block;
  top: 3px;
  left: 0;
  background: url(../images/img_arrow@2x.png) no-repeat center/contain;
}
.p-top-market__grid li a:hover {
  color: #00c675;
}
@media screen and (max-width: 768px) {
  .p-top-market__grid li {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .p-top-market__grid li a {
    position: relative;
    padding-left: 16px;
    transition: color ease 0.3s;
  }
  .p-top-market__grid li a::before {
    width: 12px;
    height: 12px;
    top: 0;
    background: url(../images/img_arrow@2x.png) no-repeat center/contain;
  }
}

.p-top-access {
  padding: 0 0 0 4vw;
  border-top: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-top-access {
    padding: 0;
  }
}
.p-top-access__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-access__inner {
    grid-template-columns: 1fr;
  }
}
.p-top-access__info {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 3.125rem 2vw 3.125rem 0;
}
@media screen and (max-width: 1024px) {
  .p-top-access__info {
    flex: none;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-access__info {
    padding: 3.125rem 4vw 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-top-access__title img {
    max-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-access__title {
    margin-bottom: 1.25rem;
  }
  .p-top-access__title img {
    max-width: 100px;
  }
}
.p-top-access__text {
  position: relative;
  padding-left: 40px;
}
.p-top-access__text::before {
  content: "";
  position: absolute;
  left: 0;
  width: 27px;
  height: 37px;
  background: url(../images/icon_map@2x.png) no-repeat left top/contain;
}
@media screen and (max-width: 1024px) {
  .p-top-access__text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.p-top-access__map {
  flex: 1;
  min-height: 400px;
}
.p-top-access__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  aspect-ratio: 16/9;
}

.comingsoon {
  background: #fff;
  padding: 5px 10px;
  line-height: 1.5;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #ccc;
}

.p-top-message {
  border-bottom: 1px solid #ccc;
}
.p-top-message__header {
  padding: 0 3rem 0 1rem;
  background-color: #f5f5f5;
  cursor: pointer;
  position: relative;
  display: none;
  margin-top: 10px;
}
.p-top-message__header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s;
}
.p-top-message__header[aria-expanded=true]::after {
  transform: translateY(-50%) rotate(-135deg);
}
.p-top-message__detail {
  display: none;
}
.p-top-message__detail[hidden] {
  display: none;
}

@media screen and (max-width: 768px) {
  .p-top-message__header {
    display: block;
    background: #fff;
    border-radius: 5px;
  }
  .p-top-message__detail {
    display: none;
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-message__header {
    cursor: default;
  }
  .p-top-message__header::after {
    display: none;
  }
  .p-top-message__detail {
    display: block !important;
  }
}
/* モーダル-------------- */
.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: 0.875rem;
}

.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;
}

.modal::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

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

/* ポップアップ */
.popup {
  position: fixed;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  z-index: 1000;
  right: 20px;
  bottom: 25px;
  width: 300px;
}
@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;
  right: -15px;
  top: -30px;
  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;
}

/***********************
/* 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 */