/* ---------------------------------------------------
mixin
---------------------------------------------------- */
/*-------------------------------------------
font
-------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/*-------------------------------------------
:root
-------------------------------------------*/
:root {
  --red: #d32f2f;
  --txtlink: #1558d6;
  --sat: #0244e2;
  --sun: #d61a01;
  --gray: #9f9f9f;
}

/*-------------------------------------------
base
-------------------------------------------*/
html {
  font-size: clamp(15px, 1.5vw, 16px);
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #000;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
}

a {
  display: block;
  color: #000;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

figure {
  text-align: center;
  margin: 0 auto;
}
figure > figcaption {
  font-size: 0.9rem;
  font-style: normal;
  text-align: center;
  margin-top: 0.3em;
}
@media screen and (max-width: 768px) {
  figure > figcaption {
    font-size: 0.8rem;
  }
}

/*-------------------------------------------
common
-------------------------------------------*/
.forTB,
.forSP,
.forTBSP,
.forSE {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .forTB,
  .forTBSP {
    display: block !important;
  }
  .forSP,
  .forPC,
  .forSE {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .forSP,
  .forTBSP {
    display: block !important;
  }
  .forTB,
  .forPC,
  .forPCTB,
  .forSE {
    display: none !important;
  }
}
@media screen and (max-width: 320px) {
  .forSE,
  .forSP,
  .forTBSP {
    display: block !important;
  }
  .forTB,
  .forPC,
  .forPCTB {
    display: none !important;
  }
}
/*-------------------------------------------
main
-------------------------------------------*/
.contents-wrapper {
  width: 100%;
  background: #fff;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper {
    padding: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .contents-wrapper {
    padding: 30px 0;
  }
}
.contents-wrapper.bdr-t {
  border-top: #DCDCDC 1px solid;
}
.contents-wrapper.bg-gray {
  background: #eee;
}

.contents-inner {
  position: relative;
  max-width: 1010px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contents-inner {
    max-width: 100vw;
    margin: 0 20px;
  }
}
.contents-inner > *:last-child {
  margin-bottom: 0;
}

/*-------------------------------------------
elementlist
-------------------------------------------*/
.c-title__h2 {
  color: #272727;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
  .c-title__h2 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .c-title__h2 {
    font-size: 1.4rem;
  }
}

.c-title__h3 {
  border-bottom: #DCDCDC 1px solid;
  color: #272727;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1024px) {
  .c-title__h3 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  .c-title__h3 {
    font-size: 1.2rem;
  }
}

.c-title__h4 {
  color: #272727;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
  .c-title__h4 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .c-title__h4 {
    font-size: 1.1rem;
  }
}

.l-content__inner {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .l-content__inner {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-content__inner {
    margin-bottom: 30px;
  }
}

/* text -------------------------------------------- */
.c-text {
  margin-bottom: 20px;
}
.c-text p + p,
.c-text p + .c-list-memo,
.c-text .c-list-memo + p,
.c-text .c-list-memo + .c-list-memo {
  margin-top: 10px;
}

.c-read {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .c-read {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .c-read {
    margin-bottom: 20px;
  }
}
.c-read p + p {
  margin-top: 10px;
}

.c-list-memo li {
  display: block;
  position: relative;
  color: #000;
  padding-left: 1.5em;
  line-height: 1.5;
}
.c-list-memo li .u-memo__mark {
  position: absolute;
  top: 0;
  left: 0;
}
.c-list-memo li + li {
  margin-top: 5px;
}

.u-font-color__red {
  color: var(--red) !important;
}

.u-font-color__sat {
  color: var(--sat) !important;
}

.u-font-color__sun {
  color: var(--sun) !important;
}

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

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

.c-text-small,
.c-text-small * {
  font-size: 0.9rem;
}

.u-taL {
  text-align: left !important;
}

.u-taC {
  text-align: center !important;
}

.u-taC_forPC {
  text-align: center !important;
}
@media screen and (max-width: 768px) {
  .u-taC_forPC {
    text-align: left !important;
  }
}

.u-taR {
  text-align: right !important;
}

/* link / button ----------------------------------- */
.c-link-text {
  display: inline;
  color: var(--txtlink);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.c-link-arrow01 {
  position: relative;
  display: inline-block;
  color: var(--txtlink);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding-left: 1.3em;
}
.c-link-arrow01:before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--txtlink);
  border-right: 2px solid var(--txtlink);
  top: 0.5em;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .c-link-arrow01:before {
    width: 6px;
    height: 6px;
  }
}

.c-link-arrow02 {
  position: relative;
  display: inline-block;
  color: var(--txtlink);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.c-link-arrow02:after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--txtlink);
  border-right: 2px solid var(--txtlink);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 5px;
}
@media screen and (max-width: 1024px) {
  .c-link-arrow02:after {
    width: 6px;
    height: 6px;
  }
}

.c-link-blank {
  position: relative;
  display: inline-block;
  color: var(--txtlink);
  font-weight: 700;
  text-decoration: underline;
  padding-right: 29px;
  cursor: pointer;
}
.c-link-blank:after {
  position: absolute;
  content: url("../img/ic_link_blank.svg");
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  margin-top: -13px;
}

.c-link-pdf {
  position: relative;
  display: inline-block;
  color: var(--txtlink);
  font-weight: 700;
  text-decoration: underline;
  padding-right: 29px;
}
.c-link-pdf:after {
  position: absolute;
  content: url("../img/ic_link_pdf.svg");
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  margin-top: -13px;
}

.c-link-anchor {
  position: relative;
  display: inline-block;
  color: var(--txtlink);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding-left: 1.5em;
}
@media screen and (max-width: 1024px) {
  .c-link-anchor {
    padding-left: 1.3em;
  }
}
.c-link-anchor:before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--txtlink);
  border-right: 2px solid var(--txtlink);
  top: 0.7em;
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 1024px) {
  .c-link-anchor:before {
    width: 8px;
    height: 8px;
  }
}

