﻿@charset "utf-8";
/*-------------------------------------------
  蜈ｱ騾咾SS
-------------------------------------------*/
* {
  box-sizing: border-box;
}
:root {
  --header-height: 67px;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  font-family: "Tomorrow", "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  line-height: 1.6;
  color: #000;
  font-weight: 500;
  overflow-x: clip;
}
html.modal-open,
body.modal-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.7;
}
.wrapper {
  max-width: 1192px;
  padding: 0 20px;
  margin: 0 auto;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  /* gap: 10px; */
  border-radius: 999px;
  /* padding: 10px 16px 10px 30px; */
  padding: 10px 50px 10px 30px;
  line-height: 1;
  font-weight: 700;
  font-size: 2.4rem;
  font-size: clamp(1.2rem, calc(24 / 1400 * 100vw), 2.4rem);
  color: #fff;
  position: relative;
  background-color: #123f75;
}
.btn__text {
  /* margin: 0 auto; */
  text-align: center;
}
/* ボタンの丸背景 */
.btn__icon {
  position: relative;
  border-radius: 50%;
  width: clamp(20px, 2.3vw, 32px);
  height: clamp(20px, 2.3vw, 32px);
  background-color: #fff;

  flex-shrink: 0;
  position: absolute;
  right: clamp(10px, 1.07vw, 15px);
}
/* ボタンの矢印 */
.btn__icon::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: clamp(4px, 0.46vw, 6.5px) solid transparent;
  border-bottom: clamp(4px, 0.46vw, 6.5px) solid transparent;
  border-left: clamp(6px, 0.71vw, 10px) solid #123f75;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* ヘッダー、メインビジュアルのボタン */
.btn--yellow {
  color: #6c9bd2;
  background-color: #fccf00;
}
.btn--yellow .btn__icon {
  background-color: #6c9bd2;
}
.btn--yellow .btn__icon::after {
  border-left-color: #6c9bd2;
  border-left: 8px solid #fccf00;
}
.br-sp {
  display: none;
}
.br-pc {
  display: block;
}
.header__menu-btn,
.sp-nav-overlay {
  display: none;
}
/*-------------------------------------------
  ヘッダー
-------------------------------------------*/
.header {
  height: var(--header-height);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(12px, 1.4vw, 20px);
  background-color: #6c9bd2;
  color: #fff;
  font-size: clamp(0.8rem, 1vw, 1.4rem);
}
.header__logo {
  width: clamp(180px, 21.5vw, 300px);
  line-height: 0;
  flex-shrink: 0;
}
.header__logo a {
  display: flex;
  align-items: center;
}
.header__logo img {
  display: block;
  width: 100%;
}
.header__nav-pc {
  display: flex;
  gap: clamp(16px, 2.9vw, 40px);
}
.header .btn {
  width: clamp(120px, 13vw, 180px);
  height: clamp(36px, 3.43vw, 48px);
  border: 3px solid #6c9bd2;
  font-size: clamp(1rem, 1.22vw, 1.7rem);
  justify-content: space-between;
  padding: 10px 16px 10px 10px;
}
.header .btn .btn__icon {
  width: clamp(16px, 1.6vw, 22px);
  height: clamp(16px, 1.6vw, 22px);
}
.header .btn .btn__icon::after {
  border-top: clamp(3px, 0.36vw, 5px) solid transparent;
  border-bottom: clamp(3px, 0.36vw, 5px) solid transparent;
  border-left: clamp(4px, 0.5vw, 7px) solid #fccf00;
}
/*-------------------------------------------
  メインビジュアル
-------------------------------------------*/
.mainvisual {
  position: relative;
  margin-top: 67px;
  /* height: calc(100vh - 67px); */
}
.mainvisual img {
  width: 100%;
  object-fit: cover;
  /* height: 681px; */
  height: auto;
}
.mainvisual .wrapper {
  position: relative;
}
.mainvisual .btn {
  width: 350px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  border: 3px solid #6c9bd2;
  /* padding-left: 60px; */
}

