@charset "utf-8";

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
  margin: 0;
  padding: 0;
}
input,
textarea {
  margin: 0;
  font-size: 100%;
}
label {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
fieldset,
img {
  border: 0;
}
img {
  vertical-align: top;
  max-width: 100%;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:after,
q:before {
  content: "";
}
a,
input,
select,
textarea,
button {
  outline: none;
}
abbr,
acronym {
  border: 0;
}

/* !Clearfix
---------------------------------------------------------- */
.clearfix {
  display: block;
  min-height: 1%;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
* html .clearfix {
  height: 1%;
  /*\*/ /*/
	height: auto;
	overflow: hidden;
	/**/
}

/* !Inline Align ------------------------------------------------------------ */
.taL {
  text-align: left !important;
}
.taC {
  text-align: center !important;
}
.taR {
  text-align: right !important;
}

/*common*/
* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
a:hover {
  opacity: 0.7;
}
.op img {
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op:hover img {
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
}

@media screen and(max-width:767px) {
  a:hover {
    opacity: 1;
  }
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
body {
  color: #333;
  background: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  -webkit-text-size-adjust: none;
  line-height: 1.5;
}

.font_roboto {
  font-family: "Roboto", sans-serif;
}
.font_dribble {
  font-family: "DRIBBLE", sans-serif;
}
.font_oswald {
  font-family: "Oswald", sans-serif;
}

/*** スマホ 320px ~ 767px***/
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

/* !spulse_lp_wrapper
---------------------------------------------------------- */
#spulse_lp_wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-top: 72px;
  width: 100%;
  min-width: 1000px;
  background: #004067;
}

/* !header
---------------------------------------------------------- */
#spulse_lp_header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  background: #ff8709;
}
#spulse_lp_headlogo a {
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 72px;
}
#spulse_lp_headlogo img {
  height: 54px;
}
.spulse_lp_headLink {
  position: fixed;
  right: 0;
  bottom: 0;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.spulse_lp_headLink.showLinks {
  transform: translateX(0);
}
.spulse_lp_btn_menu {
  display: none;
}
#spulse_lp_navi ul {
  display: flex;
  padding: 0 12px;
}
#spulse_lp_navi li {
  margin: 0 16px;
}
#spulse_lp_navi li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 13px;
  height: 72px;
  background: url("../image/header/icon_down.png") no-repeat center bottom 10px;
  text-align: center;
  line-height: 1.285;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  #spulse_lp_wrapper {
    padding: 60px 0 55px;
    min-width: inherit;
  }
  #spulse_lp_wrapper:before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    height: 100vh;
    width: 100%;
    background: url("../image/header/bg_sp.jpg") no-repeat center;
    background-size: cover;
  }

  #spulse_lp_headlogo a {
    padding: 0 16px;
    height: 60px;
  }
  #spulse_lp_headlogo img {
    height: 40px;
  }
  .spulse_lp_btn_menu {
    display: block;
    width: 60px;
    background: url("../image/header/icon_menu.png") no-repeat center;
  }
  .spulse_lp_btn_menu.active {
    background-image: url("../image/header/icon_menu_close.png");
  }
  #spulse_lp_navi {
    position: absolute;
    right: 0;
    top: 60px;
    transition: all 0.3s;
    transform: translateX(100%);
    padding: 40px 0 80px;
    width: 80%;
    max-width: 212px;
    background: #333;
  }
  #spulse_lp_navi.open {
    transform: translateX(0%);
  }
  #spulse_lp_navi ul {
    display: block;
    padding: 0 16px;
  }
  #spulse_lp_navi li {
    margin: 0;
  }
  #spulse_lp_navi li a {
    justify-content: flex-start;
    padding: 0 12px 0 8px;
    height: 56px;
    background: url("../image/header/icon_right.png") no-repeat right center;
    text-align: left;
  }

  .spulse_lp_headLink {
    display: flex;
    padding: 0;
    transform: translate(0, 100%);
  }
  .spulse_lp_headLink.showLinks {
    transform: translate(0, 0);
  }
  .spulse_lp_headLink a {
    width: 50%;
  }
}

/* !mainVisual
---------------------------------------------------------- */
.spulse_lp_mainVisual img {
  width: 100%;
}
.spulse_lp_menu {
  padding: 80px 0;
  background: #fff;
}
.spulse_lp_menu .spulse_lp_inner {
  max-width: 845px;
}
.spulse_lp_menu h2 {
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  text-align: center;
  line-height: 1;
  color: #ff8709;
  font-size: 6rem;
  font-weight: bold;
}
.spulse_lp_menu h2:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #004067;
}
.spulse_lp_menu h2 span {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 12px;
  background: #fff;
}
.spulse_lp_menu .anchors {
  display: flex;
  /* justify-content: space-between; */
  gap: 4rem;
  justify-content: center;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .spulse_lp_menu {
    padding: 40px 0;
  }
  .spulse_lp_menu h2 {
    margin-bottom: 16px;
    font-size: 2.4rem;
  }
  .spulse_lp_menu .anchors {
    justify-content: center;
    flex-wrap: wrap;
    /* margin: 0 -16px; */
    gap: 0.5rem;
  }
  .spulse_lp_menu .anchors a {
    margin: 0 5px 10px;
    width: calc(25% -10px);
  }
}

