/*****************************************************************************
CSS only for Homegame 2024-25
*****************************************************************************/

/* Contents
-----------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}
* {
  box-sizing: border-box;
}

.Container {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .Container {
    margin: auto 20px;
  }
}
.Container > *:last-child {
  margin-bottom: 0;
}

/* Mv
-----------------------------------------*/
.Mv {
  text-align: center;
}
.Mv img {
  width: 100%;
  max-width: none;
}
@media screen and (max-width: 1200px) {
  .Mv img {
    width: auto;
    max-width: 100%;
  }
}

/* Match
-----------------------------------------*/
.Match {
  position: relative;
  padding: 132px 0;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .Match {
    padding: 70px 0;
  }
}
.Match::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 13.69791%;
  transform: translateY(-50%);
  width: 30.46875vw;
  max-width: 585px;
  aspect-ratio: 1 / 2.132;
  mask-image: url(/assets/img/bluteonlogo/logo_mark_03.svg);
  mask-repeat: no-repeat;
  mask-size: 100%;
  background-color: #e6eefc;
}
@media screen and (max-width: 767px) {
  .Match::after {
    left: -47%;
    width: 92vw;
    max-width: none;
    overflow: hidden;
  }
}
.Match__inner {
  position: relative;
  z-index: 1;
}

/* Heading
-----------------------------------------*/
.Heading {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .Heading {
    font-size: 20px;
  }
}

/* Presents
-----------------------------------------*/
.Presents {
  display: inline-block;
  width: 38%;
}
@media screen and (max-width: 767px) {
  .Presents {
    width: auto;
  }
}
.Presents__item {
  display: flex;
  align-items: center;
  padding: 3.07017% 8.33333%;
  border-radius: 10px;
  box-shadow: 0px 0px 12px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .Presents__item {
    padding: 10px 15px;
  }
}
.Presents__text {
  display: inline-block;
  position: relative;
  padding-right: 23px;
  border-right: 1px solid #d6d6d6;
}
@media screen and (max-width: 767px) {
  .Presents__text {
    padding-right: 18px;
  }
}
.Presents__text img {
  vertical-align: baseline;
}
.Presents__logo {
  flex: 1;
  margin-left: 10%;
}
@media screen and (max-width: 767px) {
  .Presents__logo {
    margin-left: 15px;
  }
}
.Presents__logo img {
  width: 154px;
}
@media screen and (max-width: 767px) {
  .Presents__logo img {
    width: 115px;
  }
}
.Presents__logo:hover   { opacity: .7 }
.Presents__logo:focus   { opacity: .7 }
.Presents__logo:active  { opacity: .7 }

/* GameInfo
-----------------------------------------*/
.GameInfo {
  margin: 4px 0 23px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .GameInfo {
    margin: 10px 0 40px;
  }
}
.GameInfo__group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
  font-family: var(--font-type01);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .GameInfo__group {
    gap: 0 18px;
  }
}
.GameInfo__tag {
  display: inline-block;
  margin-block: var(--leading-trim);
  padding: 5px 13px 11px;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  font-size: clamp(28px, 2.08333vw, 40px);
}
@media screen and (max-width: 767px) {
  .GameInfo__tag {
    padding: 5px 13px 9px;
    font-size: 22px;
  }
}
.GameInfo__date {
  padding-bottom: 19px;
}
.GameInfo__date span {
  display: inline-block;
}
.GameInfo__date span:nth-child(1) {
  font-size: clamp(91px, 6.77083vw, 130px);
}
@media screen and (max-width: 767px) {
  .GameInfo__date span:nth-child(1) {
    font-size: 76px;
  }
}
.GameInfo__date span:nth-child(2) {
  margin-left: 12px;
  color: #999;
  font-size: clamp(35px, 2.60416vw, 50px);
}
@media screen and (max-width: 767px) {
  .GameInfo__date span:nth-child(2) {
    font-size: 28px;
  }
}
.GameInfo__detail {
  display: inline-block;
  margin-top: 4px;
}
.GameInfo__list {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 4px 12px;
}
.GameInfo__list dt {
  padding: 2px 19px;
  border-radius: 13px;
  background-color: #0866ff;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .GameInfo__list dt {
    padding: 2px 15px;
    font-size: 12px;
  }
}
.GameInfo__list dd {
  font-weight: 700;
  text-align: left;
}
.GameInfo__list dd:nth-of-type(1) {
  font-family: var(--font-type01);
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .GameInfo__list dd:nth-of-type(1) {
    font-size: 20px;
  }
}
.GameInfo__list dd:nth-of-type(2) {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .GameInfo__list dd:nth-of-type(2) {
    font-size: 18px;
  }
}
.GameInfo__link {
  margin-top: 40px;
}
.GameInfo__link a {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  /* color: #8B7849; */
  color: #917934;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .GameInfo__link a {
    font-size: 18px;
  }
}
.GameInfo__link a:link,
.GameInfo__link a:visited {
  text-decoration: none;
  color: #917934;
}
.GameInfo__link a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #917934;
}
.GameInfo__link a:hover {
  opacity: 0.8;
}
.Arrow {
  width: 20px;
  height: auto;
  margin-left: 60px;
  /* filter: invert(45%) sepia(12%) saturate(1279%) hue-rotate(5deg) brightness(101%) contrast(95%); */
  filter: invert(51%) sepia(6%) saturate(3757%) hue-rotate(7deg) brightness(91%) contrast(86%);
}
@media screen and (max-width: 767px) {
  .Arrow {
    margin-left: 40px;
  }
}
.GameInfo .Memolist {
  display: flex;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  justify-content: center;
  margin: 20px 0 32px;
}
.BtnList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .BtnList li {
    width: 100%;
  }
  .BtnList .Btn01 {
    width: 100%;
  }
}
.BtnList + .BtnList {
  margin-top: 30px;
}

