@charset "utf-8";

/* --- Base Settings --- */
:root {
  --color-primary: #061f48;
  --color-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
  --color-yellow: #F7D62E;
  --color-pink: #e2007c;
  --color-skyblue: #62c5e2;
  --color-blue: #3254a4;
  --color-blue-light: #aedef3;
  --color-black: #333;
  --color-red: #B30000;
  --color-gray: #adb5bd;
  --color-link: #1A2567;
  --color-ana: #00146E;
  --color-jal: #CC0000;
  --font-ttl: "M PLUS U", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: var(--color-black);
  width: 100%;
  font-size: calc(16 / 16 * 1rem);
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body.is-menu-open {
  overflow: hidden;
}

html,
body {
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-ttl);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li,
ol li {
  margin-bottom: 0.3rem;
}

figure {
  margin: 0;
}

a {
  color: var(--color-blue);
}

a:hover {
  text-decoration: none;
  color: var(--color-blue);
}

img {
  width: 100%;
  max-width: 100%;
}

/* ============================================
module 
============================================　*/
/* --------------------------------------------
 text
-------------------------------------------- */
.c-txt-lead {
  font-size: calc(20 /16 * 1rem);
  font-weight: 400;
}

.c-txt-base {
  font-size: calc(16 / 16 * 1rem);
  line-height: 1.6;
}

.c-txt-link {
  text-decoration: underline;
  color: var(--color-link);
}

.c-txt-link:hover {
  text-decoration: none;
}

@media (max-width: 991px) {
  .c-txt-lead {
    font-size: calc(18 /16 * 1rem);
  }
}

.fc-primary {
  color: var(--color-primary) !important;
}

.fc-black {
  color: var(--color-black) !important;
}

.fc-blue {
  color: var(--color-blue) !important;
}

.fc-red {
  color: var(--color-red) !important;
}

.fc-gray {
  color: var(--color-gray) !important;
}

.fc-ana {
  color: var(--color-ana) !important;
}

.fc-jal {
  color: var(--color-jal) !important;
}


.c-ttl-h2 {
  text-align: center;
  font-size: calc(70 / 16 * 1rem);
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.3;
}

.c-ttl-h3 {
  font-size: calc(32 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.6;
}

.c-ttl-h4 {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
}

.content-block__ttl {
  font-size: calc(28 / 16 * 1rem);
  min-width: 50%;
  display: inline-block;
  background-color: var(--color-blue);
  color: #fff;
  padding: 12px 10px 14px 20px;
  border-radius: 0 100vh 100vh 0;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .c-ttl-h2 {
    font-size: calc(34 / 16 * 1rem);
    margin-bottom: 30px;
  }

  .c-ttl-h3 {
    font-size: calc(22 / 16 * 1rem);
  }

  .c-ttl-h4 {
    font-size: calc(20 / 16 * 1rem);
  }

  .content-block__ttl {
    font-size: calc(22 / 16 * 1rem);
  }
}





/* --------------------------------------------
 container
-------------------------------------------- */
.c-section {
  position: relative;
  overflow: hidden;
}

.c-section__inner {
  padding: 60px 0 160px;
}

.p-wave-section {
  margin-top: -120px;
}

.p-wave-section::before {
  content: '';
  display: block;
  /* aspect-ratio: 612 / 265; */
  height: 120px;
  background-image: none;
  -webkit-mask-image: url(../img/bg_cloud.svg);
  mask-image: url(../img/bg_cloud.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: relative;
  z-index: 10;
}

.p-wave-section:has(.c-section__inner.bg-yellow)::before {
  background-color: var(--color-yellow);
}

.p-wave-section:has(.c-section__inner.bg-blue)::before {
  background-color: var(--color-blue);
}

.p-wave-section:has(.c-section__inner.bg-white)::before {
  background-color: #fff;
}

/* 
.p-wave-section:has(.bg-white)::before {
  background-color: #fff;
} */

.c-content__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.content-block {
  max-width: 1000px;
  margin-inline: auto;
  padding-top: 20px;
  padding-bottom: 30px;
  background-color: #fff;
  border: 1px solid var(--color-black);
  border-radius: 6px;
}

@media (min-width: 1441px) {
  .p-wave-section{
    margin-top: -160px;
  }
  .p-wave-section::before {
    padding-top: 200px;
  }
}

@media (max-width: 991px) {
  .c-section__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .p-wave-section>.c-section__inner {
    padding-top: 0;
    padding-bottom: 120px;
  }

  .c-content__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* --------------------------------------------
 background
-------------------------------------------- */
.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-black {
  background-color: var(--color-black) !important;
}

.bg-yellow {
  background-color: var(--color-yellow) !important;
}

.bg-pink {
  background-color: var(--color-pink) !important;
}

.bg-blue {
  background-color: var(--color-blue) !important;
}

.bg-blue-light {
  background-color: var(--color-blue-light) !important;
}

/* .bg-noise {
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
} */

.bg-box-graph {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding: 40px;
}

.bg-jal {
  background-color: var(--color-jal) !important;
}

.bg-ana {
  background-color: var(--color-ana) !important;
}

.c-bg-img {
  position: absolute;
}

.c-bg-img--airplane {
  left: 0;
  bottom: 0;
  width: 30vw;
  height: auto;
  color: #f1f1f1;
  transform: rotate(-90deg);
}

.c-bg-img--contact {
  left: 0;
  top: 0;
  width: 30vw;
  height: auto;
  color: #f1f1f1;
  transform: rotate(-25deg);
}

.c-bg-img--faq {
  right: 2vw;
  top: 0;
  width: 30vw;
  height: auto;
  color: #f1f1f1;
  transform: rotate(25deg);
}

@media (max-width: 991px) {
  .bg-box-graph {
    padding: 20px 15px;
  }

  .c-bg-img--airplane {
    bottom: 20px;
  }
}

.fill-yellow {
  fill: var(--color-yellow) !important;
}

.fill-blue {
  fill: var(--color-blue) !important;
}

.fill-white {
  fill: #fff !important;
}

/* --------------------------------------------
 btn
-------------------------------------------- */
.c-btn {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #fff;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  padding: 0.75rem 1.25rem;
  border-radius: 100vh;
  line-height: 1;
  font-weight: 700;
  font-family: var(--font-ttl);
  transition: all linear 0.15s;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.c-btn__text {
  flex-grow: 1;
  text-align: center;
}

.c-btn__icon {
  font-size: 0.8em;
}

.c-btn:hover {
  color: var(--color-black);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.c-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.c-btn-1 {
  font-size: calc(28 / 16 * 1rem);
  letter-spacing: 0.1em;
  height: 90px;
  width: 100%;
  max-width: 500px;
  margin: auto;
  background: #262626;
  background: linear-gradient(180deg, rgba(38, 38, 38, 1) 0%, rgba(38, 38, 38, 1) 70%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
}

.c-btn-2 {
  max-width: 380px;
  height: 60px;
}

.c-btn-3 {
  font-size: calc(28 / 16 * 1rem);
  letter-spacing: 0.1em;
  height: 90px;
  width: 100%;
  max-width: 500px;
  margin: auto;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 70%, rgba(237, 247, 255, 1) 70%, rgba(237, 247, 255, 1) 100%);
}


@media (max-width: 991px) {
  .c-btn-1 {
    font-size: calc(18 / 16 * 1rem);
    height: 70px;
  }

  .c-btn-2 {
    max-width: 500px;
    height: 50px;
  }

}

/* --------------------------------------------
 icon
-------------------------------------------- */
.c-icon-airplane {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* --------------------------------------------
 list
-------------------------------------------- */
/*
  c-list-circlenum
-------------------------------------------- */
/* c-list-circlenum */
.c-list-circlenum {
  list-style: none;
  counter-reset: my-counter;
  padding-left: 0;
}

.c-list-circlenum__item {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  counter-increment: my-counter;
  position: relative;
  margin-bottom: 0;
}

.c-list-circlenum__item:not(:first-child) {
  margin-top: 0.3em;
}

.c-list-circlenum p {
  margin-bottom: 0;
}

@counter-style maru-num {
  system: alphabetic;
  symbols: ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩ ⑪ ⑫ ⑬ ⑭ ⑮ ⑯ ⑰ ⑱ ⑲ ⑳;
  suffix: " ";
}

.c-list-circlenum__item::before {
  content: counter(my-counter, maru-num);
  font-size: calc(18 / 16 * 1rem);
  font-weight: bold;
}

/*
  c-list-num-1
-------------------------------------------- */
.c-list-num-1 {
  list-style: none;
  counter-reset: my-count;
}

.c-list-num-1__item {
  display: flex;
  align-items: baseline;
  counter-increment: num-1;
}

.c-list-num-1__item::before {
  content: "(" counter(num-1) ")";
  padding-right: 0.5em;
}

/*
  c-list-anno-num-1
-------------------------------------------- */
.c-list-anno-num-1 {
  list-style: none;
  counter-reset: anno-num-1;
}

.c-list-anno-num-1__item {
  display: flex;
  align-items: baseline;
  counter-increment: anno-num-1;
}

.c-list-anno-num-1__item::before {
  content: "※" counter(anno-num-1);
  padding-right: 0.5em;
}

/*
  c-list-anno-1
-------------------------------------------- */
.c-list-anno-1 {
  list-style: none;
}

.c-list-anno-1__item {
  display: flex;
  align-items: baseline;
}

.c-list-anno-1__item:not(:last-child) {
  margin-bottom: 8px;
}

.c-list-anno-1__item::before {
  content: "※";
  padding-right: 0.25em;
}

.c-list-anno-1__txt {
  flex-grow: 1;
  text-align: left;
}

@media (max-width: 991px) {
  .c-list-anno-1__item::before {
    padding-right: 0.2em;
  }
}

/*
  c-list-anno-2
-------------------------------------------- */
.c-list-anno-2 {
  list-style: none;
}

.c-list-anno-2__item {
  display: flex;
  align-items: baseline;
}

.c-list-anno-2__item::before {
  content: "（※";
  padding-right: 0.25em;
}

.c-list-anno-2__txt::after {
  content: "）";
  padding-left: 0.25em;
}

.c-list-anno-2__txt {
  flex-grow: 1;
  text-align: left;
}

@media (max-width: 991px) {
  .c-list-anno-2__item::before {
    padding-right: 0.2em;
  }
}

/*
  c-list-1
-------------------------------------------- */
.c-list-1 {
  list-style: none;
}

.c-list-1__item {
  display: flex;
  align-items: baseline;
}

.c-list-1__item::before {
  content: "・";
  padding-right: 0.2em;
}

.c-list-1__txt {
  flex-grow: 1;
  text-align: left;
}

/*
  c-list-2
-------------------------------------------- */
.c-list-2 {
  list-style: none;
}

.c-list-2__item {
  display: flex;
  gap: 0.5em;
  margin-bottom: 0;
  font-weight: 500;
}

.c-list-2__item:not(:first-child) {
  margin-top: 0.7em;
}

.c-list-2__item::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  margin-top: calc(0.5em + 3px);
  flex-shrink: 0;
}

.c-list-2__txt {
  flex-grow: 1;
  text-align: left;
}


/*
  for accecibility 
-------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
　Header 
============================================　*/
.header {
  position: fixed;
  left: 0;
  top: 20px;
  max-width: 1440px;
  width: calc(100% - 40px);
  height: 68px;
  margin: 0 auto;
  border-radius: 40px;
  background-color: white;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
}

.nav-item {
  margin-bottom: 0;
}

.navbar-nav {
  max-width: 1000px;
  width: 100%;
  justify-content: space-around;
}

.nav-link {
  color: var(--color-black);
  margin-bottom: -3px;
  transition: all linear 0.3s;
  border-bottom: 3px solid #fff;
}

.nav-link:hover {
  border-color: var(--color-yellow);
}

.navbar-toggler {
  width: 50px;
  height: 50px;
  padding: 0 0px 2px;
  background-color: #fff;
  display: flex;
  border: 1px solid var(--color-black);
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-radius: 50%;
  margin-left: auto;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.1rem;
}

.navbar-toggler-icon {
  position: absolute;
  width: 22px;
  height: 100%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-image: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s linear;
}

.collapsed .navbar-toggler-icon::before {
  transform: rotate(0deg);
  width: 80%;
}

.navbar-toggler-icon::before {
  transform: rotate(-45deg);
}

.collapsed .navbar-toggler-icon::after {
  transform: rotate(0deg);
  margin-top: 6px;
}

.navbar-toggler-icon::after {
  transform: rotate(45deg);
  margin-top: -2px;
}


@media (max-width: 991px) {
  .header {
    background-color: transparent;
    box-shadow: none;
  }

  .navbar-nav {
    justify-content: center;
    height: 100%;
    gap: 1em;
  }
}

/* --------------------------------------------
 Overlay
-------------------------------------------- */
body.is-menu-open .navbar-collapse {
  right: 0;
}

.l-header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.is-menu-open .l-header-overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 991px) {
  .header {
    top: 0;
    width: 100%;
    border-radius: 0;
  }

  .header__inner {
    height: 70px;
  }

  .navbar-brand {
    max-width: 80px;
    margin-right: 0;
  }

  .navbar-collapse,
  .navbar-collapse.collapsing {
    position: fixed;
    width: 90%;
    height: 90vh;
    border-radius: 20px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
  }

  .navbar-collapse,
  .navbar-collapse.collapsing,
  .navbar-collapse.show {
    height: 90vh !important;
  }

  .navbar-collapse.collapsing {
    transition: opacity 0.3s ease !important;
    opacity: 0;
    display: block;
  }

  .navbar-collapse.show {
    opacity: 1;
  }

  .navbar-nav {
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .header-btn {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
}


/* ============================================
　Main Content 
============================================　*/
/* --------------------------------------------
 kv
-------------------------------------------- */
.c-kv {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--color-skyblue);
  padding-top: 100px;
  padding-bottom: 170px;
  overflow: hidden;
}

.c-kv-deco--s {
  left: 0;
  top: 0;
  width: auto;
}

.c-kv-deco--l {
  width: 100%;
  left: 0;
  top: 35%;
  max-height: 550px;
  z-index: 1;
}

.c-kv-deco--l img {
  object-fit: fill;
  width: 100%;
  height: auto;
}

.ttl-h1 {
  font-size: 0;
  color: transparent;
  width: clamp(78vw, 78vw, 1400px);
  padding-right: 15vw;
}

.c-kv__date {
  width: clamp(30vw, 30vw, 680px);
  margin: 0 auto;
}

@media (max-width: 991px) {
  .c-kv__inner {
    width: 100%;
  }

  .c-kv {
    padding-top: 60px;
  }

  .c-kv-deco--s {
    width: 33.457vw;
  }

  .c-kv-deco--l {
    top: 42%;
  }

  .ttl-h1 {
    padding-right: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .ttl-h1 img {
    max-width: inherit;
    object-fit: cover;
    object-position: right center;
    width: 120%;
    height: 100%;
    margin-left: -20%;
  }

  .c-kv__date {
    width: 84%;
    margin-top: 30px;
  }
}

/* --------------------------------------------
 campaign-join
-------------------------------------------- */
.campaign-join__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.campaign-join__list-item {
  display: grid;
  grid-template-rows: subgrid;
  gap: 0;
  grid-row: span 3;
  border: 1px solid var(--color-black);
  border-radius: 6px;
  padding: 20px 10px 10px;
  position: relative;
  margin-bottom: 0;
  counter-increment: campaign-no;
}

.campaign-join__list-item:nth-child(odd) {
  background-color: var(--color-blue-light);
}

.campaign-join__list-no {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  color: var(--color-blue);
  font-size: calc(30 / 16 * 1rem);
  line-height: 1;
}

.campaign-join__list-item:nth-child(odd) .campaign-join__list-no {
  color: #fff;
}

.campaign-join__list-no::before {
  content: counter(campaign-no);
}

.campaign-join__list-item:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  right: -18px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid var(--color-blue);
  border-right: 0;
  z-index: 11;
}

.campaign-join__list-ttl {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  text-align: center;
  color: var(--color-blue);
  min-height: 3.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed var(--color-blue);
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.campaign-join__fig {
  aspect-ratio: 5 / 3;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.join-list-2 .campaign-join__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.join-list-2 .campaign-join__img img {
  width: auto;
  height: calc(100% - 2em);
}

.join-list-2 .campaign-join__figcap {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
}

.join-list-3 .campaign-join__img {
  width: 70%;
  max-width: 130px;
  margin: 0 auto;
}

@media (max-width: 991px) {

  .campaign-join__list-ttl {
    font-size: calc(20 / 16 * 1rem);
  }

  .campaign-join__fig {
    aspect-ratio: 6 / 3;
  }

  .join-list-3 .campaign-join__img {
    width: 35%;
    max-width: inherit;
  }
}

@media (max-width: 767px) {
  .campaign-join__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .campaign-join__list-item {
    width: 100%;
  }

  .campaign-join__list-item:not(:last-child)::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: -18px;
    margin: 0 auto;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-top: 18px solid var(--color-primary);
    border-bottom: 0;
  }
}

/* --------------------------------------------
 campaign-act
-------------------------------------------- */
.campaign-act {
  margin-top: 160px;
}

.campaign-act-additional {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 30px 10px;
}

@media (max-width: 991px) {
  .campaign-act {
    margin-top: 60px;
  }

  .campaign-act-additional {
    padding-left: 0;
    padding-right: 0;
  }
}

/* --------------------------------------------
 flight
-------------------------------------------- */
.flight-table {
  width: 100%;
  margin-bottom: 0;
  table-layout: fixed;
}

.flight-table th,
.flight-table td {
  vertical-align: middle;
}

.flight-table thead th {
  font-size: calc(20 / 16 * 1rem);
  letter-spacing: 0.1em;
  height: 4em;
  color: var(--color-primary);
  font-family: var(--font-ttl);
}

.flight-table thead th:not(:first-child) {
  background-color: var(--color-yellow);
}

.flight-table thead th:not(:first-child) {
  border-left: 1px solid;
}

.flight-table thead th .small {
  font-weight: 400;
  color: var(--color-black);
}

.flight-table tbody {
  border-top: 3px solid var(--color-primary);
}

.flight-table tr> :first-child {
  width: 10em;
  white-space: nowrap;
  border-right: 3px solid var(--color-primary);
}

.flight-table tbody th,
.flight-table tbody td {
  height: 5em;
  border-top: 1px solid var(--color-primary);
}

.flight-table tbody td {
  background-color: #f7d62e1c;
}

.flight-table tbody tr:not(:last-child) th,
.flight-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-primary);
}

.flight-table tbody td:not(:last-child) {
  border-right: 1px solid var(--color-primary);
}

@media (max-width: 991px) {
  .flight-content {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
  }

  .flight-table tr> :first-child {
    width: 4em;
    padding-left: 5px;
    padding-right: 5px;
  }

  .flight-table thead th {
    font-size: calc(18 / 16 * 1rem);
    letter-spacing: 0;
  }

}

/* --------------------------------------------
 sightseeing
-------------------------------------------- */
.sightseeing-link {
  display: block;
  max-width: 550px;
  margin: 0 auto;
  border: 1px solid var(--color-black);
}

/* --------------------------------------------
 faq
-------------------------------------------- */
.faq-content {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-list {
  max-width: 600px;
  margin: 30px auto 0;
  line-height: 1.6;
}

.faq-list__item>* {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.faq-list__item:not(:first-child) {
  margin-top: 50px;
}

.faq-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  font-family: var(--font-ttl);
  padding-bottom: 1%;
}

.faq-list__Q {
  background-color: var(--color-pink);
  font-weight: 700;
  font-size: calc(20 / 16 * 1rem);
  padding: 14px 20px;
  border-radius: 100vh;
  position: relative;
  gap: 30px;
}

.faq-list__Q::after {
  position: absolute;
  content: '';
  left: 10%;
  bottom: -18px;
  border: 10px solid var(--color-pink);
  border-left-color: transparent;
  border-bottom-color: transparent;
  height: 0;
  width: 0;
}

.faq-list__Q .faq-list__icon {
  color: var(--color-pink);
}

.faq-list__Q .faq-list__txt {
  color: #fff;
}

.faq-list__A {
  font-weight: 500;
  font-size: calc(18 / 16 * 1rem);
  max-width: 88%;
  margin-left: auto;
  margin-top: 40px;
  gap: 10px;
}

@media (max-width: 991px) {
  .faq-list {
    margin-top: 20px;
  }

  .faq-list__item:not(:first-child) {
    margin-top: 20px;
  }

  .faq-list__Q {
    font-size: calc(17 / 16 * 1rem);
    padding: 12px 16px;
    gap: 10px;
  }

  .faq-list__Q::after {
    left: 19%;
  }

  .faq-list__A {
    max-width: inherit;
  }
}

/* ============================================
　Footer
============================================　*/
/* --------------------------------------------
 back-to-top BTN 
-------------------------------------------- */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  background-color: var(--color-blue);
  outline: none;
  border: none;
  color: #fff;
  height: 50px;
  z-index: 1050;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;

}

.back-to-top:hover {
  transform: translateY(-4px);
}

.back-to-top.is-stopped {
  bottom: 110px;
}

.footer {
  color: #fff;
  background-color: var(--color-blue);
}

.footer-policy {
  font-size: 0.8rem;
  margin: 2rem;
}

@media (max-width: 991px) {
  .back-to-top {
    right: 0.5em;
    bottom: 0.5em;
  }
}