.logosp {
  display: none;
}
.hamburger {
  width: 72px;
  height: 57px;
  position: fixed;
  right: 64px;
  top: 64px;
  z-index: 100;
}
.hamburger a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.hamburger a:hover span {
  transform-origin: 0% 0%;
  -moz-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}
.hamburger__bars {
  display: block;
  width: 100%;
  height: 17px;
  position: relative;
}
.hamburger__bars span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: #353e3f;
  position: absolute;
  left: 0;
  transform-origin: 100% 0%;
  -moz-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
  transition: all 0.6s cubic-bezier(0.37, 0, 0.14, 0.99);
}
.hamburger__bars span:nth-of-type(1) {
  top: 0px;
  transform: scaleX(1);
}
.hamburger__bars span:nth-of-type(2) {
  top: 8px;
  transform: scaleX(0.66);
}
.hamburger__bars span:nth-of-type(3) {
  top: 16px;
  transform: scaleX(0.33);
}
.header {
  width: 208px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}
.header__inner {
  width: 100%;
  height: 100%;
  position: relative;
  flex-wrap: wrap;
}
.header__title {
  position: fixed;
  left: 5vw;
  top: 80px;
}
.header__title a {
  display: block;
  line-height: 1em;
  transition: all 0.3s;
}
.header__title a:hover {
  opacity: 0.5;
}
.header__nav {
  flex-basis: 100%;
  display: block;
  padding-top: 111px;
}
.header__nav ul {
  margin-left: 52px;
  margin-right: 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  list-style: none;
}
.header__nav li {
  line-height: 1em;
}
.header__nav li:last-of-type {
  margin-bottom: 0;
}
.header__nav li.is--hidden {
  pointer-events: none;
  opacity: 0.3;
}
.header__nav li.is--blank a::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: url("../img/common/icon_blank.svg") center center no-repeat;
  background-size: cover;
  position: absolute;
  right: -14px;
  top: 8px;
}
.header__nav li.is--hidden {
  pointer-events: none;
}
.header__nav li.is--hidden a {
  color: #82a4b6;
}
.header__nav a {
  position: relative;
  font-family: "Leida", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #353e3f;
  display: inline-block;
  padding: 0;
  transition: all 0.3s;
}
.header__nav a:hover {
  opacity: 0.5;
}
.header__desc {
  flex-basis: 100%;
  text-align: center;
}
.header__desc__button {
  width: 104px;
  height: 39px;
  position: fixed;
  bottom: 103px;
  right: 52px;
}
.header__desc__button span {
  padding: 12px 0px;
  border: 2px solid #9fd5ea;
  background: rgba(255, 255, 255, 0.6);
  color: #9fd5ea;
  margin-bottom: 40px;
  transition: all 0.3s;
}
.header__desc__button span:hover {
  color: #fff;
  border: 2px solid #9fd5ea;
  background: #9fd5ea;
}
.header__desc__button a {
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  font-family: "Leida", serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 16.8px */
  letter-spacing: 0.24px;
  transition: all 0.3s;
}
.sp-header__desc__button_text {
  display: none;
}
/* .header__desc__button a:hover {
  color: #fff;
} */
.header__desc__button a > span {
  display: block;
  position: relative;
  z-index: 2;
}
.header__desc__button i {
  display: block;
}
.header__desc__button.is--hidden {
  pointer-events: none;
}
.header__desc__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 40px;
  right: 52px;
  gap: 24px;
}
.header__desc__sns a {
  display: block;
  transition: all 0.3s;
  padding: 1.333px;
}
.header__desc__sns a:hover {
  opacity: 0.5;
}
.hamburger {
  transition: transform 1s cubic-bezier(0.41, 0, 0.04, 1);
  transform: translateX(136px);
}
.hamburger.is--scroll {
  transform: translateX(0px);
}
.hamburger.is--open {
  transform: translateX(136px);
}
.header__nav {
  transition: all 1s cubic-bezier(0.41, 0, 0.04, 1);
  transform: translateX(0px);
  opacity: 1;
}
.header__nav.is--scroll {
  transform: translateX(160px);
  opacity: 0;
}
.header__nav.is--open {
  transform: translateX(0px);
  opacity: 1;
}
.scrollContainer {
  transition: transform 1s;
  transition-timing-function: cubic-bezier(0.05, 0.24, 0.04, 1);
  position: relative;
  z-index: 2;
  width: 100%;
}
.is--parallax {
  transition: transform 2s;
  transition-timing-function: cubic-bezier(0.05, 0.24, 0.04, 1);
}
.spFixed__ticket {
  display: none;
}
/* 画面幅 744 px 未満　（スマホ）*/
@media screen and (max-width: 743px) {
  .logosp {
    display: block;
    position: fixed;
    left: 6.9230769231vw;
    top: 33px;
    top: 8.8vw;
    z-index: 50;
  }
  .logosp img {
    width: 120px;
    width: 32vw;
    height: auto;
  }
  .hamburger {
    width: 36px;
    width: 9.6vw;
    height: 35px;
    height: 9.3333333333vw;
    position: fixed;
    right: 27px;
    right: 7.2vw;
    top: 23px;
    top: 6.1333333333vw;
    z-index: 100;
  }
  .hamburger a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }
  .hamburger a:hover span {
    transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
  }
  .hamburger__bars {
    display: block;
    width: 100%;
    height: 15px;
    height: 4vw;
    position: relative;
  }
  .hamburger__bars span {
    display: block;
    height: 1px;
    height: 0.2666666667vw;
    width: 100%;
    background-color: #353e3f;
    position: absolute;
    left: 0;
    transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transition: all 0.6s cubic-bezier(0.37, 0, 0.14, 0.99);
  }
  .hamburger__bars span:nth-of-type(1) {
    top: 0px;
    top: 0vw;
    transform: scaleX(1);
  }
  .hamburger__bars span:nth-of-type(2) {
    top: 7px;
    top: 1.8666666667vw;
    transform: scaleX(0.66);
  }
  .hamburger__bars span:nth-of-type(3) {
    top: 14px;
    top: 3.7333333333vw;
    transform: scaleX(0.33);
  }
  .header {
    width: 100%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    background-color: #ffffff;
    display: none;
  }
  .header__inner {
    margin-left: auto;
    width: 248px;
    width: 63.58974358974359vw;
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    background-image: url("../img/common/background-sp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .header__inner::before {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0)
    );
    z-index: 0;
  }
  .header__title {
    display: none;
  }
  .header__nav {
    flex-basis: 35.3846153846vw;
    margin-left: 15.128205128205128vw;
    padding-top: 149px;
    padding-top: 39.7333333333vw;
    display: block;
  }
  .header__nav ul {
    /* margin-right: 34px; */
    margin-left: 0;
    /* display: flex;
      flex-direction: column;
      gap: 24px;
      list-style: none; */
  }
  .header__nav li {
    line-height: 1em;
  }
  .header__nav li:last-of-type {
    margin-bottom: 0;
  }
  .header__nav li.is--hidden {
    pointer-events: none;
    opacity: 0.3;
  }
  .header__nav li.is--blank a::after {
    content: "";
    display: block;
    width: 7px;
    width: 1.8666666667vw;
    height: 7px;
    height: 1.8666666667vw;
    background: url("../img/common/icon_blank.svg") center center no-repeat;
    background-size: 100% 100%;
    position: absolute;
    right: -14px;
    right: -3.7333333333vw;
    top: 8px;
    top: 2.1333333333vw;
  }
  .header__nav li.is--hidden {
    pointer-events: none;
  }
  .header__nav li.is--hidden a {
    color: #82a4b6;
  }
  .header__nav a {
    position: relative;
    font-family: "Leida", serif;
    font-weight: 500;
    font-size: 16px;
    font-size: 3.5897435897435894vw;
    line-height: 110%;
    letter-spacing: 0.5px;
    letter-spacing: 0.1333333333vw;
    text-decoration: none;
    color: #353e3f;
    display: inline-block;
    padding-top: 0px;
    padding-bottom: 0px;
    transition: none;
  }
  .header__nav a:hover {
    opacity: 1;
  }
  .header__desc {
    flex-basis: 35.3846153846vw;
    margin-left: 15.128205128205128vw;
    text-align: center;
    padding-bottom: 79px;
  }
  /* .header__desc__button span {
    padding: 12px 0px;
    border: 2px solid #9fd5ea;
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    color: #9fd5ea;
    margin-top: 8px;
    margin-bottom: 40px;
  } */
  .header__desc__button {
    width: 131px;
    height: 39px;
    width: 33.58974358974359vw;
    height: 10vw;
    bottom: 106px;
    left: 0px;
  }
  .header__desc__button a {
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    font-family: "Leida", serif;
    font-size: 12px;
    font-size: 3.076923076923077vw;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 16.8px */
    letter-spacing: 0.24px;
    transition: all 0.3s;
  }
  .header__desc__button span {
    padding: 12px 0px;
    padding: 3.076923076923077vw 0;
    border: 2px solid #9fd5ea;
    background: rgba(255, 255, 255, 0.6);
    color: #9fd5ea;
    margin-bottom: 37px;
    margin-bottom: 9.487179487179487vw;
  }
  .header__desc__button a > span {
    display: block;
    position: relative;
    z-index: 2;
  }
  .pc-header__desc__button_text {
    display: none;
  }
  .sp-header__desc__button_text {
    display: block;
  }
  .header__desc__button a > span span {
    display: none;
  }
  .header__desc__button i {
    display: block;
  }
  .header__desc__button.is--hidden {
    pointer-events: none;
  }
  .header__desc__sns {
    width: 130px;
    width: 33.333333333333333vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: unset;
    right: unset;
    gap: 28.8px;
  }
  .header__desc__sns li {
    margin: 0;
  }
  .header__desc__sns li.sns--instagram img {
    width: 20px;
    width: 5.3333333333vw;
    height: auto;
  }
  .header__desc__sns li.sns--twitter img,
  .header__desc__sns li.sns--facebook img {
    width: 22px;
    width: 5.8666666667vw;
    height: auto;
  }
  .header__desc__sns a {
    display: block;
    transition: none;
  }
  .header__desc__sns a:hover {
    opacity: 1;
  }
  .hamburger {
    transition: transform 1s cubic-bezier(0.41, 0, 0.04, 1);
    transform: translateX(0px);
  }
  .hamburger.is--open {
    transform: translateX(0px);
  }
  .hamburger.is--open .hamburger__bars span:nth-of-type(1),
  .hamburger.is--open .hamburger__bars span:nth-of-type(3) {
    transform: scaleX(0);
  }
  .hamburger.is--open .hamburger__bars span:nth-of-type(2) {
    transform: scaleX(1);
  }
  .header__nav {
    transition: none;
  }
  .scrollContainer {
    transition: transform 1s;
    transition-timing-function: cubic-bezier(0.05, 0.24, 0.04, 1);
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .is--parallax {
    transition: transform 2s;
    transition-timing-function: cubic-bezier(0.05, 0.24, 0.04, 1);
  }
  .spFixed__ticket {
    position: fixed;
    display: block;
    bottom: 32px;
    bottom: 8.205128205128205vw;
    right: 13.5px;
    right: 3.461538461538462vw;
    width: 104px;
    width: 26.666666666666667vw;
    height: 39px;
    height: 10vw;
    z-index: 9;
    padding: 12px 0px;
    padding: 3.076923076923077vw 0;
    border: 2px solid #9fd5ea;
    border: 0.512820512820513vw solid #9fd5ea;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
  }
  .spFixed__ticket a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: #9fd5ea;
    font-family: "Leida", serif;
    font-size: 14px;
    font-size: 3.58974358974359vw;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 15.4px */
    letter-spacing: 0.84px;
    transition: all 0.3s;
  }
  .spFixed__ticket:hover {
    border: 2px solid #9fd5ea;
    background: #9fd5ea;
  }
  .spFixed__ticket a:hover {
    color: #fff;
  }
  .spFixed__ticket a > span {
    display: block;
    position: relative;
    z-index: 2;
  }
}
