@charset "UTF-8";
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, p, figure, picture, blockquote, ul, li, dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 { /*text-wrap:balance;*/
  font-weight: normal;
  line-height: 1;
}

i, em {
  font-style: normal;
}

a:not([class]) {
  color: currentColor;
}

img, figure, picture {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

button {
  all: unset;
  display: revert;
}

table {
  border-collapse: collapse;
  width: 100%;
}

textarea {
  white-space: revert;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #000;
  font-size: 14px;
  font-family: "Noto Sans JP", serif;
  line-height: 1.2;
  font-weight: 500;
  font-style: normal;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

#wrapper.open #header {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  background: #fff;
}
#wrapper.open nav {
  visibility: visible;
  opacity: 1;
}

a {
  color: #000;
}
a:hover {
  opacity: 0.7;
}

ul.indent {
  margin-left: 1em;
  text-align: left;
}
ul.indent > li {
  text-indent: -1em;
}

.btn {
  text-align: center;
}
* + .btn {
  margin-top: 15px;
}
@media (min-width: 768px) {
  * + .btn {
    margin-top: 30px;
  }
}
.btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  background: #000;
  border-radius: 3px;
  padding: 14px 10px;
  text-decoration: none;
  margin-inline: auto;
  max-width: 92.5333333333%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .btn a {
    max-width: 50%;
    border-radius: 6px;
    font-size: 17px;
    padding: 20px 10px;
  }
}
.btn a::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
.btn a:hover {
  background: #444;
}
.btn.disabled a {
  color: rgb(145.5, 145.5, 145.5);
  cursor: default;
  pointer-events: none;
  background: #444;
}
.btn.disabled a i {
  border-color: rgb(145.5, 145.5, 145.5);
}
.btn.disabled a::after {
  display: none;
}

.head {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 800;
  font-style: normal;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1;
}
@media (min-width: 768px) {
  .head {
    font-size: 48px;
    margin-bottom: 36px;
  }
}
@media (min-width: 1024px) {
  .head {
    font-size: 64px;
    margin-bottom: 48px;
  }
}

#header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
#header #menuTrigger {
  position: fixed;
  display: block;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  z-index: 101;
  cursor: pointer;
}
#header #menuTrigger i {
  display: block;
  text-indent: 130%;
  white-space: nowrap;
  overflow: hidden;
}
#header #menuTrigger::before, #header #menuTrigger::after,
#header #menuTrigger i:before {
  position: absolute;
  display: block;
  content: "";
  width: calc(100% - 22px);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 2.5px;
  background: #000;
}
#header #menuTrigger:before {
  top: -11px;
}
#header #menuTrigger::after {
  bottom: -11px;
}
#header #menuTrigger:hover {
  background: #dedede;
}
#header #menuTrigger.open::before {
  top: 0;
  rotate: 45deg;
}
#header #menuTrigger.open::after {
  bottom: 0;
  rotate: -45deg;
}
#header #menuTrigger.open i:before {
  display: none;
}
@media (min-width: 768px) {
  #header #menuTrigger {
    display: none;
  }
}
#header nav {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: 60px 14px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 100;
}
#header nav .navList li {
  text-align: center;
}
#header nav .navList li + li {
  margin-top: 30px;
}
#header nav .navList li a {
  display: block;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 800;
  font-style: normal;
  text-align: center;
  line-height: 1;
  color: #272727;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#footer {
  position: relative;
  text-align: center;
  padding: 35px 14px 10px;
  background: #000;
  z-index: 1;
  margin-top: 40px;
}
@media (min-width: 768px) {
  #footer {
    padding-top: 60px;
    margin-top: 40px;
  }
}
@media (min-width: 1100px) {
  #footer {
    margin-top: 100px;
  }
}
#footer small {
  display: block;
  font-size: 9px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin-top: 30px;
  color: #fff;
}

