@charset "UTF-8";
/* Color Palette */
/* Padding */
/* Heder Space */
/* Wrap */
/*-----------
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; } }
body {
  background: #ffffff; }

sup {
  font-weight: normal;
  font-size: 50%;
  vertical-align: super; }

h1 {
  display: flex;
  align-items: baseline;
  padding: 0;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  text-align: left; }
  @media (max-width: 640px) {
    h1 {
      font-size: 39px;
      line-height: 1.3; } }
  h1 + p {
    font-size: clamp(18px, 1.7vw, 28px);
    font-weight: 500; }
    @media (max-width: 640px) {
      h1 + p {
        font-size: 16px; } }

h2 {
  font-size: clamp(22px, 2.5vw, 48px);
  font-weight: 600; }
  @media (max-width: 640px) {
    h2 {
      font-size: 20px; } }

h3 {
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 600; }
  @media (max-width: 640px) {
    h3 {
      font-size: 18px; } }

h4 {
  font-size: clamp(21px, 1.5vw, 26px);
  font-weight: 600; }
  @media (max-width: 640px) {
    h4 {
      font-size: 21px; } }

.f-600 {
  font-weight: 600; }

.section_title {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap; }
  @media (max-width: 640px) {
    .section_title {
      align-items: baseline;
      gap: 0.8rem; } }

.flexbox-col {
  display: flex;
  flex-direction: column;
  gap: 3rem; }

.flexbox-row {
  display: flex;
  flex-direction: row;
  gap: 2rem; }
  @media (max-width: 640px) {
    .flexbox-row {
      flex-direction: column; } }

/* ------------------
MAIN VISUAL
------------------*/
.mv_wrapper {
  width: 100%;
  height: 70vw;
  max-height: 720px;
  position: relative;
  overflow: hidden;
  margin-top: 90px; }
  @media (max-width: 1412px) {
    .mv_wrapper {
      max-height: none;
      height: auto; } }
  @media (max-width: 640px) {
    .mv_wrapper {
      margin-top: 52px; } }
  .mv_wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% center;
    z-index: 1; }
    @media (max-width: 1412px) {
      .mv_wrapper video {
        position: static;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center; } }

/* ------------------
INTRO
------------------*/
.intro {
  display: flex;
  justify-content: center;
  padding: 6rem 0; }
  @media (max-width: 640px) {
    .intro {
      padding: 4rem 0; } }
  .intro p {
    max-width: 800px;
    text-align: left;
    font-weight: 400; }

/* ------------------
NEWS 
------------------*/
.news {
  padding: 4rem 0 6rem; }
  @media (max-width: 640px) {
    .news {
      padding: 4rem 0 5rem; } }
  .news .news_wrap {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding-inline: calc((100vw - min(90vw, 1440px)) / 2); }
    .news .news_wrap > a.news-block, .news .news_wrap .nolink-block {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.25);
      border-radius: 10px;
      flex: 0 0 95%;
      max-width: 620px;
      padding: 2.5rem;
      display: flex;
      align-items: stretch;
      gap: 2rem;
      scroll-snap-align: start;
      text-decoration: none;
      color: inherit;
      overflow: hidden;
      will-change: transform; }
      @media (max-width: 640px) {
        .news .news_wrap > a.news-block, .news .news_wrap .nolink-block {
          padding: 1.5rem; } }
    .news .news_wrap .news_box {
      display: flex;
      width: 100%;
      transition: transform .25s ease;
      transform: translateZ(0); }
      .news .news_wrap .news_box:hover {
        transform: scale(1.01); }
      @media (max-width: 640px) {
        .news .news_wrap .news_box {
          flex-direction: column; } }
      .news .news_wrap .news_box__image {
        width: 30%; }
        @media (max-width: 640px) {
          .news .news_wrap .news_box__image {
            width: 100%; } }
      .news .news_wrap .news_box__text {
        flex: 1; }
        .news .news_wrap .news_box__text p.news-ttl {
          font-size: 120%;
          font-weight: 500;
          margin-bottom: 1rem;
          color: #1414d2;
          text-decoration: underline;
          line-height: 1.5; }
          @media (max-width: 640px) {
            .news .news_wrap .news_box__text p.news-ttl {
              font-size: 110%; } }
          .news .news_wrap .news_box__text p.news-ttl.no-link {
            color: #000000;
            text-decoration: none; }
        .news .news_wrap .news_box__text p.news-detail {
          display: inline;
          position: relative; }
          .news .news_wrap .news_box__text p.news-detail.collapsed {
            display: inline-block;
            max-height: 1rem;
            overflow: hidden;
            vertical-align: bottom;
            white-space: normal; }
        .news .news_wrap .news_box__text .readmore-inline {
          color: #276ef1;
          cursor: pointer;
          text-decoration: none;
          font-weight: 500; }
      .news .news_wrap .news_box__arrow {
        box-sizing: content-box;
        display: flex;
        align-items: center;
        width: 30px;
        flex-shrink: 0;
        padding-left: 3rem;
        margin-left: auto; }
        @media (max-width: 640px) {
          .news .news_wrap .news_box__arrow {
            margin-top: auto;
            padding-top: 1rem;
            padding-left: 0;
            width: 20px; } }