/*-------------------------------------------
  リード文
-------------------------------------------*/
.lead {
  padding: 80px 0;
}

.lead__title {
  font-size: 4.2rem;
  font-size: clamp(2.8rem, calc(42 / 1400 * 100vw), 4.2rem);
  font-weight: 900;
  line-height: 1.3;
  color: #123f75;
  padding-bottom: 16px;
  border-bottom: 2px solid #123f75;
}
.lead__description {
  margin-top: 20px;
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
}
.lead__memo {
  font-size: 1rem;
  font-size: clamp(0.66667rem, calc(10 / 1400 * 100vw), 1rem);
  margin-top: 10px;
}
.lead__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.lead__btns .btn {
  width: 280px;
  /* justify-content: space-between; */
  /* padding-left: 26px; */
}

.lead__btns .btn:last-child {
  background-color: #6c9bd2;
}
.lead__btns .btn:last-child .btn__icon::after {
  border-left-color: #6c9bd2;
}
/*-------------------------------------------
  セクション共通
-------------------------------------------*/
.section {
  padding: 60px 0;
}
.section__number {
  font-size: 8rem;
  font-size: clamp(5.33333rem, calc(80 / 1400 * 100vw), 8rem);
  font-weight: 700;
  line-height: 1;
}
.section__content {
  margin-top: 20px;
}
.section__lead {
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  line-height: 1.5;
}

.section__titles-logo {
  position: absolute;
  bottom: 0;
  right: 0;
}
.section--even {
  background-color: #deeaf7;
}
.section--odd {
  background-color: #deeaf7;
}
.section__titles {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #123f75;
  border-bottom: 2px solid #123f75;
  padding-bottom: 18px;
}
.section__title {
  font-family: "Noto Sans JP", sans-serif;

  font-size: 4.2rem;
  font-size: clamp(2.8rem, calc(42 / 1400 * 100vw), 4.2rem);
  font-weight: 900;
}
/*-------------------------------------------
  sec01 シーズンチケット 3つのお得ポイント
-------------------------------------------*/
.section01 .section__titles-logo {
  width: 106px;
  bottom: -60px;
  right: -21px;
}
.section01__swiper {
  overflow: hidden;
  padding-bottom: 12px;
  padding-right: 12px;
}
.section01__cards {
  margin-top: 20px;
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.section01__card.swiper-slide {
  flex-shrink: 0;
}
.section01__card {
  flex: 1;
  height: auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  position: relative;
}
.section01__card-img {
  position: relative;
  aspect-ratio: 360 / 220;
  background: #e5e7eb;
}
.section01__card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section01__card-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 62px;
  height: 62px;
}
.section01__card-icon img {
}
.section01__card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #deeaf7;
}

.section01__card-title {
  height: 100%;
  font-size: 2.7rem;
  font-size: clamp(2rem, calc(27 / 1400 * 100vw), 2.7rem);
  line-height: 1.2;
  position: relative;
  color: #123f75;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.section01__card-title::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 1em;
  background-color: #123f75;
}
.section01__card-lead {
  font-size: 1.8rem;
  font-size: clamp(1.4rem, calc(18 / 1400 * 100vw), 1.8rem);
  margin-top: 10px;
  font-weight: 900;
  line-height: 1.33333;
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;

}
.section01__card-desc {
  margin-top: 10px;
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  line-height: 1.5;
  flex: 1;
}
.section01__card .btn {
  margin-top: 20px;
  flex-shrink: 0;
}

