@media (min-width: 751px) and (max-width: 1200px){
  .hamburger {
    width: 4vw;
    height: 1.6vw;
    cursor: pointer;
    position: relative;
    z-index: 1100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
  }

  .hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 0;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    bottom: 0;
  }

  .header__nav {
    position: fixed;
    height: 100dvh;
    inset: 0;
    background:
      url("../images/header_nav-bg.png") no-repeat center / cover,
      #967823;
    color: #fff;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(100%);
    transition:
      opacity 0.3s,
      transform 0.3s,
      visibility 0.3s;
      padding: 145px 50px;
    overflow: auto;
  }
  .header__nav-logo {
    position: absolute;
    top: 5.3333vw;
    left: 5.3333vw;
    width: 15.33333vw;
  }
  .header__nav-lists {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: space-between;
    /* gap: 2.6666666666666vw; */
  }
  .header__nav-list {
    border-bottom: 1px solid #fff;
    padding: 2.666666666vw 1.3333333333vw;
    width: 48%;
    display: flex;
    align-items: center;
  }
  .header__nav-link {
    display: flex;
    align-items: center;
    gap: 5.33333333333333vw;
    color: #fff;
  }

  .header__nav-number {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.15em;
  }

  .header__nav-en {
    font-size: 30px;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.05em;
  }

  .header__nav-ja {
    font-size: 16px;
    margin: 0;
    line-height: 1;
    margin-top: 2vw;
  }

  /* =========================
  Open状態（JSで .is-open を付ける想定）
========================= */
  .header.active .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  /* ハンバーガー → × */
  .header.active .hamburger span:nth-child(1),
  .header.active .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: #fff;
  }

  .header.active .hamburger span:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
  }
}

