@charset "UTF-8";
html {
  font-size: 16px;
}
@media screen and (max-width: pc) {
  html {
    font-size: vw(strip-unit(pc), 16);
  }
}
@media screen and (max-width: tab) {
  html {
    font-size: vw(strip-unit(sp), 16);
  }
}

* {
  font-family: "Noto Sans JP", sans-serif;
  color: #35393b;
  letter-spacing: 0;
}

a {
  text-decoration: none;
}

body {
  background-color: #ffffff;
  overflow: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-x: hidden;
}

body.is-fixed {
  position: fixed;
  width: 100%;
}

.element {
  overflow-x: hidden;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.l-footer {
  width: 100%;
}

.l-header {
  width: 100%;
}

.c-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  padding: 10px;
}

.md-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.c-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 265px;
  min-height: 66px;
  color: #ffffff;
  background-color: #3e7fa3;
  padding: 10px 40px;
  border-radius: 40px;
  border: 1px solid #3e7fa3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-button {
    min-width: 235px;
    min-height: 45px;
    padding: 4px 48px;
  }
}
.c-button::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 79px;
  height: 52px;
  background-image: url("../img/cloud-button01.webp");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.5s ease-in 0.05s;
  transition: -webkit-transform 0.5s ease-in 0.05s;
  transition: transform 0.5s ease-in 0.05s;
  transition: transform 0.5s ease-in 0.05s, -webkit-transform 0.5s ease-in 0.05s;
}
@media screen and (max-width: 768px) {
  .c-button::before {
    left: -10px;
  }
}
.c-button::after {
  display: inline-block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 110px;
  height: 66px;
  background-image: url("../img/cloud-button02.webp");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.5s ease-in 0.05s;
  transition: -webkit-transform 0.5s ease-in 0.05s;
  transition: transform 0.5s ease-in 0.05s;
  transition: transform 0.5s ease-in 0.05s, -webkit-transform 0.5s ease-in 0.05s;
}
@media screen and (max-width: 768px) {
  .c-button::after {
    right: -27px;
    bottom: -22px;
  }
}

.c-button span {
  font-family: Jost;
  font-size: 32px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  font-style: italic;
  line-height: 1.445;
  color: white;
}
@media screen and (max-width: 768px) {
  .c-button span {
    font-size: 24px;
    line-height: 1.445;
    text-align: center;
  }
}

