/* ------------------------------
General Styles
------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

html[lang="ja"] {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-display: optional;
  font-weight: normal;
  font-style: normal;
  color: #252525;
}

body {
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

picture {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  display: flex;
  flex-flow: column;
}

/* ----------------------------
メディアクエリ
------------------------------ */
/*
SPファーストで記述

幅599px以下 スマホサイズ

@media screen and (min-width:600px) and (max-width:1024px)
幅600px以上1024px以下 タブレットサイズ

@media screen and (min-width:1025px)
幅1025px以上〜 PCサイズ-- */

.sp {
  display: block !important;
}

.tab {
  display: none !important;
}

.sp-tab {
  display: block !important;
}

.tab-pc {
  display: none !important;
}

.pc {
  display: none !important;
}

@media screen and (min-width:600px) {
  .sp {
    display: none !important;
  }

  .tab {
    display: block !important;
  }

  .sp-tab {
    display: block !important;
  }

  .tab-pc {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

@media screen and (min-width:1025px) {
  .sp {
    display: none !important;
  }

  .tab {
    display: none !important;
  }

  .sp-tab {
    display: none !important;
  }

  .tab-pc {
    display: block !important;
  }

  .pc {
    display: block !important;
  }
}

/* ------------------------------
Transition elsements
------------------------------ */
a, .btn {
  -webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

a, .btn:hover {
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
}

/* ------------------------------
ページ内ジャンプ
------------------------------ */
#tickets-area {
  height: 0;
  padding-top: 50px;
  margin-top: -50px;
}

@media screen and (min-width:1025px) {
  #tickets-area {
    padding-top: 81px;
    margin-top: -81px;
  }
}

/* ------------------------------
Typography
------------------------------ */
a {
  color: #252525;
  display: inline-block;
  text-decoration: none;
}

h2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 24px;
}

p {
  font-size: 16px;
  line-height: 2;
}

@media screen and (min-width:1025px) {
  h2 {
    font-size: 32px;
    margin: 0 auto 48px;
  }
}

/* ------------------------------
共通ボタンCSS 色は特集ページ個別CSSで指定
------------------------------ */

/* --共通-- */
.common-btn {
  display: block;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  width: calc(100% - 16px);
  max-width: 343px;
  padding: 20px 0;
  margin: 0 auto;
  border-radius: 30px;
  position: relative;
}

/* --決定-- */
.decision-btn {
  background-color: #fff;
  border: 2px solid #3155A6;
  color: #3155A6;
  position: relative;
}

.decision-btn::after {
  display: block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #3155A6;
  border-right: 2px solid #3155A6;
  content: '';
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
  transition: all 0.3s linear;
}

.decision-btn:hover::after {
  right: 10px;
}

/* --もっと見る-- */
.more-btn {
  background-color: #fff;
  border: 2px solid #3155A6;
  color: #3155A6;
}

.more-btn::after {
  display: block;
  transform: rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #3155A6;
  border-right: 2px solid #3155A6;
  content: '';
  position: absolute;
  top: calc(50% - 8px);
  right: 20px;
  transition: all 0.3s linear;
}

.more-btn:hover::after {
  top: 50%;
}

/* --無効-- */
.disable-btn {
  background-color: #fff;
  border: 2px solid rgba(49, 85, 166, 0.5);
  color: rgba(49, 85, 166, 0.5);
}

.disable-btn:hover {
  cursor: unset;
}

@media screen and (min-width:1025px) {
  .common-btn {
    font-size: 18px;
  }
}

/* ------------------------------
ハンバーガーメニューボタン
------------------------------ */
.openbtn {
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 101;
  margin: 0;
  float: right;
  background-color: transparent;
}

.openbtn span {
  display: inline-block;
  transition: all .6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 60%;
  height: 3px;
  border-radius: 2px;
  background: #27396C;
}

.openbtn span:nth-of-type(1) {
  top: 14px;
}

.openbtn span:nth-of-type(2) {
  top: 24px;
}

.openbtn span:nth-of-type(3) {
  top: 34px;
}

.openbtn.active span:nth-of-type(1) {
  top: 16px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 28px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

@media screen and (min-width:1025px) {
  .openbtn {
    display: none;
  }
}

/* ------------------------------
header
------------------------------ */
header {
  width: 100%;
  position: fixed;
  z-index: 2;
  padding: 0;
  background-color: #fff;
}

header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 8px;
}

header .header-wrapper .menu-logo a {
  display: inline-block;
}

header .header-wrapper .menu-logo a img {
  width: auto;
  height: 24px;
}

/* --メニューの動き（左右）-- */
header .header-wrapper .menu {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 0;
  height: 100vh;
  transform: translateX(100vw);
  transition: all 0.6s ease;
}

header .header-wrapper .menu.is-active {
  transform: translateX(0);
  right: 0;
  width: 100%;
}

/* --メニュー内-- */
header .header-wrapper .menu {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #fff 10%, #F4F6F9 10%, #F4F6F9 100%);
}

