@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Akshar:wght@300..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
::-webkit-scrollbar {
  display: none;
}

#pp-nav {
  display: none;
}

html,
body {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

* {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  background-color: #3300ff;
}

h3 {
  font-size: 5vw;
  font-weight: 600;
  font-family: "Akshar", sans-serif;
  color: #fff;
  letter-spacing: 0.5vw;
}

#section1 {
  display: inline;
  background-color: #0000ff;
  height: 100svh;
  width: 100vw;
  background-position: center center;
  background-image: url(../fvd.webp);
  background-size: cover;
}

.theme {
  margin: 6.1% 6.1% 0 6.1%;
  width: 87.8vw;
}
.theme h1 {
  font-size: 3.33vw;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  color: #333;
  background-color: #fff;
  padding: 0.26vw;
  margin: 0.36vw 0 0.36vw 0;
}
.theme p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 1.98vh;
  color: #fff;
  font-size: 1.85vw;
  line-height: 1.85;
  width: 71.8vw;
}
.theme .englishText {
  margin-top: 2.29vh;
  font-weight: 300;
  width: 36.67vw;
  font-size: 1.25vw;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.pickup {
  overflow: hidden;
  height: auto;
}
.pickup .box {
  margin: 6.1% 6.1% 0 6.1%;
  width: 87.8vw;
  height: auto;
}
.pickup .box .swiper-wrapper {
  display: flex;
}
.pickup .box .swiper-wrapper .swiper-slide {
  padding-top: 7.76vh;
  opacity: 1;
  transition: opacity 1s ease-in-out, padding-top 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: flex-start;
  vertical-align: top;
}
.pickup .box .swiper-wrapper .swiper-slide:not(.swiper-slide-visible) {
  pointer-events: none;
  opacity: 0.3;
}
.pickup .box .swiper-wrapper .swiper-slide:hover {
  cursor: pointer;
}
.pickup .box .swiper-wrapper .swiper-slide img {
  width: 26vw;
  height: auto;
  max-height: 16vw;
  border-radius: 0.78vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.pickup .box .swiper-wrapper .swiper-slide .title {
  margin-top: 1.25vh;
  font-size: 2vw;
  letter-spacing: 5%;
  width: 95%;
}
.pickup .box .swiper-wrapper .swiper-slide .area {
  margin-top: 1.25vh;
  font-size: 1.875vw;
  letter-spacing: 5%;
}
.pickup .box .swiper-wrapper .swiper-slide .tags {
  margin-top: 2vh;
  display: flex;
  flex-wrap: wrap;
  width: 95%;
}
.pickup .box .swiper-wrapper .swiper-slide .tags li {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.52vh;
  border-radius: 100px;
  border: 0.1vw solid #fff;
  font-size: 1.25vw;
  padding: 3px 10px;
}
.pickup .box .swiper-wrapper .swiper-slide .tags li:first-child {
  margin: 0.52vh 0.52vh 0.52vh 0;
}
.pickup .box .swiper-wrapper .swiper-slide .tags li:nth-child(n+1):nth-last-child(n+1) {
  margin: 0.52vh 0.52vh 0.52vh 0;
}
.pickup .box .allPickup {
  font-size: 2.5vw;
  text-align: center;
  margin-top: 5vw;
  margin-bottom: 1vw;
}
.pickup .box .allPickup a {
  padding: 0.1vw 1.2vw 0.2vw 1.2vw;
  border: #fff solid 0.2vw;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 20px;
}

.popup {
  z-index: 100;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30vw;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0.78vw;
  text-align: center;
  padding-bottom: 20px; /* 余白を調整 */
}
.popup-content .close {
  background-color: rgba(0, 0, 0, 0);
  font-size: 2vw;
  position: absolute;
  top: -32px;
  right: -32px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.popup-content img {
  width: 100%; /* 親要素に合わせる */
  height: auto; /* 比率を保ったまま高さを自動調整 */
  max-height: 16vw;
  border-radius: 0.78vw 0.78vw 0 0;
  -o-object-fit: cover;
     object-fit: cover; /* 画像を親要素に収めつつ中央に揃える */
}
.popup-content .text {
  padding: 0 32px 48px;
}
.popup-content .text #popup-title {
  padding-top: 20px; /* タイトルの上部余白を調整 */
  text-align: left;
  font-size: 1.7vw;
  letter-spacing: 5%;
  font-weight: 700;
  color: #fff;
}
.popup-content .text #popup-area {
  margin-top: 0.3vw;
  font-size: 1.3vw;
  letter-spacing: 5%;
  text-align: left;
  color: #fff;
}
.popup-content .text #popup-description {
  line-height: 1.8vw;
  text-align: left;
  margin-top: 1.5vw;
  font-size: 1.35vw;
  color: #fff;
}

