/*common*/
@font-face {
  font-family: ProhibitionW00-Regular;
  src: url(../fonts/ProhibitionW00-Regular.ttf);
}

*,
*::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;
}
a:hover {
  opacity: 0.7;
}
.op img {
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important;
  -webkit-transition: all 0.5s !important;
}
.op:hover img {
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
}
.sp,
.pad {
  display: none;
}
.omission {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner {
  width: 1209px;
  margin: 0 auto;
  max-width: calc(100% - 32px);
}
.inner.min {
  width: 720px;
}
.bg_sticky {
  position: sticky;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100%;
}
.bg_sticky img {
  width: 100vw;
  max-width: 100%;
  height: 100dvh;
  object-fit: cover;
  object-position: top center;
}
.title_orange {
  color: #e3800b;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  font-family: "Acumin Pro";
  font-size: 96px;
  font-weight: 700;
  line-height: 100%;
}
.sub_title_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
.sub_title_box .sub_title {
  color: #fff;
  text-align: center;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 200%;
}
.sub_title_box .line {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sub_title_box .line span {
  display: block;
  background-color: #e3800b;
  height: 2px;
  width: 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;
  }
  .title_orange {
    font-size: 48px;
  }
}

.comingsoon {
  color: #fff;
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 96px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 14.4px;
  margin-bottom: 48px;
  margin-top: 48px;
}

.comingsoon_bottom {
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 35px */
}

@media screen and (max-width: 768px) {
  .comingsoon {
    font-size: 72px;
    padding-top: 64px;
    margin-top: 0;
  }

  .comingsoon_bottom {
    font-size: 16px;
  }
}

/* !header
---------------------------------------------------------- */
#giants_lp_header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 200;
  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;
}
#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;
    border-bottom: none;
  }
  #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;
  }
}

/*********** navigation ***********/
.navigation {
  position: fixed;
  width: 100%;
  height: 72px;
  bottom: 0;
  background-color: #000;
  color: #fff;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 120;
  text-align: center;
  font-family: "Acumin Pro";
  font-size: 18x;
  font-weight: 700;
}
.navigation .menu {
  color: #f29e2f;
  font-family: ProhibitionW00-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}

.nav_list {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.nav_list .nav_item a {
  color: var(--white, #fff);
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3px;
}

.navigation .nav_item span {
  color: #fff;
  font-size: 14px;
  font-family: "Noto Serif JP";
  font-size: 12px;
  font-weight: 400;
  display: block;
}

.navigation .pagetop {
  position: absolute;
  bottom: 27px;
  right: 27px;
}
.sp_navigation_btn {
  display: none;
}
.navigation .close_btn {
  display: none;
}

@media (hover: hover) {
  .nav_list .nav_item a:hover {
    color: #e3800b;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .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: center;
    overflow-y: scroll;
    padding: 48px 44px 24px;
    color: #e3800b;
    font-family: "Acumin Pro";
  }

  .nav_list {
    gap: 32px;
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }

  .nav_list .nav_item a {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    flex-shrink: 0;
  }

  .navigation .nav_item span {
    font-size: 12px;
  }

  .navigation.open {
    opacity: 1;
    z-index: 240;
    pointer-events: auto;
  }

  .sp_navigation_btn {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 200;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-direction: column;

    border-radius: 10px 0px 0px 0px;
    background: #0d0d0d;
    width: 64px;
    height: 64px;
  }

  .sp_nav_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .navigation .close_btn {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 64px;
    display: block;
  }
  .navigation .pagetop.pc {
    display: none;
  }
}

/* kv
-----------------------------------------------------------*/
.kv img {
  width: 100vw;
  max-width: 100%;
  height: 100%;
  padding-top: 72px;
  object-fit: cover;
  object-position: top center;
}

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

/* loading
-----------------------------------------------------------*/
.splash-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading_01,
.loading_02 {
  position: absolute;
  opacity: 0;
  transition: all 2s ease-in-out;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.loading_01 {
  width: 124px;
  height: auto;
  animation: fadeInImage1 2s ease-in-out 0s forwards;
}

.loading_02 {
  width: 877px;
  height: auto;
  animation: fadeInImage2 2s ease-in-out 2s forwards;
}

@media screen and (max-width: 768px) {
  .loading_01 {
    width: 47px;
  }
  .loading_02 {
    width: 356px;
  }
}

@keyframes fadeInImage1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInImage2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

@keyframes fadeInContent {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.splash-container.fade-out {
  animation: fadeOutSplash 2s ease-out forwards;
}

@keyframes fadeOutSplash {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* button
-----------------------------------------------------------*/
.btn_detail {
  color: #000 !important;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 21px;
  border-radius: 10px;
  border: 2px solid #e3800b;
  width: 480px;
  max-width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  /* background-image: url(../img/icon/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: right 20px center; */
}

@media (hover: hover) {
  .btn_detail:hover {
    color: #000 !important;
    /* background-image: url(../img/icon/icon_arrow_blk.svg); */
    background-color: #e3800b;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .btn_detail {
    width: 343px;
    font-size: 16px;
    height: 52px;
  }
}

.background {
  position: sticky;
  top: 0;
  z-index: -1;
}
.background img {
  height: 100dvh;
  width: 100%;
  object-fit: cover;
}

/* home
-----------------------------------------------------------*/
#home {
  position: relative;
}

#home .inner {
  padding: 192px 0 192px;
  margin-top: -100dvh;
}

.text_container .text-line {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
}

@media screen and (max-width: 768px) {
  #home .inner {
    padding: 128px 0;
  }

  .text_container .text-line {
    font-size: 16px;
  }
}

/* news
-----------------------------------------------------------*/
#news {
  background: black;
  padding: 80px 0 96px;
}

#news .inner {
  width: 992px;
  display: flex;
  align-items: stretch;
  gap: 40px;
}