header .header-wrapper .menu .menu-inner .menu-logo {
  width: auto;
  height: 24px;
  padding: 13px 0 13px 8px;
  text-align: left;
}

header .header-wrapper .menu .menu-inner .menu-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  background-color: #F4F6F9;
}

header .header-wrapper .menu .menu-inner .menu-item div {
  width: 100%;
  border-bottom: solid 1px #C8C8CB;
  font-size: 16px;
  line-height: 1;
  text-align: left;
  list-style: none;
  position: relative;
}

header .header-wrapper .menu .menu-inner .menu-item div::after {
  display: block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #3155A6;
  border-right: 2px solid #3155A6;
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  right: 14px;
}

header .header-wrapper .menu .menu-inner .menu-item .ex-link::after {
  transform: none;
  width: 20px;
  height: 20px;
  border: none;
  background-image: url(../images/icon-external-link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 25%;
  right: 8px;
}

header .header-wrapper .menu .menu-inner .menu-item div a {
  width: 100%;
  padding: 17px 0 17px 38px;
  font-weight: 500;
}

header .header-wrapper .menu .menu-inner .menu-item div::before {
  display: block;
  width: 20px;
  height: 20px;
  content: '';
  position: absolute;
  top: 30%;
  left: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}

header .header-wrapper .menu .menu-inner .menu-item .menu-ticket::before {
  background-image: url(../images/icon-ticket.svg);
}

header .header-wrapper .menu .menu-inner .menu-item .menu-news::before {
  background-image: url(../images/icon-news.svg);
}

header .header-wrapper .menu .menu-inner .menu-item .menu-qa::before {
  background-image: url(../images/icon-question.svg);
}

header .header-wrapper .menu .menu-inner .menu-item .menu-app::before {
  background-image: url(../images/icon-web.svg);
}

header .header-wrapper .menu .menu-inner .menu-item .menu-contact::before {
  background-image: url(../images/icon-mail.svg);
}

/* --おすすめチケット-- */
header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend::before {
  display: none;
}

header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend::after {
  display: none;
}

header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend p {
  padding: 17px 0 17px 38px;
  line-height: 1;
  font-weight: 500;
  border-bottom: solid 1px #C8C8CB;
}

header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend p::before {
  width: 20px;
  height: 20px;
  content: '';
  position: absolute;
  top: 14px;
  left: 8px;
  background-image: url(../images/icon-recommend.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend ul {
  list-style: none;
}

header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend ul li {
  position: relative;
  border-bottom: dotted 1px #C8C8CB;
  background-color: white;
}

header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend ul li:last-child {
  border-bottom: none;
}

header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend ul li::after {
  display: block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #3155A6;
  border-right: 2px solid #3155A6;
  content: '';
  position: absolute;
  top: 20px;
  right: 14px;
}

header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend ul li a {
  font-weight: 400;
}


@media screen and (min-width:1025px) {
  header .header-wrapper .menu-logo {
    display: none;
  }

  header .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 8px;
    box-sizing: border-box;
  }

  header .header-wrapper .menu .menu-inner a {
    margin: 0;
  }

  header .header-wrapper {
    position: unset;
  }

  /* --メニュー 固定表示-- */
  header .header-wrapper .menu {
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    transform: unset
  }

  header .header-wrapper .menu.is-active {
    transform: translateX(0);
    right: 0;
    width: 100%;
  }

  /* --メニュー内-- */
  header .header-wrapper .menu {
    transform: unset;
    background: #fff;
  }

  header .header-wrapper .menu .menu-inner {
    max-width: 1280px;
    height: 81px;
    margin: 0 auto;
    padding: 20px 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
  }

  header .header-wrapper .menu .menu-inner .menu-logo {
    display: block;
    width: auto;
    height: auto;
    padding: 0 0 20px;
  }

  header .header-wrapper .menu .menu-inner .menu-logo a img {
    width: 100%;
    height: 40px;
  }

  header .header-wrapper .menu .menu-inner .menu-item {
    width: auto;
    flex-direction: initial;
    gap: 16px;
    background-color: #fff;
  }

  header .header-wrapper .menu .menu-inner .menu-item div {
    border-bottom: none;
    font-size: 14px;
    width: auto;
    padding-bottom: 20px;
  }

  header .header-wrapper .menu .menu-inner .menu-item div::after {
    display: none;
  }

  header .header-wrapper .menu .menu-inner .menu-item div a {
    width: 100%;
    font-weight: 400;
    padding: 0 0 0 24px;
  }

  header .header-wrapper .menu .menu-inner .menu-item div::before {
    top: -2px;
    left: 0px;
  }

  /* --おすすめチケット-- */

  header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend {
    position: relative;
    cursor: pointer;
  }

  header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend p {
    border-bottom: none;
    font-size: 14px;
    font-weight: 400;
    width: auto;
    padding: 0 0 0 24px;
  }

  header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend p::before {
    top: -4px;
    left: 0px;
  }

  header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend ul {
    display: none;
    z-index: 3;
    position: absolute;
    top: 32px;
    background-color: #F4F6F9;
    border-radius: 5px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, .25);
  }

  header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend ul::before {
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    border-color: rgba(244, 246, 249, 0);
    border-right: 9px solid transparent;
    border-bottom: 14px solid #F4F6F9;
    border-left: 9px solid transparent;
    top: -14px;
    left: 45%;
  }

  header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend:hover ul {
    display: block;
  }

  header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend ul li {
    background-color: transparent;
  }

  header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend ul li::after {
    display: none;
  }

  header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend ul li a {
    padding: 12px;
    width: auto;
    min-width: 160px;
  }

  header .header-wrapper .menu .menu-inner .menu-item .menu-ticket-recommend:hover p {
    cursor: pointer;
    opacity: 0.7;
  }
}

@media screen and (min-width:1280px) {
  header .header-wrapper .menu .menu-inner .menu-item {
    gap: 24px;
  }
}

/* ------------------------------
header-news
------------------------------ */
.header-news {
  width: 100%;
  margin: 51px auto 16px;
  border-top: 1px solid #3155A6;
  border-bottom: 1px solid #3155A6;
}

.header-news .news-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3155A6;
}