/* Title
-----------------------------------------*/
.SecTitle {
  text-align: center;
}
.SecTitle span {
  display: block;
}
.SecTitle__main {
  margin-block: var(--leading-trim);
  font-size: clamp(51px, 3.85416vw, 74px);
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .SecTitle__main {
    font-size: clamp(36px, 6.12777vw, 47px);
  }
}
.SecTitle__sub {
  margin-top: 23px;
  color: #0666ff;
  font-size: clamp(14px, .9375vw, 18px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .SecTitle__sub {
    margin-top: 13px;
    font-size: 14px;
  }
}
.SecTitle--en > .SecTitle__main {
  font-family: var(--font-type01);
  font-size: clamp(56px, 4.16666vw, 80px);
}
@media screen and (max-width: 767px) {
  .SecTitle--en > .SecTitle__main {
    font-size: clamp(40px, 6.91003vw, 53px);
  }
}
.SecTitle--white > .SecTitle__main,
.SecTitle--white > .SecTitle__sub {
  color: #fff;
}

.SubTitle {
  margin-block: var(--leading-trim);
  font-size: clamp(33px, 2.5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .SubTitle {
    font-size: clamp(23px, 3.9113vw, 30px);
  }
}
.SubTitle--en {
  font-family: var(--font-type01);
}
.SubTitle--white {
  color: #fff;
}
.SubTitle span {
  display: inline-block;
  font-size: clamp(27px, 2.08333vw, 40px);
}
@media screen and (max-width: 767px) {
  .SubTitle span {
    font-size: clamp(19px, 3.25945vw, 25px);
  }
}

.CatTitle {
  margin: 50px 0 20px;
  color: #0666ff;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .CatTitle {
    font-size: 18px;
  }
}
.CatTitle--left {
  text-align: left;
}

/* TextArea
-----------------------------------------*/
.TextArea {
  margin: 35px 0 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.83;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .TextArea {
    font-size: 14px;
    font-weight: 600;
  }
}
.TextArea--left {
  text-align: left;
}
.TextArea--white {
  color: #fff;
}
.TextArea--caution {
  margin-block: 40px;
  padding: 15px 20px;
  border: 2px solid currentColor;
  color: #d8002e;
}
.TextArea p,
.TextArea ul {
  margin-bottom: 0.8em;
}
.CatTitle + .TextArea {
  margin-top: 20px;
}
.TextArea__wrapper {
  display: inline-block;
  text-align: left;
}
.TextArea > *:last-child,
.TextArea__wrapper > *:last-child {
  margin-bottom: 0;
}
.TextArea__title {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .TextArea__title {
    font-size: 17px;
  }
}

/* CircleList
-----------------------------------------*/
.CircleList > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.9;
  text-align: left;
}
.CircleList > li::before {
  content: "●";
  position: absolute;
  top: calc((2em * 1.9 - 1em) / 2);
  left: 0px;
  font-size: 10px;
  font-size: .5em;
  line-height: 1;
}
.CircleList--blue li::before {
  color: #0666ff;
}
.CircleList--gray li::before {
  color: #aaa;
}

