@charset "utf-8";

/* CSS変数 */
:root {
  --color-main: #C2250B;
  --font-serif: "ヒラギノ明朝 Pro", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, "MS P明朝", "MS PMincho", serif;
}

#contents-area{
  width: 100%;
  min-width: 990px;
}
.lyt-col-1 #contents-body {
  width: 100%;
}
#str-contents {
  padding: 0;
}

#basketball {
  color: #fff;
  background: var(--color-main);
  min-width: 300px;
  font-size: 16px;
  line-height: 1.8;
  overflow: hidden;
}
#basketball * {
  box-sizing: border-box;
}
#basketball ul,
#basketball ol,
#basketball dl,
#basketball dd,
#basketball dt {
  margin: 0;
  padding: 0;
}
#basketball img:not([class]),
#basketball svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}
#basketball a {
  outline: none;
  text-decoration: none;
}
#basketball a:hover {
  color: var( --color-main );
}
#basketball .sp {
  display: none;
}
#basketball .newwindowicon,
#basketball .pdficon {
  display: none;
}
#basketball .inner {
  max-width: 850px;
  margin-inline: auto;
  padding-inline: 25px;
}

/* animation */
.js-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s, transform 2s cubic-bezier(0.23, 1, 0.32, 1);
}
.js-fade-up.is-show {
  transform: translateY(0);
  opacity: 1;
}

/* mv */
#basketball .mv {
  position: relative;
}
#basketball .mv__inner {
  position: relative;
  min-width: 990px;
  max-width: 1400px;
  aspect-ratio: 1400 / 685;
  margin-inline: auto;
}
#basketball .mv__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin-inline: auto;
}
#basketball .mv__image > img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.05);
  opacity: 0;
  transition: transform 5s, opacity 1s linear;
}
#basketball .mv.is-show .mv__image > img {
  transform: scale(1);
  opacity: 1;
}
#basketball .mv__title {
  position: absolute;
  left: calc( 82% / 1400 * 100 );
  top: calc( 88% / 765 * 100 );
  width: calc( 1229% / 1400 * 100 );
  aspect-ratio: 1229 / 97;
  transform: translateX(-20px);
  transition: transform 1s ease, opacity 1s linear;
  opacity: 0;
  transition-delay: .8s;
}
#basketball .mv.is-show .mv__title {
  transform: translateX(0);
  opacity: 1;
}
#basketball .mv__text {
  position: absolute;
  right: calc(553% / 1400* 100);
  bottom: calc(56% / 765* 100);
  width: calc(847% / 1400* 100);
  aspect-ratio: 847 / 55;
  margin-bottom: 0;
  transform: translateX(-20px);
  transition: transform .5s ease, opacity .5s linear;
  opacity: 0;
  transition-delay: 1.2s;
}
#basketball .mv.is-show .mv__text {
  transform: translateX(0);
  opacity: 1;
}
#basketball .mv__text::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  background: #000;
  width: calc( 100vw - 1400px );
}

/* news */
#basketball .news {
  position: relative;
}
#basketball .news::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #BE0000;
  mix-blend-mode: multiply;
  opacity: 0.8;
}
#basketball .news-inner {
  width: 800px;
  margin-inline: auto;
  padding: 50px 0 100px;
}
#basketball .news__title {
  width: 198px;
  margin: 0 auto 19px;
  padding-bottom: 18px;
  font-family: var(--font-serif);
  font-size: 57px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  background: url(/mobile/set/data/special/sports/basketball/img/shared/news_title_line.svg) no-repeat center bottom;
  background-size: contain;
}
#basketball .news__main {
  position: relative;
  -webkit-filter: drop-shadow( 10px 10px 6px rgba(0,0,0,.25) );
          filter: drop-shadow( 10px 10px 6px rgba(0,0,0,.25) );
}
#basketball .news__main + .news__main {
  margin-top: 40px;
}
#basketball .news__main > a:before {
  content: '';
  display: block;
  position: absolute;
  right: 40px;
  top: calc( 50% - 15px );
  width: 30px;
  height: 30px;
  background: #000;
  -webkit-mask-image: url(/mobile/set/data/special/sports/basketball/img/shared/icon_arrow.svg);
          mask-image: url(/mobile/set/data/special/sports/basketball/img/shared/icon_arrow.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #000;
  opacity: .2;
  transition: transform .3s ease;
}
#basketball .news__article {
  display: flex;
  min-height: 115px;
  color: #000;
  background: #fff;
  transition: background .3s;
}
#basketball .news__thum {
  position: relative;
  width: 260px;
  aspect-ratio: 260 / 160;
  overflow: hidden;
}
#basketball .news__thum > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform .3s ease, -webkit-filter .3s ease;
  transition: transform .3s ease, filter .3s ease;
  transition: transform .3s ease, filter .3s ease, -webkit-filter .3s ease;
}
#basketball .news__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc( 100% - 260px );
  padding: 15px 40px;
}
#basketball .news__content-title {
  margin-right: 26px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}
