#fvContainer {
  width: 100%;
  height: 100dvh;
  position: relative;
}

main .logo {
  width: 141.0512px;
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 11;
}

.fvImg {
  height: 100%;
}

.fvImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fvText {
  width: 510px;
  position: absolute;
  top: calc(50% + 80px);
  left: 15%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 1;
  transition: 2s;
  opacity: 0;
}

.fvText.customAni {
  opacity: 1;
  top: 50%;
}

.fvText h2 span:first-of-type {
  font-size: 27.8px;
  line-height: 1.7;
}

.fvText h2 span:last-of-type {
  width: 402px;
  height: 60px;
  margin: 20px auto 0;
  display: block;
  /* border: 2px solid #fff; */
  font-size: 28px;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fvText > p {
  margin-top: 30px;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 7px;
  text-indent: 7px;
}

.fvText > img {
  width: 253.0315px;
  margin-top: 40px;
}

.scroll {
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 1;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: 0 auto;
}

.scrollBar {
  width: 1px;
  height: 100px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  overflow: hidden;
}

.scrollBar::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  animation: scroll 4s infinite;
}

@keyframes scroll {
  0% {transform: translateY(-100%);}
  40% {transform: translateY(0%)}
  80% {transform: translateY(100%)}
  100% {transform: translateY(100%)}
}

small {
  font-size: 12px;
}

#fvContainer > small {
  position: absolute;
  bottom: 10px;
  right: 20px;
}







#openContainer {
  width: calc(50% + 450px);
  margin: 100px 0 0 auto;
  position: relative;
}

.openBack1 {
  width: 830.7194px;
  position: absolute;
  top: -325px;
  left: 340px;
  z-index: -1;
}

.openBack2 {
  width: 2000px;
  max-width: none;
  position: absolute;
  left: -1800px;
  bottom: -500px;
}

.openContents {
  max-width: 1150px;
  margin: 0 auto 0 0;
}

.openContents > img {
  width: 115px;
  position: absolute;
  top: 0;
  left: 0;
}

.openText {
  width: 460px;
  padding: 72px 0 0 105px;
}

.openText h3 {
  font-size: 24px;
  letter-spacing: -0.5px;
  line-height: 1.5;
}

.openText p {
  margin-top: 36px;
  font-size: 18px;
  line-height: 2;
}

.openText small {
  display: block;
  margin-top: 26px;
}

.openImg {
  width: 730px;
  position: absolute;
  top: 140px;
  left: 420px;
  z-index: -1;
}






#videoContainer {
  width: 90%;
  max-width: 700px;
  margin: 280px auto 0;
  padding-bottom: 150px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.title h2 {
  font-size: 60px;
  line-height: 1.2;
  color: var(--titleFontColor);
}

.title p {
  margin-top: 10px;
  font-size: 20px;
}

.videoContents {
  margin-top: 20px;
  position: relative;
}

video {
  width: 100%;
  vertical-align: bottom;
}

.formBtn {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.formBtn.hidden {
  display: none;
}

.linkBtnContainer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 15px;
}

.linkBtnContainer li {
  width: 300px;
  height: 60px;
  background: url(../img/headerTelBack.png) center center / cover no-repeat;
}

.linkBtnContainer li a {
  display: block;
  height: 100%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}





#formContainer {
  width: 100vw;
  height: 100dvh;
  padding: 150px 0 100px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}

#formContainer.active {
  opacity: 1;
  visibility: visible;
}

.formCloseBtn {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 10px;
  cursor: pointer;
}

.cross {
  width: 24px;
  height: 24px;
  position: relative;
}

.cross span {
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cross span:first-of-type {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cross span:last-of-type {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.formContents {
  width: 90%;
  max-width: 800px;
  margin: 10px auto 0;
  padding: 80px 50px;
  box-sizing: border-box;
  background: #fff;
  color: var(--primaryColor);
}

.formText {
  font-size: 24px;
  line-height: 1.4;
  color: var(--titleFontColor);
  text-align: center;
  position: relative;
  letter-spacing: -0.5px;
}

.formText::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--titleFontColor);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.formBack {
  margin-top: 50px;
  padding: 70px 50px;
  box-sizing: border-box;
  background: #F3F2F0;
}

.formGroup {
  margin-bottom: 40px;
}

.itemName {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
}

.must {
  margin-left: 5px;
  font-size: 12px;
  color: var(--titleFontColor);
}

.itemName > small {
  margin-left: 10px;
  font-weight: 500;
}

.answer {
  display: flex;
  gap: 0 16px;
}

.answer.radio {
  gap: 0 25px;
}

.answer.text label {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

input[type="text"], input[type="date"], select {
  width: 100%;
  flex: 0 1 100%;
  max-width: 292px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 3px;
}

.email input[type="text"], .email_confirm input[type="text"], select {
  max-width: 454px;
}

select {
  color: #000!important;
}
button {
  background: transparent!important;
}

.hotel input[type="text"] {
  max-width: 100%;
  width: 100%;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 10px 10px;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 3px;
}

.agree a {
  color: #000;
  text-decoration: underline;
}

.agree label {
  display: block;
}

.agree input {
  margin-right: 5px;
}

#btn {
  display: block;
  width: 300px;
  height: 70px;
  margin: 50px auto 0;
  font-size: 20px;
  letter-spacing: 30px;
  text-indent: 30px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: var(--titleFontColor);
  font-weight: bolder;
  border: 2px solid var(--titleFontColor);
  box-sizing: border-box;
  font-size: 20px;
  position: relative;
  cursor: pointer;
}

#btn::after {
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  background: var(--titleFontColor);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.btnConfirm {
  display: block;
  margin-top: 50px;
  text-align: center;
}

#privacypolicyText {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #E0E0E0;
}

#privacypolicyText small {
  display: block;
  line-height: 1.7;
}