/* Announce
-----------------------------------------*/
.Announce {
  width: 66%;
  margin: 32px auto;
  border: 1px solid #d6d6d6;
  padding: 21px 15px;
  background-color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .Announce {
    width: 100%;
    margin: 32px 0;
    padding: 18px 13px;
    font-size: 16px;
  }
}

/* InfoList
-----------------------------------------*/
.InfoList {
  border-top: 1px solid #d6d6d6;
}
.InfoList li {
  border-bottom: 1px solid #d6d6d6;
}
.InfoList a {
  display: flex;
  gap: 0 38px;
  padding: 36px 0;
}
@media screen and (max-width: 767px) {
  .InfoList a {
    gap: 0 23px;
    padding: 21px 0;
  }
}
.InfoList a:link    { color: #000; text-decoration: none }
.InfoList a:visited { color: #000; text-decoration: none }

.InfoList__date {
  font-family: var(--font-type01);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .InfoList__date {
    font-size: 12px;
  }
}
.InfoList__date span {
  font-family: var(--font-main);
}
@media screen and (max-width: 767px) {
  .InfoList__date span {
    display: block;
  }
}
.InfoList__title {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .InfoList__title {
    font-size: 14px;
  }
}
.InfoList__title span {
  background-image: linear-gradient(90deg, #000, #000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size .32s ease-in-out;
}

.InfoList--none {
  border-top: none;
}
.InfoList--none li {
  border-bottom: none;
}
.InfoList--none .Announce {
  margin-bottom: 0;
}

/* ----- animation ----- */
.InfoList a:where(:hover, :focus, :active) .InfoList__title span {
  background-size: 100% 1px;
}

/* News
-----------------------------------------*/
.News {
  padding: 128px 0 100px;
  border-top: 1px solid #d6d6d6;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .News {
    padding: 80px 0 60px;
    border-radius: 20px 20px 0 0;
  }
}
.News__wrapper {
  max-width: 976px;
  margin: 64px  auto 0;
}
@media screen and (max-width: 976px) {
  .News__wrapper {
    margin: 40px  auto 0;
    padding: 0 20px;
  }
}
.Pickup + .News__wrapper {
  margin-top: 42px;
}

/* Pickup
-----------------------------------------*/
.Pickup {
  margin-top: 67px;
  padding: 35px 112px;
  border-radius: 20px;
  background-color: #0866ff;
}
@media screen and (max-width: 976px) {
  .Pickup {
    margin-top: 54px;
    padding: 35px 20px;
  }
}
.Pickup__list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .Pickup__list {
    flex-direction: column;
  }
}
.Pickup__list li {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 767px) {
  .Pickup__list li {
    width: 100%;
  }
}
.Pickup__list a {
  display: block;
}
.Pickup__list a:link    { color: #fff; text-decoration: none; }
.Pickup__list a:visited { color: #fff; text-decoration: none; }

.Pickup__img {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .Pickup__img {
    border-radius: 10px;
  }
}
.Pickup__img img {
  width: 100%;
  object-fit: contain;
  aspect-ratio: 1.669 / 1;
  transition: transform .75s ease;
}
@media screen and (max-width: 767px) {
  .Pickup__img img {
    border-radius: 10px;
  }
}
.Pickup__text {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .Pickup__text {
    margin-top: 15px;
  }
}
.Pickup__date {
  margin-bottom: 3px;
  font-family: var(--font-type01);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .Pickup__date {
    font-size: 12px;
  }
}
.Pickup__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  .Pickup__title {
    font-size: 14px;
  }
}
.Pickup__title span {
  background-image: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size .32s ease-in-out;
}

/* ----- animation ----- */
.Pickup__list a:where(:hover, :focus, :active) .Pickup__img img {
  transform: scale(1.04);
}
.Pickup__list a:where(:hover, :focus, :active) .Pickup__title span {
  background-size: 100% 1px;
}

/* Mdp
-----------------------------------------*/
.Mdp {
  position: relative;
  padding: 128px 0 140px;
  border-radius: 40px;
  overflow: hidden;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .Mdp {
    padding: 80px 0 92px;
    border-radius: 20px;
  }
}
.Mdp::after {
  content: 'match day program match day program';
  position: absolute;
  top: 8.92307%;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-type01);
  font-size: clamp(110px, 10.41666vw, 200px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .Mdp::after {
    top: 68px;
    font-size: 70px;
  }
}
.Mdp__text {
  margin-top: 74px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .Mdp__text {
    margin-top: 40px;
    font-size: 15px;
  }
}

/* BgArea
-----------------------------------------*/
.BgArea {
  position: relative;
  padding: 134px 0 160px;
}
@media screen and (max-width: 767px) {
  .BgArea {
    padding: 70px 0 90px;
    overflow: hidden;
  }
}
.BgArea::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 6.16975%;
  left: -.83333%;
  width: 55.46875vw;
  max-width: 1065px;
  aspect-ratio: 1 / 2.132;
  mask-image: url(/assets/img/bluteonlogo/logo_mark_03.svg);
  mask-repeat: no-repeat;
  mask-size: 100%;
  background-color: #e6eefc;
}
@media screen and (max-width: 767px) {
  .BgArea::after {
    top: 27%;
    left: -46%;
    width: 132vw;
    max-width: none;
    overflow: hidden;
  }
}
.BgArea__inner {
  position: relative;
  z-index: 1;
}

/* Category
-----------------------------------------*/
.Category {
  margin: 0 auto;
  max-width: 976px;
}
.Category__inner {
  padding: 0 80px;
}
@media screen and (max-width: 976px) {
  .Category__inner {
    padding: 0 20px;
  }
}
.Category__list {
  display: grid;
  grid-template-columns: repeat(5, 20%);
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .Category__list {
    grid-template-columns: repeat(3, 33.33333%);
  }
}
.Category__item {
  position: relative;
  padding-bottom: 17px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .Category__item {
    padding-bottom: 10px;
  }
}
.Category__item a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.Category__item a:hover   { opacity: .8 }
.Category__item a:focus   { opacity: .8 }
.Category__item a:active  { opacity: .8 }

.Category__list li:not(:nth-child(5n)) {
  border-right: 1px solid #d6d6d6;
}
@media screen and (max-width: 767px) {
  .Category__list li:not(:nth-child(5n)) {
    border-right: none;
  }
  .Category__list li:not(:nth-child(3n)) {
    border-right: 1px solid #d6d6d6;
  }
}

/* ----- gray horizontal line ----- */
.Category__list li:nth-child(5n+1):not(:first-child)::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% * 5);
  height: 1px;
  background-color: #d6d6d6;
}
@media screen and (max-width: 767px) {
  .Category__list li:nth-child(5n+1):not(:first-child)::before {
    display: none;
  }
  .Category__list li:nth-child(3n+1):not(:first-child)::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% * 3);
    height: 1px;
    background-color: #d6d6d6;
  }
}

