/*common*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
}

.literata {
  font-family: "Literata", serif;
}

.noto_jp {
  font-family: "Noto Serif JP", serif;
}

ul,
ol {
  list-style: none;
}

picture {
  max-width: 100%;
  width: 100%;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}

iframe {
  border: none;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  -webkit-transition: all 0.5s !important;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }

  .op:hover img {
    opacity: 0.7;
    -webkit-opacity: 0.7;
    -moz-opacity: 0.7;
  }
}

.op img {
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  -webkit-transition: all 0.5s !important;
}

.sp,
.pad {
  display: none;
}

.omission {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inner {
  width: 1200px;
  margin: 0 auto;
  max-width: calc(100% - 32px);
}

.layout {
  padding: 112px 0;
}
.gold {
  color: var(--main-light-gold);
}
.black {
  color: #000;
}

@font-face {
  font-family: "Helvetica Extra Compressed";
  src: url(../font/Helvetica\ Extra\ Compressed\ Regular.otf);
}

.btn_common {
  background-color: #000;
  color: #fff !important;
  border-radius: 10px;
  height: 55px;
  background-image: url("../image/icon/btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (hover: hover) {
  .btn_common:hover {
    background-color: #fff;
    color: #000 !important;
    background-image: url("../image/icon/arrow_black.svg");
    opacity: 1;
  }

  .btn_black:hover {
    border: 1px solid #000;
    background-color: #fff;
    background-image: url("../image/icon/arrow_black.svg");
    color: #000 !important;
    opacity: 1;
  }
}

.btn_black {
  display: block;
  border-radius: 41px;
  border: 1px solid #fff;
  background-color: #000;
  color: #fff !important;
  width: 311px;
  height: 50px;
  background-image: url("../image/icon/btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn_orange {
  display: block;
  border-radius: 41px;
  border: 1px solid #fff;
  background: #f08200;
  color: #fff !important;
  width: 311px;
  height: 50px;
  background-image: url("../image/icon/btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (hover: hover) {
  .btn_orange:hover {
    background-color: #000;
    opacity: 1;
  }
}

.main_title {
  color: #d8b667;
  font-family: "Mohave", sans-serif;
  font-size: 76px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.black_title {
  color: #000;
  font-family: "Mohave", sans-serif;
  font-size: 109px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.white_title {
  color: #fff;
  font-family: "Mohave", sans-serif;
  font-size: 109px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.sub_black {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 4px;
}
.sub_white {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 4px;
}

.title_var {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.var {
  background-image: var(--gold03);
  max-width: 100%;
  height: 4px;
}
.varticalline_box {
  display: flex;
  gap: 16px;
  position: absolute;
  top: 0;
  right: 20%;
  height: 100%;
}
.varticalline {
  width: 24px;
  height: 100%;
  background-color: #d8b667;
}
.bg-gold {
  width: 100%;
  height: 100%;
  border-radius: 40px 0px;
  background: var(
    --gold01,
    linear-gradient(180deg, #eacf8c 0%, #d8b667 50%, #9f7126 100%)
  );
}

@media screen and (max-width: 931px) {
  .pad {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .layout {
    padding: 60px 0;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .main_title {
    font-size: 56px;
  }
  .black_title {
    font-size: 94px;
  }
  .white_title {
    font-size: 94px;
  }
  .sub_black {
    font-size: 14px;
  }
  .sub_white {
    font-size: 14px;
  }
}

/* !header
---------------------------------------------------------- */
#giants_lp_header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 72px;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  font-family: "Noto Sans JP", serif;
}
#giants_lp_header .headleft,
#giants_lp_header .headright {
  display: flex;
  align-items: center;
}
.giants_lp_btn_menu {
  cursor: pointer;
  position: relative;
  width: 72px;
  height: 72px;
  padding: 16px 0 15px;
  transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
  transition-duration: 0.4s;
  transition-property: opacity;
  text-align: center;
}
.giants_lp_btn_menu a {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 auto;
}
.giants_lp_btn_menu:after {
  content: "メニュー";
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}
.giants_lp_btn_menu span {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 2.25px;
  margin: 0 auto;
  background-color: #fff;
}
.giants_lp_btn_menu span:first-child {
  top: 3.75px;
}
.giants_lp_btn_menu span:nth-child(2) {
  top: 10.88px;
}
.giants_lp_btn_menu span:last-child {
  bottom: 3.75px;
}
#giants_lp_navi {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  transform: scale(1.1, 1.1);
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: #000;
}
#giants_lp_navi.open {
  opacity: 1;
  pointer-events: inherit;
  transform: scale(1, 1);
  overflow-y: scroll;
}
#giants_lp_navi .navTop {
  display: flex;
}
#giants_lp_navi .menuNav a {
  display: block;
  position: relative;
  padding: 22px 0 10px;
  width: 72px;
  height: 72px;
  text-align: center;
}
#giants_lp_navi .menuNav a:after {
  content: "閉じる";
  display: block;
  margin-top: 5px;
  font-size: 1rem;
}
#giants_lp_navi .menuNav span {
  display: block;
  margin: 3px auto;
  width: 18px;
  height: 2.25px;
  background-color: #fff;
}
#giants_lp_navi .menuNav span:first-child {
  top: 50%;
  transform: translateY(2.5px) rotate(45deg);
}
#giants_lp_navi .menuNav span:nth-child(2) {
  top: 50%;
  transform: translateY(-2.5px) rotate(-45deg);
}
#giants_lp_navi .menuSearch {
  padding-right: 7.2rem;
  width: 100%;
}
#giants_lp_navi .menuSearch .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
#giants_lp_navi .searchBox {
  max-width: 400px;
}
#giants_lp_navi .searchBox .yahoo {
  margin-bottom: 2px;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.05em;
}
#giants_lp_navi .searchBox .yahooSearch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 2px;
}
#giants_lp_navi .yahooSearch input {
  height: 35px;
  border: 0;
  font-family: "Noto Sans JP", sans-serif;
}
#giants_lp_navi .yahooSearch .icon {
  margin: 0 8px 0 4px;
  width: 20px;
  height: 20px;
}
#giants_lp_navi .yahooSearch .search {
  width: calc(100% - 94px);
}
#giants_lp_navi .yahooSearch .button {
  width: 62px;
  background-color: #000;
  border-radius: 2px;
  font-size: 15px;
  color: #fff;
}
#giants_lp_navi .bor {
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
}
#giants_lp_navi .inner {
  padding: 0 40px;
  margin: 0 auto;
  width: 1280px;
  height: auto;
  max-width: 100%;
}
#giants_lp_navi .menuColumn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#giants_lp_navi .menuColumn .column {
  position: relative;
  border-left: 1px solid #292929;
}
#giants_lp_navi .menuColumn .column:last-child {
  border-right: 1px solid #292929;
}
#giants_lp_navi .level1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  position: relative;
  border-bottom: 1px solid #292929;
  font-weight: 700;
  font-size: 1.6rem;
}
#giants_lp_navi .level1 p {
  padding-right: 8px;
}
#giants_lp_navi .level2 {
  border-bottom: 1px solid #292929;
  font-size: 1.6rem;
}
#giants_lp_navi .level2 .tit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  font-weight: 700;
}
#giants_lp_navi .level2 ul {
  padding: 0 20px 15px;
}
#giants_lp_navi .level2 li {
  margin-bottom: 5px;
}
#giants_lp_navi .level2 li a {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  font-size: 1.5rem;
}
#giants_lp_navi .level2 li a:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: #fff;
}
#giants_lp_navi .menuLanguage ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 14px 3px 14px 0;
  position: relative;
}
#giants_lp_navi .menuLanguage li {
  position: relative;
  padding: 0 17px 0 16px;
}
#giants_lp_navi .menuLanguage li:not(:last-child):after {
  content: "";
  position: absolute;
  background-color: #292929;
  top: 1px;
  right: 0;
  width: 1px;
  height: calc(100% - 3px);
}
#giants_lp_navi .menuLanguage li a {
  font-size: 1.5rem;
}
#giants_lp_navi .menuLanguage li a.on {
  pointer-events: none;
  font-weight: 700;
  color: #f59b00;
}
#giants_lp_headlogo {
  position: relative;
  margin-left: 48px;
  width: 116px;
}
#giants_lp_header .headlink {
  position: relative;
  z-index: 4;
  display: flex;
  background-color: #000;
  font-size: 15px;
}
#giants_lp_header .headlink li {
  flex: 1 0 auto;
  position: relative;
}
#giants_lp_header .headlink li:not(:first-child) {
  margin-left: 24px;
}
#giants_lp_header .headlink li a {
  display: flex;
  align-items: center;
}
#giants_lp_header .headlink .icon {
  width: 20px;
  height: 20px;
}
#giants_lp_header .headlink .text {
  margin-left: 8px;
  line-height: 1.5;
  font-size: 1.5rem;
}
#giants_lp_header .myCenter {
  margin-left: 48px;
}
#giants_lp_header .myCenter a {
  display: block;
  width: 72px;
  height: 72px;
  padding: 16px 0 14px;
  text-align: center;
  font-size: 1rem;
}
#giants_lp_header .myCenter .text {
  margin-top: 2px;
}
#giants_lp_header .tickets {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 16px;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
}
#giants_lp_header .tickets a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-width: 408px;
  height: 48px;
  background: #f48700;
  border-radius: 6px;
  border: 1px solid #fff;
}