/* ------------------
NETWORK
------------------*/
.destinations {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 0;
  background: #276ef1;
  block-size: clamp(720px, 90svh, 840px);
  overflow: hidden;
  /* 左：リスト/詳細 */
  /* 右：マップ */ }
  @media (max-width: 1200px) {
    .destinations {
      grid-template-columns: 390px 1fr; } }
  @media (max-width: 640px) {
    .destinations {
      grid-template-columns: 1fr;
      block-size: auto;
      overflow: hidden; } }
  .destinations__col {
    position: relative; }
  .destinations__col--list {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    min-width: 0;
    overflow: visible; }
    @media (max-width: 640px) {
      .destinations__col--list {
        order: 1;
        min-height: auto;
        z-index: 2; } }
  .destinations__col--map {
    position: relative;
    overflow: hidden;
    background: #276ef1;
    min-width: 0;
    width: 100%; }
    @media (max-width: 640px) {
      .destinations__col--map {
        order: 2;
        block-size: 50vh;
        min-block-size: 375px;
        position: relative;
        z-index: 1; } }

/* ====Header + tabs==== */
.destinations-header {
  padding: 3rem 2rem; }
  .destinations-header h3 {
    margin: 0 0 8px; }
  @media (max-width: 1200px) {
    .destinations-header {
      padding: 2rem; } }
  .destinations-header .tabs {
    display: flex;
    padding: 1rem 0;
    margin: 0;
    list-style: none;
    justify-content: space-between; }
    .destinations-header .tabs .tab {
      position: relative;
      cursor: pointer;
      font-weight: 700;
      padding-right: 3rem;
      opacity: .6; }
      .destinations-header .tabs .tab.is-active {
        opacity: 1; }
        .destinations-header .tabs .tab.is-active::after {
          content: '';
          background: #000000;
          position: absolute;
          left: 0;
          right: 0;
          bottom: -1.3rem;
          height: 3px; }
  .destinations-header .divider {
    height: 3px;
    background: rgba(0, 0, 0, 0.25); }

/* ===============================
   Cards (list)
================================ */
.cards {
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  overflow: auto; }
  @media (max-width: 1200px) {
    .cards {
      gap: 1.5rem; } }
  @media (max-width: 640px) {
    .cards {
      display: grid;
      grid-auto-flow: column;
      grid-template-rows: repeat(2, auto);
      column-gap: 1.5rem;
      row-gap: 1.5rem;
      overflow-x: auto;
      overflow-y: hidden;
      overscroll-behavior-x: contain;
      -webkit-overflow-scrolling: touch;
      justify-content: start;
      align-content: start;
      padding: 0 2rem 2rem; } }
  .cards .card {
    cursor: pointer;
    user-select: none;
    will-change: transform; }
    @media (max-width: 640px) {
      .cards .card {
        min-inline-size: 160px; } }
    .cards .card .card__fig {
      border-radius: 10px;
      overflow: hidden;
      transition: transform .25s ease;
      transform: translateZ(0); }
      .cards .card .card__fig img {
        width: 100%;
        height: auto;
        display: block; }
      .cards .card .card__fig:hover {
        transform: scale(1.02); }
    .cards .card .card__label {
      margin: .6rem 0 0; }
      @media (max-width: 1200px) {
        .cards .card .card__label {
          margin: .4rem 0 0;
          font-size: 80%; } }