/* ----- blue line pc ----- */
.Category__list li:nth-child(n+6):not(:nth-child(5n)) a::before,
.Category__list li:nth-child(n+6):not(:nth-child(5n)) a::after {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: 1;
  background-color: #0666ff;
}
@media screen and (max-width: 767px) {
  .Category__list li:nth-child(n+6):not(:nth-child(5n)) a::before,
  .Category__list li:nth-child(n+6):not(:nth-child(5n)) a::after {
    display: none;
  }
}
.Category__list li:nth-child(n+6):not(:nth-child(5n)) a::before {
  top: -1px;
  right: -10px;
  width: 20px;
  height: 1px;
}
.Category__list li:nth-child(n+6):not(:nth-child(5n)) a::after {
  top: -10px;
  right: -1px;
  width: 1px;
  height: 20px;
}

/* ----- blue line sp ----- */
@media screen and (max-width: 767px) {
  .Category__list li:nth-child(n+4):not(:nth-child(3n)) a::before,
  .Category__list li:nth-child(n+4):not(:nth-child(3n)) a::after {
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 1;
    background-color: #0666ff;
  }
  .Category__list li:nth-child(n+4):not(:nth-child(3n)) a::before {
    top: -1px;
    right: -10px;
    width: 20px;
    height: 1px;
  }
  .Category__list li:nth-child(n+4):not(:nth-child(3n)) a::after {
    top: -10px;
    right: -1px;
    width: 1px;
    height: 20px;
  }
}