.header-news .news-wrapper .top-news {
  width: calc(100% - 70px);
  padding: 12px 8px;
  box-sizing: border-box;
}

.header-news .news-wrapper .top-news>div {
  width: 100%;
  display: grid;
  grid-template-columns: 90px 80px 1fr;
  grid-template-rows: 20px auto;
  gap: 8px 6px;
  grid-template-areas:
    "date tag ."
    "news news news";
  justify-content: start;
  justify-items: start;
  justify-items: start;
  justify-content: start;
}

.header-news .news-wrapper .top-news>div p {
  grid-area: date;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.header-news .news-wrapper .top-news>div span {
  grid-area: tag;
}

.header-news .news-wrapper .top-news>div a {
  grid-area: news;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  width: auto;
  max-width: 100%;
  padding-right: 26px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.header-news .news-wrapper .top-news>div a::after {
  display: block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  right: 8px;
}

.header-news .news-wrapper .newslist-btn {
  width: 70px;
  height: 70px;
  background-color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #3155A6;
  border: none;
  padding: 28px 30px 28px 12px;
  position: relative;
  box-sizing: border-box;
}

.header-news .news-wrapper .newslist-btn::after {
  display: block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #3155A6;
  border-right: 2px solid #3155A6;
  content: '';
  position: absolute;
  top: calc(50% - 6px);
  right: 16px;
  transition: all 0.3s linear;
}

.header-news .news-wrapper .newslist-btn:hover::after {
  right: 10px;
}

@media screen and (min-width:1025px) {
  .header-news {
    margin: 81px auto 16px;
  }

  .header-news .news-wrapper {
    justify-content: center;
  }

  .header-news .news-wrapper .top-news {
    width: 890px;
    padding: 16px 0;
  }

  .header-news .news-wrapper .top-news>div {
    grid-template-rows: 20px;
    gap: 0px 16px;
    grid-template-areas:
      "date tag news";
  }

  .header-news .news-wrapper .newslist-btn {
    width: auto;
    height: auto;
    font-size: 16px;
    padding: 0 34px;
    border-radius: 50px;
    height: 32px;
  }
}

/* ------------------------------
News-tag
------------------------------ */
.news-service-info::after {
  position: absolute;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  background-color: #7C98F2;
  border-radius: 20px;
  content: '運行情報';
  width: 80px;
  padding: 4px 0;
  text-align: center;
}

.news-cancel::after {
  position: absolute;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  background-color: #00AFDB;
  border-radius: 20px;
  content: '運休情報';
  width: 80px;
  padding: 4px 0;
  text-align: center;
}

.news-oparation::after {
  position: absolute;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  background-color: #D2A400;
  border-radius: 20px;
  content: 'ダイヤ改正';
  width: 80px;
  padding: 4px 0;
  text-align: center;
}

.news-sales-info::after {
  position: absolute;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  background-color: #2CB4AD;
  border-radius: 20px;
  content: '発売情報';
  width: 80px;
  padding: 4px 0;
  text-align: center;
}

.news-important::after {
  position: absolute;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  background-color: #fc866a;
  border-radius: 20px;
  content: '重要';
  width: 80px;
  padding: 4px 0;
  text-align: center;
}

.news-emergency::after {
  position: absolute;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  background-color: #EA3333;
  border-radius: 20px;
  content: '緊急';
  width: 80px;
  padding: 4px 0;
  text-align: center;
}

.news-info::after {
  position: absolute;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  background-color: #3E9C05;
  border-radius: 20px;
  content: 'お知らせ';
  width: 80px;
  padding: 4px 0;
  text-align: center;
}

.news-other::after {
  position: absolute;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  background-color: #D6DBE3;
  border-radius: 20px;
  content: 'その他';
  width: 80px;
  padding: 4px 0;
  text-align: center;
}

/* ------------------------------
Q&A
------------------------------ */
.qa-area {
  background-color: #F4F6F9;
  padding: 24px 0 48px;
}

.qa-area>h2 {
  color: #27396C;
}

.qa-area .qa-wrapper {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  margin: 0 auto;
  padding: 8px;
  box-sizing: border-box;
}

.qa-list .qa {
  padding: 16px 0;
  border-bottom: 1px solid #F0F0F0;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}

.qa-list .qa:last-child {
  border-bottom: none;
}

.qa-list .qa dt {
  padding: 0 20px 0 24px;
  position: relative;
}

.qa-list .qa dt::before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(../images/icon_Q.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 3px;
  left: 0;
}

.qa-list .qa dt::after {
  display: block;
  transform: rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #3155A6;
  border-right: 2px solid #3155A6;
  content: '';
  position: absolute;
  top: 8px;
  right: 4px;
}

.qa-list .open dt::after {
  transform: rotate(-45deg);
}

.qa-list .qa dd {
  margin: 16px 0 0;
  padding: 0 20px 0 24px;
  position: relative;
}

.qa-list .qa dd::before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(../images/icon_A.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 6px;
  left: 0;
}

.qa-list .qa dd p a {
  color: #3155A6;
  text-decoration: underline;
}

.qa-area .btn-note {
  text-align: center;
  margin: 24px auto 8px;
}

@media screen and (min-width:1025px) {
  .qa-area {
    padding: 48px 0 80px;
  }

  .qa-area .qa-wrapper {
    padding: 16px;
    border-radius: 5px;
  }

  .qa-list .qa dd {
    margin: 24px 0 0;
  }

  .qa-area .btn-note {
    margin: 32px auto 16px;
  }
}

/* ------------------------------
footer
------------------------------ */
footer {
  width: 100%;
  height: auto;
  background-color: #3155A6;
  margin-top: auto;
  /* --footerを下寄せ-- */
  padding: 48px 0 0;
  box-sizing: border-box;
}

footer>img {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto 16px;
}

footer>.decision-btn {
  margin: 0 auto 48px;
  background-color: #fff !important;
  border: 2px solid #3155A6 !important;
  color: #3155A6 !important;
}

footer>.decision-btn::after {
  border-top: 2px solid #3155A6 !important;
  border-right: 2px solid #3155A6 !important;
}

footer .footer-nav-wrapper {
  background-color: #27396C;
  padding: 16px 0;
}

footer .footer-nav-wrapper .footer-nav {
  padding: 0 8px;
}

footer .footer-nav-wrapper ul {
  text-align: center;
  list-style: none;
}

footer .footer-nav-wrapper ul li a {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
}

footer .footer-nav-wrapper .copyright {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-align: center;
}

@media screen and (min-width:600px) {
  footer .footer-nav-wrapper .footer-nav {
    margin: 0 auto;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer .footer-nav-wrapper ul {
    text-align: left;
    display: flex;
    gap: 16px;
  }

  footer .footer-nav-wrapper ul li a {
    margin: 0;
  }

  footer .footer-nav-wrapper .copyright {
    text-align: right;
  }
}

/* ------------------------------
index - heroarea
------------------------------ */
.index h2 {
  color: #27396C;
}

.index .hero-area .slider .slick-slide {
  width: 100vw;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}

.index .hero-area .slider .slick-slide img {
  width: auto;
  object-fit: cover;
}

/* --slick 左右ボタン-- */
.index .hero-area .slider .slick-prev:before {
  display: block;
  width: 48px;
  height: 48px;
  content: '';
  background: no-repeat center/32px 32px url(../images/btn-prev.svg);
  opacity: 1;
}

.index .hero-area .slider .slick-next:before {
  display: block;
  width: 48px;
  height: 48px;
  content: '';
  background: no-repeat center/32px 32px url(../images/btn-next.svg);
  opacity: 1;
}

.index .hero-area .slider .slick-prev {
  width: 48px;
  height: 48px;
  top: 50%;
  left: 0px !important;
  z-index: 1;
}

.index .hero-area .slider .slick-next {
  width: 48px;
  height: 48px;
  top: 50%;
  right: 0px !important;
  z-index: 1;
}

/* --slick 再生停止ボタン
.index .hero-area .row_btns{
  display: flex;
  justify-content: center;
  gap:10px;
  max-width: 82px;
  background-color: #F0F0F0;
  margin: 40px auto 0;
  padding: 4px 20px;
  border-radius: 50px;
  }

.index .hero-area .row_btns button{
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.index .hero-area .row_btns button span:before{
  display: block;
  width: 16px;
  height: 16px;
  content:'';
}

.index .hero-area .row_btns .slick_pause span:before{
background: url(../images/icon-pause.svg);
background-repeat: no-repeat;
background-size: contain;
}

.index .hero-area .row_btns .slick_start span:before{
background: url(../images/icon-play.svg);
background-repeat: no-repeat;
background-size: contain;
}

.index .hero-area .row_btns .slick_pause.on-btn span:before{
background: url(../images/icon-pause-on.svg);
background-repeat: no-repeat;
background-size: contain;
}

.index .hero-area .row_btns .slick_start.on-btn span:before{
background: url(../images/icon-play-on.svg);
background-repeat: no-repeat;
background-size: contain;
}-- */


@media screen and (min-width:600px) {
  .index .hero-area .slider .slick-slide {
    margin-right: 0.8vw !important;
    margin-left: 0.8vw !important;
  }

  /* --slick 左右ボタン-- */
  .index .hero-area .slider .slick-prev:before {
    background: no-repeat center/48px 48px url(../images/btn-prev.svg);
  }

  .index .hero-area .slider .slick-next:before {
    background: no-repeat center/48px 48px url(../images/btn-next.svg);
  }

  .index .hero-area .slider .slick-prev {
    left: 16px !important;
  }

  .index .hero-area .slider .slick-next {
    right: 16px !important;
  }

  /* --slick 再生停止ボタン
.index .hero-area .row_btns{
  margin: 0 16px 0 auto;
  }

.index .hero-area .row_btns button{
  width: 20px;
  height: 20px;
}

.index .hero-area .row_btns button span:before{
  width: 20px;
  height: 20px;;
}-- */

}

@media screen and (min-width:1025px) {
  .index .hero-area .slider .slick-slide {
    max-width: 1000px;
  }
}

/* ------------------------------
index - tickets-area
------------------------------ */
.index .tickets-area {
  margin: 60px auto 0;
}

.index .tickets-area h2 {
  margin: 0 auto 16px;
}

.index .tickets-area h2+p {
  width: calc(100% - 32px);
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}

.index .tickets-area .more-btn {
  margin: 24px auto 0;
}

/* --タブの動き-- */
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  overflow: hidden;
  width: calc(100% - 16px);
  max-width: 1000px;
  margin: 0 auto;
}

.tab-label {
  flex: 1;
  order: -1;
  color: #C8C8C8;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 0 0 12px 0;
  transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
  user-select: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  background: linear-gradient(180deg, #fff 0%, #fff 90%, #C8C8C8 90%, #C8C8C8 10%);
  position: relative;
}

.tab-switch:checked+.tab-label {
  color: #3155A6;
  background: linear-gradient(180deg, #fff 0%, #fff 90%, #3155A6 90%, #3155A6 10%);
}

.tab-switch:checked~.tab-content {
  transform: translateX(30%);
}

.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.tab-switch {
  display: none;
}

.tab-content {
  height: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  transform: translateX(-30%);
  transition: transform .3s 80ms, opacity .3s 80ms;
  width: 100%;
}

/* --タブの中身-- */
.tickets-area .tab-content .tab-content-innner {
  margin: 16px auto 0;
}

.tickets-area .tab-content .tab-content-innner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.tickets-area .tab-content .tab-content-innner ul li {
  width: calc(50% - 8px);
  height: auto;
  list-style: none;
}

.tickets-area .tab-content .tab-content-innner ul li p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 8px auto 0;
  text-align: center;
}

@media screen and (min-width:600px) {
  .index .tickets-area h2+p {
    margin: 0 auto 32px;
  }

  /* --タブの中身-- */
  .tickets-area .tab-content .tab-content-innner ul {
    justify-content: flex-start;
  }

  .tickets-area .tab-content .tab-content-innner ul li {
    width: 31.5%;
  }
}

@media screen and (min-width:1025px) {
  .index .tickets-area {
    margin: 80px auto 0;
  }

  .index .tickets-area h2 {
    margin: 0 auto 24px;
  }

  n .index .tickets-area h2+p {
    margin: 0 auto 48px;
  }

  .index .tickets-area .more-btn {
    margin: 40px auto 0;
  }

  /* --タブの動き-- */
  .tab-wrap {
    gap: 0 20px;
    width: calc(100% - 20px);
  }

  .tab-label {
    font-size: 20px;
  }

  /* --タブの中身-- */
  .tickets-area .tab-content .tab-content-innner {
    margin: 24px auto 0;
  }

  .tickets-area .tab-content .tab-content-innner ul {
    gap: 27px;
  }

  .tickets-area .tab-content .tab-content-innner ul li {
    width: calc(34.2% - 27px);
  }
}

/* ------------------------------
index - recommend-tickets-area
------------------------------ */
.index .recommend-tickets-area {
  margin: 48px auto 0;
}

.index .recommend-tickets-area h2 {
  margin: 0 auto 16px;
}

.index .recommend-tickets-area h2+p {
  width: calc(100% - 32px);
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
}

.index .recommend-tickets-area .recommend-tickets-innner {
  width: calc(100% - 16px);
  max-width: 1000px;
  margin: 0 auto;
}

.index .recommend-tickets-area .recommend-tickets-innner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}

.index .recommend-tickets-area .recommend-tickets-innner ul li {
  width: calc(50% - 8px);
  height: auto;
  list-style: none;
}

.index .recommend-tickets-area .recommend-tickets-innner ul li p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 8px 0 0;
  text-align: center;
}

@media screen and (min-width:600px) {
  .index .recommend-tickets-area h2 {
    margin: 0 auto 16px;
  }

  .index .recommend-tickets-area h2+p {
    margin: 0 auto 32px;
  }

  .index .recommend-tickets-area .recommend-tickets-innner ul {
    justify-content: flex-start;
  }

  .index .recommend-tickets-area .recommend-tickets-innner ul li {
    width: 31.5%;
  }
}

@media screen and (min-width:1025px) {
  .index .recommend-tickets-area {
    margin: 80px auto 0;
  }

  .index .recommend-tickets-area h2 {
    margin: 0 auto 24px;
  }

  .index .recommend-tickets-area h2+p {
    margin: 0 auto 48px;
  }

  .index .recommend-tickets-area .recommend-tickets-innner ul {
    gap: 27px;
  }

  .index .recommend-tickets-area .recommend-tickets-innner ul li {
    width: calc(34.2% - 27px);
  }
}

/* ------------------------------
index - news-area
------------------------------ */
.index .news-area {
  margin: 48px auto !important;
  width: calc(100% - 16px);
  max-width: 1000px;
  margin: 0 auto;
}

.index .news-area .news-list li {
  padding: 18px 8px 16px;
  box-sizing: border-box;
  border-bottom: 1px solid #F0F0F0;
  display: grid;
  grid-template-columns: 90px 80px 1fr;
  grid-template-rows: 20px auto;
  gap: 8px 6px;
  grid-template-areas:
    "date tag ."
    "news news news";
  justify-content: start;
  justify-items: start;
  justify-items: start;
  justify-content: start;
}

.index .news-area .news-list li:first-child {
  border-top: 1px solid #F0F0F0;
}

.index .news-area .news-list li .news-date {
  line-height: 1;
  grid-area: date;
}

.index .news-area .news-list li p+span {
  grid-area: tag;
}

.index .news-area .news-list li a {
  width: 100%;
  display: block;
  grid-area: news;
  font-size: 16px;
  line-height: 1.5;
  padding-right: 28px;
  box-sizing: border-box;
  position: relative;
}

.index .news-area .news-list li a:after {
  display: block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #3155A6;
  border-right: 2px solid #3155A6;
  content: '';
  position: absolute;
  top: 25%;
  right: 0px;
}

.index .news-area .decision-btn {
  margin: 24px auto 0;
}

@media screen and (min-width:1025px) {
  .index .news-area {
    margin: 80px auto !important;
  }

  .index .news-area .news-list li {
    padding: 16px 8px 16px 16px;
    grid-template-columns: 90px 80px 1fr;
    grid-template-rows: auto;
    gap: 16px;
    grid-template-areas:
      "date tag news";
  }

  .index .news-area .decision-btn {
    margin: 40px auto 0;
  }
}

/* ------------------------------
news - 一覧/共通
------------------------------ */
.news-table {
  padding: 51px 0 0;
}

.news-table .news-content {
  padding: 0 0 48px;
}

.news-table .news-content-title {
  background-color: #F4F6F9;
  padding: 16px 0;
}

.news-table .news-content-title h1 {
  font-size: 24px;
  line-height: 1;
  color: #27396C;
  text-align: center;
}

.news-table .news-list li {
  padding: 18px 8px 16px;
  box-sizing: border-box;
  border-bottom: 1px solid #F0F0F0;
  display: grid;
  grid-template-columns: 90px 80px 1fr;
  grid-template-rows: 20px auto;
  gap: 8px 6px;
  grid-template-areas:
    "date tag ."
    "news news news";
  justify-content: start;
  justify-items: start;
  justify-items: start;
  justify-content: start;
}

.news-table .news-list li .news-date {
  line-height: 1;
  grid-area: date;
}

.news-table .news-list li p+span {
  grid-area: tag;
}

.news-table .news-list li a {
  width: 100%;
  display: block;
  grid-area: news;
  font-size: 16px;
  line-height: 1.5;
  padding-right: 28px;
  box-sizing: border-box;
  position: relative;
}

.news-table .news-list li a:after {
  display: block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #3155A6;
  border-right: 2px solid #3155A6;
  content: '';
  position: absolute;
  top: 25%;
  right: 0px;
}

.news-table .news-list .error-message {
  padding: 18px 8px 16px;
  text-align: center;
  color: #5C5C5C;
}

.news-table .news-content .more-btn {
  margin: 24px auto 0;
}

.news-table .news-menu-title {
  font-size: 18px;
  line-height: 1;
  color: #27396C;
  font-weight: 700;
  text-align: center;
  background-color: #F4F6F9;
  padding: 16px 0;
}

.news-table .news-menu-list li {
  padding: 16px 8px;
  border-bottom: 1px solid #F0F0F0;
}

.news-table .news-menu-list li:last-child {
  border-bottom: none;
}

.news-table .news-menu-list li a {
  width: 100%;
  display: block;
  font-size: 16px;
  line-height: 1;
  padding-right: 28px;
  box-sizing: border-box;
  position: relative;
}

.news-table .news-menu-list li a:after {
  display: block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #3155A6;
  border-right: 2px solid #3155A6;
  content: '';
  position: absolute;
  top: 25%;
  right: 0px;
}

@media screen and (min-width:600px) {
  .news-table {
    background: linear-gradient(90deg, white 0%, white 50%, #F4F6F9 50%, #F4F6F9 100%);
  }

  .news-table .news-content-table {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }

  .news-table .news-content {
    background-color: #fff;
    width: 70%;
    flex-basis: 70%;
    min-height: 50vh;
  }

  .news-table .news-content-title {
    background-color: transparent;
    padding: 0;
    position: relative;
  }

  .news-table .news-content-title span {
    display: block;
    width: 100%;
    height: 48px;
    background-color: #F4F6F9;
  }

  .news-table .news-content-title h1 {
    text-align: left;
    position: absolute;
    left: 16px;
    top: 36px;
  }

  .news-table .news-list li {
    margin: 0 16px 8px;
  }

  .news-table .news-list li:first-child {
    border-top: 1px solid #F0F0F0;
    margin-top: 36px;
  }

  .news-table .news-list .error-message {
    padding: 36px 16px 48px;
    text-align: left;
  }

  .news-table .news-menu {
    width: 30%;
    flex-basis: 30%;
    background-color: #F4F6F9;
    padding: 45px 8px 0 16px;
    box-sizing: border-box;
  }

  .news-table .news-menu>div {
    max-width: 224px;
  }

  .news-table .news-menu-title {
    text-align: left;
    margin: 0 0 32px;
    padding: 0;
  }

  .news-table .news-menu-list li {
    padding: 0 0 24px 0;
    border-bottom: none;
    list-style: none;
  }

  .news-table .news-menu-list li:last-child {
    padding: 0;
    margin: 0 0 48px;
  }

  .news-table .news-menu-list li a {
    font-size: 14px;
  }

  .news-table .news-menu-list li a:after {
    width: 6px;
    height: 6px;
  }
}

@media screen and (min-width:1025px) {
  .news-title-background {
    display: block;
    width: 100%;
    height: 80px;
    background-color: #F4F6F9;
  }

  .news-table {
    padding: 81px 0 0;
  }

  .news-table .news-content {
    width: 82%;
    flex-basis: 82%;
    padding: 0 0 80px;
  }

  .news-table .news-content-title h1 {
    font-size: 32px;
    left: 16px;
    top: -18px;
  }

  .news-table .news-list li {
    margin: 0 16px 0;
    padding: 16px 8px 16px 16px;
    grid-template-columns: 90px 80px 1fr;
    grid-template-rows: auto;
    gap: 16px;
    grid-template-areas:
      "date tag news";
  }

  .news-table .news-list li:first-child {
    margin-top: 80px;
  }

  .news-table .news-menu {
    padding: 0 0 0 24px;
    width: 18%;
    flex-basis: 18%;
  }

  .news-table .news-content .more-btn {
    margin: 40px auto 0;
  }

  .news-table .news-menu-title {
    font-size: 24px;
  }

  .news-table .news-menu-list li {
    padding: 0 16px 24px 0;
  }

  .news-table .news-menu-list li:last-child {
    padding: 0 16px 0 0;
  }
}

/* ------------------------------
news - 本文
------------------------------ */
.news-table .news-information .news-list li {
  display: flex;
  gap: 12px;
  padding: 16px 8px 16px;
  box-sizing: border-box;
  border-bottom: 1px solid #F0F0F0;
}

.news-table .news-main-title {
  padding: 16px 8px 24px;
}

.news-table .news-main-title p {
  font-size: 18px;
  font-weight: 700;
}

.news-table .news-content .decision-btn {
  margin: 24px auto 0;
}

.news-table .news-main-text {
  padding: 0 8px;
  font-size: 16px;
  line-height: 2;
}

/* --本文装飾-- */
.news-table .news-main-text a {
  color: #3155A6;
  text-decoration: underline;
}

.news-table .news-main-text img {
  width: 100%;
  margin: 24px auto;
}

@media screen and (min-width:600px) {
  .news-table .news-information .news-list li {
    padding: 0 8px 16px 0;
    margin-top: 48px;
    border-top: none;
  }

  .news-table .news-main-title {
    padding: 16px 16px 24px;
  }

  .news-table .news-main-text {
    padding: 0 16px;
  }
}

@media screen and (min-width:1025px) {
  .news-table .news-information .news-list li {
    padding: 0 16px 16px 0;
    margin-top: 80px;
  }

  .news-table .news-main-title {
    padding: 16px 16px 32px;
  }

  .news-table .news-main-title p {
    font-size: 24px;
  }

  .news-table .news-content .decision-btn {
    margin: 48px auto 0;
  }

  .news-table .news-main-text {
    padding: 0 16px;
  }

  /* --本文装飾-- */
  .news-table .news-main-text img {
    margin: 32px auto;
  }
}

/* ------------------------------
特集ページ_共通パーツ
------------------------------ */
/* --h2-- */
.recommend-page h2 span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin: 8px auto 0;
}

@media screen and (min-width:1025px) {
  .recommend-page h2 span {
    margin: 12px auto 0;
  }
}

/* --おすすめタブ-- */
.recommend-page .recommend-area {
  padding: 48px 8px;
}

.recommend-page .recommend-area .tab-wrap {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  overflow: hidden;
  width: calc(100% - 16px);
  max-width: 900px;
  margin: 0 auto;
  border-radius: 0 0 5px 5px;
}

.recommend-page .recommend-area .tab-label {
  flex: 1;
  order: -1;
  border: solid 1px #000000;
  padding: 9px 4px;
  position: relative;
  text-align: center;
  transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
  user-select: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  background: #fff;
}

.recommend-page .recommend-area .tab-label p {
  color: #000000;
  font-size: 14px;
  line-height: 14px;
  font-weight: bold;
}

.recommend-page .recommend-area .tab-label .long {
  font-size: 3.2vw;
}

.recommend-page .recommend-area .tab-switch:checked+.tab-label {
  background: #000000;
  border: none;
}

.recommend-page .recommend-area .tab-switch:checked+.tab-label p {
  color: #fff;
}

.recommend-page .recommend-area .tab-switch:checked+.tab-label:after {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 0, 0, 0);
  border-top-width: 8px;
  border-bottom-width: 12px;
  border-left-width: 8px;
  border-right-width: 8px;
  margin-left: -8px;
  border-top-color: #000000;
  top: 100%;
  left: 50%;
}

.recommend-page .recommend-area .tab-switch:checked~.tab-label::after {
  transform: translateX(-100%);
}

.recommend-page .recommend-area .tab-switch:checked+.tab-label::after {
  opacity: 1;
  transform: translateX(0);
}

.recommend-page .recommend-area .tab-switch:checked~.tab-content {
  transform: translateX(30%);
}

.recommend-page .recommend-area .tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.recommend-page .recommend-area .tab-wrap::after {
  content: '';
  height: 20px;
  order: -1;
  width: 100%;
}

.recommend-page .recommend-area .tab-switch {
  display: none;
}

.recommend-page .recommend-area .tab-content {
  height: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  transform: translateX(-30%);
  transition: transform .3s 80ms, opacity .3s 80ms;
  width: 100%;
}

.recommend-page .recommend-area .tab-content-innner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0px 8px 24px;
}