/* ====Detail overlay (slide in from left) ==== */
.detail {
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: translateX(-102%);
  transition: transform .35s ease;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }
  .detail > * {
    min-height: hidden; }
  .detail[data-open="true"] {
    transform: none; }
  @media (max-width: 640px) {
    .detail {
      position: fixed;
      max-height: none;
      overflow: auto;
      z-index: 9999;
      margin-top: 52px; }
      .detail[data-open="true"] {
        transition-delay: 0.5s; } }
  .detail .detail-header {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #ffffff;
    padding: 2rem 2rem 1rem; }
    @media (max-width: 1200px) {
      .detail .detail-header {
        padding: 2rem 2rem 1rem; } }
    .detail .detail-header p {
      font-size: clamp(18px, 1.5vw, 26px); }
    .detail .detail-header::after {
      content: '';
      background: rgba(0, 0, 0, 0.25);
      position: absolute;
      width: calc(100% - 4rem);
      bottom: 0;
      height: 3px; }
  .detail .detail__back {
    padding: 0.6rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: #ffffff;
    cursor: pointer; }
    .detail .detail__back img {
      width: 100%;
      height: auto; }
    @media (max-width: 1200px) {
      .detail .detail__back {
        padding: 0.4rem 0.5rem 0.5rem;
        width: 30px;
        height: 30px; } }
  .detail .detail__media {
    margin: 1.5rem 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    min-height: 0; }
    .detail .detail__media img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: bottom;
      display: block; }
    @media (max-width: 1200px) {
      .detail .detail__media {
        margin: 1rem 2rem 0; } }
  .detail .detail__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1rem 2rem;
    min-height: 0; }
    .detail .detail__body h3 {
      line-height: 1.2; }
  .detail .detail__ops {
    font-weight: 600; }
    .detail .detail__ops br {
      content: '';
      display: block; }
  .detail .detail__meta, .detail .detail__fleet {
    display: flex;
    gap: 2rem; }
    .detail .detail__meta .meta-item, .detail .detail__fleet .meta-item {
      display: flex;
      align-items: center;
      gap: 0.6rem; }
      .detail .detail__meta .meta-item .meta-icon, .detail .detail__fleet .meta-item .meta-icon {
        inline-size: 16px;
        block-size: 16px;
        flex-shrink: 0;
        object-fit: contain;
        opacity: .5; }
  .detail .detail__fleet {
    display: flex;
    flex-direction: column;
    gap: 1rem; }
    .detail .detail__fleet .meta-item--fleet {
      display: grid;
      grid-template-columns: auto max-content 1fr;
      column-gap: .6rem;
      align-items: start; }
      .detail .detail__fleet .meta-item--fleet .meta-icon {
        grid-column: 1;
        inline-size: 18px;
        block-size: 18px;
        object-fit: contain;
        opacity: .5;
        margin-top: .2em;
        flex-shrink: 0; }
      .detail .detail__fleet .meta-item--fleet .label {
        grid-column: 2;
        white-space: nowrap;
        font-weight: 600; }
      .detail .detail__fleet .meta-item--fleet .links {
        grid-column: 3;
        display: inline-flex;
        flex-wrap: wrap;
        column-gap: 1.5rem;
        line-height: 1.6; }
        @media (max-width: 1200px) {
          .detail .detail__fleet .meta-item--fleet .links {
            font-size: 14px; } }
    @media (max-width: 640px) {
      .detail .detail__fleet .detail__fleet .meta-item--fleet .meta-icon {
        inline-size: 16px;
        block-size: 16px; } }
  .detail .detail__cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-bottom: 2rem;
    align-items: stretch; }
    .detail .detail__cta a {
      width: calc((100% - 1.5rem) / 2); }
    @media (max-width: 1200px) {
      .detail .detail__cta {
        gap: 1rem; } }

/* =====Map Scroll Hint==== */
.scroll-hint {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  z-index: 20;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease; }
  @media (max-width: 1412px) {
    .scroll-hint {
      visibility: hidden; }
      .scroll-hint.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; } }
  .scroll-hint .chevron {
    width: 100%;
    height: auto;
    padding: 0;
    animation: nudge 1.2s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem; }
    .scroll-hint .chevron p {
      font-size: 9px;
      line-height: 1; }
    .scroll-hint .chevron svg {
      width: 10px;
      height: auto; }

.scroll-hint-right {
  right: 0;
  border-radius: 10px 0 0 10px; }

.scroll-hint-left {
  left: 0;
  border-radius: 0 10px 10px 0; }

/* 矢印アニメーション */
@keyframes nudge {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.95; }
  50% {
    transform: translateX(2px);
    opacity: 0.75; } }
/* ===============================
   Map (pan/zoom-ready)
================================ */
.map-viewport {
  position: absolute;
  inset: 0;
  overflow: auto;
  touch-action: pan-x pan-y;
  /* スクロールで移動 */ }
  @media (max-width: 640px) {
    .map-viewport {
      position: relative;
      block-size: 100%;
      overflow: auto; } }

.map-canvas {
  position: relative;
  min-width: 1320px;
  min-height: 760px;
  width: 100%;
  isolation: isolate; }
  .map-canvas button {
    padding: 0; }
  @media (max-width: 640px) {
    .map-canvas {
      min-width: 920px;
      min-height: 530px; } }