.Category__item a:link    { color: #000; text-decoration: none; }
.Category__item a:visited { color: #000; text-decoration: none; }

.Category__item img {
  width: 123px;
}
@media screen and (max-width: 767px) {
  .Category__item img {
    width: 73%;
  }
}
.Category__item p {
  padding: 0 8px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .Category__item p {
    font-size: 13px;
  }
}

/* Timetable
-----------------------------------------*/
.Timetable {
  padding: 130px 0 0;
}
@media screen and (max-width: 767px) {
  .Timetable {
    padding: 100px 0 0;
  }
}
.Timetable__inner {
  max-width: 976px;
  margin: 0 auto;
}
@media screen and (max-width: 976px) {
  .Timetable__inner {
    margin: 0 20px;
  }
}
.Schedule {
  margin-top: 67px;
}
@media screen and (max-width: 767px) {
  .Schedule {
    margin-top: 50px;
  }
}
.Schedule__tbl {
  width: 100%;
  border: 1px solid #999;
  background-color: #fff;
}
.Schedule__time {
  width: 10.45%;
  padding: 13px 10px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  background-color: #eef4f7;
  font-family: var(--font-type01);
  font-size: 16px;
  font-weight: 700;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .Schedule__time {
    padding: 10px;
    font-size: 14px;
  }
}
.Schedule__time--emphasis {
  background-color: #0666ff;
  color: #fff;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .Schedule__time--emphasis {
    font-size: 20px;
  }
}
.Schedule__detail {
  padding: 13px 20px 13px 27px;
  border-bottom: 1px solid #999;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .Schedule__detail {
    padding: 10px 16px 10px 20px;
    font-size: 12px;
  }
}
.Schedule__detail p,
.Schedule__detail ul {
  margin-bottom: 13px;
}
.Schedule__detail > *:last-child {
  margin-bottom: 0;
}
p.Schedule__category {
  margin-bottom: 6px;
  font-size: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 4px;
  text-decoration-color: #e5f608;
}
@media screen and (max-width: 767px) {
  p.Schedule__category {
    font-size: 20px;
  }
}
.Schedule__link a {
  display: inline-block;
  padding-right: 25px;
}

.Schedule__link a:link    { text-decoration: none; }
.Schedule__link a:visited { text-decoration: none; }
.Schedule__link a:hover   { text-decoration: underline; }
.Schedule__link a:focus   { text-decoration: underline; }
.Schedule__link a:active  { text-decoration: underline; }

.Schedule__link .IconArrow02::after {
  top: 53%;
  right: 0;
}

/* Card
-----------------------------------------*/
.Event {
  padding: 108px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .Event {
    padding: 80px 0 0;
  }
}
.Event__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.Card {
  margin-top: 65px;
  padding-bottom: 38px;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .Card {
    margin-top: 50px;
  }
}
.Card__item {
  width: 17.60416vw;
  max-width: 338px;
}
@media screen and (max-width: 1024px) {
  .Card__item {
    width: 25vw;
  }
}
@media screen and (max-width: 767px) {
  .Card__item {
    width: 53vw;
    max-width: none;
  }
}
.Card__item a {
  display: flex;
  flex-direction: column-reverse;
}
.Card__item a:link    { color: #000; text-decoration: none; }
.Card__item a:visited { color: #000; text-decoration: none; }

.Card__text {
  display: flex;
  flex-direction: column;
}
.Card__title {
  order: 2;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
}
.Card__tag {
  order: 1;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .Card__tag {
    margin-top: 10px;
  }
}
.Card__tag span {
  display: inline-block;
  padding: 2px 32px;
  border-radius: 11px;
  background-color: #e5f608;
  font-family: var(--font-type01);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .Card__tag span {
    padding: 2px 20px;
  }
}
.Card__lead {
  order: 3;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.733;
}
@media screen and (max-width: 767px) {
  .Card__lead {
    font-size: 14px;
  }
}
.Card__img {
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1.50188 / 1;
}
@media screen and (max-width: 767px) {
  .Card__img {
    border-radius: 10px;
  }
}
.Card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s ease;
}

/* ----- swiper ----- */
.Card .swiper-pagination-bullets {
  bottom: 0;
}
.Card .swiper-pagination-bullet {
  border-radius: 0;
  width: 48px;
  height: 5px;
  background-color: #001a75;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .Card .swiper-pagination-bullet {
    width: 31px;
    height: 4px;
  }
}
.Card .swiper-pagination-bullet-active {
  background-color: #0666FF;
}