@media (hover: hover) {
  #giants_lp_header .tickets a:hover {
    opacity: 1;
    background: #0a0a0c;
    border-color: #0a0a0c;
    color: #f48700;
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  #giants_lp_wrapper {
    padding: 108px 0 0;
    min-width: inherit;
  }
  #giants_lp_header {
    display: block;
    height: auto;
  }
  #giants_lp_header .headleft {
    padding-right: 60px;
    width: 100%;
  }
  .giants_lp_btn_menu {
    padding: 12px 0 8px;
    width: 60px;
    height: 60px;
  }
  #giants_lp_headlogo {
    margin: 0 auto;
  }
  #giants_lp_header .headlink {
    width: 100%;
  }
  #giants_lp_header .headlink li:after {
    position: absolute;
    top: -1px;
    left: -1px;
    display: block;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    pointer-events: none;
    content: "";
    border: 1px solid #292929;
    border-radius: 0;
  }
  #giants_lp_header .headlink li:not(:first-child) {
    margin-left: 0;
  }
  #giants_lp_header .headlink li a {
    display: flex;
    justify-content: center;
    padding: 14px 0;
  }
  #giants_lp_header .headlink .icon {
    width: 16px;
  }
  #giants_lp_header .headlink .text {
    margin-left: 6px;
    font-size: 1.2rem;
  }
  #giants_lp_header .myCenter {
    position: absolute;
    right: 0;
    top: 0;
  }
  #giants_lp_header .myCenter a {
    width: 60px;
    height: 60px;
    padding: 12px 0 8px;
    font-size: 1rem;
  }

  #giants_lp_navi .navTop {
    display: block;
  }
  #giants_lp_navi .menuSearch .inner {
    display: block;
  }
  #giants_lp_navi .menuNav {
    border-bottom: 1px solid #292929;
  }
  #giants_lp_navi .menuNav a {
    display: block;
    position: relative;
    padding: 15px 0 10px;
    width: 60px;
    height: 60px;
  }
  #giants_lp_navi .menuSearch {
    padding: 16px;
  }
  #giants_lp_navi .inner {
    display: grid;
    grid-template-columns: 1fr 40px;
    padding: 0;
    width: auto;
  }
  #giants_lp_navi .scrollbar {
    overflow: hidden;
    overflow-y: scroll;
    height: calc(100vh - 150px);
  }
  #giants_lp_navi .menuColumn {
    display: block;
  }
  #giants_lp_navi .level1 {
    font-size: 1.4rem;
  }
  #giants_lp_navi .level2 ul {
    display: none;
  }
  #giants_lp_navi .level2 .tit {
    background: url("../img/ico_plus.png") no-repeat right 20px center;
    font-size: 1.4rem;
  }
  #giants_lp_navi .level2 .tit.open {
    background: url("../img/ico_minus.png") no-repeat right 20px center;
  }
  #giants_lp_navi .menuLanguage {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 150px;
    bottom: 0;
    width: 40px;
  }
  #giants_lp_navi .menuLanguage ul {
    display: block;
    padding: 0;
  }
  #giants_lp_navi .menuLanguage li {
    position: relative;
    padding: 18px 0 19px;
    text-align: center;
  }
  #giants_lp_navi .menuLanguage li:not(:last-child):after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 20px;
    height: 1px;
    transform: translateX(-50%);
  }
  #giants_lp_navi .menuColumn .column {
    border-right: 1px solid #292929;
  }
}

