/*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;
}
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: 995px;
  margin: 0 auto;
  max-width: calc(100% - 32px);
}
.inner.lg {
  width: 1090px;
  max-width: calc(100% - 32px);
}
.layout {
  padding: 112px 0;
}
.gold {
  color: var(--main-light-gold);
}
.black {
  color: #000;
}
.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;
}
.btn_common:hover {
  background-color: #fff;
  color: #000 !important;
  background-image: url("../image/icon/arrow_black.svg");
  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_black:hover {
  border: 1px solid #000;
  background-color: #fff;
  background-image: url("../image/icon/arrow_black.svg");
  color: #000 !important;
  opacity: 1;
}
.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;
}
.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;
}
.inner {
  width: 900px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}
.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;
}
#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 */
body {
  background-color: #fff;
}
.bg_box {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: -1;
  background-size: cover;
  mix-blend-mode: exclusion;
  opacity: 30%;
}
.bg_set {
  position: relative;
  mix-blend-mode: soft-light;
}
.layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-blend-mode: soft-light;
}

.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;
}
.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;
  font-size: 20px;
  background: var(
    --gradation_gold,
    linear-gradient(180deg, #eacf8c 0%, #d8b667 50%, #9f7126 100%)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.nav_list .nav_item span {
  display: block;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.nav_list .nav_item:hover {
  color: var(--main-light-gold);
}
.navigation .pagetop {
  position: absolute;
  bottom: 27px;
  right: 27px;
}
.sp_navigation_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;
  }
  .navigation ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .nav_list {
    gap: 10px;
  }
  .nav_list .nav_item a {
    flex-direction: row;
    gap: 16px;
    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;
    /* width: 100%; */
  }
  .navigation.open {
    opacity: 1;
    z-index: 120;
    pointer-events: auto;
  }
  .sp_navigation_btn {
    display: flex;
    position: fixed;
    bottom: 23px;
    right: 16px;
    z-index: 98;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-direction: column;
  }
  .sp_nav_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .sp_navigation_btn .pagetop.sp {
    width: 12px;
    display: block;
  }
  .sp_nav_container .pagetop {
    width: 12px;
  }
  .navigation .close_btn {
    position: absolute;
    bottom: 23px;
    right: 16px;
    width: 64px;
    display: block;
  }
  .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%
  );
}

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

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

/* jera
-----------------------------------------------------------*/
#jera {
  background-image: url("../image/jera/bg_first_pc.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100%;
  padding: 96px 0;
}
#jera::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
}
#jera .jera_box {
  position: relative;
  margin: 0 auto;
  width: 900px;
  max-width: calc(100% - 32px);
  background-clip: padding-box;
  padding: 32px 0;
}
#jera .jera_box .jera_detail {
  width: 750px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}
#jera .jera_box h4 {
  /* color: #d8b667; */
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 24px;
}
#jera .jera_box .banner_text {
  color: #d8b667;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 16px;
}
#jera .jera_box p {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}
#jera .jera_box img {
  max-width: 600px;
  display: block;
  margin: 16px auto;
  /* border: 1px solid #d8b667; */
}
#jera .jera_box .btn_box {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #jera {
    background-image: url("../image/jera/bg_first_sp.jpg");
    padding: 56px 0;
  }
  #jera .jera_box {
    padding: 24px 0;
  }
  #jera .jera_box h4 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 16px;
  }
  #jera .jera_box p {
    text-align: start;
    font-size: 14px;
  }
  #jera .jera_box img {
    margin: 24px auto;
  }
  #jera .jera_box .btn_box {
    flex-direction: column;
  }
}

/* pick up
-----------------------------------------------------------*/
#pickup {
  background-color: #fff;
}
/* .pickup_container {
  width: 480px;
  max-width: 100%;
} */
.pickup_box {
  padding: 56px 0;
}
.pickup_container img {
  border: 0.8px solid #d1d1d1;
}
#pickup .text_box {
  background-color: #d1d1d1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: start;
  padding: 16px;
  height: 130px;
}
#pickup .text_box .tag {
  background-color: #f08200;
  color: #000;
  text-align: right;
  font-family: "Mohave", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding: 4px 8px;
}
#pickup .text_box .text {
  overflow: hidden;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  line-clamp: 2;
}
#pickup .text_box .pickup_arrow {
  width: 17px;
  height: 17px;
  margin-left: auto;
}
#pickup .main_title {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  #pickup .main_title {
    margin-bottom: 24px;
  }
}