.c-button:hover::before {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.c-button:hover::after {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.c-gradationBg {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(12.5%, #080e1a), color-stop(25%, #193058), color-stop(37.5%, #324360), color-stop(50%, #817282), color-stop(62.5%, #937a80), color-stop(75%, #a4827f), color-stop(87.5%, #a88682), to(#b2928a));
  background: linear-gradient(180deg, #080e1a 12.5%, #193058 25%, #324360 37.5%, #817282 50%, #937a80 62.5%, #a4827f 75%, #a88682 87.5%, #b2928a 100%);
  position: relative;
  z-index: 1;
}

.md-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.c-more {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.445;
  background-color: #3e7fa3;
  padding: 0.375rem 2.75rem 0.375rem 1.5rem;
  border-radius: 40px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .c-more {
    padding: 0.1875rem 1.375rem 0.1875rem 0.75rem;
  }
}
.c-more span {
  color: #ffffff;
  position: relative;
  padding-right: 0.5rem;
}
.c-more span::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  right: -0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("../img/icon-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.c-section-bridge__fv-about {
  width: 100%;
  height: 100lvh;
  background-color: #080e1a;
}

.c-section-bridge__blog-view {
  position: relative;
  overflow: hidden;
}

.c-tag.c-tag-white {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.445;
  text-align: left;
  color: #3e7fa3;
  background-color: #ffffff;
  padding: 0.25rem 1.5rem;
  border-radius: 40px;
}

.c-tag.c-tag-blue {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.445;
  text-align: left;
  color: #ffffff;
  background-color: #3e7fa3;
  padding: 0.25rem 1.5rem;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .c-tag.c-tag-blue {
    padding: 0.125rem 1rem;
  }
}

.p-about {
  width: 100%;
  height: auto;
  padding-inline: 40px;
  padding-top: 165px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding-inline: 15px;
    padding-top: 80px;
  }
}

.p-about__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.p-about__cloud {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1518px;
  height: auto;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-about__cloud {
    max-width: 759px;
    top: 42px;
    left: 115px;
  }
}
@media screen and (max-width: 375px) {
  .p-about__cloud {
    max-width: 396px;
    top: 60px;
    left: 40px;
  }
}

.p-about__content {
  position: relative;
  z-index: 1;
  margin-top: -8px;
}

.p-about__mask {
  display: block;
  font-size: 240px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: italic;
  line-height: 0.6666666667;
  color: transparent;
  background-image: url("../img/illust-plane-side.svg");
  background-size: 1280px 408px;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-position: -265% -36%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-about__mask {
    font-size: 98px;
    background-size: 484px 155.78px;
    background-position: 71% -77%;
  }
}
@media screen and (max-width: 375px) {
  .p-about__mask {
    background-size: 484px 155.78px;
    background-position: -130% -76%;
  }
}

.p-about__en {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-size: 240px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-style: italic;
  line-height: 0.6666666667;
  color: #3e7fa3;
  text-shadow: 4px 4px 10px rgba(255, 255, 255, 0.39);
}
@media screen and (max-width: 768px) {
  .p-about__en {
    font-size: 98px;
  }
}

.p-about__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6666666667;
  text-align: left;
  color: #ffffff;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-about__text {
    font-size: 14px;
    line-height: 1.4478571429;
    text-align: left;
    padding-right: 92px;
  }
}

.p-about__text + .p-about__text {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-about__text + .p-about__text {
    margin-top: 20px;
  }
}

.p-blog__cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.p-blog__cover-blue {
  width: 100%;
  height: 100%;
  background-color: #3c5f96;
}

.p-blog {
  width: 100%;
  overflow: hidden;
}

.p-blog__inner {
  max-width: 1200px;
  width: 100%;
  padding-inline: 40px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 375px) {
  .p-blog__inner {
    padding-inline: 15px;
  }
}

.p-blog__container {
  width: 100%;
  height: auto;
  aspect-ratio: 1120/400;
  position: relative;
  margin-top: 52px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-blog__container {
    aspect-ratio: 345/460;
    margin-top: 40px;
  }
}

.p-blog__imageArea {
  width: 100%;
  height: 100%;
  scrollbar-width: none;
}

.p-blog__imageArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  position: absolute;
  top: 0;
  left: 0;
}