/* background
-----------------------------------------------------------*/
.bg_box {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
  background-size: cover;
}

.bg_box img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

/* main content
-----------------------------------------------------------*/
.main_content_200wins {
  padding-left: 16px;
}

@media screen and (max-width: 768px) {
  .main_content_200wins {
    padding-left: 16px;
  }
}

/* navigation
-----------------------------------------------------------*/
.navigation {
  position: fixed;
  width: 100%;
  height: 72px;
  bottom: 0;
  background-color: #000;
  color: var(--gold01);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 98;
  text-align: center;
  font-family: "Mohave", sans-serif;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 4px solid #bc9b5f;
}
.navigation span {
  font-size: 14px;
}
.nav_list {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.nav_list .nav_item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #bc9b5f;
  text-align: center;
  font-family: "Helvetica Extra Compressed";
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
}
.nav_list .nav_item span {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
}

@media (hover: hover) {
  .nav_list .nav_item:hover {
    color: var(--main-light-gold);
  }
}

.navigation .pagetop {
  position: absolute;
  bottom: 24px;
  right: 24px;
  margin-top: 4px;
}
.nav_open_btn {
  display: none;
}
.navigation .close_btn {
  display: none;
}

@media screen and (max-width: 931px) {
  .navigation {
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    overflow-y: scroll;
    padding: 32px;
    border-bottom: unset;
  }
  .navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }
  .nav_list {
    gap: 10px;
  }
  .nav_list .nav_item a {
    gap: 0px;
    font-size: 40px;
    text-align: left;
    line-height: 100%;
  }
  .nav_list .nav_item span {
    text-align: start;
  }
  .nav_list .line {
    display: block;
    background-image: var(--gold03);
    max-width: 100%;
    height: 2px;
  }
  .navigation.open {
    opacity: 1;
    z-index: 120;
    pointer-events: auto;
  }
  .nav_open_btn {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 98;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-direction: column;

    background-color: #bc9b5f;
    width: 60px;
    height: 60px;
  }
  .navigation .close_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-direction: column;

    background-color: #bc9b5f;
    width: 60px;
    height: 60px;
  }

  .nav_open_btn img,
  .navigation .close_btn img {
    width: 34px;
  }

  .nav_open_btn p,
  .navigation .close_btn p {
    color: #000;
    font-family: "Helvetica Extra Compressed";
    font-size: 20px;
    font-weight: 500;
    line-height: 88%;
  }

  .navigation .pagetop {
    display: none;
  }
  .nav_list span {
    width: 100%;
    display: block;
  }
}
/* root
-----------------------------------------------------------*/
:root {
  --gradation01: linear-gradient(180deg, #eacf8c 0%, #d8b667 50%, #9f7126 100%);

  --gold02: linear-gradient(
    180deg,
    #fffeb3 0%,
    #f9d14e 20%,
    #cc9a15 40%,
    #f9d14e 60%,
    #fffeb3 100%
  );
  --gold03: linear-gradient(
    90deg,
    #fffeb3 0%,
    #f9d14e 25%,
    #cc9a15 50%,
    #f9d14e 75%,
    #fffeb3 100%
  );
}

/* main title
-----------------------------------------------------------*/
.main_title_200wins {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 1200px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  border-bottom: 4px solid #bc9b5f;
}

.main_title_200wins .title_container {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: start;
}

.main_title_200wins .title_container h2 {
  color: #bc9b5f;
  font-family: "Helvetica Extra Compressed";
  font-size: 72px;
  font-weight: 500;
  line-height: 74%;
  margin-bottom: 10px;
}

.main_title_200wins .title_container p {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
.main_title_200wins span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: #bc9b5f;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .main_title_200wins {
    gap: 16px;
  }

  .main_title_200wins .title_container {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }

  .main_title_200wins .title_container h2 {
    font-size: 60px;
    line-height: 88%;
    margin-bottom: 0;
  }

  .main_title_200wins .title_container p {
    font-size: 16px;
  }
}

