@charset "UTF-8";
/* Color Palette */
/* Padding */
/* Header Space */
/* Wrap */
/* Padding */
/*-----------
Root
-------------*/
:root {
  --large: 8rem;
  --medium: 5rem;
  --small: 2rem;
  --section-padding: 8rem 0;
  --transition: all 0.3s ease;
  --gutter: calc((100vw - 90vw) / 2);
}

@media screen and (max-width: 1412px) {
  :root {
    --large: 6rem;
    --medium: 4rem;
    --small: 1.5rem;
    --section-padding: 6rem 0;
  }
}
@media screen and (max-width: 880px) {
  :root {
    --large: 5rem;
    --medium: 3rem;
    --small: 1.5rem;
    --section-padding: 5rem 0;
  }
}
@media screen and (max-width: 640px) {
  :root {
    --large: 3rem;
    --medium: 2rem;
    --small: 1rem;
    --section-padding: 3rem 0;
  }
}
:root {
  --font-size-large: clamp(20px, 7vw, 58px);
  --font-size-medium: clamp(16px, 4.6vw, 26px);
  --font-size-small: 0.75rem;
  --line-height-default: 1.7;
  --border-radius-default: 10px;
  --large: 8rem;
  --medium: 3rem;
  --small: 2rem;
  --shadow-card: 5px 5px 20px 1px rgba(0, 0, 0, .3);
  --shadow-button: 0 1px 2px rgba(0, 0, 0, 0.2);
  --tab-padding: 0 10%;
}

@media screen and (max-width: 1412px) {
  :root {
    --font-size-large: clamp(20px, 7vw, 42px);
  }
}
@media screen and (max-width: 640px) {
  :root {
    --font-size-large: clamp(20px, 7vw, 40px);
    --font-size-default: 15px;
    --line-height-default: 1.6;
    --large: 4rem;
    --medium: 2rem;
    --small: 1.5rem;
    --border-radius-default: 5px;
  }
}
.section-padding {
  padding: var(--medium) 0;
}

h2 {
  font-weight: 600;
  font-size: var(--font-size-large);
  font-feature-settings: "palt";
  letter-spacing: 0.005em;
}

/* ------------------
Header
------------------*/
.header-ttl {
  display: flex;
  align-items: center;
}
.header-ttl .heading {
  margin-left: 3rem;
  font-size: var(--font-size-medium);
  display: none;
}
@media (max-width: 640px) {
  .header-ttl .heading {
    display: none !important;
  }
}