/* spulse_lp_footer
-----------------------------------------------------------*/
.spulse_lp_footer {
  padding: 80px 0;
  background-color: #ff8709;
  text-align: center;
  color: #fff;
}
.spulse_lp_footer .spulse_lp_inner {
  max-width: 800px;
}
.spulse_lp_footer h2 {
  margin-bottom: 24px;
}
.spulse_lp_footer .sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}
.spulse_lp_footer .sns a {
  display: block;
  margin: 0 22px;
  width: 30px;
}
.spulse_lp_footer .footLinks {
  margin-bottom: 80px;
  border-top: 1px solid #fff;
  text-align: left;
}
.spulse_lp_footer .footLinks a {
  display: block;
  padding: 16px 20px 16px 0;
  background: url("../image/header/icon_right.png") no-repeat right 5px center;
  border-bottom: 1px solid #fff;
}
.spulse_lp_footlogo {
  margin-bottom: 20px;
}
#spulse_lp_copyright {
  font-size: 1.2rem;
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .spulse_lp_footer {
    padding: 60px 0 100px;
  }
  .spulse_lp_footer h2 {
    margin-bottom: 20px;
  }
  .spulse_lp_footer h2 img {
    height: 18px;
  }
  .spulse_lp_footer .sns {
    margin-bottom: 40px;
  }
  .spulse_lp_footer .sns a {
    margin: 0 16px;
    width: 24px;
  }
  .spulse_lp_footer .footLinks {
    margin-bottom: 90px;
  }
  .spulse_lp_footer .footLinks a {
    font-size: 1.4rem;
  }
  .spulse_lp_footlogo {
    margin-bottom: 40px;
  }
  .spulse_lp_footlogo img {
    height: 120px;
  }
}

/* common
-----------------------------------------------------------*/
.hide {
  display: none;
}

.spulse_lp_inner {
  margin: auto;
  max-width: 1000px;
}

.spulse_lp_anchorArea {
  position: relative;
}
.spulse_lp_anchorArea .anchor {
  position: absolute;
  top: -72px;
}

.spulse_lp_bgBlack {
  color: #fff;
  padding-bottom: 40px;
}

.spulse_lp_bgWhite {
  background: #fff;
}

.spulse_lp_title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 2px solid #00304d;
  line-height: 1;
  color: #00304d;
  font-weight: bold;
}
.spulse_lp_title .eng {
  text-transform: uppercase;
  color: #ff8709;
  font-size: 6rem;
}
.spulse_lp_title .jap {
  font-size: 2rem;
}
.spulse_lp_bgBlack .spulse_lp_title {
  border-color: #fff;
  color: #fff;
}

.spulse_lp_btns {
  margin-top: 24px;
  text-align: center;
  font-size: 0;
}
.spulse_lp_btns a {
  display: inline-block;
  margin: 0 12px;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .spulse_lp_inner {
    padding: 0 16px;
  }

  .spulse_lp_title {
    display: block;
    margin-bottom: 24px;
    padding-bottom: 8px;
  }
  .spulse_lp_title .eng {
    display: block;
    font-size: 4.8rem;
  }
  .spulse_lp_title .jap {
    display: block;
    margin-top: 8px;
    font-size: 1.4rem;
  }

  .spulse_lp_btns {
    margin-top: 16px;
  }
  .spulse_lp_btns a {
    display: inline-block;
    margin: 8px 0;
  }
}