#news .left {
  width: 5.4%;
  display: flex;
  align-items: center;
  gap: 64px;
}

#news .left p {
  color: #fff;
  font-family: ProhibitionW00-Regular;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
  letter-spacing: 3px;
}

#news .line {
  width: 2px;
  background: #f29e2f;
  display: block;
}

#news .right {
  width: 83.8%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#news .right li a {
  display: flex;
  gap: 24px;
}

#news .right li .date,
#news .right li .text {
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%;
}

@media screen and (max-width: 768px) {
  #news .inner {
    flex-direction: column;
    align-items: center;
  }

  #news .line {
    height: 2px;
    width: 100%;
  }

  #news .right {
    width: 100%;
  }

  #news .left {
    width: 100%;
    justify-content: center;
  }

  #news .right li {
    gap: 16px;
  }

  #news .right li .date,
  #news .right li .text {
    font-size: 14px;
    line-height: 150%;
  }
}

/* game & special
-----------------------------------------------------------*/
.game_special {
  position: relative;
}

/* #game {
  padding-top: 64px;
} */

#game .inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  width: 690px;

  padding-top: 128px;

  margin-top: -100dvh;
}

#game .img {
  width: 266px;
  height: auto;
}

#game .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  justify-content: center;
}

#game .info .title {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 6px;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

#game .info .title span {
  font-family: ProhibitionW00-Regular;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 3.6px;
}

#game .game_info_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

#game .info .date {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
}

#game .info .date .day {
  color: #000;
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 9.6px;
}

#game .info .date .week {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;

  border-radius: 3px;
  background: #f29e2f;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  margin-bottom: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
}

#game .info .opponent {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

#game .info .opponent .vs {
  color: #000;
  font-family: ProhibitionW00-Regular;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6px;
}

#game .info .opponent .logo {
  width: 96px;
  height: auto;
  max-width: 100%;
}

#game .info .opponent .name {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
}

#game .info .playball {
  color: #000;
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6px;
}

#game .info .note {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 35px */
}

#game .info .bottom_text {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 28px */
}

#special {
  padding: 64px 0 128px;
}

#special .inner {
  width: 1194px;
}

#special .inner h4 {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 52px;
}

#special .inner h4 p {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}

#special .inner h4 span {
  color: #000;
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.6px;
}

#special .inner .flex_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1194px;
  max-width: 100%;
  gap: 48px;
}

#special .inner .flex_box.reverse {
  flex-direction: row-reverse;
}

#special .inner .flex_box.mb48 {
  margin-bottom: 48px;
}

#special .inner .flex_box.mb64 {
  margin-bottom: 64px;
}

#special .inner .flex_box .img {
  width: 46.9%;
  border-radius: 10px;
  border: 2px solid #f29e2f;
  overflow: hidden;
}

#special .inner .flex_box .info {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#special .inner .flex_box .info .title {
  color: #000;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 42px */
}

