@charset "UTF-8";
/*
* color
* --------------------------------------------------*/
.text-m {
  font-size: 16px;
  line-height: 1.5;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .text-m {
    font-size: 14px;
    line-height: 1.6;
  }
}

/*
* color
* --------------------------------------------------*/
.text-m {
  font-size: 16px;
  line-height: 1.5;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .text-m {
    font-size: 14px;
    line-height: 1.6;
  }
}

/*
* color
* --------------------------------------------------*/
.text-m {
  font-size: 16px;
  line-height: 1.5;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .text-m {
    font-size: 14px;
    line-height: 1.6;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
* font
* --------------------------------------------------*/
html,
body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Lucida Grande", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
}

body {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid {
  display: -ms-grid;
  display: grid;
}

button {
  margin: 0;
  border: none;
  background-color: transparent;
}

/* body
-----------------------------------------------------*/
body {
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0;
  padding-top: 0;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

/*リンクテキスト
-----------------------------------------------------*/
a {
  color: #333333;
}

a,
input[type=submit],
input[type=button],
button {
  text-decoration: none;
  outline: none;
}

a:hover,
a:active,
input[type=submit]:hover,
input[type=submit]:active,
input[type=button]:hover,
input[type=button]:active,
button:hover,
button:active {
  outline: none;
  text-decoration: none;
  /*PC*/
}
@media screen and (min-width: 769px) {
  a:hover,
  a:active,
  input[type=submit]:hover,
  input[type=submit]:active,
  input[type=button]:hover,
  input[type=button]:active,
  button:hover,
  button:active {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
  }
}

a:focus,
a:active,
input[type=submit]:focus,
input[type=submit]:active,
input[type=button]:focus,
input[type=button]:active,
button:focus,
button:active {
  outline: none;
  text-decoration: none;
}

a:active:focus,
a:active.focus,
a.active:focus,
a.active.focus,
input[type=submit]:active:focus,
input[type=submit]:active.focus,
input[type=submit].active:focus,
input[type=submit].active.focus,
input[type=button]:active:focus,
input[type=button]:active.focus,
input[type=button].active:focus,
input[type=button].active.focus,
button:active:focus,
button:active.focus,
button.active:focus,
button.active.focus {
  outline: none;
  text-decoration: none;
}

/* img
-----------------------------------------------------*/
figure img {
  margin-bottom: 0;
}

img {
  margin-bottom: 0;
}

.img-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*
* placeholder
-----------------------------------------------------*/
input:-moz-placeholder-shown, .form-control:-moz-placeholder-shown {
  color: #cdd6dd;
}
input:-ms-input-placeholder, .form-control:-ms-input-placeholder {
  color: #cdd6dd;
}
input:placeholder-shown,
.form-control:placeholder-shown {
  color: #cdd6dd;
}

input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #cdd6dd;
}

input:-moz-placeholder,
.form-control:-moz-placeholder {
  color: #cdd6dd;
  opacity: 1;
}

input::-moz-placeholder,
.form-control::-moz-placeholder {
  color: #cdd6dd;
  opacity: 1;
}

input:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: #cdd6dd;
}

input:focus,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

hr {
  margin-top: 30px;
  margin-bottom: 30px;
  border: 0;
}

.hr-dashed {
  border-top: 1px dashed #333333;
}

.text-link,
.entry-contents a {
  font-weight: bold;
  text-decoration: underline;
}

@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: auto;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible;
}

/*
* color
* --------------------------------------------------*/
.text-m {
  font-size: 16px;
  line-height: 1.5;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .text-m {
    font-size: 14px;
    line-height: 1.6;
  }
}

/*
* header
* --------------------------------------------------*/
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 57px;
  background: #de1f26;
  z-index: 1005;
  /*PC*/
}
@media (min-width: 769px) {
  .lp-header {
    height: 80px;
  }
}
.lp-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-left: 10px;
  /*PC*/
}
@media (min-width: 769px) {
  .lp-header .inner {
    padding-left: 25px;
  }
}
.lp-header .inner .site-logo {
  width: 100px;
  height: 40px;
  /*PC*/
}
@media (min-width: 769px) {
  .lp-header .inner .site-logo {
    width: 150px;
    height: 60px;
  }
}
.lp-header .inner .nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  /*PC*/
}
@media (min-width: 769px) {
  .lp-header .inner .nav-content {
    gap: 40px;
  }
}
.lp-header .inner .nav-content .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  font-size: 12px;
  /*PC*/
}
@media (min-width: 769px) {
  .lp-header .inner .nav-content .nav-list {
    gap: 40px;
    font-size: 16px;
  }
}
.lp-header .inner .nav-content .nav-list li a {
  color: #fff;
}