/* spulse_lp_game
-----------------------------------------------------------*/
.spulse_lp_game {
  padding: 80px 0;
  background: url("../image/game/bg_game.jpg") center;
  text-align: center;
  font-weight: bold;
  color: #00304d;
}
.spulse_lp_game .title {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
.spulse_lp_game .title img {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 12px;
  margin-bottom: -3px;
}
.spulse_lp_game .team {
  margin: -40px auto 0;
  max-width: 800px;
}
.spulse_lp_game .team .logo {
  float: left;
  width: 40%;
  max-width: 200px;
}
.spulse_lp_game .team .logo:nth-of-type(2n) {
  float: right;
}
.spulse_lp_game .team .position span {
  display: inline-block;
  padding: 0 18px;
  border: 2px solid #fff;
  line-height: 28px;
  color: #fff;
  font-size: 2rem;
}
.spulse_lp_game .team .position .home {
  background: #00304d;
  border-color: #00304d;
  color: #fff;
}
.spulse_lp_game .team .img {
  margin: 16px 0 6px;
}
.spulse_lp_game .stadium {
  margin-top: 65px;
  line-height: 1;
  font-size: 4.2rem;
}
.spulse_lp_game .stadium .date {
  font-size: 12rem;
}
.spulse_lp_game .stadium .day {
  font-size: 7.2rem;
}
.spulse_lp_game .place {
  margin-top: 15px;
  font-size: 2.2rem;
}
.spulse_lp_game .place .sign {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-right: 13px;
  padding: 0 28px;
  background: #00304d;
  border-radius: 50px;
  line-height: 36px;
  color: #fff;
  font-size: 1.5rem;
}
.spulse_lp_game .spulse_lp_btns img {
  height: 72px;
}

/* event */
.spulse_lp_event {
  padding: 80px 0 0;
  font-weight: 500;
}
.spulse_lp_event .main {
  margin: 0 auto 50px;
  max-width: 500px;
}
.spulse_lp_event .main .img {
  margin-bottom: 16px;
}
.spulse_lp_event ul {
  display: flex;
  flex-wrap: wrap;
}
.spulse_lp_event li {
  position: relative;
}
.spulse_lp_event li .sign,
.fancyboxBox .sign,
.spulse_lp_goodslider .sign {
  position: absolute;
  left: 12px;
  top: 0;
  transform: translateY(-50%);
  padding: 3px 12px;
  background: #2699fb;
  border-radius: 50px;
  color: #fff;
  font-size: 1.2rem;
}
.sign.hot {
  background: #9b0020 !important;
}
.spulse_lp_event li .btn,
.spulse_lp_member .btn {
  text-align: right;
  font-size: 1.2rem;
}
.spulse_lp_event li .btn a,
.spulse_lp_member .btn a {
  display: inline-block;
  padding-right: 12px;
  background: url("../image/icon_plus.png") no-repeat right center;
}
.spulse_lp_event .col03 {
  margin-left: -32px;
}
.spulse_lp_event .col03 li {
  position: relative;
  margin: 0 0 40px 32px;
  width: calc(100% / 3 - 32px);
  color: #333;
}
.spulse_lp_event .col03 li .img,
.fancyboxBox .img {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.spulse_lp_event .col03 li .info,
.fancyboxBox .info {
  padding: 8px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}

.spulse_lp_event .col03 li .info .tit {
  height: 122px;
}
.spulse_lp_event .col03 li .btn {
  margin-top: 8px;
}
.spulse_lp_event .col04 {
  justify-content: center;
  margin: 0 -12px;
}
.spulse_lp_event .col04 li {
  margin: 0 12px 40px;
  width: calc(25% - 24px);
  color: #fff;
}
.spulse_lp_event .col04 li .img {
  margin-bottom: 12px;
}
.spulse_lp_event .col04 li .tit {
  font-size: 1.4rem;
  height: 63px;
}
.spulse_lp_event .col04 li .btn {
  margin-top: 12px;
  font-size: 1rem;
}
.spulse_lp_event .col04 li .btn a {
  background-image: url("../image/icon_plus_white.svg");
}
.spulse_lp_event .spulse_lp_btns {
  margin-top: 0;
}

.fancyboxBox {
  position: relative;
  max-width: 480px;
  font-weight: 500;
}
.fancyboxBox .tit {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
  font-weight: 500;
}
.fancyboxBox .txt {
  font-size: 1.4rem;
  font-weight: bold;
}
.fancyboxBox .txt a {
  color: #2699fb;
}

.spulse_lp_schedule {
  padding: 8rem 0 8rem;
}
.spulse_lp_schedule table {
  border-spacing: 4px;
  border-collapse: separate;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  line-height: 1.1;
}
.spulse_lp_schedule th {
  width: 80px;
  background: #002034;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
}
.spulse_lp_schedule td {
  padding: 8px 12px;
  background: #fff;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
}

.spulse_lp_gourmet {
  padding: 80px 0;
}
.spulse_lp_goodslider .slick-list {
  overflow: visible;
}
.spulse_lp_bgBlack .spulse_lp_goodslider .slick-prev {
  left: -72px;
  background-image: url("../image/slide_prev_white.svg");
}
.spulse_lp_bgBlack .spulse_lp_goodslider .slick-next {
  right: -72px;
  background-image: url("../image/slide_next_white.svg");
}
.spulse_lp_goodslider .col03 {
  padding: 0 58px;
  display: flex !important;
  justify-content: space-between;
}
.spulse_lp_goodslider .sp {
  display: none !important;
}

.spulse_lp_goodslider.pc .slick-slide {
  width: 240px;
  margin: 0 16px;
}

.spulse_lp_goodslider .item {
  position: relative;
  width: calc(100% / 3 - 32px);
  font-weight: 500;
}
.spulse_lp_gourmet .place {
  padding: 10px 16px;
  background: #fff;
  border-left: 8px solid #ff8709;
  line-height: 1.15;
  font-size: 1.4rem;
  font-weight: 500;
}
.spulse_lp_bgBlack .spulse_lp_gourmet .place {
  color: #333;
}
.spulse_lp_goodslider .img {
  margin-bottom: 12px;
}
.spulse_lp_goodslider .tit {
  margin-bottom: 8px;
}
.spulse_lp_gourmet .item .tit {
  font-weight: bold;
}
.spulse_lp_goodslider.st2 {
  margin: auto;
  max-width: 936px;
}
.spulse_lp_bgBlack .spulse_lp_goodslider .slick-prev {
  left: 20px;
}
.spulse_lp_bgBlack .spulse_lp_goodslider .slick-next {
  right: 20px;
}
.spulse_lp_goodslider .slick-prev {
  left: 52px;
}
.spulse_lp_goodslider .slick-next {
  right: 52px;
}
.spulse_lp_goodslider.player_slider .slick-prev {
  left: 52px;
}
.spulse_lp_goodslider.player_slider .slick-next {
  right: 52px;
}

.spulse_lp_goodslider.player_slider .slick-prev,
.spulse_lp_goodslider.goods_slider .slick-prev {
  background-image: url("../image/slide_prev_orange.svg");
  left: 52px;
}
.spulse_lp_goodslider.player_slider .slick-next,
.spulse_lp_goodslider.goods_slider .slick-next {
  background-image: url("../image/slide_next_orange.svg");
  right: 52px;
}

.spulse_lp_slider .item {
  max-width: 390px;
}

.spulse_lp_preview {
  padding: 80px 0 0;
}
.spulse_lp_preview ul {
  display: flex;
  margin-left: -32px;
}
.spulse_lp_preview li {
  margin-left: 32px;
  width: calc(100% / 3 - 32px);
  font-weight: 500;
  font-size: 1.4rem;
}
.spulse_lp_preview li .img {
  overflow: hidden;
  margin-bottom: 8px;
  border-radius: 8px 8px 0 0;
}
.spulse_lp_preview li .tit {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: bold;
}

.spulse_lp_ticket {
  padding: 0 0 120px;
  font-size: 1.4rem;
  font-weight: 500;
}
.spulse_lp_ticket .sub {
  margin: 0 auto 40px;
  padding: 12px;
  max-width: 800px;
  background: #fff0e1;
}
.spulse_lp_ticket .dataSeat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.spulse_lp_ticket .dataSeat .map {
  width: 50%;
  margin-bottom: 2.4rem;
}
.spulse_lp_ticket .dataSeat .price {
  display: flex;
  gap: 3rem;
  width: 800px;
}
.spulse_lp_ticket .dataSeat .price.sp {
  max-width: 100%;
  display: none;
}
.spulse_lp_ticket .dataSeat .price table {
  border-spacing: 2px;
  border-collapse: separate;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
}
.spulse_lp_ticket .dataSeat .price thead th {
  background: #ff8709;
  text-align: center;
  color: #fff;
}
.spulse_lp_ticket .dataSeat .price tbody th {
  padding: 0 8px;
  background: #f0f0f0;
  border-left: 24px solid;
}
.spulse_lp_ticket .dataSeat .price .borCream {
  border-color: #fff791;
}
.spulse_lp_ticket .dataSeat .price .borOrange {
  border-color: #f5a21a;
}
.spulse_lp_ticket .dataSeat .price .borPurple {
  border-color: #a69aca;
}
.spulse_lp_ticket .dataSeat .price .borBlue {
  border-color: #01afec;
}
.spulse_lp_ticket .dataSeat .price .borYellow {
  border-color: #fed603;
}
.spulse_lp_ticket .dataSeat .price .borGreen {
  border-color: #f5f5f5;
}
.spulse_lp_ticket .dataSeat .price .borPink {
  border-color: #f4b4cf;
}
.spulse_lp_ticket .dataSeat .price .borGray {
  border-color: #f5f5f5;
}
.spulse_lp_ticket .dataSeat .price .borFirebrick {
  border-color: #b22222;
}
.spulse_lp_ticket .dataSeat .price .borviolet {
  border-color: #ee82ee;
}
.spulse_lp_ticket .dataSeat .price .borseagreen {
  border-color: #c1d969;
}
.spulse_lp_ticket .dataSeat .price .borSpink {
  border-color: #ef59a1;
}
.spulse_lp_ticket .dataSeat .price .borNavy {
  background-color: #00304d;
  color: #fff;
  border-left: 0;
  text-align: center;
}
.spulse_lp_ticket .dataSeat .price td {
  width: 8rem;
  padding: 2px 5px;
  background: #f0f0f0;
  text-align: center;
}
.spulse_lp_ticket .note {
  margin-top: 16px;
  font-size: 1.2rem;
}
.spulse_lp_ticket .notes {
  margin: 40px auto 0;
  padding: 12px;
  max-width: 800px;
  background: #f0f0f0;
}
.spulse_lp_ticket .spulse_lp_btns img {
  /* height: 72px; */
  width: 320px;
}
.spulse_lp_ticket .spulse_lp_goodslider .place {
  padding: 5px 16px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}
.spulse_lp_ticket .bgOrange {
  background: #f5a21a;
}
.spulse_lp_ticket .bgPurple {
  background: #a69aca;
}
.spulse_lp_ticket .bgBlue {
  background: #01afec;
}
.spulse_lp_ticket .bgYellow {
  background: #fed603;
}
.spulse_lp_ticket .bgGreen {
  background: #96d0b7;
}
.spulse_lp_ticket .bgPink {
  background: #f4b4cf;
}
.spulse_lp_ticket .bgGray {
  background: #f5f5f5;
}
.spulse_lp_ticket .bgFirebrick {
  background: #b22222;
}
.spulse_lp_ticket .bgviolet {
  background: #ee82ee;
}
.spulse_lp_ticket .bgseagreen {
  background: #2e8b57;
}
.spulse_lp_ticket .bgSpink {
  background: #ef59a1;
}

.txt_black {
  color: #666 !important;
}

.fs_13 {
  font-size: 1.3rem !important;
}

.spulse_lp_team {
  padding: 80px 0 0;
  font-weight: 500;
}
.spulse_lp_team .banner {
  margin: 0 auto 50px;
  max-width: 800px;
  line-height: 2;
}
.spulse_lp_team .banner .img {
  margin-bottom: 20px;
  text-align: center;
}
.spulse_lp_team .banner .img img {
  max-width: 600px;
}
.spulse_lp_team .name {
  position: relative;
  padding: 5px 10px 5px 44px;
  margin-bottom: 8px;
  background: #fff;
  color: #333;
  font-weight: bold;
  font-size: 1.8rem;
}
.spulse_lp_team .name .id {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 100%;
  background: #ff8709;
  font-family: "DRIBBLE", sans-serif;
  color: #fff;
}
.team_text {
  max-width: 520px;
  margin: 0 auto;
}

.spulse_lp_goods {
  padding: 80px 0;
}
.spulse_lp_goods .spulse_lp_goodslider .tit {
  font-weight: bold;
}

.spulse_lp_member {
  padding: 80px 0 0;
}
.spulse_lp_member .banner {
  margin: 50px auto 0;
  max-width: 600px;
  font-weight: 500;
}
.spulse_lp_member .banner .img {
  margin-bottom: 12px;
}
.spulse_lp_member .banner .tit a {
  display: inline-block;
  padding-right: 24px;
  background: url("../image/icon_right.png") no-repeat right center;
  font-size: 1.4rem;
}

.spulse_lp_access {
  padding: 80px 0;
}
.spulse_lp_access .access {
  display: flex;
  justify-content: space-between;
}
.spulse_lp_access .access .map {
  width: 56%;
}
.spulse_lp_access .access h3 {
  margin-bottom: 12px;
  font-weight: 500;
}
.spulse_lp_access .access h3 .name {
  font-weight: bold;
  font-size: 2.8rem;
}
.spulse_lp_access .access .route {
  width: 41.5%;
}

.spulse_lp_match {
  padding: 80px 0;
}
.spulse_lp_matchslider {
  margin: 0 auto 40px;
  max-width: 540px;
}
.spulse_lp_matchslider .slick-list {
  overflow: visible;
}
.spulse_lp_matchslider .slick-prev {
  left: -16px;
}
.spulse_lp_matchslider .slick-next {
  right: -16px;
}
.spulse_lp_matchslider .item {
  padding: 0 52px;
  font-weight: 500;
}
.spulse_lp_match .matchNav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.spulse_lp_match .matchNav li {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
  width: 60px;
  height: 60px;
  border: 1px solid #333;
  font-size: 1.7rem;
  font-weight: bold;
}
.spulse_lp_match .matchNav li.slick_on {
  background: #ff8709;
  border-color: #ff8709;
  color: #fff;
}
.spulse_lp_match .spulse_lp_btns {
  margin-top: 40px;
}
.spulse_lp_matchslider.st2 {
  margin: 90px auto 0;
  max-width: 584px;
}
.spulse_lp_matchslider .img {
  display: block;
  margin-bottom: 8px;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .spulse_lp_game {
    padding: 47px 16px 50px;
  }
  .spulse_lp_game .title {
    font-size: 1.8rem;
  }
  .spulse_lp_game .title img {
    margin-top: -7px;
  }
  .spulse_lp_game .team {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 24px auto 0;
  }
  .spulse_lp_game .team:before {
    content: "VS";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-family: "DRIBBLE", sans-serif;
    font-size: 2.4rem;
  }
  .spulse_lp_game .team .logo,
  .spulse_lp_game .team .logo:nth-of-type(2n) {
    float: none;
    margin: 0 10px;
    width: 38%;
  }
  .spulse_lp_game .team .tit {
    font-size: 1.4rem;
  }
  .spulse_lp_game .stadium {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    line-height: 1;
    text-align: left;
    font-size: 2.4rem;
    font-weight: bold;
  }
  .spulse_lp_game .stadium .date {
    margin: -10px 16px 0 0;
    font-size: 6.4rem;
  }
  .spulse_lp_game .stadium .day {
    font-size: 3.2rem;
  }
  .spulse_lp_game .place {
    margin-top: 8px;
    font-size: 1.6rem;
  }
  .spulse_lp_game .place .sign {
    margin-right: 9px;
    padding: 0 18px;
    line-height: 25px;
    font-size: 1.2rem;
  }
  .spulse_lp_game .spulse_lp_btns {
    padding: 0 12px;
  }
  .spulse_lp_game .spulse_lp_btns img {
    height: auto;
  }

  .spulse_lp_event .main {
    margin-bottom: 70px;
  }
  .spulse_lp_event .col03 {
    padding: 0 12px;
  }
  .spulse_lp_event .col03 li {
    margin-bottom: 50px;
    width: 100%;
  }
  .spulse_lp_event .col04 {
    margin: 0;
    border-bottom: 1px solid #40708d;
  }
  .spulse_lp_event .col04 li {
    /* display: flex;
    justify-content: space-between; */
    margin: 0;
    width: 100%;
    border-top: 1px solid #40708d;
  }
  .spulse_lp_event .col04 li a {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
  }
  .spulse_lp_event .col04 li .img {
    width: 120px;
  }
  .spulse_lp_event .col04 li .info {
    width: calc(100% - 136px);
  }
  .spulse_lp_event .col04 li .btn {
    margin-top: 8px;
  }
  .spulse_lp_event .spulse_lp_btns {
    margin-top: 32px;
  }

  .spulse_lp_schedule th {
    width: 66px;
    font-size: 1.8rem;
  }
  .spulse_lp_schedule td {
    padding: 10px 8px;
    font-size: 1.4rem;
  }

  .spulse_lp_goodslider,
  .spulse_lp_goodslider.st2 {
    margin: 0 auto;
    max-width: 296px;
  }
  .spulse_lp_goodslider .item {
    padding: 0 8px;
  }
  .spulse_lp_gourmet .spulse_lp_btns {
    margin-top: 40px;
  }

  .spulse_lp_slider .item {
    max-width: 287px;
  }

  .spulse_lp_preview ul .slick-list {
    overflow: visible;
  }
  .spulse_lp_preview ul {
    display: block;
    margin: 0 auto;
    max-width: 332px;
  }
  .spulse_lp_preview li {
    padding: 0 8px;
    margin: 0;
    width: auto;
  }

  .spulse_lp_ticket {
    font-size: 1.2rem;
    padding: 0 0 140px;
  }
  .spulse_lp_ticket .sub {
    margin-bottom: 24px;
  }
  .spulse_lp_ticket .dataSeat {
    display: block;
    margin-bottom: 32px;
  }
  .spulse_lp_ticket .dataSeat .map {
    margin-bottom: 32px;
    width: auto;
  }
  .spulse_lp_ticket .dataSeat .price {
    display: none;
    /* width: auto; */
    /* flex-direction: column; */
    /* gap: 0; */
  }
  .spulse_lp_ticket .dataSeat .price.sp {
    display: block;
  }
  .seat_sp {
    display: none;
  }
  .spulse_lp_ticket .notes {
    margin-top: 24px;
  }
  .spulse_lp_ticket .spulse_lp_btns {
    padding: 0 12px;
  }

  .spulse_lp_team .banner {
    margin-bottom: 80px;
    line-height: 1.5;
  }
  .spulse_lp_team .banner .img {
    margin-bottom: 40px;
  }
  .spulse_lp_team .banner .img img {
    max-width: 100%;
  }
  .spulse_lp_member .banner .tit a {
    background-size: 5px;
  }

  .spulse_lp_access .access {
    display: block;
  }
  .spulse_lp_access .access .map {
    margin-bottom: 24px;
    width: auto;
  }
  .spulse_lp_access .access h3 {
    margin-bottom: 24px;
    font-size: 1.4rem;
  }
  .spulse_lp_access .access h3 .name {
    font-size: 2.4rem;
  }
  .spulse_lp_access .access .route {
    width: auto;
  }

  .spulse_lp_match {
    font-size: 1.4rem;
  }
  .spulse_lp_matchslider,
  .spulse_lp_matchslider.st2 {
    margin-bottom: 16px;
    max-width: 326px;
  }
  .spulse_lp_matchslider .item {
    padding: 0 8px;
  }
  .spulse_lp_match .matchNav li {
    margin: 0 5px 10px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .spulse_lp_match .spulse_lp_btns {
    margin-top: 0px;
  }

  .spulse_lp_matchslider.st2 {
    margin-top: 40px;
  }
  .spulse_lp_ticket .dataSeat .price table {
    font-size: 1.2rem;
  }
}

/* NEWS */
.spulse_lp_news {
  padding-bottom: 8rem;
}

.news_list {
  width: 80rem;
  margin: 0 auto;
  padding-bottom: 2.6rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.news_item {
  border-bottom: solid #333 1px;
}

.news_item a {
  display: block;
  position: relative;
  padding: 0 2.2rem 2.2rem;
}

.news_text {
  width: 70rem;
  max-width: 100%;
  color: #333;
}

.icon_right {
  position: absolute;
  top: 14%;
  right: 2.2rem;
}

/* .news_list .news_item:nth-of-type(n + 4) {
  display: none;
} */

.news_list.open .news_item:nth-of-type(n + 4) {
  display: block;
}

.news_toggle {
  width: 6.4rem;
  height: 6.6rem;
  margin: 0 auto;
  background: url(../image/news/ico_more_blue.svg) no-repeat center;
  background-size: auto;
  text-align: center;
  margin-bottom: 15px;
}

.news_toggle:hover {
  opacity: 0.8;
  transition: 0.8s;
}
.news_toggle.is_active {
  background: url(../image/news/ico_close_blue.svg) no-repeat center;
  background-size: auto;
}
.yokohama_lp_next_toggle font {
  display: none;
}
.yokohama_lp_next_toggle.is_active span {
  display: none;
}
.yokohama_lp_next_toggle.is_active font {
  display: block;
}

@media screen and (max-width: 767px) {
  .spulse_lp_news {
    padding-bottom: 4rem;
  }
  .icon_right {
    right: 0;
  }
  .news_item a {
    padding: 0 2.4rem 2.4rem 0;
  }
  .spulse_lp_event .col03 li .info .tit {
    height: auto;
  }
}

.spulse_lp_insert img {
  width: 100%;
  max-width: 100%;
}

/* movie */
.spulse_lp_movie {
  padding: 8rem 0 8.6rem;
}

.add_inner {
  width: 80rem;
  margin: 0 auto;
  max-width: calc(100% - 32px);
}

.special_title {
  max-width: 100%;
}

.special_title.sp {
  display: none;
}

.special_title span {
  display: block;
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  background-color: #ff8709;
  padding: 1rem;
  width: fit-content;
  margin-bottom: 1.6rem;
}
.special_text p {
  margin: 2.4rem 0 4.8rem;
}

.special_text p {
  color: #fff;
  font-size: 1.6rem;
}

.special_movie {
  width: 60rem;
  max-width: 100%;
  margin: 0 auto;
}

.movie_wrapper {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: relative;
}

.movie_wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.movie_desc {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 1.65rem;
}
.movie_desc2 {
  font-size: 1.6rem;
  color: #000;
  margin-top: 1.65rem;
}

/* gallery */
.spulse_lp_gallery {
  padding: 8.6rem 0 8rem;
}

.gallery_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.enlarged_display {
  width: 600px;
  height: 337.5px;
  max-width: 100%;
}

.gallery_list {
  display: flex;
  gap: 16px;
  padding-left: 0;
}

.gallery_item {
  width: 120px;
  height: 67.5px;
  list-style-type: none;
}

.gallery_item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}
.gallery_item img.selected {
  filter: none;
}
/* .after {
  display: none;
}

.clicked .before {
  display: none;
}

.clicked .after {s
  display: block;
} */

.gallery_container {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.gallery_list.top {
  margin-bottom: 17px;
}

.spulse_lp_insert.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .spulse_lp_movie {
    padding: 5.6rem 0 4.8rem;
  }
  .movie_desc {
    font-size: 1.2rem;
  }
  .special_title {
    display: none;
  }
  .special_title.sp {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    display: block;
  }
  .gallery_container {
    flex-direction: unset;
    overflow-x: scroll;
  }
  .gallery_item {
    flex-shrink: 0;
  }
  .gallery_list.top {
    margin-bottom: 0;
    margin-right: 16px;
  }
  .enlarged_display {
    height: fit-content;
  }
  .spulse_lp_insert {
    display: none;
  }
  .spulse_lp_insert.sp {
    display: block;
  }
}

/* ticket */
.navwrap {
  width: 958px;
  max-width: 100%;
  margin: 0 auto;
}
.t-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem 0.2rem;
}
.t-nav-item {
  width: 15.8rem;
  height: 6.8rem;
  padding: 2.3rem 0 0.8rem;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background-color: #dcdcdc;
}
.seat_name {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.seat_name img {
  width: 0.7rem;
}
.t-nav-item h3 {
  font-size: 14px;
  color: #333333;
  margin: 0;
  text-align: center;
}
.navwrap .t-nav li:hover {
  cursor: pointer;
  opacity: 0.8;
}
/* 座席タブ.active background */
.navwrap .t-nav li.premier.active {
  background: #fff791;
  transition: all 0.2s ease-out;
}
.navwrap .t-nav li.orange.active {
  background: #f5a21a;
  transition: all 0.2s ease-out;
}
.navwrap .t-nav li.purple.active {
  background: #a69aca;
  transition: all 0.2s ease-out;
}
.navwrap .t-nav li.blue.active {
  background: #01afec;
  transition: all 0.2s ease-out;
}
.navwrap .t-nav li.yellow.active {
  background: #fed603;
  transition: all 0.2s ease-out;
}
.navwrap .t-nav li.black.active {
  background: #333333;
  transition: all 0.2s ease-out;
}
.navwrap .t-nav li.pink.active {
  background: #ef59a1;
  transition: all 0.2s ease-out;
}
.navwrap .t-nav li.green.active {
  background: #c1d969;
  transition: all 0.2s ease-out;
}

/* 座席タブ.active 矢印 */
.navwrap .t-nav li.orange.active .seat_name .before,
.navwrap .t-nav li.purple.active .seat_name .before,
.navwrap .t-nav li.blue.active .seat_name .before,
.navwrap .t-nav li.black.active .seat_name .before,
.navwrap .t-nav li.pink.active .seat_name .before,
.navwrap .t-nav li.green.active .seat_name .before {
  display: none;
}
.navwrap .t-nav li.orange.active .seat_name .after,
.navwrap .t-nav li.purple.active .seat_name .after,
.navwrap .t-nav li.blue.active .seat_name .after,
.navwrap .t-nav li.black.active .seat_name .after,
.navwrap .t-nav li.pink.active .seat_name .after,
.navwrap .t-nav li.green.active .seat_name .after {
  display: block;
}

/*  座席タブ.active textcolor */
.navwrap .t-nav li.orange.active h3,
.navwrap .t-nav li.purple.active h3,
.navwrap .t-nav li.blue.active h3,
.navwrap .t-nav li.black.active h3,
.navwrap .t-nav li.pink.active h3,
.navwrap .t-nav li.green.active h3 {
  color: #fff;
}

.navwrap .t-nav li.active:hover {
  cursor: default;
  opacity: 1;
}
.panel {
  display: none;
}
/* .tab.active {
  background-color: #f00;
  color: #fff;
  transition: all 0.2s ease-out;
} */
.panel.show {
  display: block;
}

.panel_wrapper {
  padding-top: 4rem;
  width: 80rem;
  margin: 0 auto;
  max-width: 100%;
}
.seat_map_container {
  display: flex;
  gap: 1.6rem;
}

.seatmap {
  width: 39.2rem;
  max-width: 100%;
  margin: 0 auto;
  flex-shrink: 0;
  margin: 0 auto;
}
.seatmap img {
  width: 39.2rem;
  display: block;
  height: auto;
  max-height: 440px;
  background: #fff;
}
.seatmap.kurumaisu {
  width: 57.4rem;
}
.seatmap.kurumaisu img {
  width: 100%;
}
.seat_text {
  text-align: center;
  /* background: #fff791; */
  color: #fff;
  padding: 1rem;
  border-radius: 10px 10px 0 0;
  width: 39.2rem;
  height: 4rem;
  max-width: 100%;
}

.seat_text.premier {
  background: #fff791;
  color: #333;
}
.seat_text.orange {
  background: #f5a21a;
}
.seat_text.purple {
  background: #a69aca;
}
.seat_text.blue {
  background: #01afec;
}
.seat_text.yellow {
  background: #fed603;
  color: #333;
}
.seat_text.black {
  background: #f5f5f5;
  color: #333;
}
.seat_text.pink {
  background: #ef59a1;
}
.seat_text.green {
  background: #c1d969;
}
.seat_text.premier {
  background: #fff791;
}
.seat_text.premier {
  background: #fff791;
}

.seat_panel_desc {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  padding-bottom: 40px;
}
.panel.tab_12 .kurumaisu_btn {
  height: 5.6rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .no-border {
    border-bottom: none;
  }
  .seat_map_container {
    flex-direction: column;
    gap: 2.4rem;
  }
  .t-nav {
    justify-content: start;
    flex-wrap: nowrap;
    gap: 0 0.8rem;
    /* width: max-content; */
    overflow-x: scroll;
  }
  .t-nav-item {
    width: 13.2rem;
    height: 6.6rem;
    flex-shrink: 0;
    padding: 2rem 0 0.8rem;
  }
  .seat_name {
    gap: 1.5rem;
  }
  .seat_panel_desc {
    margin-top: 2.3rem;
    color: #333333;
  }
}