#special .inner .flex_box .info .dec {
  color: #000;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 28px */
}

#special .inner .flex_box .info .note {
  color: #000;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%;
}

#special .inner .flex_box .info .btn_detail {
  width: 208px;
  height: 52px;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}

#special .bottom_note {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 175%; /* 35px */
}

@media screen and (max-width: 768px) {
  #game .inner {
    padding-top: 64px;
  }

  #game .img {
    width: 200px;
    height: 200px;
  }

  #game .info .title {
    font-size: 32px;
    letter-spacing: 4.8px;
    line-height: 125%;
    white-space: nowrap;
  }

  #game .info .title span {
    font-size: 20px;
  }

  #game .info .date {
    gap: 12px;
  }

  #game .info .date .day {
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 7.2px;
  }

  #game .info .date .week {
    font-size: 16px;
    margin-bottom: 0;
  }

  #game .info .opponent .vs {
    font-size: 32px;
  }

  #game .info .opponent .logo {
    width: 72px;
  }

  #game .info .opponent .name {
    font-size: 20px;
  }

  #game .info .playball {
    font-size: 32px;
    letter-spacing: 4.8px;
  }

  #game .info .note {
    font-size: 16px;
    line-height: 175%;
  }

  #game .info .bottom_text {
    font-size: 14px;
    line-height: 175%;
  }

  #special .inner h4 {
    gap: 12px;
    margin-bottom: 40px;
  }

  #special .inner h4 p {
    font-size: 24px;
    line-height: 100%;
  }

  #special .inner h4 span {
    font-size: 16px;
    letter-spacing: 2.4px;
  }

  #special .inner .flex_box,
  #special .inner .flex_box.reverse {
    flex-direction: column;
    gap: 24px;
  }

  #special .inner .flex_box .img {
    width: 100%;
  }

  #special .inner .flex_box .info {
    width: 100%;
    gap: 16px;
  }

  #special .inner .flex_box .info .title {
    font-size: 20px;
    line-height: 175%;
    text-align: center;
  }

  #special .inner .flex_box .info .dec {
    font-size: 14px;
  }

  #special .inner .flex_box .info .note {
    font-size: 12px;
  }

  #special .inner .flex_box.mb48 {
    margin-bottom: 40px;
  }

  #special .inner .flex_box .info .btn_detail {
    width: 190px;
    height: 44px;
    font-size: 14px;
    margin: 0 auto;
  }

  #special .bottom_note {
    font-size: 16px;
    line-height: 175%;
  }
}

/* goods
-----------------------------------------------------------*/
#goods {
  padding: 128px 0;
  background: #000;
  position: relative;
}

#goods h2 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

#goods h2 p {
  color: #f29e2f;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
  letter-spacing: 6px;
}

#goods h2 span {
  color: #f29e2f;
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.6px;
}

#goods .goods_container ul {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

#goods .goods_container.swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 48px;
}

#goods .goods_container li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;

  width: 336px;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  flex-shrink: 0;
}

#goods .goods_container li .info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#goods .goods_container li .info .name {
  color: #000;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

#goods .goods_container li .info .price {
  color: #000;
  margin-left: auto;
  text-align: right;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

#goods .goods_attach {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  align-items: stretch;
}

#goods .swiper-pagination {
  position: unset;
  width: 60%;
  height: 6px;
  z-index: 10;
}

#goods .swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

#goods .swiper-pagination-progressbar-fill {
  background: #f29e2f;
  border-radius: 3px;
  transition: transform 0.3s ease;
}

#goods .swiper-button-container {
  display: flex;
  gap: 16px;
}

#goods .swiper-button-prev,
#goods .swiper-button-next {
  position: unset;
  width: 48px;
  height: 48px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

#goods .swiper-button-prev {
  left: 0;
}
#goods .swiper-button-next {
  right: 0;
}

#goods .swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (hover: hover) {
  #goods .swiper-button-prev:not(.swiper-button-disabled):hover,
  #goods .swiper-button-next:not(.swiper-button-disabled):hover {
    opacity: 0.8;
  }
}

#goods .btn_container {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 992px;
  margin-top: 48px;
}

#goods .btn_container .btn_detail {
  color: #fff !important;
}