/* news
-----------------------------------------------------------*/
#news {
  background-color: #e8e8e8;
}
#news .news_box {
  padding: 96px 0;
}
#news span {
  display: block;
  border-top: 1px solid #000;
  width: 100%;
}
#news .news_item {
  margin: 16px 0;
  display: block;
}
#news .news_item .date {
  color: #d8b667;
  font-family: "Mohave", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}
#news .news_item .text {
  color: #000;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 4px 0 8px;
}
#news .news_item .more {
  display: flex;
  gap: 8px;
  justify-content: end;
  align-items: center;
  color: #000;
  font-family: "Mohave", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}
#news .news_item .more img {
  width: 17px;
  height: 17px;
}
#news .btn_common {
  width: 500px;
  max-width: calc(100% - 32px);
  margin: 48px auto 0;
}

@media screen and (max-width: 768px) {
  #news .news_box {
    padding: 80px 0;
  }
  #news .main_title {
    margin-bottom: 24px;
  }
  #news .news_item .text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: unset;
    font-size: 14px;
  }
  #news .btn_common {
    margin: 40px auto 0;
  }
}

/* PARADE
-----------------------------------------------------------*/
#parade {
  background: linear-gradient(to bottom, #e8e8e8 50%, #000 50%);
  position: relative;
}
.parade_box {
  padding: 96px 0;
}
.parade_container {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  align-items: center;
  justify-content: center;
}
.parade_container img {
  width: 50%;
  max-width: 100%;
}
.parade_container .text_box {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
.parade_container h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  font-family: "Noto Sans JP", sans-serif;
}
.parade_container .text_box p {
  font-size: 16px;
  margin: 32px 0 48px;
  line-height: 170%;
}
.parade_container .text_box .btn_common {
  width: 311px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .parade_box {
    padding: 80px 0;
  }
  .parade_container {
    flex-direction: column;
    gap: 20px;
  }
  .parade_container img {
    width: 100%;
  }
  .parade_container h2 {
    font-size: 20px;
    text-align: center;
  }
  .parade_container .text_box p {
    font-size: 14px;
    margin: 6px 0 32px;
    line-height: 170%;
  }
}

/* GOODS
-----------------------------------------------------------*/
#goods {
  background-color: #000;
}
.goods_box {
  padding: 96px 0;
}
.goods_box .sub_text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  margin: 48px 0;
}
.goods_box .sub_text a {
  text-decoration: underline;
}
.goods_box .name {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin-top: 16px;
}
.goods_box .size {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 4px;
}
.goods_box .price {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 4px;
}

.btn_white {
  background-color: #fff;
  color: #000 !important;
  border-radius: 10px;
  height: 55px;
  background-image: url("../image/icon/arrow_black.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;
  width: 500px;
  margin: 56px auto 72px;
  max-width: calc(100% - 32px);
}
.btn_white:hover {
  background-color: #000;
  color: #fff !important;
  background-image: url("../image/icon/btn_arrow.svg");
  opacity: 1;
  border: 1px solid white;
}
.sale_box {
  border: 3px solid #d8b667;
  padding: 24px 16px;
  display: flex;
  gap: 24px;
}
.sale_box img {
  width: 50%;
}
.sale_box h3 {
  color: #d8b667;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 16px;
}
.sale_box p {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 24px;
}
.sale_box .text_orange {
  color: #f08200;
  border-bottom: 1px solid #f08200;
}
.btn_b_white {
  background-color: #f08200;
  color: #fff !important;
  border: 1px solid #fff;
  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;
  width: 311px;
  margin: 24px auto;
  max-width: calc(100% - 32px);
}
.btn_b_white:hover {
  background-color: #fff;
  color: #000 !important;
  background-image: url("../image/icon/arrow_black.svg");

  opacity: 1;
}

@media screen and (max-width: 768px) {
  .goods_box {
    padding: 80px 0;
  }
  .goods_box .sub_text {
    font-size: 14px;
    margin: 40px 0 24px;
  }
  .sale_box {
    flex-direction: column;
    padding: 20px 12px;
  }
  .sale_box img {
    width: 100%;
  }
  .sale_box h3 {
    font-size: 17px;
  }
  .sale_box p {
    font-size: 14px;
  }
  .goods_container ul {
    flex-wrap: nowrap;
  }
}

/* tv
-----------------------------------------------------------*/
#tv {
  background-image: url("../image/tv/bg_giantsTv_pc.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tv_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 96px 0;
}
.tv_box .sub_text {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 4px;
}
.tv_box .small_text {
  color: var(--white, #fff);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}
.tv_box .tv_logo {
  max-width: 440px;
  margin: 16px 0 48px;
}
.tv_box .dec {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  width: 750px;
  max-width: 100%;
  margin-bottom: 56px;
  text-align: center;
}
.tv_box .btn_box {
  display: flex;
  gap: 16px;
}
#tv .btn_b_white {
  width: 440px;
  max-width: 100%;
}
#tv .tv_img {
  max-width: 560px;
  margin: 0 auto;
}
.tv_box .tv_img .sub_text {
  font-size: 16px;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  #tv {
    background-image: url("../image/tv/bg_giantsTv_sp.jpg");
  }
  .tv_box .tv_logo {
    margin: 16px 0 40px;
  }
  .tv_box .dec {
    margin-bottom: 40px;
  }
  .tv_box .btn_box {
    flex-direction: column;
  }
  .tv_box .btn_b_white {
    margin: 0 auto;
  }
  #tv .tv_img {
    margin: 20px auto 36px;
  }
  #tv .btn_b_white {
    width: 350px;
    max-width: 100%;
  }
}