main > section {
  position: relative;
  z-index: 1;
  padding: 40px 13px 0;
  max-width: 1100px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  main > section {
    padding: 60px 20px 0;
  }
}
@media (min-width: 1100px) {
  main > section {
    padding: 100px 80px 0;
  }
}

.spOnly {
  display: block;
}
@media (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

.pcOnly {
  display: none;
}
@media (min-width: 768px) {
  .pcOnly {
    display: block;
  }
}

#hero {
  padding: 0;
  max-width: 100%;
}
#hero h1 picture img {
  width: 100%;
}

#schedule {
  z-index: 2;
  max-width: 1440px;
}

.scheduleTable.spOnly table {
  width: 100%;
}
.scheduleTable.spOnly table th, .scheduleTable.spOnly table td {
  padding: 4px;
  border: 1px solid #000;
  white-space: nowrap;
}
.scheduleTable.spOnly th {
  font-size: 19px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  line-height: 1;
  width: 18.6246418338%;
}
.scheduleTable.spOnly th i {
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-size: 10px;
  font-weight: 700;
  vertical-align: middle;
  width: 2.2em;
  margin-left: 2px;
  text-align: left;
}
.scheduleTable.spOnly th i.sat {
  color: #5FCFFF;
}
.scheduleTable.spOnly th i.sun {
  color: #FF4646;
}
.scheduleTable.spOnly th i.day {
  font-size: 19px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1;
  width: 1.3em;
  margin-left: -2px;
  text-align: center;
}
.scheduleTable.spOnly td {
  width: 39.5415472779%;
}
.scheduleTable.spOnly td .btn {
  margin: 0;
}
.scheduleTable.spOnly td .btn a {
  font-size: 13px;
  padding: 10px 52px 10px 4px;
  gap: 6px;
}
.scheduleTable.spOnly td .btn a i {
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  border: 1px solid #fff;
  padding: 3px 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 20px;
  width: 36px;
  margin: auto;
  right: 18px;
}
.scheduleTable.spOnly td .btn a i.visitor {
  scale: 0.7 1;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  letter-spacing: -0.05em;
  margin-right: -15px;
  width: 51px;
  border-left-width: 1.5px;
  border-right-width: 1.5px;
}
.scheduleTable.spOnly td .btn a::after {
  right: 7px;
  width: 7px;
  height: 7px;
}
.scheduleTable.spOnly td .btn a span {
  scale: 0.86 1;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  letter-spacing: -0.05em;
  margin-left: 6px;
}
.scheduleTable.spOnly td .btn.disabled a {
  color: rgb(145.5, 145.5, 145.5);
  cursor: default;
  pointer-events: none;
}
.scheduleTable.spOnly td .btn.disabled a i {
  border-color: rgb(145.5, 145.5, 145.5);
}
.scheduleTable.spOnly td .btn.disabled a::after {
  display: none;
}
.scheduleTable.spOnly thead th {
  font-size: 28px;
}
.scheduleTable.spOnly thead th i {
  font-size: 14px;
  margin-left: 5px;
  width: auto;
}
.scheduleTable.spOnly thead td {
  padding-top: 10px;
}
.scheduleTable.spOnly thead td span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.scheduleTable.spOnly thead td .btn a {
  line-height: 1.2;
  padding-right: 16px;
  padding-left: 7px;
}
.scheduleTable.spOnly tr td:nth-of-type(2) .btn a {
  background: #777;
}
.scheduleTable.spOnly tr td:nth-of-type(2).disabled .btn a {
  color: rgb(196.5, 196.5, 196.5);
}
.scheduleTable.spOnly tr td:nth-of-type(2).disabled .btn a i {
  border-color: #ababab;
}
.scheduleTable.spOnly tbody th {
  padding-top: 13px;
  padding-bottom: 13px;
}
.scheduleTable.pcOnly .scheduleHeader {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 64px;
}
.scheduleTable.pcOnly .scheduleHeader .month {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  margin: auto;
  font-size: 55px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  line-height: 1;
}
.scheduleTable.pcOnly .scheduleHeader .month i {
  font-size: 28px;
  margin-left: 2px;
}
.scheduleTable.pcOnly .scheduleHeader .todaysMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 10px;
}
@media (min-width: 768px) {
  .scheduleTable.pcOnly .scheduleHeader .todaysMenu {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 1100px) {
  .scheduleTable.pcOnly .scheduleHeader .todaysMenu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.scheduleTable.pcOnly .scheduleHeader .todaysMenu .btn a {
  padding: 8px 95px 8px 14px;
}
@media (min-width: 768px) {
  .scheduleTable.pcOnly .scheduleHeader .todaysMenu .btn a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.scheduleTable.pcOnly .scheduleHeader .todaysMenu .btn a i {
  padding-inline: 9px;
  padding-inline: 0.625vw;
  width: 52px;
  padding: 3px 2px;
  text-align: center;
}
@media (min-width: 768px) {
  .scheduleTable.pcOnly .scheduleHeader .todaysMenu .btn a i {
    top: 0;
    left: auto;
    right: 25px;
  }
}
.scheduleTable.pcOnly .scheduleHeader .todaysMenu .btn a::after {
  right: 11px;
  width: 10px;
  height: 10px;
}
.scheduleTable.pcOnly .btnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  height: 100%;
  margin-top: 15px;
}
.scheduleTable.pcOnly .btnList li {
  height: 38px;
}
@media (min-width: 768px) {
  .scheduleTable.pcOnly .btnList li {
    height: 50px;
  }
}
@media (min-width: 1100px) {
  .scheduleTable.pcOnly .btnList li {
    height: 2.6388888889vw;
  }
}
@media (min-width: 1440px) {
  .scheduleTable.pcOnly .btnList li {
    height: 38px;
  }
}
@media (min-width: 768px) {
  .scheduleTable.pcOnly .btnList li .btn a {
    height: 50px;
  }
}
@media (min-width: 1100px) {
  .scheduleTable.pcOnly .btnList li .btn a {
    height: 2.6388888889vw;
  }
}
@media (min-width: 1440px) {
  .scheduleTable.pcOnly .btnList li .btn a {
    height: 38px;
  }
}
.scheduleTable.pcOnly .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 12px;
  padding: 0.625vw 4.5138888889vw 0.625vw 1.0416666667vw;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .scheduleTable.pcOnly .btn a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    padding: 0.625vw 1.3888888889vw 0.625vw 0.4166666667vw;
  }
}
@media (min-width: 1100px) {
  .scheduleTable.pcOnly .btn a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1440px) {
  .scheduleTable.pcOnly .btn a {
    font-size: 14px;
    padding: 9px 65px 9px 25px;
  }
}
.scheduleTable.pcOnly .btn a span {
  scale: 0.85 1;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  letter-spacing: -0.05em;
  margin-left: 0;
}
.scheduleTable.pcOnly .btn a i {
  font-size: 10px;
  padding: 0.2083333333vw 0.6944444444vw 0.2083333333vw 0.6944444444vw;
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 20px;
  width: 40px;
  margin: auto;
  right: 25px;
}
@media (min-width: 768px) {
  .scheduleTable.pcOnly .btn a i {
    top: 19px;
    right: 9px;
    left: 0;
  }
}
@media (min-width: 1100px) {
  .scheduleTable.pcOnly .btn a i {
    top: 0;
    right: 24px;
    left: auto;
  }
}
@media (min-width: 1440px) {
  .scheduleTable.pcOnly .btn a i {
    padding: 3px 10px;
  }
}
.scheduleTable.pcOnly .btn a i.visitor {
  scale: 0.8 1;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  letter-spacing: -0.05em;
  width: 48px;
  right: 16px;
  padding: 3px 9px 3px 4px;
}
@media (min-width: 768px) {
  .scheduleTable.pcOnly .btn a i.visitor {
    right: 0;
  }
}
@media (min-width: 1100px) {
  .scheduleTable.pcOnly .btn a i.visitor {
    right: 15px;
  }
}
.scheduleTable.pcOnly .btn a::after {
  right: 10px;
  width: 8px;
  height: 8px;
}
.scheduleTable.pcOnly .btn.disabled a {
  color: rgb(145.5, 145.5, 145.5);
  cursor: default;
  pointer-events: none;
}
.scheduleTable.pcOnly .btn.disabled a i {
  border-color: rgb(145.5, 145.5, 145.5);
}
.scheduleTable.pcOnly .btn.disabled a::after {
  display: none;
}
.scheduleTable.pcOnly .btn.team2 {
  position: relative;
}
.scheduleTable.pcOnly .btn.team2 a {
  background: #777;
}
.scheduleTable.pcOnly .btn.team2.disabled a {
  color: rgb(145.5, 145.5, 145.5);
}
.scheduleTable.pcOnly .btn.team2.disabled a i {
  border-color: rgb(145.5, 145.5, 145.5);
}
.scheduleTable.pcOnly table {
  width: 100%;
  border: 1px solid #000;
}
.scheduleTable.pcOnly table th, .scheduleTable.pcOnly table td {
  border: 1px solid #000;
  vertical-align: top;
  width: 14.2857142857%;
}
.scheduleTable.pcOnly table th {
  padding: 10px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.scheduleTable.pcOnly table th.sat {
  color: #5FCFFF;
}
.scheduleTable.pcOnly table th.sun {
  color: #FF4646;
}
.scheduleTable.pcOnly table td {
  padding: 15px 4px 4px;
}
.scheduleTable.pcOnly table td .day {
  display: block;
  font-size: 28px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.scheduleTable.pcOnly table td .day.holiday {
  color: #FF4646;
}
.scheduleTable.pcOnly table td:nth-of-type(1) .day {
  color: #FF4646;
}
.scheduleTable.pcOnly table td:nth-of-type(7) .day {
  color: #5FCFFF;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(119, 119, 119, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.5s, scale 0s 0.5s;
  transition: opacity 0.5s, scale 0s 0.5s;
  padding: 30px 10px;
  scale: 0;
  z-index: 200;
  /* 背景クリックでモーダルを閉じる */
}
@media (min-width: 768px) {
  .modal {
    padding: 60px;
  }
}
.modal:target {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  scale: 1;
  /* モーダルがターゲットされたときに .modal-wrapper を表示 */
}
.modal:target .modal-wrapper {
  opacity: 1;
}
.modal .modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  /* 背景がクリック可能であることを明示 */
}
.modal .modal-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  width: 100%;
  max-width: 750px;
  max-height: 70%;
  margin: auto;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 210;
}
@media (min-width: 768px) {
  .modal .modal-wrapper {
    max-height: 90%;
  }
}
.modal .modal-wrapper .modal-content-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
}
.modal .modal-wrapper .btnClose {
  position: sticky;
  top: 0;
  right: 0;
  text-align: right;
  height: 0;
}
.modal .modal-wrapper .btnClose .close {
  position: relative;
  top: -38px;
  right: 0;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.modal .modal-wrapper .modal-content {
  text-align: left;
  padding: 20px;
}
.modal .modal-wrapper .btn a {
  font-size: 16px;
  max-width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 17px 25px;
}
.modal .modal-wrapper .btn.disabled a {
  color: rgb(145.5, 145.5, 145.5);
  cursor: default;
  pointer-events: none;
  background: #444;
}
.modal .modal-wrapper .btn.disabled a i {
  border-color: rgb(145.5, 145.5, 145.5);
}
.modal .modal-wrapper .btn.disabled a::after {
  display: none;
}
.modal .modal-wrapper .modal-header {
  background: #dedede;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 10px 20px 13px;
  margin: -20px -20px 0;
}
.modal .modal-wrapper .modal-header p:first-child i {
  display: inline-block;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.modal .modal-wrapper .modal-header p:first-child i + i {
  margin-left: 5px;
}
.modal .modal-wrapper .modal-header p:first-child i + i.sat {
  color: #5FCFFF;
}
.modal .modal-wrapper .modal-header p:first-child i + i.sun {
  color: #FF4646;
}
.modal .modal-wrapper .modal-header p:first-child i.day {
  font-size: 46px;
}
.modal .modal-wrapper .modal-header p:last-child {
  font-size: 15px;
  text-align: right;
  line-height: 1.4;
}
.modal .modal-wrapper .modal-body {
  padding-top: 15px;
}
.modal .modal-wrapper .modal-body .game {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 20px;
}
.modal .modal-wrapper .modal-body .game i {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
.modal .modal-wrapper .modal-body > h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 13px;
}
.modal .modal-wrapper .modal-body ul {
  margin-inline: -20px;
  margin-bottom: -8px;
  border-top: 1px solid #000;
}
.modal .modal-wrapper .modal-body ul li {
  border-bottom: 1px solid #000;
}
.modal .modal-wrapper .modal-body ul li a {
  position: relative;
  display: block;
  font-size: 16px;
  text-decoration: none;
  padding: 15px 20px;
}
.modal .modal-wrapper .modal-body ul li a::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  bottom: 0;
  right: 35px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
.modal .modal-wrapper .modal-body ul li.disabled a {
  color: rgb(195.5, 195.5, 195.5);
  cursor: default;
  pointer-events: none;
}
.modal .modal-wrapper .modal-body ul li.disabled a::after {
  display: none;
}

#member .note {
  text-align: right;
  font-size: 12px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  #member .note {
    font-size: 14px;
  }
}
#member .indent {
  font-size: 11px;
  line-height: 1.6;
  margin-top: 10px;
}
@media (min-width: 768px) {
  #member .indent {
    font-size: 13px;
  }
}

