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

/* !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;
}

/*** スマホ 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;
  }
  .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;
}

.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 {
  width: 410px;
}

/* 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 .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: 80px 0 0;
}
.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;
  justify-content: center;
}
.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: 80px 0;
  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;
  justify-content: space-between;
  margin-bottom: 40px;
}
.spulse_lp_ticket .dataSeat .map {
  width: 50%;
}
.spulse_lp_ticket .dataSeat .price {
  width: 46%;
}
.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 .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: #96d0b7;
}
.spulse_lp_ticket .dataSeat .price .borPink {
  border-color: #f4b4cf;
}
.spulse_lp_ticket .dataSeat .price td {
  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;
}
.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_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;
  }
  .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 {
    width: auto;
  }
  .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;
  }
}

.levaincup {
  width: 80rem;
  max-width: calc(100% - 3.2rem);
  background-color: #fff;
  margin: 0 auto;
  border-radius: 2rem;
  padding: 4rem;
  margin-top: 4rem;
}

.levain_dscr {
  display: flex;
  gap: 2.4rem;
  padding-bottom: 2.5rem;
}

.levain_dscr img {
  width: 12rem;
}

.levain_dscr p {
  font-size: 1.6rem;
  color: #333;
  font-weight: 500;
  text-align: left;
}

.levain_matches {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .levain_dscr {
    flex-direction: column;
    padding-bottom: 1.6rem;
    gap: 1.6rem;
  }
  .levain_dscr img {
    margin: 0 auto;
  }
  .levain_dscr p {
    font-size: 1.4rem;
  }
  .levain_dscr img {
    width: 8rem;
  }
}

@media screen and (max-width: 690px) {
  .levaincup {
    padding: 2.4rem 1.2rem;
  }
}