/* kv
-----------------------------------------------------------*/
#kv {
  width: 100vw;
  max-width: 100%;
  height: 100%;
  padding-top: 72px;

  position: relative;
  z-index: 30;
}

.top_text {
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
  width: 900px;
  max-width: calc(100% - 64px);
  margin: 0 auto;
  padding-top: 80px;
}

.top_text h4 {
  color: #bc9b5f;
  text-align: center;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.44px;
}

.top_text p {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.64px;
}

@media screen and (max-width: 768px) {
  #kv {
    padding-top: 108px;
  }

  .top_text {
    padding-top: 64px;
  }

  .top_text h4 {
    font-size: 24px;
  }

  .top_text p {
    text-align: start;
    font-size: 14px;
  }
}

/* ROAD OF 200 WINS
-----------------------------------------------------------*/
#roadof200wins {
  padding-top: 120px;
}

.roadof200wins_container.slick-carousel {
  margin: 48px auto 0;
  width: 1200px;
  max-width: calc(100% - 32px);
}

.roadof200wins_container.slick-carousel .slick-slide {
  width: 440px;
  max-width: 100%;
  position: relative;
  margin-right: 8px;
}

.roadof200wins_container.slick-carousel .slick-slide .info_box {
  position: absolute;
  bottom: 0;
  left: 0;
}

.roadof200wins_container.slick-carousel .slick-slide .info_box img {
  width: auto;
  height: 84px;
  padding-left: 20px;
}

.roadof200wins_container.slick-carousel .slick-slide .info_box .text_box {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roadof200wins_container.slick-carousel .slick-slide .info_box .text_box .date {
  color: #fff;
  font-family: "Helvetica Extra Compressed";
  font-size: 18px;
  font-weight: 500;
  line-height: 74%;
  letter-spacing: 1px;
}

.roadof200wins_container.slick-carousel .slick-slide .info_box .text_box p {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 175%;
}

#roadof200wins .inner {
  width: 918px;
  max-width: 100%;
  padding-top: 48px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.table-wrapper {
  position: relative;
  height: 555px;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateZ(0);
  will-change: scroll-position;
}

.table-wrapper table {
  width: 917px;
  border-collapse: separate;
  border-spacing: 0;
}

.table-wrapper th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  height: 48px;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #000;
  box-sizing: border-box;
  background: #bc9b5f;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.table-wrapper td {
  height: 48px;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
  border: 1px solid #000;
  box-sizing: border-box;
}

/* 共通幅設定 - シンプルに */
.w-290 {
  width: 290px;
  min-width: 290px;
  max-width: 290px;
}

.w-57 {
  width: 57px;
  min-width: 57px;
}

/* 行ごとのスタイル */
.rakuten {
  background: #fff;
}

.nyy {
  background: #fff;
}

.giants {
  background: #fff;
}

.summary-row {
  background: #f0f0f0;
  font-weight: bold;
}

.w-290 .box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
  padding: 0 16px;
}

.rakuten .w-290 {
  background: #7d001b;
  color: #fff;
  font-weight: 700;
}

.nyy .w-290 {
  background: #00003a;
  color: #fff;
  font-weight: 700;
}

.giants .w-290 {
  background: #f29e2f;
  color: #000;
  font-weight: 700;
}

.summary-row .w-290 {
  background: #bc9b5f;
  color: #000;
  font-weight: 700;
}

td {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  #roadof200wins {
    padding-top: 80px;
  }

  .roadof200wins_container.slick-carousel {
    margin: 32px auto 0;
  }

  .roadof200wins_container.slick-carousel .slick-slide {
    width: 311px;
    margin-right: 4px;
  }

  .roadof200wins_container.slick-carousel .slick-slide .info_box {
    position: unset;
    bottom: unset;
    left: unset;
  }

  .roadof200wins_container.slick-carousel .slick-slide .info_box img {
    position: absolute;
    bottom: 156px;
    padding-left: 16px;
    width: 96px;
  }

  .roadof200wins_container.slick-carousel .slick-slide .info_box .text_box {
    padding: 0;
    margin-top: 24px;
  }

  .table-wrapper {
    height: 302px;
  }

  .rakuten .w-290 p,
  .nyy .w-290 p,
  .summary-row .w-290,
  .header-table th {
    font-size: 12px;
  }

  .w-290 {
    width: 116px;
    min-width: 116px;
    max-width: 116px;
  }

  .w-57 {
    width: 52px;
    min-width: 52px;
    max-width: 52px;
  }

  .w-290 .box {
    gap: 8px;
  }

  .table-container .w-57 {
    width: 48px;
    min-width: 48px;
  }

  .body-table {
    top: 32px; /* ボディの位置も32px下に */
  }

  .table-wrapper th,
  .table-wrapper td {
    height: 32px;
    border: 0.5px solid #000;
    font-size: 12px;
  }

  td {
    font-size: 12px !important;
  }

  .table-wrapper table {
    width: 674px;
  }
}

/* MESSAGE
-----------------------------------------------------------*/
#message {
  padding-top: 120px;
}

.message_container.slick-carousel {
  margin: 48px auto 42px;
  width: 1200px;
  max-width: calc(100% - 32px);
}

.message_container.slick-carousel .slick-slide {
  width: 400px;
  max-width: 100%;
  position: relative;
  margin-right: 8px;
}

.message_container.slick-carousel .slick-slide .info_box {
  background: rgba(255, 255, 255, 0.1);
  height: 100%;
}