#basketball .news__content-title:has( + .news__content-text) {
  margin-bottom: 10px;
}
#basketball .news__content-text {
  font-size: 14px;
  line-height: 1.5;
}
#basketball .news__main a:hover:before {
  transform: translateX( 4px );
}
#basketball a:hover .news__article {
  background-color: #e4e4e4;
}
#basketball a:hover .news__thum > img {
  transform: scale( 1.05 );
  -webkit-filter: contrast( 70% );
          filter: contrast( 70% );
}

#basketball .news__wc-title {
  padding-block: 32px 42px;
  color: #fff;
  background: #E60121;
  text-align: center;
}
#basketball .news__wc-title > img {
  width: 680px;
}
#basketball .news__article-main {
  padding: 40px;
  color: #333;
  background: #fff;
  line-height: 1.5;
}
#basketball .news__wc-cont01 {
  display: flex;
  flex-wrap: wrap;
}
#basketball .news__wc-lead {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
  font-size: 30px;
  line-height: 1.5;
  font-weight: bold;
  font-family: var(--font-serif);
}
#basketball .news__wc-img01 {
  width: 214px;
}
#basketball .news__wc-textwrap {
  width: calc(100% - 214px);
  padding-left: 30px;
}
#basketball .news__wc-subtitle {
  font-weight: bold;
}
#basketball .news__wc-outline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 15px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
}
#basketball .news__wc-outline > dt {
  display: grid;
  place-content: center;
  width: 5em;
  padding: 0.15em 0.25em;
  color: #fff;
  background: #000;
  text-align: center;
  font-weight: bold;
}
#basketball .news__wc-outline > dd {
  width: calc(100% - 5.5em);
  padding: 0.25em 0 0.25em 0.8em;
}
#basketball .news__wc-outline a {
  color: inherit;
  text-decoration: underline;
}
#basketball .news__wc-cont02 {
  background: #E6DDCE;
  overflow: hidden;
  margin-top: 40px;
}
#basketball .news__wc-cont02-header {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 40px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  z-index: 1;
}
#basketball .news__wc-cont02-header::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #E60121;
  transform: skew(-20deg);
  transform-origin: right top;
  z-index: -1;
}
#basketball .news__wc-cont02-main {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  padding: 22px 40px 40px;
}
#basketball .news__wc-cont02-image {
  width: 260px;
  margin: 0 auto;
  background: #000;
}
#basketball .news__wc-cont02-content {
  width: calc(100% - 260px);
  padding-right: 20px;
  font-size: 14px;
}
#basketball 
.news__wc-cont02-text {
  line-height: 1.5;
  margin-bottom: 19px;
}