#privacypolicyText small a {
  color: var(--titleFontColor);
  text-decoration: underline;
}
#privacypolicyText small a.ad {
  color: #202B46;
  text-decoration: none;
}

.error {
  flex: 1 1 100%;
  font-size: 1.1em;
  color: red;
}





#membershipContainer {
  padding: 130px 0 150px;
  background: var(--secondaryColor);
  position: relative;
}

.membershipBack {
  width: 793.2175px;
  position: absolute;
  top: -220px;
  left: calc(50% + 250px);
}

.membershipContents {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.membershipImg {
  margin-top: 40px;
}

.membershipContents .contentsText {
  margin-top: 40px;
}

.contentsText h3 {
  font-size: 22px;
}

.contentsText p {
  margin-top: 13px;
}

.membershipContents .contentsText p {
  display: flex;
  gap: 0 30px;
}

.membershipContents .contentsText span {
  flex: 435px;
}






#benefitsContainer {
  padding: 130px 0 200px;
  overflow: hidden;
}

#benefitsContainer .title {
  text-align: center;
}

.benefitsContents {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.benefitsBack1 {
  width: 830.7194px;
  position: absolute;
  top: -592px;
  left: -460px;
}

.benefitsBack2 {
  width: 849.2089px;
  position: absolute;
  bottom: -640px;
  right: -490px;
}

.benefitsBack3 {
  width: 2000px;
  max-width: none;
  position: absolute;
  left: -970px;
  bottom: -860px;
}

.benefits {
  margin-top: 180px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 60px;
}

.benefits:first-of-type {
  margin-top: 130px;
}

.benefits .contentsText {
  flex: 0 1 380px;
}

.benefits .contentsText small {
  display: block;
  margin-top: 26px;
}

.benefitsImg {
  width: 460px;
}

.benefitsNumber {
  font-size: 300px;
  letter-spacing: -10px;
  line-height: 1;
  /* color: rgba(255, 255, 255, 0.1); */
  color: #313B54;
  position: absolute;
  top: -205px;
  right: -226px;
  z-index: -1;
}

.benefits:nth-of-type(even) {
  flex-direction: row-reverse;
}

.benefits:nth-of-type(even) .benefitsNumber {
  top: -190px;
  left: -240px;
  right: auto;
}

.benefits4 {
  gap: 0 40px;
}

.benefits4 .contentsText {
  flex: 0 1 400px;
}

.benefits4 h3 {
  text-indent: -10px;
}

.benefits4 h3 span {
  letter-spacing: -12px;
}

.benefits4 .contentsText p {
  width: 380px;
}







#networkContainer {
  padding: 130px 0 200px;
  background: #fff;
}

.networkTitleText {
  width: 90%;
  max-width: 900px;
  margin:  0 auto;
  color: #000;
  display: flex;
  gap: 0 70px;
}

.networkTitleText .title {
  flex: 0 1 425px;
}

.networkTitleText > p {
  flex: 0 1 405px;
}

.networkContents {
  width: 90%;
  max-width: calc(50% + 450px);
  margin: 40px 0 0 auto;
}

.slick-arrow {
  width: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.slick-prev {
  left: -45px;
}

.slick-next {
  left: 986px;
}

.slick-dots {
  position: absolute;
  bottom: -70px;
  left: 450px;
  transform: translateX(-50%);
  display: flex;
  gap: 0 15px;
}

.slick-dots li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #E0E0E0;
  cursor: pointer;
  transition: 0.3s;
}

.slick-dots li.slick-active {
  background: #000;
}

.slick-dots button {
  display: none;
}

.network {
  width: 460px;
  margin-right: 54px;
  position: relative;
}

.network a {
  display: block;
  height: 100%;
  position: relative;
}

.network img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.networkText {
  width: 90%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s;
}

.networkText dt {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.5;
}

.network:hover img {
  filter: brightness(40%);
}

.network:hover .networkText {
  opacity: 1;
}