.c-button--black {
  position: relative;
  display: inline-block;
  background: #000;
  border-radius: 50px;
  min-width: 420px;
  padding: 5px 7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--black {
    min-width: 100%;
  }
}
.c-button--black .c-button__inner {
  display: grid;
  place-content: center;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
  padding: 20px 70px 20px 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--black .c-button__inner {
    padding: 20px 40px 20px 20px;
  }
}
.c-button--black:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 32px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-button--black:hover:after {
    right: 27px;
  }
}

.c-button--gray {
  position: relative;
  display: inline-block;
  background: #666;
  border-radius: 50px;
  min-width: 420px;
  padding: 5px 7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--gray {
    min-width: 100%;
  }
}
.c-button--gray .c-button__inner {
  display: grid;
  place-content: center;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
  padding: 20px 70px 20px 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--gray .c-button__inner {
    padding: 20px 40px 20px 20px;
  }
}
.c-button--gray:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 32px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-button--gray:hover:after {
    right: 27px;
  }
}

.c-button--white {
  position: relative;
  display: inline-block;
  background: #fff;
  border: #000 1px solid;
  border-radius: 50px;
  min-width: 420px;
  padding: 20px 70px 20px 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--white {
    min-width: 100%;
    padding: 20px 40px 20px 20px;
  }
}
.c-button--white .c-button__inner {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  color: #000;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-button--white:after {
  position: absolute;
  display: inline-block;
  content: "";
  top: 50%;
  right: 32px;
}
.c-button--white.pdf:after {
  background: url("../img/ic_pdf01.svg") no-repeat 0 0;
  background-size: 100%;
  width: 25px;
  height: 25px;
  margin-top: -12px;
}