#basketball .news__wc-cont03 {
  clear: both;
  margin-top: 40px;
  background: #E6DDCE;
  overflow: hidden;
}
#basketball .news__wc-cont03-header {
  position: relative;
  margin-bottom: 15px;
  font-weight: bold;
}
#basketball .news__wc-cont03-header::before {
  content: '';
  display: block;
  position: absolute;
  left: -20px;
  top: -40px;
  right: -20px;
  bottom: 0;
  background: #E60121;
  transform: rotate(-6deg);
}
#basketball .news__wc-cont03-header-inner {
  color: #fff;
  padding: 13px 38px 20px;
  transform: rotate(-6deg);
}
#basketball .news__wc-cont03-title01 {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  margin-bottom: 5px;
  font-size: 17px;
}
#basketball .news__wc-cont03-title01::before,
#basketball .news__wc-cont03-title01::after {
  content: '';
  display: block;
  width: 2px;
  height: 1.6em;
  background: #fff;
}
#basketball .news__wc-cont03-title01::before {
  transform: rotate(-20deg);
}
#basketball .news__wc-cont03-title01::after {
  transform: rotate(20deg);
}
#basketball .news__wc-cont03-title02 {
  font-size: 28px;
}
#basketball .news__wc-cont03-main {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px 40px;
}
#basketball .news__wc-cont03-image {
  width: 316px;
  min-width: 316px;
  border: 1px solid #fff;
  box-shadow: 9px 9px 0 rgba(0,0,0,.16);
  margin: 0;
}
#basketball .news__wc-cont03-content {
  width: 278px;
}
#basketball .news__wc-cont03-text {
  font-size: 14px;
  line-height: 1.5;
}
#basketball .news__wc-button {
  margin-top: 10px;
}
#basketball .news__button {
  display: inline-block;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 278px;
  height: 57px;
  text-align: center;
  z-index: 0;
}
#basketball .news__button > span {
  position: relative;
  display: flex;
  -webkit-box-orient: vertical;
  justify-content: center;
  align-items: center;
  gap: 22px;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #000;
  line-height: 1.3;
  font-size: 15px;
  font-weight: bold;
  transition: background .3s linear, transform .3s ease;
}
#basketball .news__button > span::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  -webkit-mask-image: url(/mobile/set/data/special/sports/basketball/img/shared/icon_arrow.svg);
          mask-image: url(/mobile/set/data/special/sports/basketball/img/shared/icon_arrow.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  transition: background .3s linear, transform .3s ease;
}
#basketball .news__button:hover span {
  background: var( --color-main );
  transform: translate( 2px, 2px );
}
#basketball .news__button:hover > span::after {
  transform: translateX( 4px );
}
#basketball .news__wc-note {
  margin: 0;
  font-size: 10px;
  text-align: right;
}

#basketball .news__nbarsi {
  position: relative;
  background: #1E418A;
  padding-bottom: 40px;
}
#basketball .news__nbarsi::before,
#basketball .news__nbarsi::after {
  content: '';
  display: block;
  position: absolute;
  width: 230px;
  height: 218px;
  background: url(/mobile/set/data/special/sports/basketball/img/shared/news_nba-rsi_corner.png) no-repeat right top / contain;
}
#basketball .news__nbarsi::before {
  right: 0;
  top: 0;
}
#basketball .news__nbarsi::after {
  left: 0;
  bottom: 0;
  transform: scale(-1);
}
#basketball .news__nba-main {
  position: relative;
  z-index: 1;
  margin-inline: 40px;
  padding: 0 40px 40px;
  color: #1E418A;
  background: url(/mobile/set/data/special/sports/basketball/img/p/news_nbarsi_architecture.png) no-repeat center bottom / contain #fff;
}
#basketball .news__nba-lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  top: -35px;
  margin: 0 auto;
  padding: 18px 100px;
}
#basketball .news__nba-lead::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #C8102F;
  z-index: -1;
  transform: skewX(-20deg);
}
#basketball .news__nba-lead img {
  width: 441px;
}
#basketball .news__nba-text-l {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: -0.05em;
  text-align: center;
  line-height: 1.5;
}
#basketball .news__nba-text {
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
#basketball .news__nba-outline {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-top: 32px;
  font-size: 14px;
  line-height: 1.5;
}
#basketball .news__nba-outline > dt {
  display: grid;
  place-content: center;
  width: 5.5em;
  color: #fff;
  background: #1E4189;
  text-align: center;
  font-weight: bold;
}
#basketball .news__nba-outline > dd {
  width: calc(100% - 5.5em);
  padding: 0.25em 0.5em;
  border: 2px solid #1E4189;
}