.message_container.slick-carousel .slick-slide .info_box .text_box {
  padding: 16px 16px 0;
}

.message_container.slick-carousel .slick-slide .info_box .position {
  color: #737373;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}

.message_container.slick-carousel .slick-slide .info_box .name {
  color: #bc9b5f;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
}

.message_container.slick-carousel .slick-slide .modal_btn {
  background-color: #bc9b5f;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}

.message_container.slick-carousel .slick-slide .modal_btn img {
  width: 24px;
  height: 24px;
}

.fancybox-content {
  background-color: transparent;
  background: transparent !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-wrapper {
  position: relative;
  width: 900px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.modal-close {
  border: 2px solid #bc9b5f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 280px;
  height: 60px;
  margin: 36px auto 0;
  cursor: pointer;
}

.modal-close p {
  color: #bc9b5f;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  line-height: 180%;
}

.modal-close img {
  width: 24px;
  height: 24px;
}

.modal-navigation {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 12px;
}

.modal-prev,
.modal-next {
  width: 54px;
  height: 54px;
}

@media screen and (max-width: 768px) {
  #message {
    padding-top: 80px;
  }

  .message_container.slick-carousel {
    margin: 20px auto 40px;
  }

  .message_container.slick-carousel .slick-slide {
    width: 311px;
    margin-right: 4px;
  }

  .modal-wrapper .sp {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
  }

  .modal-close {
    border: 1px solid #bc9b5f;
    gap: 8px;
    width: 184px;
    height: 40px;
    margin: 0;
  }

  .modal-close p {
    font-size: 14px;
  }

  .modal-close img {
    width: 16px;
    height: 16px;
  }

  .modal-prev,
  .modal-next {
    width: 40px;
    height: 40px;
  }
}

/* events
-----------------------------------------------------------*/
#events {
  padding-top: 140px;
}

.event_text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  margin: 48px 0;
}

#events ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 8px;
}

#events ul .item,
#events ul .item a {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  cursor: pointer;
}

@media (hover: hover) {
  #events ul .item a:hover {
    opacity: 1;
  }
}

#events ul .item .img {
  overflow: hidden;
  display: block;
}

#events ul .item .img img {
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  height: auto;
  display: block;
}

@media (hover: hover) {
  #events ul .item:hover .img img {
    transform: scale(1.2);
  }
}

#events ul .item .info_box .text_box {
  padding: 0 16px;
}

#events ul .item .info_box .text_box .date {
  color: #737373;
  font-family: "Helvetica Extra Compressed";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 74%;
  margin-bottom: 8px;
}

#events ul .item .info_box .text_box .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 175%;
}

#events ul .item .info_box .modal_btn {
  background-color: #bc9b5f;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0 0 auto;
}

#events ul .item .info_box .modal_btn img {
  width: 24px;
  height: 24px;
}

.modal-wrapper-events {
  width: 1048px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.fancybox-content .modal_inner {
  display: inline-flex;
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: #29292a;
}

.fancybox-content .modal_inner h4 {
  color: #bc9b5f;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.fancybox-content .modal_inner .info_box {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.fancybox-content .modal_inner .info_box img {
  width: 40%;
}

.fancybox-content .modal_inner .info_box .text_box {
  width: 55%;
}

.fancybox-content .modal_inner .info_box .text_box p {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}

.fancybox-content .modal_inner .info_box .text_box a {
  color: #bc9b5f;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  text-decoration-line: underline;
  text-decoration-style: solid;
}

@media screen and (max-width: 768px) {
  #events {
    padding-top: 80px;
  }

  #events ul .item,
  #events ul .item a {
    gap: 20px;
  }

  #events ul .item .info_box .text_box .text,
  #events ul .item .info_box .text_box .date {
    font-size: 14px;
  }
}

@media screen and (max-width: 680px) {
  #events ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .event_text {
    font-size: 14px;
    margin: 24px 0 40px;
  }

  .fancybox-content .modal_inner {
    padding: 32px;
  }

  .fancybox-content .modal_inner .info_box {
    flex-direction: column;
    gap: 32px;
  }

  .fancybox-content .modal_inner .info_box img,
  .fancybox-content .modal_inner .info_box .text_box {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #events ul,
  #goods ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .fancybox-container {
    background: #29292a;
    /* position: relative; */
  }

  .fancybox-content .modal_inner {
    background: transparent;
    height: 100dvh;
  }

  .modal-wrapper-events {
    width: 100%;
    max-width: 100%;
    display: unset;
  }

  .modal-wrapper-events .modal-close {
    width: 303px;
  }

  .close_btn_bg {
    width: 100vw;
    padding: 16px 0;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e1e20a6;
  }
}

/* goods
-----------------------------------------------------------*/
#goods {
  padding-top: 140px;
}
#goods ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}

#goods ul .item {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px 24px 28px 24px;
}

#goods ul .item a {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#goods ul .item a:hover {
  opacity: 1;
}

#goods ul .item a .img {
  overflow: hidden;
  display: block;
}

#goods ul .item a .img img {
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  height: auto;
  display: block;
}

@media (hover: hover) {
  #goods ul .item a:hover .img img {
    transform: scale(1.2);
  }
}

#goods ul .item a .name {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  align-items: center;
}

#goods ul .item a .name p {
  color: #bc9b5f;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

#goods ul .item a .name img {
  width: 22px;
  height: 22px;
}

#goods ul .item a .price {
  color: #fff;
  font-family: "Helvetica Extra Compressed";
  font-size: 24px;
  font-weight: 500;
  line-height: 74%;
}