.accordion {
  border-bottom: 1px solid #000;
}
.accordion > dt {
  border-top: 1px solid #000;
  padding: 13px 15px 13px 15px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
@media (min-width: 768px) {
  .accordion > dt {
    font-size: 21px;
    padding: 17px 15px;
  }
}
.accordion > dt::after, .accordion > dt::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: #000;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.accordion > dt::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion > dt::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.accordion > dt.active::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}
.accordion > dt.active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordion > dt.active + dd {
  display: block;
}
.accordion > dd {
  display: none;
}
.accordion > dd > h3 {
  font-size: 14px;
  font-weight: 700;
  background: #000;
  color: #fff;
  padding: 6px 12px;
}
@media (min-width: 768px) {
  .accordion > dd > h3 {
    font-size: 16px;
  }
}
.accordion > dd > ul {
  list-style: none;
  padding: 10px 13px 15px;
  margin: 0;
}
.accordion > dd > ul li {
  display: inline;
  line-height: 1.6;
}
.accordion > dd > ul li:not(:last-child)::after {
  content: "、";
}
.accordion > dd > ul li a {
  color: #1d3994;
  text-decoration: none;
}
.accordion > dd > ul li a:hover {
  text-decoration: underline;
}

#broadcast .accordion > dd ul li {
  display: inline-block;
}