/* memorial
-----------------------------------------------------------*/
.memorial_bg {
  position: sticky;
  top: 70px;
  left: 0;
}
.memorial_bg img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.memorial_box {
  background-color: rgba(0, 0, 0, 0.85);
  position: relative;
}
.memorial_wrapper {
  padding-top: 96px;
}
.memorial_box .sub_text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  margin: 48px 0;
}
.memorial_container {
  width: 900px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding-bottom: 96px;
}
.memorial_container li {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.memorial_container li img {
  width: 54%;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  border-radius: 11px;
  overflow: hidden;
}
.memorial_container .text_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 46%;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}
.memorial_container .orange {
  color: #f08200;
  font-family: "Mohave", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 16px;
}
.memorial_container .orange span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  margin-left: 10px;
}
.memorial_container .title {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}
.memorial_container .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (max-width: 768px) {
  .memorial_bg {
    height: 100vh;
  }
  #memorial .white_title {
    font-size: 80px;
  }
  .memorial_wrapper {
    padding-top: 80px;
  }
  .memorial_box .sub_text {
    margin: 40px 0 24px;
  }
  .memorial_container {
    max-width: 100%;
    padding-bottom: 80px;
  }
  .memorial_container li {
    flex-direction: column;
  }
  .memorial_container li img {
    width: 100%;
  }
  .memorial_container .text_box {
    width: 100%;
  }
  .memorial_container .orange {
    margin-bottom: 0;
    font-size: 20px;
  }
  .memorial_container .orange span {
    font-size: 16px;
  }
  .memorial_container .title {
    font-size: 18px;
  }
  .memorial_container .text {
    font-size: 14px;
  }
  .memorial_box {
    height: 100%;
  }
}