#goods ul .item a .price span {
  color: #737373;
  font-family: "Helvetica Extra Compressed";
  font-size: 16px;
  font-weight: 500;
  line-height: 74%;
  padding-left: 4px;
}

#goods .btn_box {
  width: 440px;
  max-width: 100%;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#goods .btn_box p {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

#goods .btn_box a {
  display: flex;
  width: 440px;
  max-width: 100%;
  height: 72px;
  padding: 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #bc9b5f;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

#goods .btn_box a span {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

#goods .btn_box a img {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  display: block;
}

@media (hover: hover) {
  #goods .btn_box a:hover {
    opacity: 1;
  }
}

#goods .btn_box a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 40px;
  height: 100%;
  transform: skewX(-25deg);
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 10%,
    rgba(255, 255, 255, 0.5) 100%,
    rgba(255, 255, 255, 0) 0%
  );
  opacity: 0;
}

@media (hover: hover) {
  #goods .btn_box a:hover::after {
    animation: shine 1s ease-in-out;
    opacity: 1;
  }
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 1;
  }
  100% {
    left: 200%;
    opacity: 1;
  }
}

#goods .fc_memorial {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 32px;
  margin: 80px auto 0;
  position: relative;
  cursor: pointer;
}

#goods .fc_memorial img {
  width: 28.7%;
}

#goods .fc_memorial .text_box {
  width: 68.4%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#goods .fc_memorial .text_box h3 {
  color: #bc9b5f;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
}

#goods .fc_memorial .text_box p {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
}

#goods .fc_memorial .link_icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #bc9b5f;
}

#goods .fc_memorial .link_icon img {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 960px) {
  #goods ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  #goods {
    padding-top: 80px;
  }

  #goods ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-top: 32px;
  }

  #goods ul .item a {
    gap: 12px;
  }

  #goods ul .item {
    padding: 14px 14px 22px;
  }

  #goods ul .item a .name p {
    font-size: 14px;
  }

  #goods ul .item a .name img {
    width: 18px;
    height: 18px;
  }

  #goods ul .item a .price {
    font-size: 18px;
  }

  #goods ul .item a .price span {
    font-size: 14px;
  }

  #goods .btn_box {
    margin: 40px auto 0;
    gap: 12px;
  }

  #goods .btn_box p {
    font-size: 14px;
  }

  #goods .btn_box a {
    height: 56px;
    padding: 0;
  }

  #goods .btn_box a span {
    font-size: 16px;
  }

  #goods .btn_box a img {
    width: 22px;
    height: 22px;
    right: 14px;
  }

  #goods .fc_memorial {
    margin: 40px auto 0;
    padding: 24px 24px 44px;
    flex-direction: column;
    gap: 20px;
  }

  #goods .fc_memorial img,
  #goods .fc_memorial .text_box {
    width: 100%;
  }

  #goods .fc_memorial .text_box h3 {
    font-size: 16px;
    text-align: center;
  }

  #goods .fc_memorial .text_box p {
    font-size: 14px;
  }
}

/* movie
-----------------------------------------------------------*/
#movie {
  padding-top: 140px;
}

#movie .inner {
  width: 1000px;
  margin-top: 48px;
}
.movie_text {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  margin-bottom: 64px;
}

.movie_box {
  aspect-ratio: 16 / 9;
}

.movie_box iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #movie {
    padding-top: 80px;
  }

  #movie .inner {
    margin-top: 24px;
  }

  .movie_text {
    font-size: 14px;
    text-align: start;
    margin-bottom: 40px;
  }
}

/* special contents
-----------------------------------------------------------*/
#special {
  padding-top: 140px;
}

#special ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 64px;
}

#special ul .item {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  padding: 32px 32px 36px 33px;
  flex-direction: column;
  gap: 24px;
}

#special ul .item .text_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#special ul .item .text_box .date {
  color: #737373;
  font-family: "Helvetica Extra Compressed";
  font-size: 18px;
  font-weight: 700;
  line-height: 74%;
}

#special ul .item .text_box .title {
  color: #bc9b5f;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  line-height: 175%;
}

#special ul .item .text_box .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 175%;
}

@media screen and (max-width: 768px) {
  #special {
    padding-top: 80px;
  }

  #special ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 4px;
    margin-top: 32px;
  }

  #special ul .item {
    padding: 24px;
  }

  #special ul .item .text_box .date,
  #special ul .item .text_box .title {
    font-size: 16px;
  }

  #special ul .item .text_box .text {
    font-size: 14px;
  }
}

/* photo gallery
-----------------------------------------------------------*/
#photo {
  padding-top: 140px;
}

#photo ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 28px;
}

#photo ul .item {
  max-width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

#photo ul .item .hover_color {
  max-width: 100%;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 0;
  left: 0;

  opacity: 0;
  mix-blend-mode: unset;
  background: #bc9b5f;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  #photo ul .item:hover .hover_color {
    mix-blend-mode: hard-light;
    opacity: 1;
  }
}

#photo ul .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#photo ul .item .hover_box {
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  background: #000;
  width: 72px;
  height: 31px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  #photo ul .item:hover .hover_box {
    opacity: 1;
  }
}

#photo ul .item .hover_box p {
  color: #bc9b5f;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 175%;
}

#photo ul .item .hover_box img {
  width: 18px;
  height: 18px;
}

.fancybox-content {
  padding: 0 !important;
}

@media screen and (max-width: 960px) {
  #photo ul {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 768px) {
  #photo {
    padding-top: 80px;
  }

  #photo ul {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
  }
}