/*
* color
* --------------------------------------------------*/
.text-m {
  font-size: 16px;
  line-height: 1.5;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .text-m {
    font-size: 14px;
    line-height: 1.6;
  }
}

/*
* footer
* --------------------------------------------------*/
.lp-footer {
  background-color: #000;
  padding: 20px 0;
  color: #fff;
}

.lp-footer .footer-logo {
  width: 40px;
  margin-bottom: 10px;
  margin-inline: auto;
}

.lp-footer .footer-logo .logo-icon {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
}

.lp-footer .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

.lp-footer .footer-menu .item {
  margin-left: 10px;
  margin-right: 10px;
}

.lp-footer .footer-menu .link {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.lp-footer .copyright {
  font-size: 10px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

/*
* color
* --------------------------------------------------*/
.text-m {
  font-size: 16px;
  line-height: 1.5;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .text-m {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* モーダル
-----------------------------------------------------*/
.modal {
  display: none; /* デフォルトでは非表示 */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.modal .modal-inner {
  max-width: 1200px;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*SP*/
}
@media screen and (max-width: 768px) {
  .modal .modal-inner {
    width: calc(100% - 30px);
  }
}
.modal .modal-content {
  position: relative;
  overflow: hidden;
  overflow-y: scroll;
  background-color: #fff;
  max-height: 75vh;
  padding: 35px 60px 60px;
  border-radius: 4px;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .modal .modal-content {
    padding: 14px 0px 50px;
  }
}
.modal .modal-content .popup-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  overflow: hidden;
  /*SP*/
}
.modal .modal-content .popup {
  min-width: 100%;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  /*SP*/
}
.modal .modal-content .popup .modal-title {
  margin: 0 auto;
  width: 90%;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  font-size: 18px;
  line-height: 1.45;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .modal .modal-content .popup .modal-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    width: 100%;
    font-size: 32px;
  }
}
.modal .modal-content .popup .modal-title .number {
  display: block;
  padding-bottom: 10px;
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0;
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #de1f26;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .modal .modal-content .popup .modal-title .number {
    padding-bottom: 0;
    font-size: 100px;
  }
}
.modal .modal-content .popup .bl-content {
  margin-top: 25px;
  /*PC*/
  /*PC*/
}
@media screen and (min-width: 769px) {
  .modal .modal-content .popup .bl-content {
    max-width: 1080px;
    margin-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 62px;
  }
}
@media screen and (min-width: 769px) {
  .modal .modal-content .popup .bl-content .slider-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 68.4%;
            flex: 1 1 68.4%;
    min-width: 0;
    max-width: 660px;
  }
}
.modal .modal-content .popup .bl-content .text-m {
  margin: 30px auto 0;
  width: 85.6%;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .modal .modal-content .popup .bl-content .text-m {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 37.1%;
            flex: 1 1 37.1%;
    max-width: 358px;
  }
}
.modal .modal-content .popup .bl-content .text-m .modal-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 5px;
  color: #de1f26;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  font-size: 14px;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .modal .modal-content .popup .bl-content .text-m .modal-link {
    font-size: 16px;
  }
}
.modal .modal-content .popup .bl-content .text-m .modal-link::after {
  content: "";
  background-image: url(/v=1755743974/files/user/common/2025-26/ig-arena/icn_arrow_red.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 9px;
  width: 9px;
  height: 9px;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .modal .modal-content .popup .bl-content .text-m .modal-link::after {
    background-size: 12px;
    width: 12px;
    height: 12px;
  }
}
.modal .modal-operation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin: 40px auto 0;
  padding-bottom: 32px;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal .modal-operation {
    margin-top: 40px;
    padding-bottom: 20px;
    gap: 20px;
  }
}
.modal .modal-operation .close {
  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;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 212px;
  padding: 10px 0;
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
  background-color: #de1f26;
  color: #fff;
  cursor: pointer;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .modal .modal-operation .close {
    width: 185px;
  }
}
.modal .modal-operation .close i {
  display: block;
  width: 10px;
  height: 10px;
}
.modal .modal-operation .prev-button,
.modal .modal-operation .next-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  cursor: pointer;
  pointer-events: auto;
}
.modal .modal-operation .prev-button.deactive,
.modal .modal-operation .next-button.deactive {
  opacity: 0;
  pointer-events: none; /* ボタンをクリック不可にする */
  cursor: default; /* カーソルを通常にする */
}
.modal .modal-operation .prev-button::before,
.modal .modal-operation .next-button::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .modal .modal-operation .prev-button::before,
  .modal .modal-operation .next-button::before {
    width: 24px;
    height: 24px;
  }
}
.modal .modal-operation .prev-button::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.modal .modal-operation .next-button::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal .modal-operation .prev-button {
  /*SP*/
}
@media screen and (max-width: 768px) {
  .modal .modal-operation .prev-button {
    padding: 4px 0 0 12px;
  }
}
.modal .modal-operation .next-button {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .modal .modal-operation .next-button {
    padding: 4px 12px 0 0;
  }
}
.modal .splide__pagination {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  position: static; /* 絶対配置を解除 */
  margin-top: 20px; /* 画像との間の余白 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .modal .splide__pagination {
    margin-top: 12px;
    gap: 12px;
  }
}
.modal .splide__pagination__page {
  background: #d9d9d9;
  margin: 0;
  width: 10px;
  height: 10px;
  opacity: 1;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .modal .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
}
.modal .splide__pagination__page.is-active {
  background: #de1f26;
  -webkit-transform: none;
          transform: none;
  z-index: 1;
}

/* splide CSS
-----------------------------------------------------*/
.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
          animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/*
* color
* --------------------------------------------------*/
.text-m {
  font-size: 16px;
  line-height: 1.5;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .text-m {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* グリッドシステムやレイアウトのユーティリティ
-----------------------------------------------------*/
body {
  margin: 0;
}

.wrap {
  padding-top: 80px;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .wrap {
    padding-top: 0;
  }
}

.only-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

.only-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .only-sp {
    display: block;
  }
}

.btn-header-ticket {
  width: 93px;
  margin-right: 0;
  padding: 0;
  height: 57px;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .btn-header-ticket {
    margin-right: 10px;
    width: 198px;
    height: 60px;
  }
}
.btn-header-ticket a {
  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;
  gap: 10px;
  padding: 0px;
  height: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.3;
  background: #000;
  color: #fff;
  font-size: 12px;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .btn-header-ticket a {
    padding: 20px 40px;
    font-size: 16px;
  }
}
.btn-header-ticket a::after {
  content: "";
  background-image: url(/v=1755743975/files/user/common/2025-26/ig-arena/icn_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  width: 10px;
  height: 10px;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .btn-header-ticket a::after {
    background-size: 12px;
    width: 12px;
    height: 12px;
  }
}

/* メインビジュアル
-----------------------------------------------------*/
.lp-main {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 400;
  color: #000;
  font-size: 16px;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .lp-main {
    font-size: 14px;
  }
}
.lp-main svg {
  max-width: 100%;
  height: auto;
}
.lp-main .kv-main {
  position: relative;
}
.lp-main .kv-main .kv-title {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 72%;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .lp-main .kv-main .kv-title {
    top: 65px;
    left: 74px;
    width: 49.93%;
  }
}
.lp-main .kv-main picture img {
  width: 100%;
  height: auto;
}
.lp-main .kv-lead {
  padding: 50px 0;
  background-color: #de1f26;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .lp-main .kv-lead {
    padding: 100px 0;
  }
}
.lp-main .kv-lead .kv-lead-inr {
  margin: 0 auto;
  width: 89.5%;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .lp-main .kv-lead .kv-lead-inr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 120px;
    max-width: 1200px;
    width: 90%;
  }
}
.lp-main .kv-lead .kv-lead-inr .lead-text {
  padding: 0 10px 40px;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .lp-main .kv-lead .kv-lead-inr .lead-text {
    padding: 0;
    max-width: 480px;
    width: 40%;
  }
}
.lp-main .kv-lead .kv-lead-inr .lead-text .lead-title {
  padding-bottom: 14px;
  max-width: 302px;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .lp-main .kv-lead .kv-lead-inr .lead-text .lead-title {
    max-width: 466px;
    padding-bottom: 53px;
  }
}
.lp-main .kv-lead .kv-lead-inr .lead-text .text {
  padding-top: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 1.7;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .lp-main .kv-lead .kv-lead-inr .lead-text .text {
    padding-top: 24px;
    font-size: 20px;
  }
}
.lp-main .kv-lead .kv-lead-inr .lead-img {
  /*PC*/
}
@media screen and (min-width: 769px) {
  .lp-main .kv-lead .kv-lead-inr .lead-img {
    max-width: 600px;
    width: 50%;
  }
}
.lp-main #facility-overview {
  padding: 40px 0 60px;
  background-color: #000000;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .lp-main #facility-overview {
    padding: 104px 0 100px;
  }
}
.lp-main #facility-overview .inr-arena-facility {
  width: 92%;
  margin: 0 auto;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .lp-main #facility-overview .inr-arena-facility {
    max-width: 1200px;
    width: 90%;
  }
}
.lp-main #facility-overview .title-arena-facility {
  margin: 0 auto;
  max-width: 213px;
  /*PC*/
}
@media screen and (min-width: 769px) {
  .lp-main #facility-overview .title-arena-facility {
    max-width: 738px;
  }
}
.lp-main #facility-overview .facility-text {
  margin-top: 70px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  font-size: 20px;
  color: #fff;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-text {
    margin: 40px auto 0;
    max-width: 91.3%;
    font-size: 16px;
  }
}
.lp-main #facility-overview .facility-map-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap {
    margin-top: 20px;
  }
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li {
  position: absolute;
  z-index: 2;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map01 {
  top: 68.8%;
  left: 19.9%;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map01 {
    top: 89.5%;
    left: 47.9%;
  }
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map02 {
  top: 48.5%;
  left: 17.2%;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map02 {
    top: 77.9%;
    left: 40.4%;
  }
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map03 {
  top: 17.7%;
  left: 75.2%;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map03 {
    top: 6.1%;
    left: 57.9%;
  }
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map04 {
  top: 33.7%;
  left: 23.7%;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map04 {
    top: 66.2%;
    left: 53.7%;
  }
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map05 {
  top: 7.9%;
  left: 95.74%;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map05 {
    top: 6.3%;
    left: 8.74%;
  }
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map06 {
  top: 65.1%;
  left: 57.9%;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map06 {
    top: 35.01%;
    left: 21.9%;
  }
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map07 {
  top: 42.2%;
  left: 61.7%;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map07 {
    top: 20.6%;
    left: 32.1%;
  }
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map08 {
  top: 16.9%;
  left: 20.6%;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map08 {
    top: 55.2%;
    left: 39.1%;
  }
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li.facility-map09 {
  top: 63.2%;
  left: 22.294%;
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li a {
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.lp-main #facility-overview .facility-map-wrap .facility-map-list li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap .facility-map-list li a svg {
    width: 26px;
    height: 33px;
  }
}
.lp-main #facility-overview .facility-map-wrap .visible-image {
  position: relative;
  max-width: 1200px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .lp-main #facility-overview .facility-map-wrap .visible-image {
    aspect-ratio: 345/498;
  }
}
.lp-main #facility-overview .facility-map-wrap .visible-image span {
  display: inline-block;
  position: relative;
  width: 100%;
}
.lp-main #facility-overview .facility-map-wrap .visible-image .mainImage {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  inset: 0px;
  opacity: 1;
}
.lp-main #arena-access {
  padding: 104px 0 100px;
  background: #de1f26;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access {
    padding: 47px 0 50px;
  }
}
.lp-main #arena-access .inr-arena-access {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .inr-arena-access {
    width: 92%;
  }
}
.lp-main #arena-access .title-arena-access {
  max-width: 316px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .title-arena-access {
    max-width: 206px;
  }
}
.lp-main #arena-access .welcome-arena {
  width: 92%;
  max-width: 720px;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .welcome-arena {
    margin: 40px auto 0;
  }
}
.lp-main #arena-access .arena-access-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items {
    margin-top: 40px;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item {
  background: #fff;
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map {
  padding: 80px 90px;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map {
    padding: 30px 25px;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map .ig-arena-access {
  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;
  gap: 80px;
  margin-top: 60px;
  padding: 30px 60px;
  background: #ededed;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map .ig-arena-access {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 22px;
    padding: 20px 32px;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map .ig-arena-access .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map .ig-arena-access .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map .ig-arena-access .info .heading {
  padding-right: 25px;
  margin-right: 25px;
  border-right: 1px solid #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map .ig-arena-access .info .heading {
    font-size: 12px;
    line-height: 1.45;
  }
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map .ig-arena-access .info .heading {
    padding-right: 0;
    margin-right: 0;
    border: none;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map .ig-arena-access .link-map {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map .ig-arena-access .link-map a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  padding: 12px 48px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-map .ig-arena-access .link-map a {
    font-size: 12px;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route {
  padding: 80px 120px 100px;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route {
    padding: 30px 25px;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route[aria-hidden=false] .acd-box {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route[aria-hidden=false] .bar {
  opacity: 0;
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .title {
  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;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .title {
    font-size: 18px;
    line-height: 1.45;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .title svg {
  display: none;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .title svg {
    display: block;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .title svg .bar {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .acd-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .acd-box {
    -ms-grid-rows: 0fr;
    grid-template-rows: 0fr;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .acd-box .inr {
  overflow: hidden;
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .arena-access-route-lists {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 80px;
  margin-top: 20px;
  padding-top: 60px;
  border-top: 2px solid #de1f26;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .arena-access-route-lists {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 40px;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .arena-access-route-lists .arena-access-route-list .route-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .arena-access-route-lists .arena-access-route-list .route-name {
    font-size: 14px;
    line-height: 1.45;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .arena-access-route-lists .arena-access-route-list iframe {
  aspect-ratio: 19/11;
  width: 100%;
  height: 100%;
  margin-top: 12px;
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .arena-access-route-lists .arena-access-route-list .link {
  margin-top: 12px;
  text-align: right;
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .arena-access-route-lists .arena-access-route-list .link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .arena-access-route-lists .arena-access-route-list .link a {
    font-size: 12px;
  }
}
.lp-main #arena-access .arena-access-items .arena-access-item.arena-access-route .arena-access-route-lists .arena-access-route-list .link a span {
  border-bottom: 1px solid #000;
}
.lp-main .link-watch {
  padding: 80px 0;
  background: #000000;
}
@media screen and (max-width: 768px) {
  .lp-main .link-watch {
    padding: 60px 0;
  }
}
.lp-main .link-watch .inr-link-watch {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  width: 92%;
  max-width: 1003px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lp-main .link-watch .inr-link-watch {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.lp-main .link-watch .inr-link-watch a {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.lp-main .link-watch .inr-link-watch a:hover {
  opacity: 0.7;
}

/*
* color
* --------------------------------------------------*/
.text-m {
  font-size: 16px;
  line-height: 1.5;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .text-m {
    font-size: 14px;
    line-height: 1.6;
  }
}

.section-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  height: 170px;
  border-top: 2px solid #000;
}
@media (max-width: 1220px) {
  .section-sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.section-sns .sns-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 550px;
  width: 39.2%;
  background: #fff;
  /*SP*/
}
.section-sns .sns-title picture,
.section-sns .sns-title img {
  width: 262px;
  height: auto;
}
@media (max-width: 1220px) {
  .section-sns .sns-title {
    padding: 36px 0 27px;
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .section-sns .sns-title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section-sns .sns-title picture {
    text-align: center;
  }
  .section-sns .sns-title img {
    width: 131px;
    height: 35px;
  }
}
.section-sns .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 1220px) {
  .section-sns .sns-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    border-top: 2px solid #000000;
  }
}
.section-sns .sns-list .sns-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 170px;
  padding: 40px 10px 20px;
  border-left: 2px solid #000;
  /*SP*/
}
.section-sns .sns-list .sns-item img {
  height: 70px;
  width: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .section-sns .sns-list .sns-item img {
    width: 30px;
    height: 30px;
  }
}
.section-sns .sns-list .sns-item .sns-label {
  margin-top: 20px;
  font-size: 15px;
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .section-sns .sns-list .sns-item .sns-label {
    margin-top: 10px;
    font-size: 9px;
  }
}
@media (max-width: 1220px) {
  .section-sns .sns-list .sns-item {
    width: 100%;
  }
  .section-sns .sns-list .sns-item:first-of-type {
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .section-sns .sns-list .sns-item {
    padding: 11px 9px;
  }
}

/*
* color
* --------------------------------------------------*/
.text-m {
  font-size: 16px;
  line-height: 1.5;
  /*SP*/
}
@media screen and (max-width: 768px) {
  .text-m {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* 背景
-----------------------------------------------------*/
.bg-black {
  background-color: #000000;
}

.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: #f4f4f4;
}

/* PC,SPごとの表示切り替え
-----------------------------------------------------*/
.sp-break {
  display: inline;
}

/*SP*/
@media screen and (max-width: 768px) {
  .sp-break {
    display: block;
  }
}
.only-pc {
  display: block;
}

.only-sp {
  display: none;
}

/*SP*/
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .only-sp {
    display: block;
  }
}