/* movie
-----------------------------------------------------------*/
#movie {
  background: linear-gradient(
    to bottom,
    black 0%,
    black 50%,
    white 50%,
    white 100%
  );
  position: relative;
}
.movie_box {
  padding: 96px 0;
}
.movie_box ul {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.movie_box li {
  display: flex;
  gap: 24px;
}
.movie_box .left {
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
}
.movie_item {
  width: 540px;
  max-width: 100%;
  position: relative;
}
.movie_box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.movie_item .date {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  color: #fff;
  font-family: "Mohave", sans-serif;
  /* font-size: 32px; */
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  padding: 6px 10px;
}
.movie_box li .text_box {
  max-width: 365px;
}
.movie_box li .title {
  color: #000;
  font-family: "Noto Sans JP";
  /* font-size: 32px; */
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
.movie_box li .tag {
  color: #000;
  font-family: "Noto Sans JP";
  /* font-size: 32px; */
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 8px;
}
.left_item {
  margin: 40px 0 40px auto;
}
.movie_item.left .date {
  right: 0;
  left: unset;
}
.movie_box li .title.left {
  text-align: end;
}

.coming_soon {
  color: #000;
  text-align: center;
  margin: 48px 0;
  font-family: "Mohave", sans-serif;
  font-size: 79px;
  font-weight: 700;
  line-height: 100%;
}

@media screen and (max-width: 768px) {
  .movie_box {
    padding: 80px 0;
  }
  .movie_box ul {
    margin: 40px 0 48px;
  }
  .movie_box li {
    flex-direction: column;
    gap: 12px;
  }
  .movie_box .left {
    flex-direction: column;
    gap: 12px;
  }
  .movie_item .date {
    font-size: 20px;
  }
  .movie_box li .title {
    font-size: 24px;
  }
  #movie .btn_white {
    margin: 24px auto;
  }
}

/* sns
-----------------------------------------------------------*/
#sns {
  background-image: url("../image/memorial/bg_second_pc.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100%;
}
.sns_container {
  background-color: rgba(0, 0, 0, 0.85);
  position: relative;
}
.sns_container::before {
  position: absolute;
  content: "";
  height: 60px;
  width: 100%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #fff 100%);
}
.sns_box {
  padding: 122px 0;
}
.sns_up {
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
}
.sns_box h1 {
  color: #f08200;
  font-family: "Noto Sans JP";
  font-size: 60px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
.sns_box p {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  margin: 32px 0 56px;
}
.sns_box ul {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .sns_box {
    padding: 80px 0;
  }
  .sns_box h1 {
    font-size: 40px;
  }
  .sns_box p {
    font-size: 20px;
    margin: 16px 0 40px;
  }
  .sns_box ul {
    flex-direction: column;
  }
  .sns_box li {
    width: 311px;
    margin: 0 auto;
  }
}

/* photo
-----------------------------------------------------------*/
#photo {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
#photo .sub_black {
  margin-bottom: 32px;
}
.photo_box {
  padding: 96px 0;
}
.grid_wrapper {
  overflow: hidden;
  position: relative;
  height: 3000px;
  transition: height 0.3s ease-out;
  padding-bottom: 60px; /* ボタン用のスペースを確保 */
}
.grid_wrapper img {
  max-width: 100%;
}
.grid_wrapper::before {
  position: absolute;
  content: "";
  height: 200px;
  width: 100%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #fff 100%);
  transition: opacity 0.3s ease-out;
}
.photo_box.is-open .grid_wrapper {
  height: auto;
  overflow-y: visible;
  padding-bottom: 60px; /* 開いた状態でもボタン用のスペースを維持 */
}
.photo_box.is-open .grid_wrapper::before {
  opacity: 0;
}

.preview_more_btn {
  border-radius: 10px;
  background: #d8b667;
  background-image: url("../image/icon/arrow_down.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  text-align: center;
  display: block;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  width: 311px;
  padding: 18px;
  margin: 0 auto;
  position: relative;
  top: -20px;
  cursor: pointer;
  z-index: 10; /* ボタンを最前面に */
  transition: opacity 0.3s, visibility 0.3s;
}
.preview_more_btn:hover {
  opacity: 0.8;
}
.preview_more_btn .more {
  opacity: 1;
  display: block;
}
.preview_more_btn .close {
  opacity: 0;
  display: none;
}
.photo_box.is-open .preview_more_btn::before {
  transform: translateY(-50%) rotate(180deg);
}
.photo_box.is-open {
  background-color: transparent; /* 開いた状態で背景を透明に */
}
.photo_box.is-open .grid_wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55px; /* ボタンの高さに合わせる */
  background-color: rgba(255, 255, 255, 0.7); /* ボタンの背景と同じ色 */
  z-index: 5; /* テキストの上、ボタンの下 */
}
.photo_box.is-open .preview_more_btn .more {
  opacity: 0;
  display: none;
}
.photo_box.is-open .preview_more_btn {
  background-image: url("../image/icon/arrow_up.svg");
}
.photo_box.is-open .preview_more_btn .close {
  opacity: 1;
  display: block;
}
.grid_wrapper {
  margin-top: 32px;
}
.grid_box {
  display: grid;
  width: 100%;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 11px;
  margin-bottom: 10px;
}

.grid_box.first {
  grid-template-columns: 65.56% 33.22%;
  grid-template-rows: 55.3% 41.55%;
  position: relative;
}
.grid_box #photo_01,
.grid_box #photo_08,
.grid_box #photo_15,
.grid_box #photo_22,
.grid_box #photo_29,
.grid_box #photo_36,
.grid_box #photo_43,
.grid_box #photo_50,
.grid_box #photo_57,
.grid_box #photo_64 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.grid_box #photo_02,
.grid_box #photo_09,
.grid_box #photo_16,
.grid_box #photo_23,
.grid_box #photo_30,
.grid_box #photo_37,
.grid_box #photo_44,
.grid_box #photo_51,
.grid_box #photo_58,
.grid_box #photo_65 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.grid_box #photo_03,
.grid_box #photo_10,
.grid_box #photo_17,
.grid_box #photo_24,
.grid_box #photo_31,
.grid_box #photo_38,
.grid_box #photo_45,
.grid_box #photo_52,
.grid_box #photo_59,
.grid_box #photo_66 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.grid_box.second {
  grid-template-columns: 33.22% 65.56%;
  grid-template-rows: 28.94% 21.74% 46.03%;
}
.grid_box #photo_04,
.grid_box #photo_11,
.grid_box #photo_18,
.grid_box #photo_25,
.grid_box #photo_32,
.grid_box #photo_39,
.grid_box #photo_46,
.grid_box #photo_53,
.grid_box #photo_60 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.grid_box #photo_05,
.grid_box #photo_12,
.grid_box #photo_19,
.grid_box #photo_26,
.grid_box #photo_33,
.grid_box #photo_40,
.grid_box #photo_47,
.grid_box #photo_54,
.grid_box #photo_61 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.grid_box #photo_06,
.grid_box #photo_13,
.grid_box #photo_20,
.grid_box #photo_27,
.grid_box #photo_34,
.grid_box #photo_41,
.grid_box #photo_48,
.grid_box #photo_55,
.grid_box #photo_62 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}
.grid_box #photo_07,
.grid_box #photo_14,
.grid_box #photo_21,
.grid_box #photo_28,
.grid_box #photo_35,
.grid_box #photo_42,
.grid_box #photo_49,
.grid_box #photo_56,
.grid_box #photo_63 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}
.hide {
  display: none !important;
}

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