@media screen and (max-width: 520px) {
  #photo ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* news
-----------------------------------------------------------*/
#news {
  padding: 140px 0 0;
}

#news ul {
  margin-top: 64px;
  border-bottom: 1px solid #1b1b1b;
}

#news ul .item {
  border-top: 1px solid #1b1b1b;
}

#news ul .item a {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 16px 32px;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  #news ul .item a:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
  }
}

#news ul .item a .date {
  color: #737373;
  font-family: "Helvetica Extra Compressed";
  font-size: 20px;
  font-weight: 500;
  line-height: 74%;
  width: 70px;
}

#news ul .item a .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}

.logo_200wins {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  padding-top: 80px;
}

.logo_200wins img {
  width: 240px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #news {
    padding: 80px 0 64px;
  }

  #news ul {
    margin-top: 40px;
  }

  #news ul .item a {
    padding: 20px 16px;
    flex-direction: column;
    gap: 8px;
    align-items: start;
  }

  #news ul .item a .date {
    font-size: 16px;
  }

  #news ul .item a .text {
    font-size: 14px;
    font-weight: 400;
  }

  .logo_200wins {
    margin-bottom: 64px;
  }

  .logo_200wins img {
    width: 120px;
  }
}

/* giants_lp_footer
-----------------------------------------------------------*/
#giants_lp_footer .pagetop {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  background-color: #bc9b5f;
  color: #000;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "Helvetica Extra Compressed";
  font-size: 28px;
  font-weight: 700;
}

#giants_lp_footer .pagetop img {
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

#giants_lp_footer {
  background: #000;
  font-family: "Noto Sans JP", serif;
  padding-bottom: 84px;
  position: relative;
  z-index: 10;
}
#giants_lp_footer .footIn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
#giants_lp_footer .sns {
  display: flex;
}
#giants_lp_footer .sns li:not(:first-child) {
  margin-left: 16px;
}
#giants_lp_footer .sns li a {
  opacity: 1;
  transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
  transition-duration: 0.4s;
  transition-property: opacity;
}
#giants_lp_footer .footLinks {
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
}
#giants_lp_footer .footLinks ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
#giants_lp_footer .footLinks li {
  position: relative;
  width: 25%;
}
#giants_lp_footer .footLinks li:after {
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  pointer-events: none;
  content: "";
  border: 1px solid #292929;
  border-radius: 0;
}
#giants_lp_footer .footLinks li a {
  display: block;
  position: relative;
  padding: 16px 20px;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
}
#giants_lp_footer .logos {
  max-width: 960px;
  margin: 0 auto;
}
#giants_lp_footer .logos ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1px;
  gap: 1px;
  padding: 24px 0;
}
#giants_lp_footer .logos li {
  background-color: #fff;
  position: relative;
}

@media (hover: hover) {
  #giants_lp_footer .logos li a:hover {
    opacity: 1;
    transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
    transition-duration: 0.4s;
    transition-property: opacity;
  }
}

.giants_lp_copyright {
  padding: 16px 20px;
  border-top: 1px solid #292929;
  font-size: 11px;
  line-height: 1.55;
  color: hsla(0, 0%, 100%, 0.4);
  text-align: center;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .giants_lp_pagetop {
    height: 48px;
  }

  #giants_lp_footer {
    padding-bottom: 64px;
  }

  #giants_lp_footer .pagetop {
    font-size: 26px;
  }

  #giants_lp_footer .footIn {
    display: block;
    padding: 80px 20px 32px;
  }
  #giants_lp_footer .sns {
    margin-top: 48px;
  }
  #giants_lp_footer .footLinks li {
    width: 50%;
  }
  #giants_lp_footer .logos ul {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
  }
}

/* line animation
-----------------------------------------------------------*/
.line-container {
  position: fixed;
  top: 0;
  left: 16px;
  height: 100vh;
  width: 60px;
  z-index: 10;
  overflow: hidden;
}

.line-container .line {
  position: absolute;
  top: 0;
  width: 6px;
  height: 100%;
  transform: translateY(-100%); /* 初期状態では非表示 */
}

.line-container .line.blue {
  background-color: #0c172d;
  left: 0;
}

.line-container .line.orange {
  background-color: #e3800b;
  left: 12px;
}

.line-container .line.red {
  background-color: #2d1217;
  left: 24px;
}

@keyframes drawFullscreenLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .line-container {
    left: 1px;
    gap: 1px;
  }
  .line-container .line {
    width: 4px;
  }
  .line-container .line.blue {
    left: 0;
  }
  .line-container .line.orange {
    left: 5px;
  }
  .line-container .line.red {
    left: 10px;
  }
}

/* Slick → Swiper 修正版CSS */

/* ROAD OF 200 WINS - Swiper対応 */
#roadof200wins {
  padding-top: 120px;
}

.roadof200wins_container.swiper {
  margin: 48px auto 0;
  width: 100%;
  max-width: calc(100% - 0px);
  overflow: hidden;
}

.roadof200wins_container.swiper .swiper-slide {
  width: 440px;
  max-width: 100%;
  position: relative;
  margin-right: 8px;
}

.roadof200wins_container.swiper .swiper-slide .info_box {
  position: absolute;
  bottom: 0;
  left: 0;
}

.roadof200wins_container.swiper .swiper-slide .info_box img {
  width: auto;
  height: 84px;
  padding-left: 20px;
}