.recommend-page .recommend-area .recommend-pict {
  width: 155px;
  height: 155px;
  border-radius: 5px;
  flex-shrink: 0;
}

.recommend-page .recommend-area .recommend-pict img {
  border-radius: 5px;
}

.recommend-page .recommend-area .recommend-txtbox .recommend-ttl {
  font-weight: 700;
  text-align: center;
}

.recommend-page .recommend-area .recommend-txtbox .recommend-txt {
  margin: 16px auto 0;
}

.recommend-page .recommend-area .recommend-txtbox .recommend-txt a {
  position: relative;
  padding: 0 20px 0 10px;
}

.recommend-page .recommend-area .recommend-txtbox .recommend-txt a::before {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  content: "\f0da";
  position: absolute;
  top: 25%;
  left: 0%;
}

.recommend-page .recommend-area .recommend-txtbox .recommend-txt a::after {
  font: normal normal normal 10px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  content: "\f08e";
  position: absolute;
  top: 30%;
  right: 0%;
}

@media screen and (min-width:600px) {
  .recommend-page .recommend-area .tab-label .long {
    font-size: 14px;
  }

  .recommend-page .recommend-area .tab-content-innner {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 24px 24px 24px;
  }

  .recommend-page .recommend-area .recommend-txtbox .recommend-ttl {
    text-align: left;
  }
}

@media screen and (min-width:1025px) {
  .recommend-page .recommend-area .recommend-txtbox .recommend-ttl {
    font-size: 18px;
  }

  .recommend-page .recommend-area .recommend-pict {
    width: 200px;
    height: 200px;
  }
}

/* --個別ニュース-- */
.separate-news {
  width: calc(100% - 16px);
  margin: 0 auto;
  border: 2px solid #3155A6;
  padding: 10px;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
}

.separate-news a {
  color: #3155A6;
  text-decoration: underline;
}

@media screen and (min-width:600px) {
  .separate-news {
    width: calc(100% - 48px);
    max-width: 1280px;
    margin: 24px auto;
  }
}