/* ------------------
MAIN VISUAL 
------------------*/
.mv {
  width: 100%;
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) {
  .mv {
    min-height: auto;
    height: 109vw;
  }
}
.mv .ttl {
  position: absolute;
  top: calc(50% + 45px);
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: fadeInTtl 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
@media (max-width: 640px) {
  .mv .ttl {
    text-align: center;
    top: 48%;
  }
}
.mv .ttl h1 {
  margin: 0 0 2rem;
  font-weight: 500;
  text-align: left;
  font-size: clamp(30px, 10vw, 126px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.mv .ttl p {
  font-size: clamp(18px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-left: 0.75%;
}
.mv video {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: calc(100% + 1px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mv .highlight {
  background: #000;
  border-radius: var(--border-radius-default);
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .mv .highlight {
    padding: 2rem;
    gap: 1rem;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    flex-direction: unset;
    flex-wrap: wrap;
    font-size: 3vw;
  }
}
.mv .highlight li {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .mv .highlight li {
    width: calc(50% - 0.5rem);
  }
}
.mv .highlight li span {
  width: calc(100% - 32px);
}
.mv .highlight li:before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/icon_check.svg) no-repeat center/contain;
}
@media (max-width: 640px) {
  .mv .highlight li:before {
    width: 3vw;
    height: 3vw;
  }
}

@keyframes fadeInTtl {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------
INTRODUCTION
------------------*/
.intro {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) {
  .intro {
    padding: 5rem 0;
  }
}
.intro .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1080px) {
  .intro .wrap {
    display: block;
  }
  .intro .wrap .intro__txt {
    width: 100%;
  }
  .intro .wrap .intro__img {
    width: 100%;
  }
  .intro .wrap .intro__img .max-img {
    height: 50vw;
  }
  .intro .wrap .route-map {
    width: 220%;
    margin-top: -50%;
    left: -70%;
  }
}
@media screen and (max-width: 1080px) and (max-width: 640px) {
  .intro .wrap .route-map {
    width: 280%;
    margin-top: -70%;
    left: -100%;
  }
}
.intro__txt {
  width: 53%;
  font-weight: 500;
  color: #ffffff;
}
.intro__txt .city-list {
  margin-top: var(--small);
}
.intro__txt .city-list li {
  position: relative;
  z-index: 2;
  font-size: clamp(14px, 4.2vw, 26px);
  line-height: 1.6;
}
.intro__txt .city-list li span.date {
  display: inline-block;
  width: 34%;
  max-width: 200px;
  font-feature-settings: "kern";
}
.intro__txt .city-list li span.kerning {
  letter-spacing: -0.1em;
}
.intro__txt .txt {
  margin-top: var(--small);
  line-height: 1.6;
}
.intro__txt .route-map {
  position: relative;
  margin-top: -43%;
  top: 0;
  left: -60%;
  width: 180%;
  z-index: -1;
}
.intro__img {
  width: 47%;
}
.intro__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1180px) {
  .intro__img img {
    max-height: 560px;
  }
}

.section-ttl {
  font-size: clamp(24px, 6vw, 90px);
  letter-spacing: -0.03em;
  font-weight: 600;
}

/* ------------------
Loop swiper
------------------*/
.swiper-loop-wrapper {
  position: relative;
  padding: 1rem 0;
}
.swiper-loop-wrapper .wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  height: 100%;
}
@media (max-width: 880px) {
  .swiper-loop-wrapper .wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
  }
}
.swiper-loop-wrapper__ttl-block {
  width: 40%;
  min-width: 450px;
  padding: var(--medium);
  margin: auto;
  background: #ffffff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 880px) {
  .swiper-loop-wrapper__ttl-block {
    width: 100%;
    min-width: 100%;
  }
}
.swiper-loop-wrapper__ttl-block h2 {
  font-size: var(--font-size-large);
  margin: 2rem 0;
}
@media (max-width: 640px) {
  .swiper-loop-wrapper__ttl-block .icon {
    width: 40px;
    height: auto;
  }
}

.swiper-loop,
.swiper-loop-reverse {
  overflow: hidden;
}
.swiper-loop .swiper-wrapper,
.swiper-loop-reverse .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-loop .swiper-wrapper .swiper-slide,
.swiper-loop-reverse .swiper-wrapper .swiper-slide {
  width: auto;
  height: 100%;
  max-height: 600px;
}
@media (max-width: 880px) {
  .swiper-loop .swiper-wrapper .swiper-slide,
  .swiper-loop-reverse .swiper-wrapper .swiper-slide {
    max-height: 200px;
  }
}
.swiper-loop .swiper-wrapper .swiper-slide img,
.swiper-loop-reverse .swiper-wrapper .swiper-slide img {
  width: auto;
  height: 600px;
}
@media (max-width: 880px) {
  .swiper-loop .swiper-wrapper .swiper-slide img,
  .swiper-loop-reverse .swiper-wrapper .swiper-slide img {
    max-height: 200px;
  }
}

/* ------------------
Bar
------------------*/
.bars {
  margin: var(--small) 0;
  display: flex;
  flex-direction: column;
}
.bars-wrapper {
  margin-bottom: var(--large);
}
@media (max-width: 640px) {
  .bars {
    overflow: hidden;
  }
}

.bar {
  width: 0;
  height: 16px;
  background: var(--bg);
  transform-origin: left;
  transition: width var(--d) cubic-bezier(0.3, 0.8, 0.3, 1);
  will-change: width;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06) inset;
}
@media (max-width: 640px) {
  .bar {
    height: 8px;
    transition-duration: calc(var(--d) * 0.6);
  }
}