.c-button--ticket {
  position: relative;
  display: inline-block;
  background: #000;
  border-radius: 50px;
  min-width: 420px;
  padding: 5px 7px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--ticket {
    min-width: 100%;
  }
}
.c-button--ticket .c-button__inner {
  display: grid;
  place-content: center;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
  padding: 20px 70px 20px 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--ticket .c-button__inner {
    padding: 20px 40px 20px 20px;
  }
}
.c-button--ticket .c-button__inner::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/ic_link_ticket.svg) no-repeat 0 0;
  background-size: cover;
  top: 50%;
  right: 32px;
  width: 30px;
  height: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--ticket .c-button__inner::after {
    width: 24px;
    height: 24px;
  }
}
@media (hover: hover) {
  .c-button--ticket:hover:after {
    right: 27px;
  }
}

[class^=c-button].is-inactive {
  pointer-events: none;
  opacity: 0.1;
}

.c-button--gray.is-inactive {
  opacity: 0.3;
}

/* table / dl --------------------------------------- */
.c-table-clm {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .c-table-clm {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-table-clm {
    margin-bottom: 20px;
  }
}
.c-table-clm tr > * {
  border: #ccc 1px solid;
  color: #000;
  line-height: 1.5;
  vertical-align: middle;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .c-table-clm tr > * {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 768px) {
  .c-table-clm tr > * {
    padding: 5px;
  }
}
.c-table-clm tr > *.u-bg-black {
  color: #fff;
  background: #000;
}
.c-table-clm tr > *.u-bg-gray {
  background: #ccc;
  border-color: #eee;
}
.c-table-clm tr > *.u-bg-white {
  background: #fff;
}
.c-table-clm tr > th {
  background: #eee;
  font-weight: 700;
  text-align: center;
}
.c-table-clm tr > td {
  background: #fff;
}
.c-table-clm.col1forSP {
  border-top: #ccc 1px solid;
}
@media screen and (max-width: 768px) {
  .c-table-clm.col1forSP tr {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .c-table-clm.col1forSP tr > th {
    width: 100% !important;
    border-top: none;
    border-bottom: none;
  }
}

@media screen and (max-width: 1024px) {
  .l-table-scroll__tb {
    overflow: auto;
    white-space: nowrap;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .l-table-scroll__sp {
    overflow: auto;
    white-space: nowrap;
    margin-bottom: 10px;
  }
}

.c-dl-block {
  margin-bottom: 20px;
}
.c-dl-block > dl {
  display: grid;
  grid-template-columns: 1fr 3fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: var(--gray) 1px solid;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-dl-block > dl {
    grid-template-columns: 1fr;
  }
}
.c-dl-block > dl:first-of-type {
  border-top: var(--gray) 1px solid;
}
.c-dl-block > dl.bdr-dot {
  border-bottom: var(--gray) 1px dashed;
}
.c-dl-block > dl > * {
  padding: 20px 10px;
}
@media screen and (max-width: 768px) {
  .c-dl-block > dl > * {
    padding: 10px;
  }
}
.c-dl-block > dl > dt {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-dl-block > dl > dt {
    padding-bottom: 5px;
  }
}
.c-dl-block > dl > dd {
  border: none;
}
@media screen and (max-width: 768px) {
  .c-dl-block > dl > dd {
    padding-top: 5px;
  }
}
.c-dl-block.c-dl-block__w40p > dl {
  grid-template-columns: 2fr 3fr;
}
.c-dl-block.c-dl-block__w60p > dl {
  grid-template-columns: 3fr 2fr;
}

/* margin ------------------------------------------ */
.u-m0 {
  margin: 0 !important;
}

.u-m5 {
  margin: 5px !important;
}

.u-m10 {
  margin: 10px !important;
}

.u-m15 {
  margin: 15px !important;
}

.u-m20 {
  margin: 20px !important;
}

.u-m30 {
  margin: 30px !important;
}

.u-m40 {
  margin: 40px !important;
}

.u-m50 {
  margin: 50px !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

/*-------------------------------------------
header
-------------------------------------------*/
.header-wrapper {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 50;
}
.header-wrapper .header-inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-inner {
    max-width: 100%;
    height: 80px;
  }
}
.header-wrapper .header-inner .header-logo {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-inner .header-logo {
    width: calc(100% - 50px);
    text-align: center;
  }
}
.header-wrapper .header-inner .header-logo > a {
  width: 280px;
  height: 24px;
  background-image: url("../img/logo_fanfes02.webp");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-inner .header-logo > a {
    background-position: 50% 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .header-wrapper .header-inner .header-logo > a {
    width: 210px;
    height: 18px;
  }
}
.header-wrapper .header-inner .header-logo > a > span {
  display: none;
}
.header-wrapper .header-inner .header-nav {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-inner .header-nav {
    position: fixed;
    right: -320px;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    padding-top: 90px;
    z-index: 200;
    overflow-y: auto;
  }
}
.header-wrapper .header-inner .header-nav .header-nav_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-inner .header-nav .header-nav_list {
    display: block;
    padding: 0 15px;
    margin: 0;
  }
}
.header-wrapper .header-inner .header-nav .header-nav_list > li a {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  padding: 0 15px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-inner .header-nav .header-nav_list > li a {
    display: block;
    width: auto;
    height: auto;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    padding: 15px;
  }
}
@media (hover: hover) {
  .header-wrapper .header-inner .header-nav .header-nav_list > li:hover {
    background: #eee;
  }
  .header-wrapper .header-inner .header-nav .header-nav_list > li:hover > a {
    opacity: 1;
  }
}
.header-wrapper .header-inner .header-nav .header-nav_list > li.is-inactive {
  opacity: 0.2;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-hmbgr {
    position: absolute;
    right: 7px;
    top: 7px;
    width: 66px;
    height: 66px;
    background: #000;
    cursor: pointer;
    z-index: 300;
  }
  .header-wrapper .header-hmbgr .hmbgr-border {
    position: absolute;
    left: 10px;
    width: 46px;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .header-wrapper .header-hmbgr .hmbgr-border.hmbgr-border_t {
    top: 12px;
  }
  .header-wrapper .header-hmbgr .hmbgr-border.hmbgr-border_c {
    top: 22px;
  }
  .header-wrapper .header-hmbgr .hmbgr-border.hmbgr-border_b {
    top: 32px;
  }
  .header-wrapper .header-hmbgr:after {
    position: absolute;
    left: 50%;
    bottom: 10px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: "MENU";
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    cursor: pointer;
  }
}

@media screen and (max-width: 1024px) {
  .nav-open .header-nav {
    right: 0 !important;
  }
  .nav-open .black_bg {
    opacity: 0.8 !important;
    visibility: visible !important;
  }
  .nav-open .hmbgr-border_t {
    -webkit-transform: rotate(45deg) !important;
            transform: rotate(45deg) !important;
    top: 33px !important;
  }
  .nav-open .hmbgr-border_c {
    width: 0 !important;
    left: 50% !important;
  }
  .nav-open .hmbgr-border_b {
    -webkit-transform: rotate(-45deg) !important;
            transform: rotate(-45deg) !important;
    top: 33px !important;
  }
  .nav-open .header-hmbgr:after {
    opacity: 0;
    visibility: hidden;
  }
}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer-wrapper {
  background: #000;
  text-align: center;
  padding: 60px 0 40px;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper {
    padding: 40px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper {
    padding: 20px;
  }
}
.footer-wrapper .c-footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .c-footer-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer-wrapper .c-footer-menu li {
  padding: 0 1em;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .c-footer-menu li {
    padding: 0 0.5em;
  }
}
.footer-wrapper .c-footer-menu li a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-decoration: underline;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .c-footer-menu li a {
    font-size: 0.9rem;
  }
}
.footer-wrapper .c-footer-menu li + li {
  border-left: #fff 1px solid;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .c-footer-menu li:nth-child(5) {
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper .c-footer-menu li:nth-child(n+5) {
    margin-top: 0.5em;
  }
}
.footer-wrapper .c-footer-menu li.is-active a {
  opacity: 0.3;
  pointer-events: none;
}
.footer-wrapper .c-footer-mlogo {
  width: 180px;
  margin: 60px auto 20px;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper .c-footer-mlogo {
    width: 18%;
    margin: 40px auto 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper .c-footer-mlogo {
    width: 40%;
    margin: 30px auto 10px;
  }
}
.footer-wrapper .c-footer-copyright > p {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .c-footer-copyright > p {
    font-size: 11px;
  }
}

/*-------------------------------------------
float button
-------------------------------------------*/
.l-float-button__ticket {
  width: 140px;
  aspect-ratio: 274/234;
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .l-float-button__ticket {
    width: 120px;
    bottom: 1%;
    right: 1%;
  }
}
@media screen and (max-width: 768px) {
  .l-float-button__ticket {
    width: 110px;
  }
}
.l-float-button__ticket a {
  width: 100%;
  height: 100%;
}

.js-fltBtn {
  display: none;
}

/*-------------------------------------------
pagetop
-------------------------------------------*/
.l-float-button__pagetop {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-float-button__pagetop {
    width: 50px;
    aspect-ratio: 51/58;
    position: fixed;
    bottom: 1%;
    right: 1%;
    z-index: 10;
  }
}
.l-float-button__pagetop a {
  width: 100%;
  height: 100%;
}

.js-pagetop {
  display: none;
}

/*-------------------------------------------
tab
-------------------------------------------*/
.l-tab,
.l-tab-topbtm {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-tab,
  .l-tab-topbtm {
    width: 90vw;
  }
}
.l-tab .l-tab-list,
.l-tab-topbtm .l-tab-list {
  position: relative;
}
.l-tab .l-tab-list > ul,
.l-tab-topbtm .l-tab-list > ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-bottom: #DCDCDC 1px solid;
}
@media screen and (max-width: 1024px) {
  .l-tab .l-tab-list > ul,
  .l-tab-topbtm .l-tab-list > ul {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .l-tab .l-tab-list > ul,
  .l-tab-topbtm .l-tab-list > ul {
    gap: 5px;
  }
}
.l-tab .l-tab-list > ul > li,
.l-tab-topbtm .l-tab-list > ul > li {
  display: grid;
  place-content: center;
  background: #F7F7F7;
  border: 1px solid #ccc;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom: none;
  cursor: pointer;
}
.l-tab .l-tab-list > ul > li > a,
.l-tab-topbtm .l-tab-list > ul > li > a {
  display: block;
  width: 100%;
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 20px 10px;
}
@media screen and (max-width: 768px) {
  .l-tab .l-tab-list > ul > li > a,
  .l-tab-topbtm .l-tab-list > ul > li > a {
    padding: 15px 5px;
  }
}
.l-tab .l-tab-list > ul > li.is-active,
.l-tab-topbtm .l-tab-list > ul > li.is-active {
  background: #DCDCDC;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .l-tab .l-tab-list > ul > li.is-active,
  .l-tab-topbtm .l-tab-list > ul > li.is-active {
    margin-top: -15px;
  }
}
.l-tab .l-tab-list > ul > li.is-active > a,
.l-tab-topbtm .l-tab-list > ul > li.is-active > a {
  color: #272727;
}
@media (hover: hover) {
  .l-tab .l-tab-list > ul > li:hover,
  .l-tab-topbtm .l-tab-list > ul > li:hover {
    opacity: 0.5;
  }
  .l-tab .l-tab-list > ul > li:hover > a,
  .l-tab-topbtm .l-tab-list > ul > li:hover > a {
    opacity: 1;
  }
}
.l-tab .l-tab-list.tab-bottom > ul,
.l-tab-topbtm .l-tab-list.tab-bottom > ul {
  border-top: #ccc 1px solid;
  border-bottom: none;
}
.l-tab .l-tab-panel,
.l-tab-topbtm .l-tab-panel {
  display: none;
  padding: 60px 30px;
}
@media screen and (max-width: 1024px) {
  .l-tab .l-tab-panel,
  .l-tab-topbtm .l-tab-panel {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-tab .l-tab-panel,
  .l-tab-topbtm .l-tab-panel {
    padding: 30px 10px;
  }
}
.l-tab .l-tab-panel.is-active,
.l-tab-topbtm .l-tab-panel.is-active {
  display: block;
  -webkit-animation-name: fadeInPanel;
          animation-name: fadeInPanel;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeInPanel {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInPanel {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.l-tab .l-tab-panel > *:last-child,
.l-tab-topbtm .l-tab-panel > *:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------
accordion
---------------------------------------------------- */
.c-acc__block .c-acc__button {
  position: relative;
  border-top: #000 2px solid;
  border-bottom: #000 2px solid;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 15px 52px 15px 15px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .c-acc__block .c-acc__button {
    font-size: 1.1rem;
    padding: 15px 52px 15px 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-acc__block .c-acc__button {
    font-size: 1rem;
    padding: 10px 36px 10px 10px;
  }
}
.c-acc__block .c-acc__button:before, .c-acc__block .c-acc__button:after {
  position: absolute;
  content: "";
  display: inline-block;
  background: #000;
  top: 50%;
  line-height: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-acc__block .c-acc__button:before {
  width: 20px;
  height: 3px;
  right: 16px;
}
@media screen and (max-width: 768px) {
  .c-acc__block .c-acc__button:before {
    width: 16px;
    height: 2px;
    right: 10px;
  }
}
.c-acc__block .c-acc__button:after {
  width: 3px;
  height: 20px;
  right: 24.5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-acc__block .c-acc__button:after {
    width: 2px;
    height: 16px;
    right: 17px;
  }
}
.c-acc__block .c-acc__button.is-open {
  border-bottom: none;
}
.c-acc__block .c-acc__button.is-open:after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.c-acc__block .c-acc__content {
  display: none;
  border-bottom: #000 2px solid;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .c-acc__block .c-acc__content {
    padding: 10px;
  }
}
.c-acc__block .c-acc__content.is-open {
  display: block;
  -webkit-animation: fadeInPanel 0.5s ease forwards;
          animation: fadeInPanel 0.5s ease forwards;
  opacity: 0;
}
.c-acc__block + .c-acc__block .c-acc__button {
  border-top: none;
}

/* ---------------------------------------------------
column
---------------------------------------------------- */
.c-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto !important;
}
.c-column.c-column__alignItems-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-column.c-column__justifyContent-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-column > * {
  margin-right: 2%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .c-column > * {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .c-column > * {
    margin-bottom: 10px;
  }
}
.c-column > .c-column__inner .c-dl-block {
  margin-bottom: 0 !important;
}
.c-column > .c-column__inner .c-button {
  margin-bottom: 0 !important;
}
.c-column.c-column-02 > .c-column__inner {
  width: 49%;
}
.c-column.c-column-02 > .c-column__inner:nth-child(n+3) {
  margin-top: 10px;
}
.c-column.c-column-02 > .c-column__inner:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .c-column.c-column-02 > .c-column__inner.c-column__inner-spW100p {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}
.c-column.c-column-02 > .c-column__inner.c-column__inner-W60p {
  width: 59%;
}
@media screen and (max-width: 768px) {
  .c-column.c-column-02 > .c-column__inner.c-column__inner-W60p.c-column__inner-spW100p {
    width: 100%;
    margin-right: 0;
  }
}
.c-column.c-column-02 > .c-column__inner.c-column__inner-W40p {
  width: 39%;
}
@media screen and (max-width: 768px) {
  .c-column.c-column-02 > .c-column__inner.c-column__inner-W40p.c-column__inner-spW100p {
    width: 100%;
    margin-right: 0;
  }
}
.c-column.c-column-02 > .c-column__inner.c-column__inner-W70p {
  width: 69%;
}
@media screen and (max-width: 768px) {
  .c-column.c-column-02 > .c-column__inner.c-column__inner-W70p.c-column__inner-spW100p {
    width: 100%;
    margin-right: 0;
  }
}
.c-column.c-column-02 > .c-column__inner.c-column__inner-W30p {
  width: 29%;
}
@media screen and (max-width: 768px) {
  .c-column.c-column-02 > .c-column__inner.c-column__inner-W30p.c-column__inner-spW100p {
    width: 100%;
    margin-right: 0;
  }
}
.c-column.c-column-02 > .c-column__inner.c-column__inner-W80p {
  width: 79%;
}
@media screen and (max-width: 768px) {
  .c-column.c-column-02 > .c-column__inner.c-column__inner-W80p.c-column__inner-spW100p {
    width: 100%;
    margin-right: 0;
  }
}
.c-column.c-column-02 > .c-column__inner.c-column__inner-W20p {
  width: 19%;
}
@media screen and (max-width: 768px) {
  .c-column.c-column-02 > .c-column__inner.c-column__inner-W20p.c-column__inner-spW100p {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-column.c-column-02 > .c-column__inner .c-button {
    min-width: 320px;
  }
}
@media screen and (max-width: 768px) {
  .c-column.c-column-02 > .c-column__inner .c-button {
    min-width: 100%;
  }
}
.c-column.c-column-03 > .c-column__inner {
  width: 32%;
  margin-right: 2%;
}
.c-column.c-column-03 > .c-column__inner:nth-child(n+4) {
  margin-top: 10px;
}
.c-column.c-column-03 > .c-column__inner:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .c-column.c-column-03 > .c-column__inner.c-column__inner-spW50p {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .c-column.c-column-03 > .c-column__inner.c-column__inner-spW100p {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-column.c-column-03 > .c-column__inner .c-button {
    min-width: 100%;
  }
}
.c-column.c-column-04 > .c-column__inner {
  width: 23.5%;
}
.c-column.c-column-04 > .c-column__inner:nth-child(n+5) {
  margin-top: 10px;
}
.c-column.c-column-04 > .c-column__inner:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .c-column.c-column-04 > .c-column__inner {
    width: 49%;
  }
  .c-column.c-column-04 > .c-column__inner:nth-child(n+3) {
    margin-top: 10px;
  }
  .c-column.c-column-04 > .c-column__inner:nth-child(4n) {
    margin-right: 2%;
  }
  .c-column.c-column-04 > .c-column__inner:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-column.c-column-04 > .c-column__inner.c-column__inner-spW100p {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-column.c-column-04 > .c-column__inner .c-button {
    min-width: 100%;
  }
}
.c-column.c-column-05 > .c-column__inner {
  width: 18.4%;
}
.c-column.c-column-05 > .c-column__inner:nth-child(n+6) {
  margin-top: 10px;
}
.c-column.c-column-05 > .c-column__inner:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .c-column.c-column-05 > .c-column__inner {
    width: 32%;
  }
  .c-column.c-column-05 > .c-column__inner:nth-child(n+4) {
    margin-top: 10px;
  }
  .c-column.c-column-05 > .c-column__inner:nth-child(5n) {
    margin-right: 2%;
  }
  .c-column.c-column-05 > .c-column__inner:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-column.c-column-05 > .c-column__inner.c-column__inner-spW100p {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-column.c-column-05 > .c-column__inner .c-button {
    min-width: 100%;
  }
}

/* ---------------------------------------------------
modal
---------------------------------------------------- */
.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 99999;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}
.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}
.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  position: relative;
  width: 740px;
  background: #fff;
  vertical-align: middle;
  padding: 30px;
  margin: 50px auto 20px;
  -webkit-animation: fadeInBtn 1s forwards;
          animation: fadeInBtn 1s forwards;
  opacity: 0;
  z-index: 1045;
}
@media screen and (max-width: 1024px) {
  .modal {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .modal {
    width: 92%;
    padding: 20px;
  }
}
.modal a.close-modal {
  position: absolute;
  top: -30px;
  right: -30px;
  display: block;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+ pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}
@media screen and (max-width: 768px) {
  .modal a.close-modal {
    width: 30px;
    height: 30px;
    top: -12.5px;
    right: -12.5px;
  }
}
.modal a.close-modal:hover {
  opacity: 1;
}

@-webkit-keyframes fadeInBtn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInBtn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=common.css.map */