/* movie */
#basketball .movie {
  position: relative;
  padding-block: 95px 70px;
  background: radial-gradient(ellipse 150% 150%, #fff, #C4C4C4);
  z-index: 0;
}
#basketball .movie::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(/mobile/set/data/special/sports/img/p/bg_secondary-contents.webp) repeat-y center top;
  background-size: 100%;
  z-index: -1;
  mix-blend-mode: screen;
}
#basketball .movie__inner {
  max-width: 1028px;
  margin-inline: auto;
  padding-inline: 40px;
}
#basketball .movie__ttl {
  width: 606px;
  margin: 0 auto 78px;
}
#basketball .movie__thum {
  position: relative;
}
#basketball .movie__thum > img {
  transition: -webkit-filter .2s linear;
  transition: filter .2s linear;
  transition: filter .2s linear, -webkit-filter .2s linear;
}
#basketball a:hover .movie__thum > img {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}
#basketball .movie__thum::before,
#basketball .movie__thum::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
}
#basketball .movie__thum::before {
  top: calc( 50% - 46px );
  left: calc( 50% - 46px );
  width: 92px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  border: 4px solid transparent;
  transition: opacity .2s linear, scale .2s ease-out, background-color .2s ease, border .2s ease-out, transform .3s ease-out;
}
#basketball .movie__thum::after {
  left: calc( 50% - 12px );
  top: calc( 50% - 15px );
  width: 38px;
  height: 38px;
  background: url(/mobile/set/data/special/sports/img/shared/icon_play.svg) no-repeat center / contain;
}
#basketball a:hover .movie__thum::before {
  opacity: 0.7;
  background: transparent;
  border-color: #fff;
  transform: scale(1.1);
}
#basketball .movie__caption {
  text-align: left;
  margin-bottom: 10px;
}
#basketball .movie__caption img {
  width: auto;
  margin-inline: 0;
  height: 35px;
}
#basketball .movie__txt01 {
  width: 419px;
  margin: 70px auto 0;
}
#basketball .movie__txt02 {
  width: 537px;
  margin: 42px auto 0;
}

/* modal */
:root {
  --mmScrlOffset:0px;
}
.mmWrap {
  --mmPad:3vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: 0.2s opacity;
  background: rgba(17, 17, 17, 0.7333333333);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  outline: none;
}
.mmWrap.-ready {
  opacity: 1;
}
.mmInner {
  position: relative;
  width: 100%;
  max-height: 85vh;
  padding: var(--mmPad);
  overflow: auto;
}
.mmScreen {
  position: fixed;
  left: 0;
  top: 0;
  width: calc(100% - 17px);
  height: 100%;
}
.mmCnt {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  background: #fff;
  outline: none;
}
.mmCnt > img:only-child {
  max-width: 100%;
  max-height: calc(100vh - 8vw);
}
.mmWrap[data-mm-type=iframe] iframe {
  width: 100vw;
  max-width: 100%;
  height: calc(100vh - var(--mmPad) * 2);
}
.mmWrap[data-mm-type=YouTube] .mmCnt {
  width: 100%;
  background: unset;
}
.mmWrap[data-mm-type=YouTube] iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.mmCaption {
  position: relative;
  color: #fff;
}
.mmCaption:not(:empty) {
  margin-top: 1rem;
  text-align: center;
}
.mmClose, .mmPrev, .mmNext {
  all: unset;
  position: fixed;
  overflow: hidden;
  border-radius: 50%;
  white-space: nowrap;
  text-indent: 100%;
  cursor: pointer;
  transition: 0.15s;
}
.mmClose {
  right: 0;
  top: 0;
  height: 80px;
  width: 80px;
}
.mmClose:before, .mmClose:after {
  content: "";
  display: block;
  width: 70%;
  height: 5%;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  translate: -50% -50%;
}
.mmClose:before {
  rotate: 45deg;
}
.mmClose:after {
  rotate: -45deg;
}
.mmPrev, .mmNext {
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(136, 136, 136, 0.7333333333);
}
.mmPrev:before, .mmNext:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35%;
  aspect-ratio: 1/1;
  border: #fff solid;
  border-width: 3px 0 0 3px;
  translate: -50% -50%;
}
.mmPrev {
  left: 1.5vw;
}
.mmPrev:before {
  rotate: -45deg;
  margin-left: 2px;
}
.mmNext {
  right: calc(1.5vw + var(--mmScrlOffset));
}
.mmNext:before {
  rotate: 135deg;
  margin-left: -2px;
}