/*-------------------------------------------
  sec02雉ｼ蜈･迚ｹ蜈ｸ荳隕ｧ
-------------------------------------------*/
.section02 .section__titles-logo {
  width: 106px;
  bottom: -63px;
  right: -15px;
}
.section02__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 20px;
}
.section02__card {
  background: #fff;
  border-radius: 30px;
  border-top-left-radius: 0;
  overflow: hidden;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.5);

  display: flex;
  flex-direction: column;
}
.section02__card-img {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, #b5cde8 0%, #6c9bd2 100%);
  height: 100%;
}
.section02__card-img img {
  /* width: 100%; */
  /* height: 100%; */
  /* object-fit: cover; */
  width: auto;
}
.section02__card-img--1 img {
  width: 112px;
}
.section02__card-img--2 img {
  width: 168px;
}
.section02__card-img--3 img {
  width: 132px;
}
.section02__card-img--4 img {
  width: 194px;
}
.section02__card-img--5 img {
  width: 101px;
}
.section02__card-img--6 img {
  width: 90px;
}
.section02__card-img--7 img {
  width: 98px;
}
.section02__card-img--8 img {
  width: 106px;
}
.section02__card-img--9 img {
  width: 97px;
}
.section02__card-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: #123f75;
  color: #fff;
  font-size: 2rem;
  font-size: clamp(1.33333rem, calc(20 / 1400 * 100vw), 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.section02__card-body {
  padding: 20px;
  min-height: 20rem;
}
.section02__card-title {
  font-size: 2.5rem;
  font-size: clamp(1.66667rem, calc(25 / 1400 * 100vw), 2.5rem);
  position: relative;
  line-height: 1;
  color: #123f75;
}
.section02__card-title::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #123f75;
}
.section02__card-desc {
  margin-top: 10px;
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  line-height: 1.5;
}

.section02 .btn {
  width: 540px;
  margin: 40px auto 0;
  justify-content: center;
}

/*-------------------------------------------
  sec03 座種・価格情報
-------------------------------------------*/
.section03 .section__titles-logo {
  width: 214px;
  bottom: -32px;
  right: -21px;
}
.section03__sub-title {
  color: #123f75;

  font-size: 3.6rem;
  font-size: clamp(2.4rem, calc(36 / 1400 * 100vw), 3.6rem);
  font-weight: 700;
  padding-left: 24px;
  position: relative;
  line-height: 1;
}
.section03__sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #123f75;
}
.section03__map-header .btn {
  width: 340px;
  justify-content: space-between;
  padding-left: 26px;
}
/* シーズンシート座席図 */
.section03__map-header {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section03__map-img {
  margin-top: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}
.section03__map-img img {
  width: 816px;
}
.section03__map-note {
  font-size: 1rem;
  font-size: clamp(0.66667rem, calc(10 / 1400 * 100vw), 1rem);
  margin-top: 20px;
  text-align: left;
}

/* 各シート一覧 */
.section03__seats {
  margin-top: 40px;
}
.section03__seats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.section03__seats-title {
  flex-shrink: 0;
}
.section03__seats-header-text {
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
}
.section03__seats-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.section03__seat-card {
  /* background: #f9fafb; */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.5);
  font-family: "Noto Sans JP", sans-serif;
}
.section03__seat-card-img img {
  width: 100%;
  object-fit: cover;
}
.section03__seat-card-head {
  background-color: #123f75;
  color: #fff;
  padding: 15px 20px;
  white-space: nowrap;
}
.section03__seat-card-name {
  font-size: 2.7rem;
  font-size: clamp(1.8rem, calc(27 / 1400 * 100vw), 2.7rem);
}

.section03__seat-card-name.--border,
.seat-modal__header.--border .seat-modal__title{
  z-index: 0;
  position: relative;
}

.section03__seat-card-name.--border:before,
.seat-modal__header.--border .seat-modal__title:before{
  content: '熱烈応援シート(自由)';
  position: absolute;
  -webkit-text-fill-color: white; 
  -webkit-text-stroke: 5px #0075c2;
  z-index: -1;
}

.section03__seat-card-body {
  padding: 16px;
}