@media (max-width: 768px) {
  #goods h2 p {
    font-size: 32px;
    letter-spacing: 4.8px;
  }

  #goods h2 span {
    font-size: 20px;
    letter-spacing: 3px;
  }

  #goods .goods_container li {
    width: 310px;
  }

  #goods .goods_container li .info .name,
  #goods .goods_container li .info .price {
    font-size: 14px;
  }

  #goods .swiper-button-prev,
  #goods .swiper-button-next {
    width: 48px;
    height: 48px;
  }

  #goods .btn_container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* sns
-----------------------------------------------------------*/
#sns {
  position: relative;
  background-image: url("../img/img_bg_03.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 128px 0;
}

#sns h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 64px;
}

#sns h2 p {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
  letter-spacing: 6px;
}

#sns h2 span {
  color: #000;
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.6px;
}

#sns .sns_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

#sns .sns_container .top_text {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}

#sns .sns_container .overview {
  width: 950px;
  max-width: 100%;
  padding: 24px;
  border: 1px solid #f29e2f;
}

#sns .sns_container .overview .title {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  margin-bottom: 24px;
}

#sns .sns_container .overview .text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#sns .sns_container .overview .text p {
  color: #000;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

#sns .sns_container .sns_box {
  border-radius: 10px;
  background: #fff;
  padding: 48px 80px;
}

#sns .sns_container .sns_box .top_tag {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  margin-bottom: 48px;
}

#sns .post_list {
  display: flex;
  gap: 16px;
}

#sns .post_list .left,
#sns .post_list .middle,
#sns .post_list .right {
  width: 33%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#sns .post_list .card {
  border-radius: 10px;
  border: 1px solid #f29e2f;
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#sns .post_list .card .img {
  overflow: hidden;
  border-radius: 10px;
}

#sns .post_list .card .text_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#sns .post_list .card .text_box p {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

@media screen and (max-width: 768px) {
  #sns {
    background-image: url("../img/img_bg_sp03.webp");
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    background-attachment: unset;
    padding: 128px 0;
  }

  #sns h2 {
    margin-bottom: 48px;
  }

  #sns h2 p {
    font-size: 32px;
    letter-spacing: 4.8px;
  }

  #sns h2 span {
    font-size: 20px;
    letter-spacing: 3px;
  }

  #sns .sns_container .top_text {
    font-size: 16px;
    line-height: 150%; /* 24px */
  }

  #sns .sns_container .overview .title {
    font-size: 16px;
    line-height: 150%; /* 24px */
  }

  #sns .sns_container .overview .text p {
    font-size: 14px;
    line-height: 150%; /* 21px */
  }

  #sns .sns_container .sns_box {
    padding: 48px 16px;
  }

  #sns .post_list {
    flex-direction: column;
    align-items: center;
  }

  #sns .post_list .left,
  #sns .post_list .middle,
  #sns .post_list .right {
    width: 100%;
  }
}

/* for3ver
-----------------------------------------------------------*/
.for3ver_container {
  margin-top: 64px;
}

.for3ver_container h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
}

.for3ver_container h4 p {
  color: #000;
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 4.8px;
}

.for3ver_container h4 span {
  color: #000;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.for3ver_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.for3ver_box .container_01,
.for3ver_box .container_02,
.for3ver_box .container_03,
.for3ver_box .container_04,
.for3ver_box .container_05,
.for3ver_box .container_06 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.for3ver_box a {
  position: relative;
  display: flex;
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;

  gap: 4px;
}

.hover-overlay img {
  width: 20px;
}

.hover-text {
  color: white;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .for3ver_box a:hover {
    opacity: 1;
  }

  .for3ver_box a:hover .hover-overlay {
    opacity: 1;
  }
}

.for3ver_box .dateinfo {
  position: absolute;
  top: 0;
  right: 0;
  background: #f29e2f;
  padding: 10px 17px;

  color: #000;
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 24px */
  letter-spacing: 3.6px;
}

.before_banner.banner_hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* ここをnoneに変更 */
  cursor: not-allowed;
}

/* 解放前の画像のaタグは完全にクリック無効化 */
.for3ver_box a:has(.before_banner.banner_hidden:not(.unlocked)) {
  pointer-events: none !important;
  cursor: not-allowed !important;
}

/* 解放済みは通常通り */
.before_banner.banner_hidden.unlocked {
  display: none !important;
}

.before_banner.banner_hidden p {
  color: #f29e2f;
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 40px */
  letter-spacing: 6px;
}