.faq {
  margin: 6.1% 6.1% 0 6.1%;
  width: 87.8vw;
}
.faq ul.faqContent {
  margin-top: 8.141vh;
}
.faq ul.faqContent ul {
  margin-top: 3vw;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.faq ul.faqContent li {
  margin-bottom: 3vh;
  display: inline-block;
  text-align: left;
}
.faq ul.faqContent li .q {
  font-size: 1.5vw;
  display: block;
  border: #fff solid 0.15vw;
  width: 87.8vw;
  padding: 0.6vw;
}
.faq ul.faqContent li .q p {
  padding-top: 2px;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0px;
  position: relative;
  display: inline-block;
}
.faq ul.faqContent li .q p:hover {
  cursor: pointer;
}
.faq ul.faqContent li .q p::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -1px;
  opacity: 0;
}
.faq ul.faqContent li .q p:hover::after {
  opacity: 1;
  transition: 0.3s;
}
.faq ul.faqContent li .a {
  font-size: 1.3vw;
  padding-left: 0.6vw;
  padding-top: 1vw;
  padding-bottom: 0.5vw;
  display: none;
}

.access {
  margin: 6.1vh 6.1vw 0 6.1vw;
  width: 87.8vw;
}
.access .accessBox {
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 3vh;
  flex: 1;
  display: flex;
}
.access .accessBox .map {
  width: 40vw;
  height: 25vw;
  background-color: #fff;
  border: #fff solid 0.1vw;
}
.access .width {
  flex: 1;
}
.access p {
  width: 40vw;
  margin: auto;
  font-size: 1.6vw;
}
.access p a {
  text-decoration: underline;
}