#map .accordion {
  border-bottom: none;
}
#map .accordion > dt {
  border-top: none;
  border-bottom: 1px solid #000;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  #map .accordion > dt {
    cursor: default;
    pointer-events: none;
  }
  #map .accordion > dt::after, #map .accordion > dt::before {
    display: none;
  }
}
#map .accordion > dd {
  border: 1px solid #000;
}
@media (min-width: 768px) {
  #map .accordion > dd {
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  #map .accordion > dd > * {
    width: calc((100% - 20px) / 2);
  }
}
@media (min-width: 768px) {
  #map .accordion > dd > * + * {
    margin-top: 43px;
  }
}

.mapContent h3 {
  font-size: 19px;
  font-weight: 700;
  padding: 10px 13px 10px;
  line-height: 1.2;
  border-bottom: 1px solid #000;
}
@media (min-width: 768px) {
  .mapContent h3 {
    border: none;
  }
}
.mapContent iframe {
  width: 100%;
  aspect-ratio: 700/645;
}

.mapDetail > dl > dt {
  font-size: 14px;
  font-weight: 700;
  background: #000;
  color: #fff;
  padding: 6px 12px;
}
@media (min-width: 768px) {
  .mapDetail > dl > dt {
    font-size: 16px;
  }
}
.mapDetail > dl > dd {
  padding: 7px 13px 13px;
  line-height: 1.6;
}
.mapDetail > dl > dd > ul {
  margin-top: 5px;
}