.section03__seat-card-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.section03__seat-card-price {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 8px;
  font-weight: 900;
}
.section03__seat-card-price-label {
  font-size: 1.7rem;
  font-size: clamp(1.13333rem, calc(17 / 1400 * 100vw), 1.7rem);
}
.section03__seat-card-price-value {
  font-size: 2.5rem;
  font-size: clamp(1.8rem, calc(25 / 1400 * 100vw), 2.5rem);
  font-weight: 900;
}
.section03__seat-card-price-value--unavailable {
  color: #888888;
}
.section03__seat-card-btn {
  margin-top: 20px;
  background-color: transparent;
  border: 2px solid #000;
  justify-content: center;
  color: #000;
}
.section03__seat-card-btn .btn__icon {
  /* position: relative; */
  background-color: #000;
}
.section03__seat-card-btn .btn__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 12px;
  height: 12px;
  border: none;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat;
}

/* プレミアムシート */
.section03__seat-card--1 {
  background-color: #d2d2d3;
}
.section03__seat-card--1 .section03__seat-card-head {
  background-color: #000;
}
.section03__seat-card--1 .section03__seat-card-btn .btn__icon::after {
  color: #d2d2d3;
}
/* ロイヤルシート */
.section03__seat-card--2 {
  background-color: #f8d2e2;
}
.section03__seat-card--2 .section03__seat-card-head {
  background-color: #e75297;
}
.section03__seat-card--2 .section03__seat-card-btn .btn__icon {
  background-color: #000;
}
.section03__seat-card--2 .section03__seat-card-btn .btn__icon::after {
  color: #f8d2e2;
}
/* メインSS指定席 */
.section03__seat-card--3 {
  background-color: #fffac6;
}
.section03__seat-card--3 .section03__seat-card-head {
  background-color: #ffe33f;
  color: #000;
}
.section03__seat-card--3 .section03__seat-card-btn .btn__icon {
  background-color: #000;
}
.section03__seat-card--3 .section03__seat-card-btn .btn__icon::after {
  color: #fffac6;
}
/* メインS指定席 */
.section03__seat-card--4 {
  background-color: #c6e7f9;
}
.section03__seat-card--4 .section03__seat-card-head {
  background-color: #00aeeb;
}
.section03__seat-card--4 .section03__seat-card-btn .btn__icon::after {
  color: #c6e7f9;
}
/* バックJ指定席 */
.section03__seat-card--5 {
  background-color: #e6d4e7;
}
.section03__seat-card--5 .section03__seat-card-head {
  background-color: #a54a96;
}
.section03__seat-card--5 .section03__seat-card-btn .btn__icon::after {
  color: #e6d4e7;
}
/* バックA指定席 */
.section03__seat-card--6 {
  background-color: #d4e9d7;
}
.section03__seat-card--6 .section03__seat-card-head {
  background-color: #00aa83;
}
.section03__seat-card--6 .section03__seat-card-btn .btn__icon::after {
  color: #d4e9d7;
}
/* バックB指定席 */
.section03__seat-card--7 {
  background-color: #d2e5f6;
}
.section03__seat-card--7 .section03__seat-card-head {
  background-color: #123f75;
}
.section03__seat-card--7 .section03__seat-card-btn .btn__icon::after {
  color: #d2e5f6;
}
/* バックD指定席 */
.section03__seat-card--8 {
  background-color: #e5e5e6;
}
.section03__seat-card--8 .section03__seat-card-head {
  background-color: #898989;
}
.section03__seat-card--8 .section03__seat-card-btn .btn__icon::after {
  color: #e5e5e6;
}
/* 熱烈応援シート（自由） */
.section03__seat-card--9 {
  background-color: #badcf4;
}
.section03__seat-card--9 .section03__seat-card-head {
  background: #123f75 url("../img/sec03_img09-bg@3x-8.png") center bottom / cover
    no-repeat;
}
.section03__seat-card--9 .section03__seat-card-btn .btn__icon::after {
  color: #badcf4;
}
/* ホームゴール裏指定席 */
.section03__seat-card--10 {
  background-color: #def1fb;
}
.section03__seat-card--10 .section03__seat-card-head {
  background-color: #add7f2;
  color: #000;
}

.section03__seat-card--10 .section03__seat-card-btn .btn__icon::after {
  color: #def1fb;
}