@media screen and (max-width: 750px) {
  .wrapper {
    padding: 4vw 0 6.6667vw;
  }
  .section {
    padding: 0 5.3333vw;
  }
  .section:nth-of-type(n + 9) {
    padding-top: 2.6667vw;
  }
  .section:nth-of-type(n + 8) .wrapper {
    padding: 4vw 8vw 6.6667vw;
  }
  .section:nth-of-type(n + 8) h3 {
    font-size: 5.3333vw;
    height: 5.3333vw;
    width: calc(100% + 13.3333vw);
    padding-right: 13.3333vw;
    padding-bottom: 0.4vw;
    clip-path: polygon(5.3333vw 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .section:nth-of-type(n + 8) h3 span {
    padding-left: 1.3333vw;
  }
  .section:nth-of-type(n + 8) h4 {
    font-size: 2.2667vw;
    padding: 0.8vw 0;
    border-bottom: 0.1333vw solid #000;
  }

  .section__title .en {
    font-size: 9.8667vw;
  }
  .section:nth-of-type(n + 8) .section__title .en {
    padding-bottom: 0.8vw;
  }
  .section:nth-of-type(n + 8) .section__title .en::before {
    left: -5.6vw;
    width: 3.6vw;
    height: 4vw;
  }
  .section:nth-of-type(n + 8) .section__title .en::after {
    bottom: -0.8vw;
    width: 100vw;
    height: 0.8vw;
  }
  .section__title .ja {
    margin: 1.0667vw auto 0;
    font-size: 2.2667vw;
  }
  .section:nth-of-type(n + 8) .section__title .ja {
    margin: 2.1333vw auto 0;
  }
  .section__bg {
    top: 4vw;
    width: 67.8667vw;
    left: 2.9333vw;
  }
  /*-------------------------------------------
  ヘッダー
-------------------------------------------*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    padding: 0 5.33333vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: #fff;
    height: 18.666666666666666666666666vw;
  }
  .header__logo {
    width: 71.3333vw;
    margin: 0;
  }
  .hamburger {
    width: 4vw;
    height: 1.6vw;
    cursor: pointer;
    position: relative;
    z-index: 1100;
  }

  .hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 0;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    bottom: 0;
  }

  .header__nav {
    position: fixed;
    height: 100dvh;
    inset: 0;
    background-color: #8c734b;
    color: #fff;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(100%);
    transition:
      opacity 0.3s,
      transform 0.3s,
      visibility 0.3s;
    padding: 28vw 6.666666666vw;
    overflow: auto;
  }
  .header__nav-logo {
    position: absolute;
    top: 5.3333vw;
    left: 5.3333vw;
    width: 15.33333vw;
  }
  .header__nav-lists {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: space-between;
    /* gap: 2.6666666666666vw; */
  }
  .header__nav-list {
    border-bottom: 1px solid #fff;
    padding: 5.3333333333vw 2vw;
    width: 48%;
    width: calc(100% / 2 - 2.66666666666666666666vw);
    display: flex;
    align-items: center;
  }
  .header__nav-link {
    display: flex;
    /* align-items: center; */
    gap: 5.33333333333333vw;
    align-items: flex-start;
    color: #fff;
  }

  .header__nav-number {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.9333vw;
    line-height: 1;
    letter-spacing: 0.15em;
    margin-top: 1vw;
  }

  .header__nav-en {
    font-size: 4.5vw;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .header__nav-ja {
    font-size: 2.1333vw;
    margin: 0;
    line-height: 1;
    margin-top: 1.33333333333vw;
  }

  /* =========================
  Open状態（JSで .is-open を付ける想定）
========================= */
  .header.active .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  /* ハンバーガー → × */
  .header.active .hamburger span:nth-child(1),
  .header.active .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: #fff;
  }

  .header.active .hamburger span:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
  }
  /*-------------------------------------------
  メインビジュアル
-------------------------------------------*/
  .mainvisual {
    margin-top: 18.6667vw;
  }
  /*-------------------------------------------
  リード文
-------------------------------------------*/
  .lead {
    padding: 4vw 0;
    font-size: 2.8vw;
  }
  .lead p:last-of-type {
    margin-top: 4vw;
  }

  /*-------------------------------------------
  TITLE PARTNER
-------------------------------------------*/
  .title-partner__content {
    margin-top: 4vw;
  }
  .title-partner__img {
    width: 54.1333vw;
  }

  /*-------------------------------------------
  DATE
-------------------------------------------*/
  .date__content {
    margin-top: 4vw;
    font-size: 4.2667vw;
  }

  /*-------------------------------------------
  NEWS
-------------------------------------------*/
  .news__content {
    font-size: 2.93333333vw;
    padding: 6.6666666vw 2.666666666vw;
    margin-top: 4vw;
    max-height: 78.1333333vw;
    padding-right: 4vw;
  }
  /* スクロールバー全体 */
  .news__content::-webkit-scrollbar {
    width: 4vw;
  }
  .news__item {
    padding: 4vw 2.6666666vw;
  }
  .news__badge {
    width: 10.666666vw;
    height: 4vw;
    font-size: 2.66666666vw;
    top: -1.333333333333vw;
    left: 2.666666666vw;
  }
  .news__date {
    margin-top: 1.333333333vw;
  }

  /*-------------------------------------------
  TICKETS
-------------------------------------------*/
  .tickets__content {
    margin-top: 4vw;
  }
  .tickets__title {
    font-size: 4.2667vw;
  }
  .tickets__description {
    font-size: 2.9333vw;
    margin-top: 6.6667vw;
  }
  .tickets__img {
    width: 56vw;
    margin: 1.3333vw auto 0;
  }
  /*-------------------------------------------
  LIVE STREAMING
-------------------------------------------*/
  .live-streaming__content {
    margin-top: 4vw;
  }
  .live-streaming__items {
    gap: 2.6667vw;
  }
  .live-streaming__item {
    flex: 1 1 calc(50% - 1.3333vw);
  }
  .live-streaming__item-img {
    /* border: 0.1333vw solid #967823; */
    height: 26.6667vw;
  }
  .youtube-img {
    width: 29.3333vw;
  }
  .j-sport {
    width: 26.6667vw;
  }
  .live-streaming__item-text {
    margin-top: 2.6667vw;
    font-size: 2.5333vw;
  }

  /*-------------------------------------------
  YOUTUBE LIVE
-------------------------------------------*/
  .youtube-live__content {
    margin-top: 4vw;
  }
  .youtube-live__img {
    margin-top: 1.3333vw;
  }
  .youtube-live__text {
    font-size: 2.2667vw;
  }

  /*-------------------------------------------
  AWARDS
-------------------------------------------*/
  .section.awards .wrapper {
    padding-top: 13.3333vw;
  }

  .awards__items {
    gap: 4vw;
    margin-top: 4vw;
    padding: 0 5.3333vw;
  }
  .awards__item:nth-child(1) {
    width: calc(50% - 1.3333vw);
  }
  
  .awards__bg-img{
    height: calc(100% + calc(130 / 375 * 100vw));
  }
  /*-------------------------------------------
  CLUB AWARDS
-------------------------------------------*/
  .club-awards .section__bg {
    top: 28vw;
  }
  .section.club-awards .wrapper {
    padding-top: 37.3333vw;
  }
  .club-awards__block {
    margin-top: 5.3333vw;
  }
  .club-awards__team-name {
    font-size: 2.8vw;
    padding: 1.3333vw 0;
    gap: 1.3333vw;
  }
  .club-awards__team-name .img {
    width: 4.2667vw;
  }
  .club-awards__texts {
    margin-top: 1.8667vw;
  }
  .club-awards__text {
    font-size: 2.2667vw;
    padding: 0.5333vw 0;
    border-bottom: 0.1333vw solid #000;
  }
  .club-awards__text span {
    width: 6.6667vw;
    height: 3.3333vw;
    margin-right: 1.6vw;
  }
  .section__flex {
    margin-top: 0.6667vw;
    gap: 1.3333vw;
  }
  .flex-item {
    padding-top: 1.3333vw;
  }
  .club-awards .flex-item p {
    font-size: 2vw;
  }
  .flex-item .img {
    margin-top: 1.3333vw;
  }
  .section__icon {
    width: 4.2667vw;
  }
  .club-awards__description {
    font-size: 1.7333vw;
    border-bottom: 0.1333vw solid #000;
    padding: 1.6vw 0;
  }
  .section h3.club-awards__title--small {
    font-size: 4.1333vw;
  }

  /*-------------------------------------------
  LEADERS AWARDS
-------------------------------------------*/
  .leaders-awards__block {
    margin-top: 5.3333vw;
  }
  .flex-item p {
    font-size: 2.2667vw;
  }
  /*-------------------------------------------
  INDIVIDUAL AWARDS
-------------------------------------------*/
  .individual-awards__block {
    margin-top: 5.3333vw;
  }
  .ranking-lists {
    margin-top: 1.3333vw;
  }
  .ranking-list {
    font-size: 1.4667vw;
    padding: 0.6667vw 0;
    border-bottom: 0.1333vw solid #000;
  }
  .ranking-list span {
    width: 5.8667vw;
    height: 5.3333vw;
    font-size: 1.8667vw;
  }
  .ranking-list p {
    font-size: 1.7vw;
    margin-left: calc(1/375*100vw);
  }

  .ranking-list em{
    font-size: 2vw;
  }

  /*-------------------------------------------
  REGULAR SEASON BEST6
-------------------------------------------*/
  .regular-season-best6 .section__title {
    margin-left: -2.1333vw;
  }
  .regular-season-best6 .section__title.js-fade-x {
    transform: translateX(8vw);
  }
  .regular-season-best6 .section__title .en {
    font-size: 9.3333vw;
  }
  .section.regular-season-best6 .section__title .en::before {
    width: 2.9333vw;
    height: 3.3333vw;
    left: -4.2667vw;
  }
  .regular-season-best6__content {
    margin-top: 5.3333vw;
  }
  .regular-season-best6__women {
    margin-top: 5.3333vw;
  }
  .regular-season-best6__men {
    margin-top: 6.6667vw;
  }
  .section.regular-season-best6 h3 span {
    padding-right: 1.3333vw;
  }
  .section__special__icon {
    width: 4.2667vw;
  }
  .section__special-title {
    padding: 0 5.3333vw;
    height: 4vw;
    font-size: 3.7333vw;
    clip-path: polygon(5.3333vw 0, 100% 0, calc(100% - 5.3333vw) 100%, 0 100%);
  }
  .regular-season-best6 .section__special-title {
    width: 20vw;
  }
  .regular-season-best6__block {
    margin-top: 4vw;
  }
  .regular-season-best6__block:nth-of-type(n + 3) {
    margin-top: 5.3333vw;
  }
  .regular-season-best6__sub-title {
    font-size: 2.2667vw;
    margin-top: 1.3333vw;
  }

  .regular-season-best6__note{
    font-size: 2vw;
  }
  .regular-season-best6 .ranking-list {
    gap: 1.3333vw;
  }
  .regular-season-best6 .ranking-list span {
    width: 6.6667vw;
    height: 3.3333vw;
    font-size: 2.2667vw;
  }
  .regular-season-best6 .ranking-list p {
    font-size: 2.4vw;
  }
  .regular-season-best6 .section__flex {
    margin-top: 1.3333vw;
  }
  .regular-season-best6 .section__flex-column {
    margin-top: 1.3333vw;
  }
  /*-------------------------------------------
  LIBERO・RECEIVER OF THE YEAR
-------------------------------------------*/
  .libero-receiver-of-the-year__content {
    margin-top: 5.3333vw;
  }
  .libero-receiver-of-the-year__block:nth-of-type(n + 2) {
    margin-top: 4vw;
  }

  /*-------------------------------------------
  SPECIAL AWARDS
-------------------------------------------*/
  .special-awards {
    font-size: 2vw;
  }
  .special-awards__content {
    margin-top: 5.3333vw;
  }
  .special-awards__sub-block {
    margin-top: 4vw;
  }
  .special-awards .section__special-title {
    padding: 0 4vw;
    clip-path: polygon(4vw 0, 100% 0, calc(100% - 4vw) 100%, 0 100%);
  }
  .special-awards .section__special-title {
    width: 48vw;
  }
  .special-awards__text {
    margin-top: 2.6667vw;
  }
  .special-awards__sub-block:nth-of-type(n + 2) {
    margin-top: 6.6667vw;
  }
  .special-awards .section__flex-column,
  .special-awards .section__flex {
    margin-top: 3.3333vw;
  }
  .special-awards .section__flex .img {
    width: calc(100% / 2 - 0.6667vw);
  }
  .special-awards__block:nth-of-type(n + 2) {
    margin-top: 6.6667vw;
  }

  /*-------------------------------------------
  RECRUIT STAFFING AWARDS
-------------------------------------------*/
  .recruit-staffing-awards.section .section__title .en::before {
    top: 4.6667vw;
  }
  .recruit-staffing-awards__top-block {
    margin-top: 5.3333vw;
    border: 0.1333vw solid #967823;
    padding: 2.6667vw 2.5vw 2.6667vw;
  }
  .recruit-staffing-awards__title-text {
    padding: 0 1.3333vw;
    font-size: 2.1vw;
  }
  .recruit-staffing-awards__text {
    font-size: 2vw;
    /* flex-direction: column; */
  }

  .recruit-staffing-awards__text img{
    width: 17vw;
    margin-right: 1.5vw;

  }

  .btn {
    height: 4.2667vw;
    max-width: 42.6667vw;
    padding: 0 2vw;
    border-radius: 2.1333vw;
    margin: 4vw auto 0;
    font-size: 2.1333vw;
  }
  .recruit-staffing-awards__block {
    margin-top: 5.3333vw;
  }
  /*-------------------------------------------
  Instagram
-------------------------------------------*/
  .Instagram {
    padding-bottom: 5.3333vw;
  }
  .Instagram__message {
    font-size: 2.2667vw;
    padding: 1.3333vw 0 0.6667vw;
  }
  .Instagram__message::before,
  .Instagram__message::after {
    width: 0.1333vw;
  }
  .Instagram__message::before {
    left: -2.6667vw;
  }
  .Instagram__message::after {
    right: -2.6667vw;
  }

  /*-------------------------------------------
  PHOTO GALLERY
-------------------------------------------*/
  .section.photo-gallery {
    margin: 2.6667vw 0 0;
  }
  .photo-gallery .section__title .ja {
    margin: 1.0667vw auto 0;
  }
  .photo-gallery .wrapper {
    padding: 0 5.3333vw;
  }
  .photo-gallery__content {
    margin-top: 8vw;
  }
  .photo-gallery__images-wrap::after {
    height: 26.6667vw;
  }

  .photo-gallery__images-wrap.is-open{
    padding-bottom: calc(40/375*100vw)
  }

  .photo-gallery__images {
    gap: 1.8667vw;
  }
  .photo-gallery__image {
    width: calc(50% - 0.9333vw);
  }
  .photo-gallery__btn {
    font-size: 2.4vw;
    border-radius: 3.2vw;
    bottom: 1.3333vw;
    width: 23.4667vw;
    height: 6.6667vw;
    box-shadow:
      inset 0 0 0 0.2667vw #967823,
      inset 0 0 0 0.4vw #fff;
  }

  /*-------------------------------------------
  TITLE SPONSER
-------------------------------------------*/
  .title-sponsor .section__title .ja {
    margin: 1.0667vw auto 0;
  }
  .title-sponsor__content {
    margin-top: 8vw;
  }
  /*-------------------------------------------
  フッター
-------------------------------------------*/
  footer {
    padding: 0 5.333vw 10vw;
    text-align: center;
  }

  .footer__sns-icons {
    margin-top: 13.333vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8vw;
    padding: 0 2.667vw;
  }

  .footer__icons {
    margin: 13.333vw auto 0;
  }
  .footer__sns-icon {
    width: 6.667vw;
  }
  .footer__icon-img {
    width: 20.666666666vw;
    margin: 0 auto;
  }

  .footer__text {
    margin-top: 8vw;
    text-align: center;
    font-weight: 900;
    font-size: 5.333vw;
  }

  .footer__copy {
    margin-top: 13.333vw;
    font-weight: 400;
    font-size: 2.267vw;
  }
  /* トップへ戻るボタン */
  .back-to-top {
    position: fixed;
    width: 8vw;
    height: 8vw;
    background-color: #fff;
    border: 1px solid #967823;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: none;
    bottom: calc(10 / 375 * 100vw);
    right: calc(115 / 375 * 100vw);
  }
  .arrow {
    display: block;
    width: 2vw;
    height: 2vw;
    border-top: 1px solid #967823;
    border-left: 1px solid #967823;
    transform: rotate(45deg);
    margin-top: 0.8vw;
  }
  .back-to-top.is-show {
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.4s ease,
      visibility 0.4s;
  }
  .back-to-top:hover {
    background-color: #f0f0f0;
  }

  /*-------------------------------------------
  coming soon
-------------------------------------------*/

.--cs .ranking-list p,
.ranking-lists.--cs .ranking-list p{
  font-size: 3.6vw;
}

.club-awards .flex-item p.--cs{
  font-size: 3.4vw;
}

/*-------------------------------------------
  PRESS CONFERENCEE
-------------------------------------------*/
.press-conference__content {
  margin-top: 5.333vw;
}

.press-conference__title {
  font-size: 2.8vw;
}


.press-conference__items span{
display: block;
width: calc(100/750*100vw);
margin-right: calc(10/750*100vw);
}

.press-conference__items a{
display: flex;
justify-content: flex-start;
align-items: center;
font-weight: 700;
font-size: calc(17/750*100vw);
padding: calc(20/750*100vw) calc(10/750*100vw);
position: relative;
}

.press-conference__items a:after{
content: '';
position: absolute;
width: calc(9/750*100vw);
height: calc(15/750*100vw);
background-image: url('../images/arw.png');
background-size: cover;
right: calc(10/750*100vw);
}

.press-conference__items:nth-child(n+2){
border-top: 1px solid #000;
}

.press-conference__pct{
margin-bottom: 2.5vw;
}

.photo-gallery__hidden-wrapper{
  margin-top: 1.8667vw;
}
}


 