/* ----- animation ----- */
.Card__item a:where(:hover, :focus, :active) {
  opacity: .85;
}
.Card__item a:where(:hover, :focus, :active) .Card__img img {
  transform: scale(1.04);
}

/* Stream
-----------------------------------------*/
.Stream {
  padding: 128px 0 0;
}
@media screen and (max-width: 767px) {
  .Stream {
    padding: 80px 0 0;
  }
}
.Stream__wrapper {
  margin-top: 68px;
}
.Stream__link .Btn01 {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .Stream__link .Btn01 {
    font-size: 24px;
  }
}

/* Information
-----------------------------------------*/
.Information {
  padding: 128px 0 0;
}
@media screen and (max-width: 976px) {
  .Information {
    padding: 80px 0 0;
  }
}
.Information__wrapper {
  max-width: 976px;
  margin: 54px auto 0;
}
@media screen and (max-width: 976px) {
  .Information__wrapper {
    margin: 40px auto 0;
    padding: 0 20px;
  }
}

/* Access
-----------------------------------------*/
.Access {
  padding: 128px 0 140px;
  border-radius: 40px;
  background-color: #00239b;
}
@media screen and (max-width: 767px) {
  .Access {
    padding: 80px 0 92px;
    border-radius: 20px;
  }
}
.Access__sec {
  margin-top: 68px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .Access__sec {
    margin-top: 54px;
  }
}
.Access__sec + .Access__sec {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .Access__sec + .Access__sec {
    margin-top: 64px;
  }
}
.Access__sec--right {
  margin-left: min(8.33333vw, 160px);
  padding: 5.10416% 18.75% 5.10416% 10.41666%;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 767px) {
  .Access__sec--right {
    padding: 54px 20px 54px 20px;
    border-radius: 20px 0 0 20px;
  }
}
.Access__sec--left {
  margin-right: min(8.33333vw, 160px);
  padding: 5.10416% 10.41666% 5.10416% 18.75%;
  border-radius: 0 40px 40px 0;
}
@media screen and (max-width: 767px) {
  .Access__sec--left {
    padding: 54px 20px 54px 20px;
    border-radius: 0 20px 20px 0;
  }
}
.Access__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.Access__wrapper > *:last-child {
  margin-bottom: 0;
}
.Access__wrapper + .Access__wrapper {
  margin-top: 60px;
}
.Access__wrapper .TextArea {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .Access__wrapper .TextArea {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .Access__wrapper .Memolist {
    font-size: 14px;
  }
}
.TextArea:where(.Access__text) p {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .TextArea:where(.Access__text) p {
    font-size: 18px;
  }
}
.Access__map {
  margin: 35px 0 25px;
  aspect-ratio: 1.3121 / 1;
}
.Access__map--small {
  aspect-ratio: 16 / 9;
}
.Access__map iframe {
  width: 100%;
  height: 100%;
}

/* FigList
-----------------------------------------*/
.FigList {
  display: grid;
  gap: 20px;
  margin: 35px 0 25px;
}
.FigList--col2 {
  grid-template-columns: repeat(2, calc((100% - 24px) / 2));
}
@media screen and (max-width: 767px) {
  .FigList--col2 {
    grid-template-columns: 1fr;
  }
}
.FigList__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 15px 0;
}
.FigList__text {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .FigList__text {
    font-size: 14px;
  }
}
.FigList__title {
  margin-bottom: 3px;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .FigList__title {
    font-size: 15px;
  }
}
.FigList__detail:has(iframe) {
  aspect-ratio: 3 / 2;
}
.FigList__detail iframe {
  width: 100%;
  height: 100%;
}

/* BusInfo
-----------------------------------------*/
.BusInfo {
  margin: 20px 0 35px;
}
.BusInfo__wrapper--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .BusInfo__wrapper--sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .BusInfo__wrapper + .BusInfo__wrapper {
    margin-top: 10px;
  }
}

.InfoTbl {
  width: 100%;
  border: 1px solid #999;
  background-color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .InfoTbl {
    font-size: 14px;
  }
}
.InfoTbl small {
  margin-left: 1em;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .InfoTbl small {
    display: block;
    margin-left: 0;
  }
}