/* サポーターズシート指定席 */
.section03__seat-card--11 {
  background-color: #d2ddf0;
}
.section03__seat-card--11 .section03__seat-card-head {
  background-color: #6c9bd2;
}
.section03__seat-card--11 .section03__seat-card-btn .btn__icon::after {
  color: #d2ddf0;
}

/* ゴール裏B指定席 */
.section03__seat-card--12 {
  background-color: #feecd2;
}
.section03__seat-card--12 .section03__seat-card-head {
  background-color: #f39700;
}
.section03__seat-card--12 .section03__seat-card-btn .btn__icon::after {
  color: #feecd2;
}


/*-------------------------------------------
  シート詳細モーダル
-------------------------------------------*/
button.btn {
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.seat-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 500;
  overflow-y: auto;
  padding: 40px 20px;
}
.seat-modal-overlay.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.seat-modal {
  background: #fff;
  width: 100%;
  max-width: 840px;
  border-radius: 20px;
  overflow: hidden;
}
.seat-modal__header {
  background: #111;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.seat-modal__title {
  /* color: #fff; */
  font-size: 3.2rem;
  font-size: clamp(2.13333rem, calc(32 / 1400 * 100vw), 3.2rem);
  font-weight: 700;
  line-height: 1.3;
}
.seat-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  font-size: clamp(1.33333rem, calc(20 / 1400 * 100vw), 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
  font-weight: 700;
  line-height: 1;
  font-family: inherit;
}
/* .seat-modal__images {
  position: relative;
  background: #000;
  line-height: 0;
} */
/* .seat-modal__image-main {
  position: relative;
  display: block;
} */
.seat-modal__image-main img {
  width: 100%;
  height: auto;
  display: block;
}
/* .seat-modal__image-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
  line-height: 0;
} */
/* .seat-modal__image-sub img {
  width: 100%;
  display: block;
} */
.seat-modal__body {
  padding: 15px 24px;
  background: #d2d2d3;
}
.seat-modal__prices {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.seat-modal__prices.--quarter .seat-modal__price-box{
  flex: 1;
}

.seat-modal__prices.--half .seat-modal__price-box{
  width: 49%;
}

.seat-modal__prices.--quarter .seat-modal__price-label{
  font-size: clamp(1.33333rem, calc(12 / 1400 * 100vw), 2rem);
}

.seat-modal__price-box {
  /* flex: 1; */
  background: #fff;
  border-radius: 20px;
  padding: 10px 15px;
  font-family: "Noto Sans JP", sans-serif;
  /* width: 32%; */
  width: 49%;
  /* display: flex; */
  /* justify-content: center; */
}

.seat-modal__price-box  > div + div{
  /* margin-left: 30px; */
  margin-top: 10px;
}

.seat-modal__price-box.--half02{
  width: 49%;
}

.seat-modal__price-box.--half02 .seat-modal__price-label{
  font-size: clamp(1.33333rem, calc(15 / 1400 * 100vw), 2rem);
}

.seat-modal__price-label {
  line-height: 1.2;
  font-size: 2rem;
  font-size: clamp(1.33333rem, calc(15 / 1400 * 100vw), 2rem);
}
.seat-modal__price-value {
  margin-top: 3px;
  font-size: 2.8rem;
  font-size: clamp(1.86667rem, calc(22 / 1400 * 100vw), 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.seat-modal__price-value + .seat-modal__price-label{
  margin-top: 10px;
}
.seat-modal__desc {
  margin-top: 20px;
  border-left: 8px solid #123f75;
  padding-left: 24px;
}
.seat-modal__desc-title {
  font-size: 2.2rem;
  font-size: clamp(1.46667rem, calc(22 / 1400 * 100vw), 2.2rem);
  font-weight: 700;
  line-height: 1;
}
.seat-modal__desc-body {
  margin-top: 20px;
  font-size: 2rem;
  font-size: clamp(1.33333rem, calc(16 / 1400 * 100vw), 2rem);
  line-height: 1.5;
}
.seat-modal__desc-note {
  color: red;
}

@media screen and (min-width: 769px){
  .seat-modal__desc{
    max-height: 180px;
    overflow: scroll;
  }
}
/*-------------------------------------------
  sec04 販売スケジュール
-------------------------------------------*/
.section04 .section__titles-logo {
  width: 130px;
  bottom: -58px;
  right: -11px;
}
.section04__cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.section04__card {
  border-radius: 0 20px 20px 20px;
  padding: 50px 12px 20px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  background-color: #fff;
}
.section04__card--new {
  border-color: #123f75;
  background-color: #fccf00;
  border: 3px solid #123f75;
}
.section04__card--new::before {
  content: "NEW";
  position: absolute;
  top: -16px;
  right: 0;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #123f75;
  font-size: 2.4rem;
  font-size: clamp(1.6rem, calc(24 / 1400 * 100vw), 2.4rem);
  color: #fccf00;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.5);
}
.section04__card-phase {
  position: absolute;
  top: 0;
  left: 0;
  background: #123f75;
  color: #fff;
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  font-weight: 700;
  padding: 10px 12px;
}

.section04__card-title {
  padding-left: 5px;
  margin-top: 12px;
  font-size: 3.6rem;
  font-size: clamp(2.4rem, calc(36 / 1400 * 100vw), 3.6rem);
  font-weight: 700;
  color: #123f75;
  line-height: 1;
  position: relative;
}
.section04__card-title::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #123f75;
}
.section04__card-date {
  margin-top: 15px;
  background: #deeaf7;
  border-radius: 12px;
  padding: 20px 24px;
}
.section04__card--new .section04__card-date {
  background-color: #fff;
}
.section04__card-detail {
  margin-top: 16px;
}
.section04__card-date-label,
.section04__card-detail-label {
  line-height: 1;
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  font-weight: 700;
  color: #888888;
}
.section04__card-date-value {
  font-size: 2.4rem;
  font-size: clamp(1.6rem, calc(24 / 1400 * 100vw), 2.4rem);
  line-height: 1.4;
  font-weight: 700;
}
.section04__card-detail-value {
  font-size: 2.4rem;
  font-size: clamp(1.6rem, calc(24 / 1400 * 100vw), 2.4rem);
  line-height: 1.16;
  font-weight: 700;
  margin-top: 10px;
}
.section04__notes {
  margin-top: 20px;
}
.section04__note {
  font-size: 1rem;
  font-size: clamp(0.66667rem, calc(10 / 1400 * 100vw), 1rem);
}
/*-------------------------------------------
  sec05 お申し込み方法
-------------------------------------------*/
.section05 .section__titles-logo {
  width: 151px;
  bottom: -68px;
  right: -21px;
}
.section05__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section05__step {
  background: #deeaf7;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.section05__step-number {
  font-size: 5.6rem;
  font-size: clamp(3.73333rem, calc(56 / 1400 * 100vw), 5.6rem);
  color: #6c9bd2;
  font-weight: 700;
}
.section05__step-title {
  font-size: 2.5rem;
  font-size: clamp(1.66667rem, calc(25 / 1400 * 100vw), 2.5rem);
  font-weight: 900;
  color: #123f75;
}
.section05__step-desc {
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  color: #000;
}

.section05__info {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.section05__info-card {
  background: #fff;
  border: 2px solid #6c9bd2;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.section05__info-icon {
  flex-shrink: 0;
  width: 50px;
}
.section05__info-card--caution {
  background: #fccf00;
  border-color: #fccf00;
}
.section05__info-texts {
  display: flex;
  flex-direction: column;
  font-size: 2.5rem;
  font-size: clamp(1.66667rem, calc(25 / 1400 * 100vw), 2.5rem);
  color: #000;
}

.section05__info-card--caution .section05__info-title {
  /* color: #123f75; */
  color: #ff0000;
}
.section05__info-desc {
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  color: #000;
}
.section05__cta {
  margin-top: 40px;
}
.section05__cta .btn {
  width: 540px;
  margin: 0 auto;
  justify-content: center;
}

.section05__note{
  margin-top: 5px;
  font-size: 13px;
}

.section05__note li{
  padding-left: 1em;
}

.section05__note li:before{
  content: '※';
  margin-left: -1em;
}
/*-------------------------------------------
  sec06 観戦をもっと自由にするサービス
-------------------------------------------*/
.section06 .section__titles-logo {
  width: 151px;
  bottom: -74px;
  right: -21px;
}
.section06__cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.section06__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 20px 12px;
  box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section06__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section06__card-icon {
  flex-shrink: 0;
}
.section06__card-icon img {
  width: 42px;
  height: auto;
}
.section06__card-title {
  font-size: 3.6rem;
  font-size: clamp(2.4rem, calc(36 / 1400 * 100vw), 3.6rem);
  font-weight: 900;
  color: #123f75;
  line-height: 1.2;
}
.section06__card-desc {
  margin-top: 10px;
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  line-height: 1.5;
  max-height: 100%;
}
.section06__card-badge {
  color: #fff;
  font-size: 2rem;
  font-size: clamp(1.33333rem, calc(20 / 1400 * 100vw), 2rem);
  padding: 6px;
  line-height: 1.2;
  flex-shrink: 0;
  background-color: #123f75;
  font-weight: 700;
}

.section06_card-desc__flex {
  display: flex;
  align-items: flex-start;
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  line-height: 1.5;
  gap: 20px;
}
.section06__card-img {
  height: 323px;
  margin-top: 20px;
  background: #deeaf7;
  border-radius: 20px;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section06__card-img img {
  object-fit: cover;
  max-width: 100%;
}
.section06__card-img--1 img {
  width: 277px;
}
.section06__card-img--2 img {
  width: 310px;
}
.section06__card-img--3 img {
  width: 304px;
}
.section06__btn {
  background: #123f75;
  margin-top: 30px;
  flex-shrink: 0;
  justify-content: center;
}
.section06__btn--hidden {
  visibility: hidden;
}
/*-------------------------------------------
  サービス詳細モーダル（sec06）
-------------------------------------------*/
.service-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 500;
  overflow-y: auto;
  padding: 40px 20px;
}
.service-modal-overlay.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-modal {
  background: #fff;
  width: 100%;
  max-width: 768px;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  box-shadow: 14px 14px 14px rgba(0, 0, 0, 0.5);
  position: relative;
}
.service-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #888;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  font-size: clamp(1.2rem, calc(18 / 1400 * 100vw), 1.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  font-family: inherit;
  z-index: 10;
}
.service-modal__header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
}
.service-modal__header-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.service-modal__title {
  font-size: 3rem;
  font-size: clamp(2rem, calc(30 / 1400 * 100vw), 3rem);
  font-weight: 900;
  color: #123f75;
  line-height: 1.2;
}
.service-modal__img-wrap {
  height: 450px;
  max-width: 768px;
  display: flex;
  align-items: center;
  margin-top: 15px;
  background: #deeaf7;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}
.service-modal__img {
  width: 100%;
  height: auto;
  display: block;
}
.service-modal__body {
  margin-top: 10px;
}
.service-modal__summary {
  border-left: 8px solid #123f75;
  padding-left: 16px;
}
.service-modal__summary-title {
  font-size: 2.2rem;
  font-size: clamp(1.46667rem, calc(22 / 1400 * 100vw), 2.2rem);
  font-weight: 700;
  color: #123f75;
}
.service-modal__summary-text {
  margin-top: 3px;
  font-size: 1.9rem;
  font-size: clamp(1.26667rem, calc(15 / 1400 * 100vw), 1.9rem);
  line-height: 1.5;
}
.service-modal__points {
  margin-top: 16px;
  /* display: grid; */
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.service-modal__point {
  background: #deeaf7;
  border-radius: 20px;
  padding: 20px;
}
.service-modal__point-label {
  font-size: 1.9rem;
  font-size: clamp(1.26667rem, calc(19 / 1400 * 100vw), 1.9rem);
  color: #123f75;
}
.service-modal__point-title {
  font-size: 2.6rem;
  font-size: clamp(1.73333rem, calc(26 / 1400 * 100vw), 2.6rem);
  font-weight: 900;
  line-height: 1.3;
  margin-top: 10px;
}
/*-------------------------------------------
  sec07 よくあるご質問
-------------------------------------------*/
.section07 .section__titles-logo {
  width: 151px;
  bottom: -20px;
  right: -21px;
}
.section07__faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section07__faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}
.section07__faq-question {
  background-color: #6c9bd2;

  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.section07__faq-question::-webkit-details-marker {
  display: none;
}
.section07__faq-question::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 18px solid #fff;
  transition: transform 0.3s;
}
.section07__faq-item[open] .section07__faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}
.section07__faq-q-label {
  font-size: 4.2rem;
  font-size: clamp(2.8rem, calc(42 / 1400 * 100vw), 4.2rem);
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
}
.section07__faq-q-text {
  font-size: 2.1rem;
  font-size: clamp(1.4rem, calc(21 / 1400 * 100vw), 2.1rem);
  color: #fff;
  line-height: 1.5;
}
.section07__faq-answer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  background: #deeaf7;
}
.section07__faq-a-label {
  font-size: 4.8rem;
  font-size: clamp(3.2rem, calc(48 / 1400 * 100vw), 4.8rem);
  color: #6c9bd2;
  flex-shrink: 0;
  line-height: 1;
}
.section07__faq-answer p {
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  line-height: 1.8;
}
.section07__cta {
  text-align: center;
}
.section07__btn {
  display: inline-flex;
  background: #123f75;
  color: #fff;
  border-radius: 999px;
  font-size: 1.6rem;
  font-size: clamp(1.06667rem, calc(16 / 1400 * 100vw), 1.6rem);
  padding: 16px 40px;
}
.section07__btn .btn__icon {
  background-color: #fff;
}
.section07__btn .btn__icon::after {
  border-left-color: #123f75;
}