.p-blog__textArea {
  max-width: 732px;
  max-height: 400px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  padding: 124px 16px 40px 16px;
  height: auto;
  overflow-y: auto;
  scrollbar-width: none;
}
@media screen and (max-width: 1024px) {
  .p-blog__textArea {
    padding: 60px 16px 40px 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-blog__textArea {
    top: 50%;
  }
}
@media (max-width: 600px) {
  .p-blog__textArea {
    top: 25%;
  }
}
@media (max-width: 390px) {
  .p-blog__textArea {
    top: 15%;
  }
}

.p-blog__text-item {
  width: 100%;
  height: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-blog__text-item p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4478571429;
  color: #ffffff;
  margin-bottom: 14px;
}

.p-blog__scroll-down {
  display: block;
  width: 78px;
  height: 78px;
  position: absolute;
  right: 40px;
  bottom: 32px;
}
@media screen and (max-width: 768px) {
  .p-blog__scroll-down {
    top: 24px;
    right: 16px;
    bottom: 0;
  }
}

.js-rotate {
  -webkit-animation: rotateText 8s linear infinite;
          animation: rotateText 8s linear infinite;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

/* アニメーションの定義 */
@-webkit-keyframes rotateText {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotateText {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.p-blog__splide {
  margin-top: 40px;
}

.splide__slide {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  cursor: pointer;
  z-index: 1;
}

.p-blog__planeWrap {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(#b2928a), to(#a78681));
  background: linear-gradient(to bottom, #b2928a, #a78681);
}
.p-blog__plane {
  max-width: 1280px;
  width: 100%;
  height: auto;
  aspect-ratio: 1280/408;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.splide__slide img {
  height: auto;
  width: 100%;
}

.p-blog__list {
  padding-inline: 15px;
}

.p-blog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-width: 309px;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 768px) {
  .p-blog__item {
    min-width: 290px;
  }
}
@media screen and (max-width: 768px) {
  .p-blog__item p {
    display: inline-block;
    width: 50%;
    font-family: "Jost", sans-serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 600;
    line-height: 0.6920415225;
    color: #ffffff;
    padding-top: 28px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 375px) {
  .p-blog__item p {
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 600;
    line-height: 0.6920415225;
  }
}

.p-flight {
  position: relative;
  width: 100%;
  height: 100lvh;
  background-color: #3e7fa3;
}

.p-flight__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-flight__container {
    padding-inline: 15px;
  }
}

.p-flight__container:nth-of-type(1) {
  z-index: 5;
}

.p-flight__container:nth-of-type(2) {
  z-index: 4;
}

.p-flight__container:nth-of-type(3) {
  z-index: 3;
}

.p-flight__container:nth-of-type(4) {
  z-index: 2;
}

.p-flight__container:nth-of-type(5) {
  z-index: 1;
}

.p-flight__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-flight__bg--monochrome {
  z-index: 2;
}

.p-flight__bg--color {
  z-index: 1;
}

.p-flight__inner {
  max-width: 1120px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  padding: 9.7vh 0 7.8vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-flight__info {
  border-top: 1px solid #ffffff;
}

.p-flight__feet {
  font-family: "Jost", sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 0.6920415225;
  text-align: left;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 20px 0 10px;
}
@media screen and (max-width: 768px) {
  .p-flight__feet {
    font-size: 32px;
    line-height: 0.6920415225;
    padding: 16px 0 10px;
  }
}
.p-flight__feet span {
  font-size: 32px;
  line-height: 1.445;
  text-align: left;
  color: #ffffff;
  margin-left: 33px;
}
@media screen and (max-width: 768px) {
  .p-flight__feet span {
    font-size: 16px;
    line-height: 1.445;
    margin-left: 14px;
  }
}

.p-flight__number-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 0.6920415225;
  text-align: left;
  border-bottom: 1px solid #ffffff;
  padding: 8px 0 8px;
}
@media screen and (max-width: 768px) {
  .p-flight__number-time {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.445;
    padding: 2px 0 1px;
  }
}
.p-flight__number-time span {
  color: #ffffff;
}

.p-flight__destination {
  border-bottom: 1px solid #ffffff;
  padding: 30px 0 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-flight__country {
  font-family: "Jost", sans-serif;
  font-size: 120px;
  font-style: italic;
  font-weight: 500;
  line-height: 0.8571428571;
  text-align: left;
  color: #ffffff;
  text-shadow: 4px 4px 10px rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .p-flight__country {
    font-size: 56px;
    line-height: 0.4;
    text-align: left;
  }
}

.p-flight__airport {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.445;
  text-align: left;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-flight__airport {
    font-size: 16px;
    line-height: 1.445;
    padding-top: 11px;
  }
}

.p-flight__illust {
  display: block;
  width: 52%;
  height: auto;
  margin-top: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-flight__illust {
    width: 100%;
  }
}

.p-flight__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 768px) {
  .p-flight__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: none;
    border-bottom: none;
  }
}

@media screen and (max-width: 768px) {
  .p-flight__row--time dl:first-child {
    border-top: 1px solid #ffffff;
  }
}

.p-flight__row dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.445;
  text-align: right;
  color: #ffffff;
  min-width: 311px;
}
@media screen and (max-width: 768px) {
  .p-flight__row dl {
    width: 100%;
    min-width: 290px;
    border-bottom: 1px solid #ffffff;
  }
}

.p-flight__row dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
}
.p-flight__row dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
}

.p-fv-loop {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #080e1a;
}

.p-fv-loop__wrap {
  width: 100%;
  height: 100%;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .p-fv-loop__wrap {
    padding-inline: 15px;
  }
}

.p-fv-loop__bgImage {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.p-fv-loop__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-fv-loop__inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 6.25rem;
  }
}

.p-fv-loop__title {
  width: 100%;
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 15rem;
  font-style: italic;
  font-weight: 700;
  line-height: 0.6666666667;
  text-align: left;
  color: #3e7fa3;
}
@media screen and (max-width: 1024px) {
  .p-fv-loop__title {
    font-size: 10rem;
    line-height: 0.6666666667;
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-fv-loop__title {
    font-size: 7rem;
    line-height: 0.5357142857;
    padding-left: 0;
  }
}
@media screen and (max-width: 375px) {
  .p-fv-loop__title {
    font-size: 5rem;
    line-height: 0.75;
  }
}

.p-fv-loop__plane {
  position: absolute;
  top: 64%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-fv-loop__plane {
    top: 50%;
  }
}

.p-fv-loop__cloud {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  overflow: hidden;
}

.p-fv-loop__cloud img {
  position: absolute;
}

.p-fv-loop__cloud picture:nth-child(1) img {
  width: 37.6%;
  height: auto;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-fv-loop__cloud picture:nth-child(1) img {
    width: 50%;
  }
}
@media screen and (max-width: 375px) {
  .p-fv-loop__cloud picture:nth-child(1) img {
    width: 90%;
  }
}

.p-fv-loop__cloud picture:nth-child(2) img {
  width: 43.7%;
  height: auto;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 375px) {
  .p-fv-loop__cloud picture:nth-child(2) img {
    width: 50%;
  }
}
@media screen and (max-width: 375px) {
  .p-fv-loop__cloud picture:nth-child(2) img {
    width: 90%;
  }
}

.p-fv-loop__cloud picture:nth-child(3) img {
  width: 53.6%;
  height: auto;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-fv-loop__cloud picture:nth-child(3) img {
    width: 50%;
    bottom: -5px;
  }
}
@media screen and (max-width: 375px) {
  .p-fv-loop__cloud picture:nth-child(3) img {
    width: 90%;
    bottom: -5px;
  }
}

.p-fv-loop__cloud picture:nth-child(4) img {
  width: 50.6%;
  height: auto;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-fv-loop__cloud picture:nth-child(4) img {
    width: 50%;
    bottom: -13px;
  }
}
@media screen and (max-width: 375px) {
  .p-fv-loop__cloud picture:nth-child(4) img {
    width: 90%;
    bottom: -13px;
  }
}

.p-fv__cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.p-fv__cover-white {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
}

.p-fv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #080e1a;
}

.p-fv__wrap {
  width: 100%;
  height: 100%;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .p-fv__wrap {
    padding-inline: 15px;
  }
}

.p-fv__bgImage {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.p-fv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-fv__inner {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 6.25rem;
  }
}

.p-fv__title {
  width: 100%;
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 15rem;
  font-style: italic;
  font-weight: 700;
  line-height: 0.6666666667;
  text-align: left;
  color: #3e7fa3;
}
@media screen and (max-width: 1024px) {
  .p-fv__title {
    font-size: 10rem;
    line-height: 0.625;
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-fv__title {
    font-size: 7rem;
    line-height: 0.625;
    padding-left: 0;
  }
}
@media (max-width: 500px) {
  .p-fv__title {
    font-size: 6rem;
    line-height: 0.625;
  }
}
@media screen and (max-width: 375px) {
  .p-fv__title {
    font-size: 5rem;
    line-height: 0.625;
  }
}

.p-fv__plane {
  position: absolute;
  top: 64%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-fv__plane {
    top: 50%;
  }
}

.p-fv__cloud {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  overflow: hidden;
}

.p-fv__cloud img {
  position: absolute;
}

.p-fv__cloud picture:nth-child(1) img {
  width: 37.6%;
  height: auto;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-fv__cloud picture:nth-child(1) img {
    width: 50%;
  }
}
@media screen and (max-width: 375px) {
  .p-fv__cloud picture:nth-child(1) img {
    width: 90%;
  }
}

.p-fv__cloud picture:nth-child(2) img {
  width: 43.7%;
  height: auto;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 375px) {
  .p-fv__cloud picture:nth-child(2) img {
    width: 50%;
  }
}
@media screen and (max-width: 375px) {
  .p-fv__cloud picture:nth-child(2) img {
    width: 90%;
  }
}

.p-fv__cloud picture:nth-child(3) img {
  width: 53.6%;
  height: auto;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-fv__cloud picture:nth-child(3) img {
    width: 50%;
    bottom: -5px;
  }
}
@media screen and (max-width: 375px) {
  .p-fv__cloud picture:nth-child(3) img {
    width: 90%;
    bottom: -5px;
  }
}

.p-fv__cloud picture:nth-child(4) img {
  width: 50.6%;
  height: auto;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-fv__cloud picture:nth-child(4) img {
    width: 50%;
    bottom: -13px;
  }
}
@media screen and (max-width: 375px) {
  .p-fv__cloud picture:nth-child(4) img {
    width: 90%;
    bottom: -13px;
  }
}

.p-topics {
  width: 100%;
  padding: 140px 40px 240px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-topics {
    padding: 80px 15px;
  }
}

.p-topics__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.p-topics .c-button {
  position: relative;
  z-index: 3;
}

.p-topics__cloud {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1518px;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: -20px;
  left: 80px;
  z-index: 2;
}
@media (max-width: 500px) {
  .p-topics__cloud {
    display: none;
  }
}

.p-topics__gallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-topics__gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-topics__gallery-content {
  width: 34.8%;
  min-width: 300px;
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .p-topics__gallery-content {
    width: 100%;
  }
}

.p-topics__gallery-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4478571429;
  text-align: left;
  color: #ffffff;
  margin-top: 16px;
}

.p-topics__gallery-image {
  max-width: 540px;
  width: 100%;
  height: auto;
  aspect-ratio: 540/350;
  position: relative;
  margin-left: 4.5625rem;
}
@media screen and (max-width: 768px) {
  .p-topics__gallery-image {
    margin-left: 0;
  }
}

.p-topics__gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.p-topics__gallery-image img:nth-of-type(1) {
  z-index: 4;
}

.p-topics__gallery-image img:nth-of-type(2) {
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
  z-index: 3;
}

.p-topics__gallery-image img:nth-of-type(3) {
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
  z-index: 2;
}

.p-topics__gallery-image img:nth-of-type(4) {
  z-index: 1;
}

.p-topics__plane {
  width: 100%;
  max-width: 1120px;
  height: auto;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(-14.8deg) translate(-53%, 18%);
  transform: rotate(-14.8deg) translate(-52%, 18%);
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-topics__plane {
    display: none;
  }
}

.p-tours {
  width: 100%;
  padding-inline: 40px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-tours {
    padding-inline: 15px;
    padding-bottom: 80px;
  }
}

.p-tours__clouds {
  width: 1789px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 30%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 500px) {
  .p-tours__clouds {
    display: none;
  }
}

.p-tours__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.p-tours__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 57px;
  padding: 0 0 0 5px;
}
@media (max-width: 1000px) {
  .p-tours__gallery {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-tours__gallery-large {
  max-width: 380px;
  width: 100%;
}

.p-tours__gallery-large img {
  max-width: 380px;
  width: 100%;
  height: auto;
  aspect-ratio: 380/533;
  border-radius: 10px;
}

.p-tours__card {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.p-tours__card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 1px solid #3e7fa3;
  border-radius: 16px;
}

.p-tours__gallery-largeWrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 16px;
  bottom: 16px;
}

.p-tours__gallery-date {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.445;
  text-align: left;
  color: #ffffff;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-tours__gallery-date {
    margin-top: 8px;
  }
}