/* in-view が付いたら左→右に伸びる */
.bar.in-view {
  width: var(--w);
}
@media (max-width: 640px) {
  .bar.in-view {
    width: calc(var(--w) * 1.202);
  }
}

/* ------------------
Section
------------------*/
section {
  padding-top: var(--large);
}

.feature {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}
.feature h3 {
  font-size: var(--font-size-medium);
  font-weight: 600;
  display: flex;
  gap: 10px;
}
.feature h3 span {
  width: calc(100% - 32px);
}
.feature h3::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 6px;
  background: url(../img/icon_check.svg) no-repeat center/contain;
}
@media (max-width: 640px) {
  .feature h3::before {
    margin-top: 1%;
    width: 4vw;
    height: 4vw;
  }
}
.feature h3 + p {
  margin-left: 32px;
  line-height: 1.6;
  font-size: 18px;
}
@media (max-width: 640px) {
  .feature h3 + p {
    margin-left: 26px;
    font-size: 100%;
  }
}
.feature img {
  width: 100%;
  margin-top: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.section2rows {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section2rows .section-ttl {
  width: 100%;
}
@media (max-width: 880px) {
  .section2rows .feature {
    margin-bottom: 2rem;
  }
}
.section2rows .feature .max-img {
  height: 60vw;
  max-height: 560px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section2rows .feature .feature__txt {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section2rows .feature.left {
  width: calc(60% - 10px);
}
.section2rows .feature.left .feature__txt {
  width: 100%;
  max-width: 840px;
  margin-left: auto;
}
@media screen and (max-width: 1500px) {
  .section2rows .feature.left .feature__txt {
    padding-left: 10%;
    box-sizing: border-box;
  }
}
@media (max-width: 880px) {
  .section2rows .feature.left .feature__txt {
    padding: var(--tab-padding);
    max-width: 100%;
  }
}
@media (max-width: 880px) {
  .section2rows .feature.left {
    width: 100%;
  }
}
.section2rows .feature.right {
  width: calc(40% - 10px);
}
@media (max-width: 880px) {
  .section2rows .feature.right .max-img {
    width: 100%;
    margin: auto;
    height: 60vw;
  }
}
.section2rows .feature.right .feature__txt {
  width: 100%;
  max-width: 520px;
  margin-right: auto;
}
@media (max-width: 1412px) {
  .section2rows .feature.right .feature__txt {
    padding-right: 10%;
    box-sizing: border-box;
  }
}
@media (max-width: 880px) {
  .section2rows .feature.right .feature__txt {
    padding: var(--tab-padding);
    max-width: 100%;
  }
}
@media (max-width: 880px) {
  .section2rows .feature.right {
    width: 100%;
  }
}

/* ------------------
Section header
------------------*/
.section-header {
  position: relative;
  height: 70vw;
  max-height: 794px;
  display: flex;
  align-items: center;
  color: #fff;
  background: url(../img/pic_737-inflight_01.jpg) no-repeat center/cover;
}
.section-header__txt {
  position: relative;
  z-index: 1;
  padding-bottom: 27%;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .section-header__txt {
    padding-bottom: 40%;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  }
}

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 880px) {
  .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .features .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.features .features-grid .feature-grid-img {
  padding: 0 32px;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .features .features-grid .feature-grid-img {
    padding: 0 26px;
  }
}

/* ------------------
CTA
------------------*/
.cta {
  margin-top: var(--large);
  display: flex;
  background: #276ef1;
  padding: 5rem 0;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 880px) {
  .cta {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 0 0 3rem;
  }
}
.cta__txt {
  width: calc(40% - 10px);
  max-width: 520px;
  margin-left: auto;
}
@media (max-width: 880px) {
  .cta__txt {
    width: 100%;
    max-width: 100%;
    padding: var(--tab-padding);
  }
}
.cta__txt h2 {
  margin-top: var(--small);
  margin-bottom: var(--small);
}
@media (max-width: 880px) {
  .cta__txt h2 {
    margin-top: 3rem;
  }
}
.cta__img {
  width: calc(60% - 10px);
}
@media (max-width: 880px) {
  .cta__img {
    width: 100%;
  }
}/*# sourceMappingURL=layout.css.map */