/*-------------------------------------------
  フッター
-------------------------------------------*/
.footer {
  text-align: center;
  padding: 50px 0 40px;

  background-color: #6c9bd2;
  color: #fff;
  text-align: center;
}
.footer__texts {
  margin-top: 40px;
}
.footer__title {
  font-size: 1.8rem;
  font-size: clamp(1.2rem, calc(18 / 1400 * 100vw), 1.8rem);
  font-weight: 700;
}
.footer__desc {
  font-size: 1.2rem;
  font-size: clamp(0.8rem, calc(12 / 1400 * 100vw), 1.2rem);
}
.footer__logo {
  width: 200px;
  margin: 0 auto;
}
.footer__phone {
  display: block;
  margin-top: 10px;
  font-size: 5.4rem;
  font-size: clamp(3.6rem, calc(54 / 1400 * 100vw), 5.4rem);
  font-weight: 700;
  line-height: 1;
}
.footer__hours {
  margin-top: 10px;
  font-size: 1rem;
  font-size: clamp(0.66667rem, calc(10 / 1400 * 100vw), 1rem);
}

.btn--fixed{
  position: fixed!important;
  bottom: 50px !important;
  right: 20px !important;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.btn--fixed.is-show{
  opacity: 1;
  visibility: visible;
}

.service-modal__note{

}

.service-modal__note li.is-red{
  color: red;
}

.service-modal__note li{
  padding-left: 1em;
  font-size: 13px;
  font-feature-settings: "palt";
}

.service-modal__note li a{
  text-decoration: underline;
}

.service-modal__note li:nth-child(1){
  margin-top: 10px;
}

.service-modal__note li:before{
  content: '・';
  margin-left: -1em;
}

.service-modal__btns .btn{
  margin: 10px auto 0;
  height: 35px;
  width: 80%;
  font-size: clamp(1.2rem, calc(18 / 1400 * 100vw), 2.4rem);
}

.service-modal__btns .btn__icon{
  width: clamp(20px, 2.3vw, 22px);
  height: clamp(20px, 2.3vw, 22px);
}