.roadof200wins_container.swiper .swiper-slide .info_box .text_box {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roadof200wins_container.swiper .swiper-slide .info_box .text_box .date {
  color: #fff;
  font-family: "Helvetica Extra Compressed";
  font-size: 18px;
  font-weight: 500;
  line-height: 74%;
  letter-spacing: 1px;
}

.roadof200wins_container.swiper .swiper-slide .info_box .text_box p {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 175%;
}

/* Swiper用ナビゲーション・ページネーション */
.roadof200wins_container.swiper .swiper_attached {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 1200px;
  max-width: 100%;
  margin: 42px auto 0;
}

.roadof200wins_container.swiper .swiper_attached .navigation_box {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.roadof200wins_container.swiper .swiper-button-prev.road-prev,
.roadof200wins_container.swiper .swiper-button-next.road-next {
  width: 54px;
  height: 54px;
  margin-top: 0;
  position: static;
  background: transparent;
}

.roadof200wins_container.swiper .swiper-button-prev.road-prev::after,
.roadof200wins_container.swiper .swiper-button-next.road-next::after {
  content: none;
}

.roadof200wins_container.swiper .swiper-pagination {
  position: static;
  width: 100%;
  height: 4px;
  background-color: #474747;
  border-radius: 0;
  margin: 0;
}

.roadof200wins_container.swiper .swiper-pagination-progressbar-fill {
  background-color: #d8b667;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  #roadof200wins {
    padding-top: 80px;
  }

  .roadof200wins_container.swiper {
    max-width: calc(100% - 32px);
    margin: 16px auto 0;
  }

  .roadof200wins_container.swiper .swiper-slide {
    width: 311px;
    margin-right: 4px;
  }

  .roadof200wins_container.swiper .swiper-slide .info_box {
    position: unset;
    bottom: unset;
    left: unset;
  }

  .roadof200wins_container.swiper .swiper-slide .info_box img {
    position: absolute;
    bottom: 156px;
    padding-left: 16px;
    width: 96px;
  }

  .roadof200wins_container.swiper .swiper-slide .info_box .text_box {
    padding: 0;
    margin-top: 24px;
  }

  .roadof200wins_container.swiper .swiper_attached {
    gap: 20px;
    margin: 40px auto 0;
  }

  .roadof200wins_container.swiper .swiper_attached .navigation_box {
    gap: 4px;
  }

  .roadof200wins_container.swiper .swiper-button-prev.road-prev,
  .roadof200wins_container.swiper .swiper-button-next.road-next {
    width: 36px;
    height: 36px;
  }
}

/* 古いSlick用のスタイルを削除または無効化 */
.roadof200wins_container.slick-carousel {
  display: none; /* 既存のSlick用スタイルを無効化 */
}

/* メッセージスライダーも同様に修正が必要な場合 */
.message_container.swiper {
  margin: 48px auto 42px;
  width: 1200px;
  max-width: calc(100% - 32px);
  overflow: hidden;
}

.message_container.swiper .swiper-slide {
  width: 400px;
  max-width: 100%;
  position: relative;
  margin-right: 8px;
}

.message_container.swiper .swiper_attached {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 1200px;
  max-width: 100%;
  margin: 42px auto 0;
}

.message_container.swiper .swiper_attached .navigation_box {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.message_container.swiper .swiper-button-prev.message-prev,
.message_container.swiper .swiper-button-next.message-next {
  width: 54px;
  height: 54px;
  margin-top: 0;
  position: static;
  background: transparent;
}

.message_container.swiper .swiper-button-prev.message-prev::after,
.message_container.swiper .swiper-button-next.message-next::after {
  content: none;
}

.message_container.swiper .swiper-pagination {
  position: static;
  width: 100%;
  height: 4px;
  background-color: #474747;
  border-radius: 0;
  margin: 0;
}

.message_container.swiper .swiper-pagination-progressbar-fill {
  background-color: #d8b667;
}

@media screen and (max-width: 768px) {
  .message_container.swiper {
    margin: 20px auto 40px;
  }

  .message_container.swiper .swiper-slide {
    width: 311px;
    margin-right: 4px;
  }

  .message_container.swiper .swiper_attached {
    gap: 20px;
    margin: 40px auto 0;
  }

  .message_container.swiper .swiper_attached .navigation_box {
    gap: 4px;
  }

  .message_container.swiper .swiper-button-prev.message-prev,
  .message_container.swiper .swiper-button-next.message-next {
    width: 36px;
    height: 36px;
  }
}

.fancybox-navigation,
.fancybox-button.fancybox-close-small {
  display: none !important;
}

/* tab
-----------------------------------------------------------*/
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-button {
  background: transparent;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  border-top: none;
  border-left: none;
  border-right: none;
  padding-bottom: 4px;
  border-bottom: 8px solid transparent;
  cursor: pointer;
}

.tab-button.giants.active {
  border-bottom: 8px solid #f29e2f;
}
.tab-button.nyy.active {
  border-bottom: 8px solid #19195d;
}
.tab-button.rakuten.active {
  border-bottom: 8px solid #7d001b;
}

.tab-navigation {
  margin: 64px auto 0;
  width: fit-content;
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .tab-navigation {
    margin: 40px auto 0;
    gap: 24px;
  }

  .tab-button {
    font-size: 16px;
    line-height: 150%; /* 24px */
    padding-bottom: 2px;
    border-bottom: 5px solid transparent;
  }

  .tab-button.giants.active {
    border-bottom: 5px solid #f29e2f;
  }
  .tab-button.nyy.active {
    border-bottom: 5px solid #19195d;
  }
  .tab-button.rakuten.active {
    border-bottom: 5px solid #7d001b;
  }
}

.right-table {
  display: flex;
  flex-direction: column;
}