.InfoTbl th {
  width: 14%;
  padding: 21px 15px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  background-color: #eef4f7;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .InfoTbl th {
    width: 30%;
    padding: 13px 10px;
  }
}
.InfoTbl th:last-child {
  border-right: none;
}
.InfoTbl tr:last-child th {
  border-bottom: none;
}

.InfoTbl td {
  width: 43%;
  padding: 21px 15px;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .InfoTbl td {
    width: 70%;
    padding: 13px 10px;
  }
}
.InfoTbl td:last-child {
  border-right: none;
}
.InfoTbl tr:last-child td {
  border-bottom: none;
}
.InfoTbl td:empty {
  width: 14%;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  background-color: #eef4f7;
}
@media screen and (max-width: 767px) {
  .InfoTbl td:empty {
    width: 30%;
  }
}
.InfoTbl td p,
.InfoTbl td ul {
  margin-bottom: 1em;
}
.InfoTbl td > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .InfoTbl--pc th:nth-of-type(2),
  .InfoTbl--pc td:nth-of-type(2) {
    display: none;
  }
}

.InfoTbl--detail td {
  text-align: left;
}
.InfoTbl--col4 th,
.InfoTbl--col4 td,
.InfoTbl--col4 td:empty {
  width: 25%;
}
.InfoTbl__list li {
  text-indent: -1em;
  padding-left: 1em;
}

/* IcCard
-----------------------------------------*/
.IcCard {
  margin-top: 28px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .IcCard {
    padding: 0;
  }
}
.IcCard__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .IcCard__list {
    gap: 12px 0;
  }
}
.IcCard__list::before {
  content: '';
  display: block;
  order: 1;
  width: 100%;
}
.IcCard__list li:nth-child(-n+2) {
  font-size: 14px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .IcCard__list li:nth-child(-n+2) {
    width: 40%;
    padding: 0 8px;
    font-size: 12px;
  }
}
.IcCard__list li:nth-child(n+3) {
  order: 2;
  padding: 0 4px;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .IcCard__list li:nth-child(n+3) {
    width: 25%;
    padding: 0 3px;
    font-size: 11px;
  }
}
.IcCard__caption {
  margin-top: 8px;
}

/* Faq
-----------------------------------------*/
.Faq {
  padding: 134px 0 0;
}
.Accordion {
  margin-top: 67px;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .Accordion {
    border-radius: 10px;
  }
}
.Accordion__item + .Accordion__item {
  border-top: 1px solid #d6d6d6;
}
.Accordion__question {
  padding: 41px 122px 41px 47px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .Accordion__question {
    padding: 23px 59px 23px 16px;
    font-size: 14px;
  }
}
.Accordion__body {
  padding: 0 49px 46px;
}
@media screen and (max-width: 767px) {
  .Accordion__body {
    padding: 0 20px 26px;
  }
}
.Accordion__answer {
  padding: 30px 48px;
  border-radius: 20px;
  background-color: #eef4f7;
}
@media screen and (max-width: 767px) {
  .Accordion__answer {
    padding: 25px 20px;
    border-radius: 10px;
  }
}
.Accordion__answer p {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .Accordion__answer p {
    font-size: 14px;
  }
}

.Qa__link {
  padding: 0;
}
.Qa__icon {
  right: 50px;
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 767px) {
  .Qa__icon {
    right: 16px;
    width: 28px;
    height: 28px;
  }
}
.Qa__icon::before {
  width: 20px;
}
@media screen and (max-width: 767px) {
  .Qa__icon::before {
    width: 12px;
  }
}
.Qa__icon::after {
  height: 20px;
}
@media screen and (max-width: 767px) {
  .Qa__icon::after {
    height: 12px;
  }
}

