@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* form reset */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

table td, table th {
  padding: 0;
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 352px) {
  html {
    font-size: 4.5454545455vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

body {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 400;
  color: black;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.7s;
  transition: opacity 0.7s;
}

a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.link-button {
  border-radius: 4.8125rem;
  -webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
}

.link-button a {
  padding: 0.8125rem 0.8125rem 0.875rem 0.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: center;
  background-color: #FA7B34;
  border-radius: 4.8125rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.link-button__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.link-button__icon {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 0.8125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.link-button a:hover {
  opacity: 1;
}

.link-button a:hover .link-button__icon {
  -webkit-transform: translate(3px, -50%);
  transform: translate(3px, -50%);
}

.footer {
  background-color: #FFFFFF;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
}

.footer__logo-list {
  padding: 2.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.footer__logo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .footer__logo-item {
    width: 100%;
  }
}

.footer__logo-item:not(:first-of-type) {
  border-left: 1.5px solid #E4E4E4;
}

.footer__logo-item a {
  display: inline-block;
}
@media screen and (max-width: 959px) {
  .footer__logo-item a {
    margin-inline: auto;
  }
}

.footer__logo-item--kobe.footer__logo-item a {
  display: inline-block;
  padding: 0.125rem 1rem;
  width: min(100%, 10rem);
  aspect-ratio: 127/25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__logo-item--kobe.footer__logo-item img {
  display: inline-block;
  width: min(100%, 7.9375rem);
  aspect-ratio: 127/25;
}

.footer__logo-item--x.footer__logo-item a {
  padding: 0.125rem 1rem;
  width: min(100%, 3.625rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__page-top {
  width: 100%;
  background-color: #FA7B34;
  text-align: center;
}

.footer__page-top a {
  padding: 0.5625rem 0.5625rem 0.75rem;
  display: inline-block;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  position: relative;
}

.footer__page-top-link-icon {
  position: absolute;
  top: 42%;
  left: 66%;
  z-index: 1000;
  width: 0.565625rem;
  height: 0.3125rem;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

.footer__page-top a:hover {
  opacity: 1;
}

.footer__page-top a:hover .footer__page-top-link-icon {
  top: 36%;
}

.footer__related-links {
  width: 100%;
  background-color: #D9D9D9;
  padding: 2.3125rem 0 2.5rem;
}

.footer__title {
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #333333;
  text-align: center;
}

.footer__link-list {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.5rem;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.footer__link-item {
  width: min(100%, 10.625rem);
}

.footer__link-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.destination {
  padding-top: 2.5625rem;
  padding-bottom: 3.75rem;
  background-color: #F9F9E3;
}

.destination__list-inner {
  margin-inline: auto;
  width: min(100%, 24.375rem);
  padding: 0 1.1875rem;
}

.destination__item:not(:first-of-type) {
  padding-top: 3rem;
}

.destination__container {
  position: relative;
}

.destination__content {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 3%;
  width: 26%;
  height: 17.5vh;
  text-align: center;
}

.destination__header {
  padding: 0.875rem 0.4375rem 0.75rem 0.875rem;
  position: relative;
  border-radius: 0 0 0.25rem 0.25rem;
  background-color: rgba(255, 255, 255, 0.9);
}

.destination__subtitle {
  padding-right: 0.375rem;
  text-transform: uppercase;
  font-family: "Zilla Slab", serif;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #06175C;
}

.destination__title {
  margin-top: 0.1875rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  color: #06175C;
  position: relative;
}

.destination__airport {
  text-indent: -0.8125rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
  color: #848484;
  padding: 0.5rem 0.3125rem 0.5rem 0.75rem;
  border-radius: 0.25rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-top: 1px dashed transparent;
  border-image-source: repeating-linear-gradient(to right, #06175C 0, #06175C 3.2px, transparent 3.2px, transparent 8.2px);
  border-image-slice: 1;
}

.destination__airport::before {
  content: "";
  display: inline-block;
  padding-left: 0.6875rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 0.41875rem;
  height: 0.6875rem;
  background-image: url(../images/pin-img.svg);
}

.destination__img {
  margin-inline: auto;
}

.destination__img img {
  aspect-ratio: 352/246;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}

.destination__stump-img {
  position: absolute;
  bottom: 2%;
  right: -82%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  width: min(100%, 4.25rem);
}

.destination__stump-img img {
  margin-inline: auto;
  aspect-ratio: 68/55;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.destination__timetable {
  margin-top: 1rem;
  width: 100%;
}

.destination__link-item {
  margin-top: 0.875rem;
  width: min(100%, 39.875rem);
  border-radius: 3.625rem;
  border: 0.15625rem solid #FA7B34;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
}

.destination__link-item a {
  padding: 0.625rem 0.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FA7B34;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.destination__link-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.destination__link-text img {
  margin-right: 0.4375rem;
  display: inline-block;
  vertical-align: baseline;
}

.destination__link-arrow {
  width: 1.375rem;
  height: 1.375rem;
  position: absolute;
  top: 50%;
  right: 0.8125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.destination__link-item a:hover {
  opacity: 1;
}

.destination__link-item a:hover .destination__link-arrow {
  -webkit-transform: translate(0.1875rem, -50%);
  transform: translate(0.1875rem, -50%);
}

.destination__link-item--ticket.destination__link-item a {
  font-size: 1.125rem;
  padding: 0.5rem 0.8125rem 0.5625rem;
}

.destination__link-item--ticket .destination__link-icon {
  margin-right: 0.1875rem;
  display: inline-block;
  width: min(100%, 7.0625rem);
  -o-object-fit: scale-down;
     object-fit: scale-down;
  vertical-align: middle;
}

.mv {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/mv-bg-img.png);
  background-attachment: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
}

.mv__inner {
  margin-inline: auto;
  width: min(100%, 77.25rem);
  padding: 0 0.9375rem;
  height: inherit;
}

.mv__bg {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.mv__logo {
  padding-top: 28vh;
  width: 24%;
}
@media screen and (max-width: 959px) {
  .mv__logo {
    display: none;
  }
}

.mv__logo img {
  aspect-ratio: 303/88;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  width: min(100%, 18.9375rem);
}

.mv__menu-wrap {
  padding-right: 1%;
  margin-left: auto;
  padding-top: 23vh;
  width: clamp(21%, 18% + 3vw, 23%);
}
@media screen and (max-width: 959px) {
  .mv__menu-wrap {
    display: none;
  }
}

.mv-menu-title {
  font-family: "Montserrat", serif;
  font-size: clamp(0.625rem, 0.212rem + 1.64vw, 1.688rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #EC008C;
  text-transform: uppercase;
}

.mv__menu {
  margin-top: 1.125rem;
}

.mv__menu-list {
  list-style: none;
  counter-reset: my-counter;
}

.mv__menu-item {
  counter-increment: my-counter;
  position: relative;
}

.mv__menu-item:not(:first-child) {
  margin-top: 1.25rem;
}

.mv__menu-item::before {
  content: "0" counter(my-counter);
  position: absolute;
  top: 14%;
  left: 0%;
  z-index: -1000;
  width: 14%;
  font-family: "Montserrat", serif;
  font-size: clamp(0.75rem, 0.464rem + 0.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #EC008C;
}

.mv__menu-item:nth-child(n+10)::before {
  content: counter(my-counter);
}

.mv__menu-item a {
  display: inline-block;
  width: 100%;
  padding-left: clamp(1.25rem, 0.035rem + 2.53vw, 2.313rem);
  height: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: clamp(0.75rem, 0.177rem + 1.19vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #06175C;
}

.center {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 50%;
  width: clamp(24.375rem, 46.4285714286vh, 100%);
  height: 100vh;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #00C0A9;
  -webkit-box-shadow: 0px -3px 24px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px -3px 24px 0px rgba(0, 0, 0, 0.25);
  overflow-y: scroll;
  scrollbar-width: none;
}
@media screen and (max-width: 959px) {
  .center {
    height: 100svh;
    width: 100%;
  }
}

.international {
  padding-top: 1.9375rem;
  padding-bottom: 1.875rem;
  background-color: #00C0A9;
}

.international__inner {
  margin-inline: auto;
  padding: 0 1.1875rem;
  width: min(100%, 24.375rem);
}

.international__logo-img {
  margin-inline: auto;
  width: min(100%, 20.77125rem);
}

.international__logo-img img {
  margin-inline: auto;
  aspect-ratio: 332/87;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.international__title {
  margin-top: 0.8125rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-align: center;
}

.international__map {
  margin-top: 1.375rem;
  width: min(100%, 24.375rem);
  border: 0.0983125rem solid #FFFFFF;
}

.international__map img {
  margin-inline: auto;
  aspect-ratio: 352/315;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.international__note {
  margin-top: 1.0625rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #007667;
  text-align: center;
}

.top {
  background-size: cover;
  background-position: center 0.3125rem;
  background-repeat: no-repeat;
  background-image: url(../images/center-img.png);
  overflow-y: scroll;
  scrollbar-width: none;
  height: 100vh;
  position: relative;
  background-color: #3AC7E5;
}
@media screen and (max-width: 959px) {
  .top {
    background-position: center 53%;
    height: -webkit-fill-available;
  }
}

.top__inner {
  margin-inline: auto;
  padding: 0 1.1875rem;
  height: inherit;
}
@media screen and (max-width: 959px) {
  .top__inner {
    height: 100svh;
  }
}

.top__title-img {
  margin-inline: auto;
  width: 90.2%;
  position: absolute;
  z-index: 2000;
  top: 24%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 959px) {
  .top__title-img {
    top: 21%;
    width: min(100%, 20.625rem);
  }
}

.top__title-img img {
  margin-inline: auto;
  aspect-ratio: 697/562;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 959px) {
  .top__title-img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.top__cta {
  width: min(100%, 18.125rem);
  position: absolute;
  z-index: 2000;
  bottom: 19.5%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.top__plane-img {
  margin-top: 6.5rem;
}
@media screen and (max-width: 959px) {
  .top__plane-img {
    margin-top: 6.5rem;
  }
}

.top__plane-img img {
  margin-inline: auto;
  aspect-ratio: 31/107;
  -o-object-fit: cover;
     object-fit: cover;
  width: min(100%, 1.9375rem);
}
@media screen and (max-width: 959px) {
  .top__plane-img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.top__scroll-down {
  position: relative;
  text-align: center;
}

.top__scroll-down::before {
  content: "";
  background-image: url(../images/top-plane-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 6.875rem;
  width: 1.9375rem;
  margin: auto;
  position: absolute;
  bottom: -81vh;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: scroll-down 2.5s infinite;
  animation: scroll-down 2.5s infinite;
}
@media screen and (max-width: 959px) {
  .top__scroll-down::before {
    display: inline-block;
    position: fixed;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: none;
    animation: none;
  }
}

.wave-destination {
  background: #BBF3FF;
}

.wave-destination__content-img {
  width: 100%;
  background: #00C0A9;
}

.wave-destination__content-img svg {
  vertical-align: bottom;
  margin-bottom: -0.125rem;
}

.domestic {
  padding: 1.0625rem 0 3.75rem;
  background-color: #1A89D9;
}

.domestic__inner {
  margin-inline: auto;
  width: min(100%, 24.375rem);
  padding: 0 0.75rem;
}

.domestic__map {
  width: min(100%, 22.875rem);
}

.domestic__map img {
  margin-inline: auto;
  aspect-ratio: 366/490;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.domestic__note {
  margin-top: 1.125rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.69;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  text-align: center;
}

.domestic__cta {
  margin-top: 1.625rem;
  margin-inline: auto;
  width: min(100%, 18.125rem);
}

.wave-domestic {
  background: #F9F9E3;
  margin-top: -0.125rem;
}

.wave-domestic__content-img {
  width: 100%;
  background: #BBF3FF;
}

.wave-domestic__content-img svg {
  vertical-align: bottom;
  margin-bottom: -0.125rem;
}

.airport-info {
  position: relative;
  height: 17.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/overhead-phot-img.jpg);
}

.airport-info__inner {
  position: absolute;
  top: 17.8571428571%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0 1.1875rem;
  width: min(100%, 24.375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.airport-info__title {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: center;
}

.airport-info__button-list {
  margin-top: 1.1875rem;
  width: min(100%, 18.125rem);
}

.airport-info__button-item {
  border-radius: 5rem;
  background-color: #06175C;
  -webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
}

.airport-info__button-item a {
  padding: 1.0625rem 2.75rem 0.875rem 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  align-items: center;
  border-radius: 5rem;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.airport-info__link-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.airport-info__link-icon {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 0.6875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.airport-info__button-item a:hover {
  opacity: 1;
}

.airport-info__button-item a:hover .airport-info__link-icon {
  -webkit-transform: translate(3px, -50%);
  transform: translate(3px, -50%);
}

.airport-info__button-item:not(:first-of-type) {
  margin-top: 0.75rem;
}

.airport-info__map-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.4375rem;
}

.airport-info__parking-icon {
  display: inline-block;
  width: 1.8125rem;
  height: 1.4375rem;
}

.airport-info__map-icon img {
  aspect-ratio: 24/23;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.airport-info__parking-icon img {
  aspect-ratio: 29/23;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.airport-info__map-icon {
  margin-right: 0.5rem;
  display: inline-block;
  width: 1.5rem;
  height: 1.4375rem;
  vertical-align: text-bottom;
  background-image: url(../images/airport-info-pin-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.airport-info__parking-icon {
  margin-right: 0.5rem;
  display: inline-block;
  width: 1.8125rem;
  height: 1.4375rem;
  vertical-align: text-bottom;
  background-image: url(../images/airport-info-parking-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.timetable {
  border-radius: 0.5rem 0.5rem;
  border: 0.15625rem solid #FA7B34;
  overflow: hidden;
}

.timetable__header {
  padding: 0.625rem 0.8125rem 0.625rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: center;
  background-color: #FA7B34;
  position: relative;
  cursor: pointer;
}

.timetable__icon {
  display: inline-block;
  margin-right: 0.25rem;
  margin-top: -0.25rem;
  vertical-align: middle;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  background-image: url(../images/clock-img.svg);
}

.timetable__cell-icon {
  max-width: 5.125rem;
}

.timetable__toggle {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1.375rem;
  height: 1.375rem;
  display: inline-block;
  border-radius: 50%;
  background-color: #FFFFFF;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.timetable__header::before,
.timetable__header::after {
  content: "";
  position: absolute;
  z-index: 1000;
  top: 1.3125rem;
  right: 1.125rem;
  display: inline-block;
  width: 0.5rem;
  height: 0.1875rem;
  border-radius: 0.1875rem;
  background-color: #FA7B34;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.timetable__header::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.timetable__header.is-open::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.timetable__container {
  padding-top: 0rem;
  max-height: 0rem;
  padding: 0 0.75rem;
  overflow: hidden;
  background-color: #FFFFFF;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.timetable__header.is-open + .timetable__container {
  padding-top: 0.375rem;
  padding: 0 0.3125rem 0.375rem 0.375rem;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
  max-height: 50rem;
}

.timetable__container .annotation {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #06175C;
  text-align: right;
  padding-bottom: 0.375rem;
}

.timetable__container .annotation2 {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.75rem;
  font-weight: medium;
  line-height: 1.5;
  color: #06175C;
  padding: 0 0.375rem 0.375rem;
}

.timetable__content {
  padding-bottom: 0.375rem;
}

.timetable__content:not(:first-of-type) {
  border-top: 0.125rem solid #C2C2C2;
}

.timetable__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

.timetable__content:first-of-type {
  padding-bottom: 0.5rem;
}

.timetable__content:not(:first-of-type) .timetable__table {
  margin-top: 0.5rem;
}

.timetable__row-header {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FA7B34;
  text-align: center;
}

.timetable__row-header .timetable__cell {
  padding: 0.5625rem 0;
}

.timetable__row {
  border-top: 0.0625rem solid #C2C2C2;
}

.timetable__row .timetable__cell {
  padding: 0.4375rem 0;
  height: 1.875rem;
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: 0.75rem;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #06175C;
  text-align: center;
}

.timetable__time {
  font-family: "Montserrat", serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}

.timetable__cell-upper {
  font-size: 0.7em;
  vertical-align: top;
}

.wave-access {
  background: #00C0A9;
}

.wave-access__content-img {
  width: 100%;
  background: #F9F9E3;
}

.wave-access__content-img svg {
  vertical-align: bottom;
  margin-bottom: -0.125rem;
}

.access {
  background: #BBF3FF;
  padding: 2.1875rem 0;
}

.access__img {
  padding: 0 0.9375rem;
  margin: 0 auto;
  display: block;
  max-width: 23.75rem;
  width: 100%;
}
.access__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 350/300;
}

@-webkit-keyframes scroll-down {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  95% {
    opacity: 0;
    -webkit-transform: translate(0, 150px);
    transform: translate(0, 150px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll-down {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  95% {
    opacity: 0;
    -webkit-transform: translate(0, 150px);
    transform: translate(0, 150px);
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 959px) {
  .md-none {
    display: none;
  }
}

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