/* reason */
#basketball .content-wrapper {
  position: relative;
  background: url(/mobile/set/data/special/sports/basketball/img/p/reason_bg.png) repeat center;
  background-size: 100%;
}
#basketball .reason {
  position: relative;
  padding-block: 117px 120px;
}
#basketball .reason::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(at 50% 50%, transparent 0, #CD0102 100%);
  opacity: .7;
}
#basketball .reason::after {
  content: '';
  display: block;
  position: absolute;
  right: min(67%, calc(50% + 122px));
  bottom: 0;
  width: clamp(300px, 42%, 554px);
  height: 481px;
  background: url(/mobile/set/data/special/sports/basketball/img/shared/reason_img_otosan.png) no-repeat center bottom;
  background-size: contain;
  mix-blend-mode: luminosity;
  z-index: 0;
}
#basketball .reason__title {
  position: relative;
  margin-bottom: 54px;
  font-family: var(--font-serif);
  font-size: 55px;
  font-weight: bold;
  text-align: center;
  z-index: 1;
}
#basketball .reason__title::before {
  position: absolute;
  left: -21px;
  top: -58px;
  content: attr(data-en);
  font-family: var(--font-serif);
  font-size: 180px;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  opacity: .1;
  z-index: -1;
}
#basketball .reason__title span {
  position: relative;
  display: block;
  line-height: 1.2;
}
#basketball .reason__title span + span {
  margin-top: 25px;
}
#basketball .reason__title span::before {
  content: '';
  display: block;
  position: absolute;
  left: calc( 50% - 260px );
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: -1;
  transform: skewX(-25deg);
  transform-origin: left bottom;
}
#basketball .reason__title span:nth-child(2):before {
  left: 0;
  top: 0;
  right: calc( 50% - 260px );
  transform-origin: right top;
}
#basketball .reason__text {
  margin: 0;
}
#basketball .reason__inner {
  position: relative;
  width: 600px;
  margin-inline: auto;
  z-index: 1;
}
#basketball .reason__sponsor-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 52px auto 0;
}
#basketball .reason__sponsor {
  position: relative;
  width: 200px;
  text-align: center;
}
#basketball .reason__sponsor-logo {
  width: 200px;
}
#basketball .reason__sponsor-text {
  font-size: 12px;
  margin-top: 16px;
  font-weight: bold;
  white-space: nowrap;
}