/* Magnific Popup
-----------------------------------------*/
.mfp-content .mfp-close {
  font-size: 0;
  width: 75px;
  height: 75px;
  top: -75px;
  right: 20px;
}
.mfp-content .mfp-close::before,
.mfp-content .mfp-close::after {
  content: "";
  background-color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 55px;
  height: 2px;
}
.mfp-content .mfp-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mfp-content .mfp-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* DetailBox
-----------------------------------------*/
.DetailBox a:link    { color: #0666ff; text-decoration: none; }
.DetailBox a:visited { color: #0666ff; text-decoration: none; }
.DetailBox a:hover   { color: #0666ff; text-decoration: none; opacity: 0.8; }
.DetailBox a:focus   { color: #0666ff; text-decoration: none; opacity: 0.8; }
.DetailBox a:active  { color: #0666ff; text-decoration: none; opacity: 0.8; }

.DetailBox {
  position: relative;
  width: 90vw;
  max-width: 976px;
  height: auto;
  margin: 85px auto;
  padding: 80px 40px 100px;
  background-color: #FFF;
  font-family: var(--font-main);
}
@media screen and (max-width: 767px) {
  .DetailBox {
    padding: 70px 20px;
  }
}
.DetailBox sup {
  font-size: 10px;
  vertical-align: text-top;
}
.DetailBox__inner {
  max-width: 816px;
  margin: 0 auto;
}
.DetailBox__heading {
  margin-bottom: 1.875em;
  font-size: 32px;
  text-align: center;
  color: #0666ff;
}
@media screen and (max-width: 767px) {
  .DetailBox__heading {
    margin-bottom: 30px;
    font-size: 22px;
  }
}
.DetailBox__heading > small {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .DetailBox__heading > small {
    font-size: 20px;
  }
}
.DetailBox__body {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .DetailBox__body {
    margin-top: 30px;
  }
}
.DetailBox__wrapper {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .DetailBox__wrapper {
    margin-top: 30px;
    font-size: 14px;
  }
}
.DetailBox__wrapper + .DetailBox__wrapper {
  margin-top: 40px;
}
.DetailBox__wrapper > p,
.DetailBox__wrapper > ul {
  margin-bottom: 1.5em;
}
.DetailBox__wrapper > *:last-child {
  margin-bottom: 0;
}
.DetailBox__title {
  position: relative;
  margin: 2em 0 .75em 0;
  padding: 2px 0 2px 19px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .DetailBox__title {
    font-size: 18px;
  }
}
.DetailBox__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background-color: #0666ff;
}
.DetailBox__subTitle {
  margin: 40px 0 10px;
  color: #0666ff;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .DetailBox__subTitle {
    font-size: 16px;
  }
}
.DetailBox__list {
  margin-bottom: 1.5em;
}
.DetailBox__list li {
  padding-left: 1em;
  text-indent: -1em;
}

/* NextPage
-----------------------------------------*/
.DetailBox .NextPage {
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .DetailBox .NextPage {
    margin-top: 50px;
  }
}
.DetailBox .NextPage p {
  display: inline-block;
}
.DetailBox .NextPage span {
  position: relative;
}

.DetailBox .NextPage span::before,
.DetailBox .NextPage span::after {
  content: "";
  position: absolute;
  top: calc(50% + 4.14px);
  display: inline-block;
  width: 20px;
  height: 20px;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .DetailBox .NextPage span::before,
  .DetailBox .NextPage span::after {
    top: calc(50% + 3.105px);
    width: 15px;
    height: 15px;
  }
}

.DetailBox .NextPage span::before {
  left: -47.42px;
  border-top: 2px solid #FFF;
}
@media screen and (max-width: 767px) {
  .DetailBox .NextPage span::before {
    left: -36.955px;
  }
}

.DetailBox .NextPage span::after {
  left: -35.42px;
  border-left: 2px solid #FFF;
}
@media screen and (max-width: 767px) {
  .DetailBox .NextPage span::after {
    left: -27.315px;
  }
}
.DetailBox .NextPage a::after {
  content: none;
}

/* ImgArea
-----------------------------------------*/
.ImgArea {
  text-align: center;
  margin: 24px 0 40px;
  overflow: hidden;
}

.ImgArea a:hover  { opacity: .8; }
.ImgArea a:focus  { opacity: .8; }
.ImgArea a:active { opacity: .8; }

.ImgList {
  display: grid;
  gap: 20px;
}
.ImgList__item {
  text-align: center;
}
.ImgList--col2 {
  grid-template-columns: repeat(2, calc((100% - 20px) / 2));
}
.ImgList--col3 {
  grid-template-columns: repeat(3, calc((100% - 40px) / 3));
}
@media screen and (max-width: 767px) {
  .ImgList--col3 {
    grid-template-columns: repeat(2, calc((100% - 20px) / 2));
  }
}
.ImgList__item figcaption {
  font-size: 14px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .ImgList__item figcaption {
    font-size: 12px;
  }
}
.ImgList__item--border img {
  border: 1px solid #d6d6d6;
}