/* .fancybox-bg {
  background-color: #000 !important;
} */
.fancyboxBox .content {
  width: 750px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}
.fancyboxBox .fancyboxDisplay .tit {
  color: #d8b667;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  margin: 20px 0 24px;
}
.fancyboxBox .fancyboxDisplay .txt {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 64px;
}
.fancyboxDisplay .close {
  width: 500px;
  max-width: calc(100% - 32px);
  margin: 30px auto 0;
}
.fancyboxDisplay .close a {
  border: 2px solid #d8b667;
  color: #d8b667;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Mohave", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 100%;
  height: 50px;
  border-radius: 10px;
}
.fancybox-content {
  top: 50%;
  transform: translateY(-50%);
}
.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) {
  .photo_box {
    padding: 80px 0;
  }
  .grid_wrapper {
    height: 1800px;
  }
  .grid_box {
    gap: 7px;
    margin-bottom: 7px;
  }
  .grid_box.first {
    grid-template-columns: 65.21% 32.46%;
    grid-template-rows: 56.44% 40.44%;
  }

  .grid_box.second {
    grid-template-columns: 32.46% 65.21%;
    grid-template-rows: 32.9% 23.57% 39.89%;
  }
  .fancybox-slide {
    padding: 0;
  }
  .fancyboxBox .fancyboxDisplay {
    padding: 0;
  }
  .fancyboxBox .fancyboxDisplay .tit {
    font-size: 18px;
  }
  .fancybox-content button.prev,
  .fancybox-content button.next {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
  }
  .fancyboxBox .fancyboxDisplay .txt {
    margin-bottom: 28px;
  }
  .fancyboxBox .fancyboxDisplay .modal_btn {
    width: 500px;
    max-width: calc(100% - 32px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
}

/* giants_lp_footer
-----------------------------------------------------------*/
#giants_lp_footer .pagetop {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background-color: #f08200;
  color: #000;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "Mohave", sans-serif;
  font-size: 28px;
  font-weight: 700;
}
#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_pagetop {
    height: 48px;
  }
  #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;
  }
}