#goodsSlider .goodsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  #goodsSlider .goodsList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 18px;
  }
}
#goodsSlider .goodsList > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  font-size: 14px;
  border: 1px solid #000;
  padding: 18px;
  border-radius: 3px;
}
@media (min-width: 768px) {
  #goodsSlider .goodsList > li {
    width: calc((100% - 36px) / 3) !important;
    font-size: 15px;
    margin: 0 !important;
  }
}
#goodsSlider .goodsList > li figure {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#goodsSlider .goodsList > li figure img {
  width: 100%;
  height: auto;
}
#goodsSlider .goodsList > li > p {
  margin-top: 20px;
  font-weight: 700;
  line-height: 1.3;
}
#goodsSlider .goodsList > li > div {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#goodsSlider .goodsList > li > div h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 768px) {
  #goodsSlider .goodsList > li > div h3 {
    font-size: 15px;
  }
}
#goodsSlider .goodsList > li > div dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px dotted #777;
  margin-top: 10px;
  margin-bottom: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
#goodsSlider .goodsList > li > div dl dt, #goodsSlider .goodsList > li > div dl dd {
  display: inline-block;
  padding: 7px 7px 5px;
  border-bottom: 1px dotted #777;
}
#goodsSlider .goodsList > li > div dl dt {
  width: 7em;
  font-weight: 700;
}
@media (min-width: 768px) {
  #goodsSlider .goodsList > li > div dl dt {
    width: 30%;
  }
}
#goodsSlider .goodsList > li > div dl dd {
  width: calc(100% - 7em);
}
@media (min-width: 768px) {
  #goodsSlider .goodsList > li > div dl dd {
    width: 70%;
  }
}
#goodsSlider .goodsList > li > div .btn {
  margin-top: auto;
}
#goodsSlider .goodsList > li > div .btn a {
  font-size: 16px;
  padding: 12px 10px;
  max-width: 100%;
}