.container-hidden {
  display: none !important;
}

/* ***** popover ***** */
.hide {
  display: none !important;
}

.fancyboxBox {
  max-width: 100vw;
  max-height: 100vh;
}

.fancyboxBox .fancyboxDisplay {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #000;
  padding: 0 0 50px;
  width: 100vw;
  justify-content: center;
  overflow-y: scroll;
}
.fancybox-content {
  padding: 0;
}
.fancybox-button svg {
  display: none;
}

.fancybox-slide--html {
  padding: 0;
}

.fancyboxBox .content {
  width: 800px;
  max-width: calc(100% - 32px);
  margin: 0 auto;

  display: flex;
  gap: 48px;
  align-items: center;
}

.fancyboxBox .content img {
  width: 50%;
}

.fancyboxBox .fancyboxDisplay .text_box {
  width: 43.5%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fancyboxBox .fancyboxDisplay .tit {
  color: #f29e2f;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}

.fancyboxBox .fancyboxDisplay .txt {
  color: #fff;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
}

.fancyboxBox .fancyboxDisplay .date {
  background: #d9d9d9;
  padding: 2px 16px;
  width: fit-content;
  margin-left: auto;
}

.fancyboxBox .fancyboxDisplay .date p {
  color: #000;
  font-family: "Noto Serif JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 200% */
}

.fancyboxDisplay .close {
  font-size: 32px;
  color: #fff;
  position: absolute;
  top: 15%;
  right: 15%;
}

.fancybox-content {
  top: 50%;
  transform: translateY(-50%);
  border: none;
}
.fancybox-slide::before {
  display: none;
}

.fancybox-content button.prev,
.fancybox-content button.next {
  width: 36px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  background: transparent;
  border: none;
}
.fancybox-content button.prev {
  left: 10%;
}
.fancybox-content button.next {
  right: 10%;
}
.fancybox-content button.prev.btn_disable,
.fancybox-content button.next.btn_disable {
  pointer-events: none;
  filter: grayscale(1);
}

.fancybox-caption {
  display: none;
}
.fancybox-infobar {
  display: none;
}
.fancybox-toolbar {
  display: none;
}
.fancybox-content .fancybox-close-small {
  display: none;
  pointer-events: none;
}
.fancybox-navigation {
  display: none;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .for3ver_container {
    margin-top: 48px;
  }

  .for3ver_container h4 {
    margin-bottom: 48px;
  }

  .for3ver_box .dateinfo {
    font-size: 16px;
    letter-spacing: 2.4px;
    padding: 8px;
  }

  .for3ver_box .widewindow {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 20px;
  }

  .before_banner.banner_hidden p {
    font-size: 24px;
    letter-spacing: 3.6px;
  }

  .for3ver_box .container_01,
  .for3ver_box .container_02,
  .for3ver_box .container_03,
  .for3ver_box .container_04,
  .for3ver_box .container_05,
  .for3ver_box .container_06 {
    grid-template-columns: repeat(2, 1fr);
  }

  .fancyboxBox .content {
    flex-direction: column;
    padding-top: 64px;
    gap: 16px;
  }

  .fancyboxBox .content img {
    width: 100%;
  }

  .fancyboxBox .fancyboxDisplay .text_box {
    width: 100%;
  }

  .fancyboxDisplay .close {
    position: unset;
  }

  .modal_btn {
    padding: 0 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .fancybox-content button.prev,
  .fancybox-content button.next {
    position: unset;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
  }

  .fancybox-content button.prev img,
  .fancybox-content button.next img {
    width: 32px;
    height: 32px;
  }

  .fancybox-content button.prev span,
  .fancybox-content button.next span {
    color: #fff;
    text-align: right;
    font-family: "Noto Serif JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
  }

  .right-close {
    margin-left: auto;
    width: fit-content;
  }

  .right-close .close {
    width: fit-content;
    padding: 16px 0;
  }

  .hover-overlay {
    display: none;
  }
}

/* footer
-----------------------------------------------------------*/
#giants_lp_footer .pagetop {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  background-color: #f29e2f;

  color: #000;
  text-align: center;
  font-family: ProhibitionW00-Regular;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3px;
}

#giants_lp_footer .pagetop img {
  width: 24px;
}
#giants_lp_footer {
  background: #000;
  font-family: "Noto Sans JP", serif;
}
#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;
}
#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_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;
  }
}