/* case */
#basketball .case {
  position: relative;
  padding-bottom: 120px;
  z-index: 1;
}
#basketball .case::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 90px;
  height: 220px;
  border-top: 69px solid #fff;
  border-bottom: 69px solid #fff;
  box-sizing: border-box;
  opacity: .5;
  z-index: -1;
}
#basketball .case__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
  margin-bottom: 80px;
  padding-top: 12px;
  font-family: var(--font-serif);
  font-size: 55px;
  font-weight: bold;
  text-align: center;
  border-top: 127px solid #fff;
  border-bottom: 127px solid #fff;
  z-index: 1;
}
#basketball .case__title::before {
  position: absolute;
  left: -21px;
  top: -122px;
  content: attr(data-en);
  color: #E77A1C;
  font-family: var(--font-serif);
  font-size: 180px;
  font-weight: normal;
  text-align: left;
  line-height: 1;
  z-index: -1;
}
#basketball .case__inner {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
#basketball .case-block {
  color: #000;
  background: #fff;
}
#basketball .case-block__cover {
  aspect-ratio: 2 / 1;
}
#basketball .case-block__cover > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#basketball .case-block__main-container {
  padding-bottom: 75px;
}
#basketball .case-block__title {
  position: relative;
  width: 360px;
  margin: -36px auto 30px;
  padding-block: 10px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  letter-spacing: .05em;
  z-index: 0;
}
#basketball .case-block__title::before {
  content: '';
  display: block;
  position: absolute;
  left: 17px;
  top: 0;
  right: 17px;
  bottom: 0;
  background: var( --color-main );
  z-index: -1;
  transform: skewX( -25deg );
}
#basketball .case-block__main {
  padding-inline: 75px;
}
#basketball .case-block__horizonal-block {
  display: flex;
  align-items: center;
  gap: 30px;
}
#basketball .case-block__horizonal-block .case-block__text {
  width: calc( 100% - 180px - 30px );
}
#basketball .case-block__icon {
  width: 180px;
}
#basketball .case-block__text {
  margin: 0;
  text-align: justify;
}
#basketball .case-block__text a:not([class]) {
  text-decoration: underline;
  color: inherit;
}
#basketball .case-block__text + .case-block__text {
  margin-top: 1em;
}
#basketball .case-block__lead {
  position: relative;
  box-decoration-break: clone;	
	-webkit-box-decoration-break: clone;
	display: inline;
  padding: 0px 11px;
  color: #fff;
  background-color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.8;
}
#basketball .case-block__basketlive-plan {
  margin-top: 64px;
}
#basketball .case-block__plan-container {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
#basketball .case-block__plan {
  width: 302px;
}
#basketball .case-block__plan-title {
  position: relative;
  width: 180px;
  margin: 0 auto -21px;
  padding: 3px 25px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: .05em;
  z-index: 1;
}
#basketball .case-block__plan-title::before {
  content: '';
  display: block;
  position: absolute;
  left: calc( 50% - 80px );
  top: 0;
  bottom: 0;
  background: var(--color-main);
  width: 160px;
  z-index: -1;
  transform: skewX(-25deg);
}
#basketball .case-block__plan-content {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E6DDCE;
  height: 160px;
  padding-top: 20px;
}
#basketball .case-block__plan-content > img {
  height: 59px;
}
#basketball .case-block__image{
  position: relative;
  margin-block: 20px 40px;
}
#basketball .case-block__button {
  margin-top: 48px;
  text-align: center;
}
#basketball .button {
  display: inline-block;
  position: relative;
  align-items: center;
  width: 310px;
  height: 76px;
  text-align: center;
  z-index: 0;
}
#basketball .button::before {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background: linear-gradient( 30deg, #E36F26, #CD0102);
  z-index: -1;
  opacity: .6;
}
#basketball .button > span {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #000;
  line-height: 1.3;
  font-size: 20px;
  font-weight: bold;
  transition: background .3s linear, transform .3s ease;
}
#basketball .button > span::after {
  content: '';
  display: block;
  position: absolute;
  right: 25px;
  top: calc( 50% - 12px );
  width: 24px;
  height: 24px;
  background: #fff;
  -webkit-mask-image: url(/mobile/set/data/special/sports/basketball/img/shared/icon_arrow.svg);
          mask-image: url(/mobile/set/data/special/sports/basketball/img/shared/icon_arrow.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  transition: transform .3s ease;
}
#basketball .button:hover span {
  background: var( --color-main );
  transform: translate( 2px, 2px );
}
#basketball .button:hover > span::after {
  transform: translateX( 4px );
}

/* archive */
#basketball .case-archive {
  margin-top: 136px;
  color: #000;
  background: #fff;
}
#basketball .case-archive__title {
  position: relative;
  width: 360px;
  margin: -36px auto 30px;
  padding-block: 10px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  letter-spacing: .05em;
  z-index: 0;
}
#basketball .case-archive__title::before {
  content: '';
  display: block;
  position: absolute;
  left: 17px;
  top: 0;
  right: 17px;
  bottom: 0;
  background: var(--color-main);
  border: 2px solid #fff;
  z-index: -1;
  transform: skewX(-25deg);
}
#basketball .case-archive__main-container {
  margin-top: 54px;
  padding-bottom: 75px;
  overflow: hidden;
}