.p-tours__gallery-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
  text-align: left;
  color: #ffffff;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .p-tours__gallery-text {
    font-size: 14px;
    line-height: 1.48;
  }
}

.p-tours__gallery-list {
  width: 100%;
  margin-left: 5.3125rem;
  border-bottom: 1px solid #3e7fa3;
  position: relative;
}
@media (max-width: 1000px) {
  .p-tours__gallery-list {
    max-width: 500px;
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }
}

@media screen and (max-width: 768px) {
  .p-tours__gallery-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-tours__cardSmall {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-top: 1px solid #3e7fa3;
  padding-block: 16px;
  margin: 0 auto;
}

.p-tours__gallery-small {
  max-width: 230px;
  width: 100%;
  height: auto;
  aspect-ratio: 230/150;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-tours__gallery-small {
    width: 50%;
  }
}

.p-tours__gallery-textWrap {
  margin-left: 32px;
}
@media screen and (max-width: 768px) {
  .p-tours__gallery-textWrap {
    margin-left: 16px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-view {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-inline: 40px;
  overflow: hidden;
  background: linear-gradient(241.2deg, #250d11 0%, #161012 100.9%);
}
@media screen and (max-width: 768px) {
  .p-view {
    padding-inline: 15px;
  }
}

.p-view__inner {
  width: 100%;
  height: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-view__inner {
    padding-top: 40px;
  }
}

.p-view .c-button {
  position: relative;
  z-index: 2;
}

.p-window__inner {
  width: 100%;
  height: 60.651%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-window__inner {
    margin-top: 0;
  }
}

.p-window__item {
  width: auto;
  height: 76.8%;
  max-height: 500px;
  aspect-ratio: 350/500;
  margin: 0 27px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.p-window__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  display: inline-block;
  background-image: url("../img/window.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.p-window__item:nth-child(1) {
  left: 0;
  top: 20%;
}

.p-window__item:nth-child(2) {
  left: 0;
  top: 5%;
}

.p-window__item:nth-child(4) {
  left: 0;
  top: -5%;
}

.p-window__item:nth-child(5) {
  left: 0;
  top: -20%;
}

.p-window__large {
  width: auto;
  height: 100%;
  aspect-ratio: 457/652;
  position: relative;
  margin: 0 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-window__large {
    aspect-ratio: 329/471;
    margin: 0 15px;
  }
}
@media screen and (max-width: 375px) {
  .p-window__large {
    aspect-ratio: 329/471;
    margin: 0 15px;
  }
}
@media (max-width: 350px) {
  .p-window__large {
    aspect-ratio: 280/400;
    margin: 0 15px;
  }
}
.p-window__large::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  display: inline-block;
  background-image: url("../img/window-large.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-window__large::after {
    width: calc(100% + 8px);
    height: calc(100% + 8px);
  }
}

.p-window__largeImg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.p-window__largeImg:not(:nth-of-type(1)) {
  opacity: 0;
  visibility: hidden;
}

.p-view__text {
  position: absolute;
  bottom: 60px;
  right: 10%;
  font-family: "Jost", sans-serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.445;
  text-align: right;
  color: #ffffff;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .p-view__text {
    font-size: 24px;
    line-height: 1.445;
    padding-right: 0;
    position: relative;
    z-index: 2;
    right: 5%;
  }
}

.u-mt-0 {
  margin-top: 0;
}

.u-mr-0 {
  margin-right: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-ml-0 {
  margin-left: 0;
}
/*# sourceMappingURL=style.css.map */