.link {
  margin-top: 6.8%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  width: 100vw;
  height: 20vw;
  background-color: #0038FF;
}
.link .panphlet {
  background-color: #fbff00;
  color: #000;
  text-align: center;
  margin: 0 2vw;
  padding: 1.3vw;
  border-radius: 0.5vw;
}
.link .panphlet p,
.link .panphlet i {
  background-color: #fbff00;
  color: #333;
  font-size: 1.8vw;
}
.link .panphlet i {
  margin: 0 1vw 0 0.5vw;
}
.link .instagram {
  background: linear-gradient(45deg, #FC1097, #FE5D35);
  color: #000;
  text-align: center;
  margin: 0 2vw;
  padding: 1.3vw;
  border-radius: 0.5vw;
}
.link .instagram p {
  background: linear-gradient(45deg, #FC1097, #FE5D35);
  color: #fff;
  font-size: 1.8vw;
}
.link .instagram i {
  font-size: 1.8vw;
  margin: 0 1vw 0 0.5vw;
  background-color: #FC1097;
}

footer {
  font-size: 1.25vw;
  background-color: #333;
  color: white;
  padding: 1.85vh 0;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

@media screen and (max-aspect-ratio: 1/1.33) {
  #section1 {
    background-image: url(../fvs.webp);
  }
  h3 {
    font-size: 7vw;
    font-weight: 600;
    font-family: "Akshar", sans-serif;
    color: #fff;
    letter-spacing: 0.5vw;
  }
  .theme {
    margin: 6.1% 6.1% 1.5vw 6.1%;
    width: 87.8vw;
  }
  .theme h1 {
    font-size: 6.5vw;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New", sans-serif;
    width: -moz-fit-content;
    width: fit-content;
    color: #333;
    background-color: #fff;
    padding: 0.26vw;
    margin: 0.36vw 0 0.36vw 0;
  }
  .theme p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 1.98vh;
    color: #fff;
    font-size: 3vw;
    line-height: 1.85;
    width: 87.8vw;
  }
  .theme .englishText {
    margin-top: 2.29vh;
    font-weight: 300;
    width: 70vw;
    font-size: 3vw;
  }
  .swiper-wrapper {
    display: flex;
    width: 100vw;
  }
  .popup {
    z-index: 100;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: auto;
    width: 80vw;
    background-color: #1d3ee7;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 2vw;
    text-align: center;
  }
  .popup-content .close {
    background-color: rgba(0, 0, 0, 0);
    font-size: 5vw;
    position: absolute;
    top: -32px;
    right: -32px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
  .popup-content img {
    width: 80vw;
    height: auto;
    max-height: 47.05vw;
    border-radius: 2vw 2vw 0 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .popup-content .text {
    padding: 0 18px 32px;
    background-color: rgba(0, 0, 0, 0);
  }
  .popup-content .text #popup-title {
    padding-top: 34px;
    text-align: left;
    font-size: 7vw;
    letter-spacing: 5%;
    font-weight: 700;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
  }
  .popup-content .text #popup-area {
    margin-top: 0.3vw;
    font-size: 3vw;
    letter-spacing: 5%;
    text-align: left;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
  }
  .popup-content .text #popup-description {
    line-height: 4.7vw;
    text-align: left;
    margin-top: 2vw;
    font-size: 3.5vw;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
  }
  .pickup .box .swiper-wrapper .swiper-slide {
    width: 50vw;
    padding-top: 4vh;
    opacity: 0.3;
    transition: opacity 1s ease-in-out, padding-top 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    vertical-align: top;
  }
  .pickup .box .swiper-wrapper .swiper-slide.swiper-slide-active {
    width: 66vw;
    opacity: 1;
  }
  .pickup .box .swiper-wrapper .swiper-slide img {
    width: 80vw;
    height: 45vw;
    max-height: 40vw;
    border-radius: 0.78vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .pickup .box .swiper-wrapper .swiper-slide .title {
    margin-top: 1.5vh;
    font-size: 4.5vw;
    letter-spacing: 5%;
    width: 80vw;
  }
  .pickup .box .swiper-wrapper .swiper-slide .area {
    margin-top: 1vh;
    font-size: 4vw;
    letter-spacing: 5%;
    width: 80vw;
  }
  .pickup .box .swiper-wrapper .swiper-slide .tags {
    margin-top: 1vh;
    display: flex;
    flex-wrap: wrap;
    width: 80vw;
  }
  .pickup .box .swiper-wrapper .swiper-slide .tags li {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0.52vh;
    border-radius: 100px;
    border: 0.1vw solid #fff;
    font-size: 2.75vw;
    padding: 3px 7px;
  }
  .pickup .box .swiper-wrapper .swiper-slide .tags li:first-child {
    margin: 0.52vh 0.52vh 0.52vh 0;
  }
  .pickup .box .swiper-wrapper .swiper-slide .tags li:nth-child(n+1):nth-last-child(n+1) {
    margin: 0.52vh 0.52vh 0.52vh 0;
  }
  .pickup .box .allPickup {
    font-size: 4vw;
    text-align: center;
    margin-top: 7vw;
    margin-bottom: 1vw;
  }
  .pickup .box .allPickup a {
    padding: 0.1vw 1.2vw 0.2vw 1.2vw;
    border: #fff solid 0.2vw;
  }
  .faq {
    margin: 10% 6.1% 0 6.1%;
    width: 87.8vw;
  }
  .faq ul.faqContent {
    margin-top: 1.5vh;
  }
  .faq ul.faqContent ul {
    margin-top: 3vw;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .faq ul.faqContent li {
    margin-bottom: 1.5vh;
    display: inline-block;
    text-align: left;
  }
  .faq ul.faqContent li .q {
    font-size: 3.5vw;
    display: block;
    border: #fff solid 0.15vw;
    width: 87.8vw;
    padding: 2vw;
  }
  .faq ul.faqContent li .q p {
    padding-top: 2px;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0px;
    position: relative;
    display: inline-block;
  }
  .faq ul.faqContent li .q p:hover {
    cursor: pointer;
  }
  .faq ul.faqContent li .q p::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: -1px;
    opacity: 0;
  }
  .faq ul.faqContent li .q p:hover::after {
    opacity: 0;
    transition: 0.3s;
  }
  .faq ul.faqContent li .a {
    font-size: 3vw;
    padding-left: 0.6vw;
    padding-top: 1vw;
    padding-bottom: 0.5vw;
    display: none;
  }
  .access {
    margin: 3vh 6.1vw 0 6.1vw;
    width: 87.8vw;
  }
  .access .accessBox {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 3vh;
    flex: 0;
    display: block;
  }
  .access .accessBox .map {
    margin: 0 auto 0 auto;
    display: block;
    width: 80vw;
    height: 45vw;
    background-color: #fff;
    border: #fff solid 0.1vw;
  }
  .access p {
    margin-top: 5vw;
    width: 80vw;
    font-size: 3.5vw;
  }
  .link {
    margin-top: 9%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    width: 100vw;
    height: 25vw;
    background-color: #0038FF;
  }
  .link .panphlet {
    color: #000;
    text-align: center;
    margin: 0 2vw;
    padding: 2vw;
    border-radius: 1vw;
  }
  .link .panphlet p,
  .link .panphlet i {
    color: #333;
    font-size: 4vw;
  }
  .link .panphlet i {
    margin: 0 1vw 0 0.5vw;
  }
  .link .instagram {
    background: linear-gradient(45deg, #FC1097, #FE5D35);
    color: #000;
    text-align: center;
    margin: 0 2vw;
    padding: 2vw;
    border-radius: 1vw;
  }
  .link .instagram p {
    background: linear-gradient(45deg, #FC1097, #FE5D35);
    color: #fff;
    font-size: 4vw;
  }
  .link .instagram i {
    font-size: 4vw;
    margin: 0 1vw 0 0.5vw;
    background-color: #FC1097;
  }
  footer {
    font-size: 3vw;
    background-color: #333;
    color: white;
    padding: 1.85vh 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */