/*common*/
@font-face {
  font-family: Acumin Pro;
  src: url(../font/Acumin-BdPro.otf);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  font-weight: normal;
  font-family: "Noto Sans JP", serif;
}
.literata {
  font-family: "Literata", serif;
}
ul,
ol {
  list-style: none;
}
picture {
  max-width: 100%;
  width: 100%;
}
img {
  max-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: 1000px;
  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;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  font-family: "Acumin Pro";
  font-size: 100px;
  font-weight: 700;
  line-height: 100%; /* 100px */
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .comingsoon {
    font-size: 64px;
    padding: 64px 0;
  }
}

/* !header
---------------------------------------------------------- */
#giants_lp_header {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  z-index: 100;
  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%;
    border-bottom: 2px solid #e3800b;
  }
  #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;
  }
}



/* footer
-----------------------------------------------------------*/
#giants_lp_footer {
  position: relative;
  z-index: 2;
}
#giants_lp_footer .pagetop {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background-color: #f08200;
}
#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;
  }
}