#instagram {
  padding-inline: 0;
}
#instagram .instagramList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2px;
}
#instagram .instagramList li {
  width: calc((100% - 4px) / 3);
}
#instagram .instagramList li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#instagram .instagramList li a:hover {
  opacity: 0.7;
}
#instagram .instagramList li a img {
  -o-object-fit: cover;
     object-fit: cover;
}

#youtube {
  padding-inline: 2px;
}
#youtube .youtubeList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
@media (min-width: 768px) {
  #youtube .youtubeList {
    gap: 30px;
  }
}
#youtube .youtubeList li {
  width: 100%;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  #youtube .youtubeList li {
    aspect-ratio: 18/9;
    padding-inline: 30px;
  }
}
@media (min-width: 1100px) {
  #youtube .youtubeList li {
    padding-inline: 60px;
  }
}
#youtube .youtubeList li > iframe {
  width: 100%;
  height: 100%;
}

#sponsor .sponsorList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sponsor .sponsorList li {
  width: calc((100% - 40px) / 3);
}
@media (min-width: 768px) {
  #sponsor .sponsorList li {
    width: calc((100% - 80px) / 5);
  }
}
#sponsor .sponsorList li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#sponsor .sponsorList li a:hover {
  opacity: 0.7;
}
#sponsor .sponsorList li img {
  margin: 0 auto;
  width: 75%;
}/*# sourceMappingURL=style.css.map */