.map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(110%); }

/* ルート線 */
.map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none; }

.route {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1;
  opacity: .9;
  vector-effect: non-scaling-stroke;
  position: relative;
  z-index: 10; }

/* ピン */
.pin {
  padding: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
  left: calc(var(--x-percent) * 1%);
  top: calc(var(--y-percent) * 1%);
  --gap: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #051464;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; }
  @media (max-width: 640px) {
    .pin {
      width: 14px;
      height: 14px;
      border: 2px solid #ffffff;
      --gap: 4px; } }
  .pin.dim {
    opacity: .35; }
  .pin .label {
    position: absolute;
    white-space: nowrap;
    color: #ffffff;
    font-weight: 400;
    font-size: 12px;
    text-align: left;
    line-height: 1.3; }
    @media (max-width: 640px) {
      .pin .label {
        font-size: 11px; } }

/* 右：上下中央基準、X方向へ gap、微調整 dx/dy */
.pin[data-label="right"] .label {
  left: calc(100% + var(--gap));
  top: 50%;
  transform: translate(0, -50%) translate(var(--dx, 0px), var(--dy, 0px)); }

/* 左：上下中央基準 */
.pin[data-label="left"] .label {
  right: calc(100% + var(--gap));
  top: 50%;
  transform: translate(0, -50%) translate(var(--dx, 0px), var(--dy, 0px)); }

/* 上：左右中央基準 */
.pin[data-label="top"] .label {
  left: 50%;
  bottom: calc(100% + var(--gap));
  transform: translate(-50%, 0) translate(var(--dx, 0px), var(--dy, 0px)); }

/* 下：左右中央基準 */
.pin[data-label="bottom"] .label {
  left: 50%;
  top: calc(100% + var(--gap));
  transform: translate(-50%, 0) translate(var(--dx, 0px), var(--dy, 0px)); }

.pin.origin {
  background: #1414d2; }

.pin.city {
  background: #000000;
  cursor: pointer; }

/* ------------------
Services 機内サービス
------------------*/
.services {
  position: relative;
  object-fit: cover; }
  .services .services-ttl {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%); }
    @media (max-width: 640px) {
      .services .services-ttl {
        top: 30%; } }
    .services .services-ttl > .section_title {
      color: #ffffff;
      flex-direction: column;
      align-items: flex-start; }

#micronesia-asia {
  margin-top: 8rem; }
  @media (max-width: 640px) {
    #micronesia-asia {
      margin-top: 4rem; } }

.services-group {
  display: flex;
  gap: 2rem; }
  @media (max-width: 1200px) {
    .services-group {
      flex-direction: column; } }