.case-block__archive {
  margin-top: 85px;
}
#basketball .archive + .archive {
  margin-top: 34px;
}
#basketball .archive__title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 51px;
  margin-left: 62px;
  padding: 0 20px 6px 30px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 66px;
  line-height: 1;
  z-index: 1;
}
#basketball .archive__title::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  transform: skewX( -25deg );
  transform-origin: left bottom;
  z-index: -1;
}
#basketball .archive__title .js-accordion__toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
#basketball .archive__title .js-accordion__toggle::before,
#basketball .archive__title .js-accordion__toggle::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
}
#basketball .archive__title .js-accordion__toggle::after {
  transform: rotate( 90deg );
  transition: transform .2s ease;
}
#basketball .archive__title.is-open .js-accordion__toggle::after {
  transform: rotate( 0 );
}
#basketball .archive__content {
  padding: 40px 40px 40px 75px;
}
#basketball .archive__entry {
  position: relative;
}
#basketball .archive__entry + .archive__entry {
  margin-top: 48px;
}
#basketball .archive__entry > a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
#basketball .archive__entry-thum {
  width: 365px;
  aspect-ratio: 365 / 242;
  overflow: hidden;
}
#basketball .archive__entry-thum > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform .3s ease-out, -webkit-filter .3s ease-out;
  transition: transform .3s ease-out, filter .3s ease-out;
  transition: transform .3s ease-out, filter .3s ease-out, -webkit-filter .3s ease-out;
}
.archive__entry-text-wrap {
  transition: transform .3s ease-out;
}
#basketball .archive__entry-text {
  position: relative;
  box-decoration-break: clone;	
	-webkit-box-decoration-break: clone;
	display: inline;
  padding: 6px 12px;
  margin-left: -36px;
  color: #fff;
  background-color: #000;
  font-size: 19px;
  line-height: 2.35;
  transition: background .3s linear;
}
#basketball a:hover .archive__entry-text-wrap {
  transform: translateX( 2px );
}
#basketball a:hover .archive__entry-text {
  background-color: var( --color-main );
}
#basketball a:hover .archive__entry-thum > img {
  transform: scale( 1.01 );
  -webkit-filter: contrast(70%);
          filter: contrast(70%);
}

/* accordion */
#basketball .js-accordion__button {
  cursor: pointer;
}
#basketball .js-accordion__content {
  display: none;
}
#basketball .js-accordion__button.is-open + .js-accordion__content {
  display: block;
}

/* official-app */
#basketball .official-app-wrapper {
  position: relative;
  max-width: none;
  margin-block: 120px;
}
#basketball .official-app-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 220px;
  border-top: 69px solid #fff;
  border-bottom: 69px solid #fff;
  opacity: .5;
  box-sizing: border-box;
}
#basketball .official-app {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  background: url(/mobile/set/data/special/sports/basketball/img/p/official-app_bg.png) no-repeat left bottom #404040;
  background-size: 100%;
  padding: 95px;
}
#basketball .official-app__title {
  margin-bottom: 48px;
  font-size: 30px;
  text-align: center;
}
.official-app__text-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
#basketball .official-app__icon {
  width: 150px;
  margin: 0 auto;
}
#basketball .official-app__text {
  width: calc( 100% - 190px );
}
#basketball .app-link {
  display: flex;
  gap: 42px;
  margin: 56px auto 0;
}
#basketball .app-link a {
  transition: -webkit-filter .3s;
  transition: filter .3s;
  transition: filter .3s, -webkit-filter .3s;
}
#basketball .app-link a:hover {
  -webkit-filter: contrast(70%);
          filter: contrast(70%);
}

/* sports-footer */
#basketball .sports-footer {
  padding-block: 80px;
  color: #3B4043;
  background: linear-gradient( 30deg, #dddfe0, #c7c9ca);
  text-align: center;
}
#basketball .sports-footer a {
  transition: -webkit-filter .3s;
  transition: filter .3s;
  transition: filter .3s, -webkit-filter .3s;
}
#basketball .sports-footer a:hover {
  -webkit-filter: contrast( 70% );
          filter: contrast( 70% );
}
#basketball .sports-footer__inner {
  display: flex;
  gap: 110px;
}
#basketball .sports-footer__section {
  width: calc( 100% - ( 110px / 2 ) );
}
#basketball .sports-footer__section-title {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
#basketball .sports-footer__section-title::after {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  margin: 4px auto 12px;
  background: #3B4043;
}
#basketball .sports-footer__banner {
  display: block;
}
#basketball .sports-footer__banner + .sports-footer__banner {
  margin-top: 16px;
}