.services-tab {
  width: 30%;
  padding-right: 2rem;
  position: relative; }
  @media (max-width: 1200px) {
    .services-tab {
      width: 100%;
      padding-right: 0; } }
  .services-tab::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.25); }
    @media (max-width: 1200px) {
      .services-tab::after {
        display: none; } }
  .services-tab .tab_ttl .deco_color-bar {
    display: flex;
    margin: 1.5rem 0 4rem; }
    @media (max-width: 1200px) {
      .services-tab .tab_ttl .deco_color-bar {
        margin: 1.5rem 0 2rem; } }
    .services-tab .tab_ttl .deco_color-bar .bar_light-blue, .services-tab .tab_ttl .deco_color-bar .bar_united-blue {
      height: 8px; }
    .services-tab .tab_ttl .deco_color-bar .bar_light-blue {
      flex: 0 0 45%;
      background: #a5ebff; }
    .services-tab .tab_ttl .deco_color-bar .bar_united-blue {
      flex: 1;
      background: #1414d2; }
  .services-tab ul {
    display: flex;
    flex-direction: column;
    gap: 2rem; }
    @media (max-width: 1200px) {
      .services-tab ul {
        inline-size: 100dvw;
        margin-inline: calc(50% - 50dvw);
        padding-inline: 5%;
        flex-direction: row;
        gap: 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-gutter: stable both-edges;
        padding-bottom: 1rem; } }
    .services-tab ul li {
      cursor: pointer;
      opacity: 0.5; }
      .services-tab ul li:hover, .services-tab ul li.active {
        opacity: 1; }
      @media (max-width: 1200px) {
        .services-tab ul li {
          flex: 0 0 auto; } }
      @media (max-width: 1200px) {
        .services-tab ul li p {
          font-size: 16px;
          padding: 1rem;
          border: 1px solid rgba(255, 255, 255, 0.7);
          border-radius: 10px; } }
      @media (max-width: 640px) {
        .services-tab ul li p {
          font-size: 9px;
          padding: 1rem; } }

/* ------------------
north-america
------------------*/
.services-tab_content {
  display: none;
  flex: 1; }
  .services-tab_content.active {
    display: block; }
  .services-tab_content .content-image {
    width: 100%; }
  .services-tab_content .responsive-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
  @media (max-width: 640px) {
    .services-tab_content .responsive-media {
      overflow: hidden; }
      .services-tab_content .responsive-media .swiper-wrapper .swiper-slide {
        width: 100%; } }
  @media (min-width: 641px) {
    .services-tab_content .responsive-media {
      overflow: visible; }
      .services-tab_content .responsive-media .swiper-wrapper {
        display: flex;
        gap: 1rem;
        transform: none !important;
        transition: none !important; }
        .services-tab_content .responsive-media .swiper-wrapper .swiper-slide {
          width: auto !important;
          height: 300px;
          overflow: hidden; }
          .services-tab_content .responsive-media .swiper-wrapper .swiper-slide.w-45 {
            flex: 0 0 45% !important; }
          .services-tab_content .responsive-media .swiper-wrapper .swiper-slide.w-35 {
            flex: 0 0 calc(35% - 2rem) !important; }
          .services-tab_content .responsive-media .swiper-wrapper .swiper-slide.w-20 {
            flex: 0 0 20% !important; } }
  .services-tab_content .responsive-media .swiper-pagination {
    display: none; }
    .services-tab_content .responsive-media .swiper-pagination .swiper-pagination-bullet {
      background: #ffffff;
      opacity: 1; }
    .services-tab_content .responsive-media .swiper-pagination .swiper-pagination-bullet-active {
      background: #a5ebff;
      opacity: 1; }
    @media (max-width: 640px) {
      .services-tab_content .responsive-media .swiper-pagination {
        display: block; } }
  .services-tab_content .content-text {
    width: 100%; }
    .services-tab_content .content-text.flexbox-row {
      align-items: flex-start;
      gap: 1rem; }
      @media (max-width: 640px) {
        .services-tab_content .content-text.flexbox-row {
          flex-direction: column;
          align-items: center;
          gap: 3rem; } }
    .services-tab_content .content-text__logo {
      width: 45%; }
      .services-tab_content .content-text__logo img {
        width: 60%;
        max-width: 260px; }
      @media (max-width: 640px) {
        .services-tab_content .content-text__logo {
          width: 80%;
          text-align: center; } }
    .services-tab_content .content-text__para {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start; }
      .services-tab_content .content-text__para p a.cta {
        color: #a5ebff; }
      .services-tab_content .content-text__para > a.btn {
        margin: 3rem 0 0;
        border: 1px solid #ffffff; }
        @media (max-width: 640px) {
          .services-tab_content .content-text__para > a.btn {
            width: 50%;
            margin: 3rem auto; } }
      @media (max-width: 640px) {
        .services-tab_content .content-text__para {
          width: 100%;
          align-items: center; } }

/* ------------------
micronesia
------------------*/
.services-tab_content.micronesia {
  display: none;
  flex: 1; }
  .services-tab_content.micronesia.active {
    display: block; }
  .services-tab_content.micronesia .content-image {
    width: 45%;
    overflow: hidden; }
    @media (max-width: 640px) {
      .services-tab_content.micronesia .content-image {
        width: 100%; } }
    .services-tab_content.micronesia .content-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
      @media (max-width: 640px) {
        .services-tab_content.micronesia .content-image img {
          height: auto; } }
  .services-tab_content.micronesia .content-text {
    flex: 1; }
    @media (max-width: 640px) {
      .services-tab_content.micronesia .content-text {
        width: 100%; } }
    .services-tab_content.micronesia .content-text__para {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap; }
  .services-tab_content.micronesia p.note {
    width: 100%;
    margin: 2rem 0 0;
    opacity: 0.6; }

.listed-products {
  width: 100%;
  max-width: 493px; }
  .listed-products h3 {
    font-size: clamp(18px, 8vw, 36px);
    font-weight: 500;
    margin: 0 0 2rem;
    letter-spacing: -.03em; }
    .listed-products h3 p {
      font-size: 50%;
      letter-spacing: 0; }
  .listed-products ul li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    @media (max-width: 640px) {
      .listed-products ul li {
        padding: 1rem 0; } }
    .listed-products ul li svg {
      width: 28px;
      height: auto;
      margin: 0 20px 0 0; }
    .listed-products ul li p {
      width: calc(100% - 48px); }
      .listed-products ul li p a.cta {
        color: #a5ebff; }
  .listed-products svg {
    fill: #fff; }

/* ------------------
united app
------------------*/
#united-app {
  position: relative;
  background: #f7f4f2;
  overflow: clip; }
  #united-app > .large-wrapper {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0 0; }

.cloud-bg {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100vw;
  height: 620px;
  background: url("../img/bg_united-app.jpg") top/cover no-repeat;
  z-index: 0; }

.ua-app-grid {
  display: grid;
  grid-template-columns: 1fr 30%;
  grid-template-rows: auto auto auto;
  grid-template-areas: "a d" "b d" "c d";
  align-items: stretch; }
  .ua-app-grid .app-box1 {
    grid-area: a; }
  .ua-app-grid .app-box2 {
    grid-area: b; }
  .ua-app-grid .app-box3 {
    grid-area: c; }
  .ua-app-grid .app-box4 {
    grid-area: d; }
  @media (max-width: 880px) {
    .ua-app-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 3fr auto;
      grid-template-areas: "a d" "b d" "c c"; } }
  @media (max-width: 640px) {
    .ua-app-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto 1fr auto;
      grid-template-areas: "a a" "b d" "c c"; } }
  .ua-app-grid .app-box1 {
    padding: var(--medium) 0 0; }
    @media (max-width: 880px) {
      .ua-app-grid .app-box1 {
        display: flex;
        align-items: flex-end; } }
  @media (max-width: 880px) {
    .ua-app-grid .app-box2 {
      display: flex;
      align-items: flex-start;
      margin-top: 4rem; } }
  @media (max-width: 640px) {
    .ua-app-grid .app-box2 {
      align-items: center;
      margin-top: 0; } }
  .ua-app-grid .app-points-wrap {
    width: 100%;
    padding: 2rem 2rem var(--medium) 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem; }
    @media (max-width: 880px) {
      .ua-app-grid .app-points-wrap {
        padding: 0; } }
    .ua-app-grid .app-points-wrap .app-points {
      width: calc((100% - 1rem) / 2);
      max-width: 380px;
      display: flex;
      padding: 1.5rem 0;
      background: #ffffff;
      border-radius: 10px; }
      @media (max-width: 880px) {
        .ua-app-grid .app-points-wrap .app-points {
          width: 90%; } }
      @media (max-width: 640px) {
        .ua-app-grid .app-points-wrap .app-points {
          width: 93%;
          padding: .8rem 0; } }
      .ua-app-grid .app-points-wrap .app-points__icon {
        width: 20%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center; }
        @media (max-width: 880px) {
          .ua-app-grid .app-points-wrap .app-points__icon {
            width: 30%; } }
        .ua-app-grid .app-points-wrap .app-points__icon img {
          width: 45%;
          max-width: 30px;
          max-height: 30px; }
        .ua-app-grid .app-points-wrap .app-points__icon::after {
          content: '';
          position: absolute;
          top: 0;
          right: 0;
          width: 1px;
          height: 100%;
          background: rgba(0, 0, 0, 0.25); }
      .ua-app-grid .app-points-wrap .app-points__text {
        width: 70%;
        padding-left: 2rem;
        display: flex;
        align-items: center; }
        @media (max-width: 880px) {
          .ua-app-grid .app-points-wrap .app-points__text {
            width: 100%; } }
        @media (max-width: 640px) {
          .ua-app-grid .app-points-wrap .app-points__text {
            padding-left: 1rem; } }
        .ua-app-grid .app-points-wrap .app-points__text p {
          font-size: clamp(16px, 1.5vw, 21px);
          color: #000000;
          font-weight: 700; }
          @media (max-width: 640px) {
            .ua-app-grid .app-points-wrap .app-points__text p {
              font-size: 10px; } }
  .ua-app-grid .app-box3 {
    margin: 0 0 8rem; }
    .ua-app-grid .app-box3 .to-download_wrap {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 2rem; }
      @media (max-width: 640px) {
        .ua-app-grid .app-box3 .to-download_wrap {
          justify-content: center; } }
      .ua-app-grid .app-box3 .to-download_wrap .to-download .badges {
        width: 100%;
        margin-top: 2rem;
        display: flex;
        gap: 1rem; }
        .ua-app-grid .app-box3 .to-download_wrap .to-download .badges img {
          display: block;
          block-size: clamp(40px, 7vw, 80px);
          inline-size: auto; }
      .ua-app-grid .app-box3 .to-download_wrap .to-download p {
        font-size: 21px;
        font-weight: 600; }
        @media (max-width: 640px) {
          .ua-app-grid .app-box3 .to-download_wrap .to-download p {
            font-size: 18px;
            text-align: center; } }
      .ua-app-grid .app-box3 .to-download_wrap .qr-code {
        display: block;
        flex: 0 0 auto;
        margin-right: 2rem; }
        .ua-app-grid .app-box3 .to-download_wrap .qr-code img {
          display: block;
          inline-size: clamp(80px, 8vw, 110px);
          block-size: auto; }
        @media (max-width: 640px) {
          .ua-app-grid .app-box3 .to-download_wrap .qr-code {
            display: none; } }
  .ua-app-grid .app-box4 {
    display: flex;
    justify-content: flex-end; }
    .ua-app-grid .app-box4 .phone {
      position: relative;
      inline-size: min(375px, 100%);
      /* ベース幅。必要に応じて調整 */
      aspect-ratio: 9 / 19.5;
      margin: 0 0 var(--large); }
      .ua-app-grid .app-box4 .phone::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url("../img/image_iphone.png") center/contain no-repeat;
        z-index: 5; }
      @media (max-width: 880px) {
        .ua-app-grid .app-box4 .phone {
          inline-size: min(44vw, 400px);
          margin: 0; } }
      @media (max-width: 640px) {
        .ua-app-grid .app-box4 .phone {
          inline-size: min(45vw, 200px);
          margin: 3rem 0; } }
      .ua-app-grid .app-box4 .phone .screen-window {
        position: absolute;
        top: 5%;
        right: 5%;
        bottom: 0;
        left: 5%;
        border-radius: 30px;
        overflow: hidden;
        z-index: 3; }
        .ua-app-grid .app-box4 .phone .screen-window video {
          display: block;
          inline-size: 99%;
          block-size: auto; }

.about-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 8rem; }
  .about-app > .flexbox-row {
    margin-bottom: 4rem;
    justify-content: space-between; }
    @media (max-width: 640px) {
      .about-app > .flexbox-row {
        margin-bottom: 2rem; } }
    .about-app > .flexbox-row .about-app-more {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 45%; }
      .about-app > .flexbox-row .about-app-more__image {
        width: 100%;
        border-radius: 10px;
        overflow: hidden; }
        .about-app > .flexbox-row .about-app-more__image img {
          width: 100%;
          height: auto; }
      @media (max-width: 880px) {
        .about-app > .flexbox-row .about-app-more {
          width: 48%; } }
      @media (max-width: 640px) {
        .about-app > .flexbox-row .about-app-more {
          width: 100%; } }

/* ------------------
Travel-tips
------------------*/
@media (max-width: 640px) {
  .travel-tips .tips-wrap {
    margin: 0 0 2rem; } }
.travel-tips .tips.first-tip {
  margin: 8rem 0; }
  @media (max-width: 880px) {
    .travel-tips .tips.first-tip {
      margin: 4rem 0; } }
.travel-tips .tips.second-tip {
  margin-bottom: 4rem; }
  @media (max-width: 880px) {
    .travel-tips .tips.second-tip {
      margin-bottom: 2rem; } }
.travel-tips .tips > .flexbox-row {
  justify-content: space-between;
  align-items: stretch;
  gap: 1.6rem; }
  @media (max-width: 640px) {
    .travel-tips .tips > .flexbox-row {
      align-items: initial; } }
  .travel-tips .tips > .flexbox-row .tips-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    justify-content: center;
    width: calc((100% - 1.6rem) / 2); }
    @media (max-width: 640px) {
      .travel-tips .tips > .flexbox-row .tips-box {
        width: 100%; } }
    .travel-tips .tips > .flexbox-row .tips-box img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px; }
      .travel-tips .tips > .flexbox-row .tips-box img.line-acc {
        object-fit: contain;
        object-position: bottom center;
        background: #dcfae6; }
    .travel-tips .tips > .flexbox-row .tips-box > a.btn {
      width: auto;
      display: inline-block !important;
      margin-top: 2rem; }
      @media (max-width: 640px) {
        .travel-tips .tips > .flexbox-row .tips-box > a.btn {
          margin-left: auto;
          margin-right: auto;
          min-width: 180px; } }
    .travel-tips .tips > .flexbox-row .tips-box.pad-left {
      padding-left: 6rem; }
      @media (max-width: 880px) {
        .travel-tips .tips > .flexbox-row .tips-box.pad-left {
          padding-left: 2rem; } }
      @media (max-width: 640px) {
        .travel-tips .tips > .flexbox-row .tips-box.pad-left {
          padding-left: 0; } }
    .travel-tips .tips > .flexbox-row .tips-box p.special-p {
      font-weight: 600;
      font-size: 26px; }
      @media (max-width: 640px) {
        .travel-tips .tips > .flexbox-row .tips-box p.special-p {
          font-weight: 400;
          font-size: 14px; } }
.travel-tips .tips:nth-child(even) > .flexbox-row {
  flex-direction: row-reverse; }
  @media (max-width: 640px) {
    .travel-tips .tips:nth-child(even) > .flexbox-row {
      flex-direction: column; } }

/* ------------------
おすすめポイント merits
------------------*/
.mp {
  display: grid;
  grid-template-columns: 7fr 6fr .8fr 1.5fr;
  grid-template-rows: 1fr;
  align-items: stretch;
  min-height: 460px; }
  @media (max-width: 880px) {
    .mp {
      min-height: 240px; } }
  @media (max-width: 640px) {
    .mp {
      grid-template-rows: auto auto 3rem 4.5rem;
      grid-template-columns: 1fr;
      min-height: auto; } }
  .mp .title-box {
    grid-column: 1 / 2;
    background: #1414d2;
    position: relative; }
    @media (max-width: 640px) {
      .mp .title-box {
        grid-column: 1;
        grid-row: 1;
        min-height: 220px; } }
    .mp .title-box .logo-wrap {
      display: inline-block;
      position: absolute;
      left: 20%;
      top: 48%;
      transform: translateY(-50%); }
      @media (max-width: 880px) {
        .mp .title-box .logo-wrap {
          left: 10%; } }
      @media (max-width: 640px) {
        .mp .title-box .logo-wrap {
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%); } }
      .mp .title-box .logo-wrap > .logo-title {
        color: #ffffff;
        flex-direction: column;
        display: flex;
        align-items: flex-start; }
        @media (max-width: 640px) {
          .mp .title-box .logo-wrap > .logo-title {
            align-items: center;
            justify-content: center; } }
        .mp .title-box .logo-wrap > .logo-title img {
          width: 50%;
          max-width: 260px;
          margin-bottom: 2rem; }
        @media (max-width: 640px) {
          .mp .title-box .logo-wrap > .logo-title p {
            text-align: center; } }
  .mp .image-box {
    grid-column: 2 / 3;
    position: relative;
    width: auto; }
    @media (max-width: 640px) {
      .mp .image-box {
        grid-column: 1;
        grid-row: 2; } }
    .mp .image-box img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 10% center; }
  .mp .deco_light-purple {
    grid-column: 3 / 4;
    background: #d7d2ff; }
    @media (max-width: 640px) {
      .mp .deco_light-purple {
        grid-column: 1;
        grid-row: 3; } }
  .mp .deco_medium-purple {
    grid-column: 4 / 5;
    background: #695fe6; }
    @media (max-width: 640px) {
      .mp .deco_medium-purple {
        grid-column: 1;
        grid-row: 4; } }

.mp-detail.small-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; }

.points-wrap {
  width: 100%;
  margin: var(--small) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; }
  @media (max-width: 880px) {
    .points-wrap {
      gap: 1rem;
      margin: 0 0 2rem; } }
  .points-wrap .points {
    width: calc((100% - 2rem) / 2);
    display: flex;
    padding: 1rem 0;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.25); }
    @media (max-width: 640px) {
      .points-wrap .points {
        width: 100%; } }
    .points-wrap .points.fadeUp:nth-child(2) {
      animation-delay: .2s; }
    .points-wrap .points.fadeUp:nth-child(3) {
      animation-delay: .4s; }
    .points-wrap .points.fadeUp:nth-child(4) {
      animation-delay: .6s; }
    .points-wrap .points__icon {
      width: 20%;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center; }
      @media (max-width: 880px) {
        .points-wrap .points__icon {
          width: 25%; } }
      .points-wrap .points__icon img {
        width: 50%;
        min-width: 60px; }
      .points-wrap .points__icon::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background: rgba(0, 0, 0, 0.25); }
    .points-wrap .points__text {
      width: 70%;
      padding: 0 2rem;
      display: flex;
      align-items: center; }
      .points-wrap .points__text p {
        text-align: left; }
      .points-wrap .points__text p span {
        color: #1414d2;
        font-weight: 500; }

.button_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem; }
  .button_wrap .btn {
    margin: var(--small) auto; }

.last-updated {
  position: absolute;
  right: 2rem;
  bottom: 2rem; }
  @media (max-width: 880px) {
    .last-updated {
      bottom: 1rem; } }

.footer {
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (max-width: 880px) {
    .footer {
      flex-direction: column-reverse;
      text-align: center; } }

.sns {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  gap: 2rem; }
  .sns img {
    max-width: 32px; }
  @media (max-width: 880px) {
    .sns {
      margin-left: unset;
      margin-bottom: 4rem;
      gap: 3rem; } }
