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

@media screen and (max-width: 1412px) {
  :root {
    --large: 6rem;
    --medium: 4rem;
    --small: 1.5rem;
    --section-padding: 6rem 0; } }
@media screen and (max-width: 880px) {
  :root {
    --large: 5rem;
    --medium: 3rem;
    --small: 1.5rem;
    --section-padding: 5rem 0; } }
@media screen and (max-width: 640px) {
  :root {
    --large: 3rem;
    --medium: 2rem;
    --small: 1rem;
    --section-padding: 3rem 0; } }
@font-face {
  font-family: 'NeuePlak';
  src: url("../fonts/woff2/NeuePlakTextforUnited-Rg.woff2") format("woff2"), url("../fonts/woff/NeuePlakTextforUnited-Rg.woff") format("woff");
  font-weight: 400; }
@font-face {
  font-family: 'NeuePlak';
  src: url("../fonts/woff2/NeuePlakTextforUnited-Bd.woff2") format("woff2"), url("../fonts/woff/NeuePlakTextforUnited-Bd.woff") format("woff");
  font-weight: 700; }
@font-face {
  font-family: 'NeuePlak';
  src: url("../fonts/woff2/NeuePlakTextforUnited-SmBd.woff2") format("woff2"), url("../fonts/woff2/NeuePlakTextforUnited-SmBd.woff") format("woff2");
  font-weight: 600; }
html, body {
  scroll-padding-top: 100px; }
  @media (max-width: 640px) {
    html, body {
      scroll-padding-top: 120px; } }

html {
  box-sizing: border-box; }

*, *::before, *::after {
  box-sizing: inherit; }

/* ------------------
背景・文字色用カラー指定 
------------------*/
.white {
  color: #fff; }

.bg-white {
  background: #fff; }

.dark-blue {
  color: #051464; }

.bg-dark-blue {
  background-color: #051464;
  color: #ffffff; }

.united-blue {
  color: #1414d2; }

.bg-united-blue {
  background: #1414d2; }

.medium-purple {
  color: #695fe6; }

.dark-purple {
  color: #551e5f; }

.bg-dark-purple {
  background-color: #551e5f;
  color: #ffffff; }

.medium-blue {
  color: #276ef1; }

.bg-medium-blue {
  background-color: #276ef1;
  color: #ffffff; }

.bg-light-tonal-gray {
  background-color: #f7f4f2; }

.bg-sky {
  background: url("../img/common/bg_sky.jpg") no-repeat center/cover; }

/* ------------------
アニメーション指定 
------------------*/
.fadeIn {
  opacity: 0;
  transform: translateY(50px);
  transition: all .75s 0s ease; }

.fadeIn.second {
  transition: all .75s 0.5s ease; }

.fadeInTtl {
  opacity: 0;
  transform: translateY(50px);
  transition: all .75s 0s ease; }

@keyframes show {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0; }
  100% {
    transform: translateX(0); }
  40%,100% {
    opacity: 1; } }
.slideIn {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards; }

/* ------------------
共通指定 
------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%; }

body {
  font-family: 'NeuePlak', 'Open Sans', 'Noto Sans JP', 'hiragino kaku gothic pro', sans-serif;
  font-size: 1.6em;
  /*font-optical-sizing: auto;
  font-style: normal;*/ }
  @media (max-width: 640px) {
    body {
      font-size: 1.4em; } }

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

h1 {
  text-align: center; }

h1, h2, h3, h4 {
  line-height: 1.6; }

p {
  line-height: 1.6; }

a {
  text-decoration: none; }

a.cta {
  color: #1414d2;
  text-decoration: underline; }
  a.cta .fas {
    margin: 0 .25rem;
    opacity: .4;
    transform: scale(0.8); }
  a.cta:hover {
    color: #0D0D8F; }

div, img {
  vertical-align: bottom; }

.agent-content, .ua-content {
  display: none; }

.wrap {
  width: 90%;
  max-width: 1380px;
  margin: auto; }
  @media (max-width: 640px) {
    .wrap {
      width: 96%; } }

.flexbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; }
  .flexbox.align-normal {
    align-items: normal; }

.w-half > div {
  width: 50%; }
  @media (max-width: 880px) {
    .w-half > div {
      width: 100%; } }
.w-half > li {
  width: 50%; }
  @media (max-width: 880px) {
    .w-half > li {
      width: 100%; } }

.align-c {
  text-align: center; }

/*--------------------
Bacic Toggle Button
--------------------*/
.toggle-btn {
  cursor: pointer;
  position: relative;
  border-radius: 1rem;
  border: solid 2px #ffffff;
  transition: .5s; }
  .toggle-btn:after {
    content: '';
    border-right: solid 2px #ffffff;
    border-bottom: solid 2px #ffffff;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) rotate(45deg);
    transition: .3s; }
  .toggle-btn.close-btn {
    border-radius: 1rem 1rem 0 0; }
    .toggle-btn.close-btn:after {
      transform: translateY(-50%) rotate(-135deg); }

.toggle-content {
  display: none;
  color: #000;
  padding: 0 0 2rem;
  border-radius: 0 0 4px 4px; }
  @media (max-width: 640px) {
    .toggle-content {
      padding: 0 0 1rem; } }

/*--------------------
Fixed Banner　フローティング？
--------------------*/
.fixed_image-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: 450px;
  width: 90%;
  z-index: 998; }
  .fixed_image-banner img {
    border-radius: .5rem;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.3); }
    @media (max-width: 640px) {
      .fixed_image-banner img {
        border-radius: 0; } }
  @media (max-width: 640px) {
    .fixed_image-banner {
      width: 100%;
      max-width: 100%;
      right: 0;
      bottom: 0; } }

/*--------------------
MUST
--------------------*/
.note {
  font-size: 80%; }

.large-wrapper {
  width: 90%;
  max-width: 1440px;
  margin: auto; }

.small-wrapper {
  width: 90%;
  max-width: 1080px;
  margin: auto; }

.pic {
  width: 100%;
  height: auto; }

.pc-only {
  display: block; }
  @media (max-width: 1200px) {
    .pc-only {
      display: none; } }

.pctab-only {
  display: block; }
  @media (max-width: 640px) {
    .pctab-only {
      display: none; } }

.tabsp-only {
  display: none; }
  @media (max-width: 880px) {
    .tabsp-only {
      display: block; } }

.sp-only {
  display: none; }
  @media (max-width: 640px) {
    .sp-only {
      display: block; } }

.on-tab {
  display: none; }
  @media (max-width: 1412px) {
    .on-tab {
      display: block; } }

.btn {
  display: inline-block;
  padding: 1.4rem 2.5rem;
  box-sizing: border-box;
  border-radius: 30px;
  text-align: center;
  color: #ffffff;
  background: #1414d2;
  transition: 0.3s;
  text-decoration: none;
  border: solid 1px #fff; }
  @media (max-width: 640px) {
    .btn {
      padding: 1.2rem 2rem; } }
  .btn:hover {
    background: #0D0D8F; }

.line-btn {
  display: inline-block;
  padding: 1.4rem 2.5rem;
  box-sizing: border-box;
  border-radius: 30px;
  text-align: center;
  color: #1414d2;
  background: #fff;
  transition: 0.3s;
  text-decoration: none;
  border: 2px solid #1414d2; }
  @media (max-width: 640px) {
    .line-btn {
      padding: 1.2rem 2rem; } }
  .line-btn:hover {
    color: #0D0D8F;
    border: 2px solid #0D0D8F; }

/* ------------------
Header
------------------*/
.header-inner {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.before-hamburger {
  display: flex;
  gap: 1rem;
  align-items: center; }

header {
  background: #ffffff;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  transition: .3s;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.3); }
  header nav {
    margin-left: auto;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s; }
    @media (max-width: 640px) {
      header nav {
        height: 52px !important; } }
    @media (max-width: 1412px) {
      header nav div {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: -100vw;
        opacity: 0;
        width: 100%;
        height: 100vh;
        background: rgba(20, 20, 210, 0.9);
        transition: 0.3s; } }
    header nav div ul {
      display: flex;
      gap: 1rem; }
      @media (max-width: 1412px) {
        header nav div ul {
          display: block;
          width: 90%;
          margin: auto; } }
      @media (max-width: 1412px) {
        header nav div ul {
          padding: 0 0 6rem;
          display: flex;
          flex-direction: column;
          align-items: center; } }
      header nav div ul li {
        display: flex;
        align-items: center; }
        @media (max-width: 1412px) {
          header nav div ul li {
            display: block; } }
        header nav div ul li a {
          padding: .75rem;
          font-weight: 600;
          font-size: 1.5rem;
          color: #1414d2;
          text-decoration: none; }
          @media (max-width: 1412px) {
            header nav div ul li a {
              padding: 1.4rem 0;
              display: block;
              font-size: 2rem;
              color: #ffffff;
              text-align: center; } }
          @media (max-width: 640px) {
            header nav div ul li a {
              font-size: 18px; } }
        header nav div ul li .btn {
          margin: 0 0 0 1rem;
          box-sizing: border-box; }
          @media (max-width: 1412px) {
            header nav div ul li .btn {
              width: 100%;
              max-width: 400px;
              color: #1414d2;
              background: #ffffff;
              margin: 1rem auto 0;
              border: solid 2px #ffffff; } }
        @media (max-width: 1412px) {
          header nav div ul li .line-btn {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.2);
            border: solid 2px #ffffff; } }

@media (max-width: 1412px) {
  #g-nav .ua-content,
  #g-nav .agent-content {
    display: none; }

  #g-nav .ua-content.active,
  #g-nav .agent-content.active {
    display: flex; } }
#logo-united {
  width: 140px;
  height: auto;
  transition: .3s; }
  @media (max-width: 640px) {
    #logo-united {
      width: 90px !important; } }

/* ------------------
Global navigation button
------------------*/
@media (max-width: 1412px) {
  .active {
    opacity: 1;
    visibility: visible;
    right: 0;
    overflow: scroll; }

  #g-nav-btn {
    transition: 0.3s; }
    #g-nav-btn div {
      width: 28px;
      height: 28px;
      position: relative;
      transition-duration: 1s; }
      #g-nav-btn div span {
        display: block;
        position: absolute;
        width: 28px;
        height: 2px;
        background: #1414d2;
        transition-duration: .2s; }
        #g-nav-btn div span:nth-child(1) {
          top: 4px; }
        #g-nav-btn div span:nth-child(2) {
          top: 50%;
          transform: translateY(-50%); }
        #g-nav-btn div span:nth-child(3) {
          bottom: 4px; }

  #g-nav-btn.active {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 3%; }
    #g-nav-btn.active span:nth-child(1) {
      top: 10px;
      transform: rotate(-45deg); }
    #g-nav-btn.active span:nth-child(2) {
      opacity: 0; }
    #g-nav-btn.active span:nth-child(3) {
      top: 10px;
      transform: rotate(45deg); } }
/* ------------------
text-align
------------------*/
.txt-align-c {
  text-align: center; }

.txt-align-r {
  text-align: right; }

/* ------------------
Schedule
------------------*/
.schedule-block__text p {
  padding: 1rem 0; }
.schedule-block .table-title {
  margin-top: 2rem;
  font-size: clamp(15px, 4.2vw, 20px);
  font-weight: 600; }
@media screen and (max-width: 1492px) {
  .schedule-block .table-wrapper {
    overflow-x: scroll; } }
.schedule-block__ttl {
  margin-top: 3rem;
  font-size: clamp(18px, 4.6vw, 24px);
  font-weight: 600; }
.schedule-block__main {
  width: 90%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 1rem 0; }
  .schedule-block__main-contents table {
    background: #ffffff;
    color: #000;
    width: 100%;
    table-layout: fixed;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    margin: 1rem 0 0;
    font-size: 90%;
    text-align: left; }
    @media screen and (max-width: 1492px) {
      .schedule-block__main-contents table {
        width: 1342px; } }
    @media (max-width: 640px) {
      .schedule-block__main-contents table {
        width: 140vw; } }
    @media (max-width: 640px) {
      .schedule-block__main-contents table .area-ttl {
        width: 25px; } }
    .schedule-block__main-contents table .area {
      background: #C9F3FF;
      border-bottom: solid 1px #ffffff;
      position: sticky;
      left: 0;
      z-index: 1;
      width: 125px; }
      @media (max-width: 640px) {
        .schedule-block__main-contents table .area {
          line-height: 1.2;
          width: 25px;
          text-align: center; } }
      .schedule-block__main-contents table .area.sfo {
        background: #C9F3FF; }
      .schedule-block__main-contents table .area.is-last {
        border-bottom: none;
        border-bottom-left-radius: 4px; }
    .schedule-block__main-contents table .short-cell {
      width: 30px; }
      @media screen and (max-width: 1492px) {
        .schedule-block__main-contents table .short-cell {
          display: none; } }
    .schedule-block__main-contents table th,
    .schedule-block__main-contents table td {
      vertical-align: middle; }
    .schedule-block__main-contents table .route {
      width: 340px; }
      .schedule-block__main-contents table .route.sfo-route {
        width: 260px; }
      @media (max-width: 640px) {
        .schedule-block__main-contents table .route {
          width: 33vw;
          font-feature-settings: 'palt'; } }
      .schedule-block__main-contents table .route .icon {
        margin: 0 .5rem;
        width: auto;
        height: 10px;
        vertical-align: baseline; }
        @media (max-width: 640px) {
          .schedule-block__main-contents table .route .icon {
            margin: 0 1vw;
            height: 7px; } }
      @media (max-width: 640px) {
        .schedule-block__main-contents table .route {
          line-height: 1.2; } }
    .schedule-block__main-contents table thead {
      border-radius: 4px 4px 0 0; }
    .schedule-block__main-contents table th {
      padding: 1rem;
      background: #a5ebff; }
      .schedule-block__main-contents table th:first-child {
        position: sticky;
        left: 0;
        z-index: 1; }
      @media (max-width: 640px) {
        .schedule-block__main-contents table th {
          font-size: clamp(10px, 2.4vw, 16px);
          padding: .75rem .5rem; } }
      .schedule-block__main-contents table th:first-child {
        border-radius: 4px 0 0 0; }
      .schedule-block__main-contents table th:last-child {
        border-radius: 0 4px 0 0;
        text-align: center; }
    .schedule-block__main-contents table td {
      padding: 1rem;
      position: relative; }
      @media (max-width: 880px) {
        .schedule-block__main-contents table td {
          padding: 1rem .5rem; } }
      @media (max-width: 640px) {
        .schedule-block__main-contents table td {
          font-size: clamp(10px, 2.4vw, 16px); } }
      .schedule-block__main-contents table td .align-items_c {
        display: flex;
        align-items: center; }
        @media (max-width: 880px) {
          .schedule-block__main-contents table td .align-items_c {
            justify-content: flex-end; } }
        @media (max-width: 640px) {
          .schedule-block__main-contents table td .align-items_c {
            justify-content: flex-start; } }
      .schedule-block__main-contents table td .icon {
        width: 26px;
        height: auto;
        margin: 0 5px 0 0; }
        @media (max-width: 880px) {
          .schedule-block__main-contents table td .icon {
            max-width: 20px;
            width: 5%; } }
        @media (max-width: 880px) {
          .schedule-block__main-contents table td .icon.ua-icon {
            display: none; } }
      .schedule-block__main-contents table td .border:before {
        content: '';
        position: absolute;
        top: 50%;
        left: -350%;
        transform: translateY(-50%);
        width: 350%;
        height: 0;
        border-bottom: dashed 1px #b7b7b7; }
        @media screen and (max-width: 1470px) {
          .schedule-block__main-contents table td .border:before {
            left: -50%;
            width: 100%; } }
        @media (max-width: 640px) {
          .schedule-block__main-contents table td .border:before {
            left: -20%;
            width: 95%; } }
      .schedule-block__main-contents table td .border:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background: url("/sanfrancisco/assets/img/common/icon_airplane_grey.svg") no-repeat center/contain; }
        @media (max-width: 640px) {
          .schedule-block__main-contents table td .border:after {
            width: 15px;
            height: 15px; } }
      .schedule-block__main-contents table td:last-child {
        text-align: center;
        width: 100px; }
    .schedule-block__main-contents table tbody .fas {
      padding: 0 1rem;
      color: #1414d2; }
      @media (max-width: 640px) {
        .schedule-block__main-contents table tbody .fas {
          display: block; } }
    .schedule-block__main-contents table tbody tr {
      border-bottom: solid 1px #ddd; }
      .schedule-block__main-contents table tbody tr:last-child {
        border: none; }
    .schedule-block__main-contents table tbody td {
      position: relative; }
      .schedule-block__main-contents table tbody td p {
        margin: .2rem 0 0;
        line-height: 1; }
      .schedule-block__main-contents table tbody td span {
        font-feature-settings: "palt";
        font-size: clamp(8px, 2.2vw, 11px); }
      .schedule-block__main-contents table tbody td:first-child:before {
        border-radius: 4px 0 0 0; }
      .schedule-block__main-contents table tbody td:last-child:before {
        border-radius: 0 0 0 4px; }
.schedule-block .annotation p {
  font-size: 1.3rem; }
  @media (max-width: 640px) {
    .schedule-block .annotation p {
      font-size: 1.2rem; } }

/* ------------------
Schedule スケジュール
------------------*/
#flight-schedule {
  background: #1414d2; }

.schedule-block__text p, .schedule-block-sfo__text p {
  padding: 1rem 0; }
.schedule-block .table-title, .schedule-block-sfo .table-title {
  margin-top: 2rem;
  font-size: clamp(15px, 4.2vw, 20px);
  font-weight: 600; }
.schedule-block__main, .schedule-block-sfo__main {
  width: 90%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 1rem 0; }
  @media (max-width: 640px) {
    .schedule-block__main, .schedule-block-sfo__main {
      padding: 0; } }
  .schedule-block__main-contents table.sfo, .schedule-block-sfo__main-contents table.sfo {
    background: #ffffff;
    color: #000;
    width: 100%;
    table-layout: auto;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    margin: 1rem 0 0;
    font-size: 90%;
    text-align: left; }
    .schedule-block__main-contents table.sfo .area, .schedule-block-sfo__main-contents table.sfo .area {
      background: #a5ebff;
      border-bottom: solid 1px #ffffff;
      position: sticky;
      left: 0;
      z-index: 1;
      width: 125px; }
      @media (max-width: 640px) {
        .schedule-block__main-contents table.sfo .area, .schedule-block-sfo__main-contents table.sfo .area {
          line-height: 1.2;
          text-align: center;
          width: 25px; } }
      .schedule-block__main-contents table.sfo .area.sfo, .schedule-block-sfo__main-contents table.sfo .area.sfo {
        background: #C9F3FF; }
      .schedule-block__main-contents table.sfo .area.is-last, .schedule-block-sfo__main-contents table.sfo .area.is-last {
        border-bottom: none;
        border-bottom-left-radius: 4px; }
    .schedule-block__main-contents table.sfo .short-cell, .schedule-block-sfo__main-contents table.sfo .short-cell {
      width: 14%;
      max-width: 100px !important; }
      @media (max-width: 880px) {
        .schedule-block__main-contents table.sfo .short-cell, .schedule-block-sfo__main-contents table.sfo .short-cell {
          display: none; } }
    .schedule-block__main-contents table.sfo th,
    .schedule-block__main-contents table.sfo td, .schedule-block-sfo__main-contents table.sfo th,
    .schedule-block-sfo__main-contents table.sfo td {
      vertical-align: middle; }
    @media (max-width: 640px) {
      .schedule-block__main-contents table.sfo .route, .schedule-block-sfo__main-contents table.sfo .route {
        word-break: break-all;
        overflow-wrap: anywhere; } }
    .schedule-block__main-contents table.sfo .route .icon, .schedule-block-sfo__main-contents table.sfo .route .icon {
      margin: 0 .5rem;
      width: auto;
      height: 10px;
      vertical-align: baseline; }
      @media (max-width: 640px) {
        .schedule-block__main-contents table.sfo .route .icon, .schedule-block-sfo__main-contents table.sfo .route .icon {
          margin: 0 1vw;
          height: 7px; } }
    @media (max-width: 640px) {
      .schedule-block__main-contents table.sfo .route, .schedule-block-sfo__main-contents table.sfo .route {
        line-height: 1.2; } }
    .schedule-block__main-contents table.sfo thead, .schedule-block-sfo__main-contents table.sfo thead {
      border-radius: 4px 4px 0 0; }
    .schedule-block__main-contents table.sfo th, .schedule-block-sfo__main-contents table.sfo th {
      padding: 1rem;
      background: #a5ebff; }
      .schedule-block__main-contents table.sfo th:first-child, .schedule-block-sfo__main-contents table.sfo th:first-child {
        position: sticky;
        left: 0;
        z-index: 1; }
      @media (max-width: 640px) {
        .schedule-block__main-contents table.sfo th, .schedule-block-sfo__main-contents table.sfo th {
          font-size: clamp(10px, 2.4vw, 16px);
          padding: .75rem .5rem; } }
      .schedule-block__main-contents table.sfo th:first-child, .schedule-block-sfo__main-contents table.sfo th:first-child {
        border-radius: 4px 0 0 0; }
      .schedule-block__main-contents table.sfo th:last-child, .schedule-block-sfo__main-contents table.sfo th:last-child {
        border-radius: 0 4px 0 0;
        text-align: center; }
    .schedule-block__main-contents table.sfo td, .schedule-block-sfo__main-contents table.sfo td {
      padding: 1rem;
      position: relative; }
      @media (max-width: 880px) {
        .schedule-block__main-contents table.sfo td, .schedule-block-sfo__main-contents table.sfo td {
          padding: 1rem .5rem; } }
      @media (max-width: 640px) {
        .schedule-block__main-contents table.sfo td, .schedule-block-sfo__main-contents table.sfo td {
          font-size: clamp(10px, 2.4vw, 16px); } }
      .schedule-block__main-contents table.sfo td .align-items_c, .schedule-block-sfo__main-contents table.sfo td .align-items_c {
        display: flex;
        align-items: center; }
        @media (max-width: 880px) {
          .schedule-block__main-contents table.sfo td .align-items_c, .schedule-block-sfo__main-contents table.sfo td .align-items_c {
            justify-content: flex-end; } }
        @media (max-width: 640px) {
          .schedule-block__main-contents table.sfo td .align-items_c, .schedule-block-sfo__main-contents table.sfo td .align-items_c {
            justify-content: flex-start; } }
      .schedule-block__main-contents table.sfo td .icon, .schedule-block-sfo__main-contents table.sfo td .icon {
        width: 26px;
        height: auto;
        margin: 0 5px 0 0; }
        @media (max-width: 880px) {
          .schedule-block__main-contents table.sfo td .icon, .schedule-block-sfo__main-contents table.sfo td .icon {
            max-width: 20px;
            width: 5%; } }
        @media (max-width: 880px) {
          .schedule-block__main-contents table.sfo td .icon.ua-icon, .schedule-block-sfo__main-contents table.sfo td .icon.ua-icon {
            display: none; } }
      .schedule-block__main-contents table.sfo td .border:before, .schedule-block-sfo__main-contents table.sfo td .border:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        height: 0;
        border-bottom: dashed 1px #b7b7b7;
        /*@include btab {
        	left: -100%;
        	 width: 100%; 
        }*/ }
      .schedule-block__main-contents table.sfo td .border:after, .schedule-block-sfo__main-contents table.sfo td .border:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background: url("/sanfrancisco/assets/img/common/icon_airplane_grey.svg") no-repeat center/contain; }
        @media (max-width: 640px) {
          .schedule-block__main-contents table.sfo td .border:after, .schedule-block-sfo__main-contents table.sfo td .border:after {
            width: 15px;
            height: 15px; } }
      .schedule-block__main-contents table.sfo td:last-child, .schedule-block-sfo__main-contents table.sfo td:last-child {
        text-align: center; }
        @media (max-width: 640px) {
          .schedule-block__main-contents table.sfo td:last-child, .schedule-block-sfo__main-contents table.sfo td:last-child {
            width: 40px !important; } }
    .schedule-block__main-contents table.sfo tbody .fas, .schedule-block-sfo__main-contents table.sfo tbody .fas {
      padding: 0 1rem;
      color: #1414d2; }
      @media (max-width: 640px) {
        .schedule-block__main-contents table.sfo tbody .fas, .schedule-block-sfo__main-contents table.sfo tbody .fas {
          display: block; } }
    .schedule-block__main-contents table.sfo tbody tr, .schedule-block-sfo__main-contents table.sfo tbody tr {
      border-bottom: solid 1px #ddd; }
      .schedule-block__main-contents table.sfo tbody tr:last-child, .schedule-block-sfo__main-contents table.sfo tbody tr:last-child {
        border: none; }
    .schedule-block__main-contents table.sfo tbody td, .schedule-block-sfo__main-contents table.sfo tbody td {
      position: relative; }
      .schedule-block__main-contents table.sfo tbody td p, .schedule-block-sfo__main-contents table.sfo tbody td p {
        margin: .2rem 0 0;
        line-height: 1; }
      .schedule-block__main-contents table.sfo tbody td span, .schedule-block-sfo__main-contents table.sfo tbody td span {
        font-feature-settings: "palt";
        font-size: clamp(8px, 2.2vw, 11px);
        white-space: nowrap; }
      .schedule-block__main-contents table.sfo tbody td:first-child:before, .schedule-block-sfo__main-contents table.sfo tbody td:first-child:before {
        border-radius: 4px 0 0 0; }
      .schedule-block__main-contents table.sfo tbody td:last-child:before, .schedule-block-sfo__main-contents table.sfo tbody td:last-child:before {
        border-radius: 0 0 0 4px; }
.schedule-block .annotation p, .schedule-block-sfo .annotation p {
  font-size: 1.3rem; }
  @media (max-width: 640px) {
    .schedule-block .annotation p, .schedule-block-sfo .annotation p {
      font-size: 1.2rem; } }

/* ------------------
navigation card
------------------*/
.to-enjoy {
  padding: 8rem 0; }
  @media (max-width: 880px) {
    .to-enjoy {
      padding: 4rem 0 6rem; } }
  .to-enjoy h4 {
    font-size: 120%;
    text-align: center;
    font-weight: 500; }
  .to-enjoy__wrap {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: stretch; }
    @media (max-width: 1200px) {
      .to-enjoy__wrap {
        gap: 1.5rem; } }
    .to-enjoy__wrap .enjoy_card {
      width: calc(( 100% - 4rem ) / 2 );
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #000000;
      display: flex;
      align-items: stretch; }
      @media (max-width: 1200px) {
        .to-enjoy__wrap .enjoy_card {
          width: calc(( 100% - 1.5rem ) / 2 ); } }
      @media (max-width: 640px) {
        .to-enjoy__wrap .enjoy_card {
          width: 100%; } }
      .to-enjoy__wrap .enjoy_card__image {
        width: 40%;
        height: 100%;
        border-radius: 10px 0 0 10px;
        overflow: hidden;
        position: relative; }
        .to-enjoy__wrap .enjoy_card__image img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center; }
      .to-enjoy__wrap .enjoy_card__text {
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 2rem;
        gap: 1rem;
        color: #000000; }
        @media (max-width: 880px) {
          .to-enjoy__wrap .enjoy_card__text {
            padding: 1.5rem; } }
        .to-enjoy__wrap .enjoy_card__text p.en {
          font-weight: 700;
          font-size: 120%; }

/* ------------------
Travel with United Airlines
------------------*/
.travel-with-ua {
  background: url("../img/common/bg_travel-with-ua.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom; }
  @media (max-width: 1200px) {
    .travel-with-ua {
      background-position: right 20% bottom 0%; } }
  @media (max-width: 880px) {
    .travel-with-ua {
      background-position: right 30% bottom 0%; } }
  @media (max-width: 640px) {
    .travel-with-ua {
      background: url("../img/common/bg_travel-with-ua_sp2.jpg");
      background-position: center bottom; } }
  .travel-with-ua__inner {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 10rem 0 12rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
    @media (max-width: 1200px) {
      .travel-with-ua__inner {
        padding: 4rem 0 6rem; } }
    @media (max-width: 640px) {
      .travel-with-ua__inner {
        padding: 4rem 0 30rem; } }
    .travel-with-ua__inner > h1 {
      width: 100%;
      max-width: 700px;
      display: flex;
      align-items: baseline;
      padding: 0;
      font-size: clamp(48px, 4vw, 60px);
      line-height: 1.4;
      text-align: left;
      color: #ffffff;
      margin-bottom: 1.5rem; }
      @media (max-width: 880px) {
        .travel-with-ua__inner > h1 {
          font-size: 36px;
          line-height: 1.3;
          margin-bottom: 1rem; } }
      @media (max-width: 640px) {
        .travel-with-ua__inner > h1 {
          font-size: 28px; } }
      .travel-with-ua__inner > h1 + p {
        width: 100%;
        max-width: 700px;
        font-size: clamp(18px, 1.7vw, 24px);
        font-weight: 500;
        color: #ffffff;
        margin-bottom: 3rem; }
        @media (max-width: 640px) {
          .travel-with-ua__inner > h1 + p {
            font-size: 14px;
            margin-bottom: 2rem; } }
  .travel-with-ua .three-button {
    width: 55%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem; }
    @media (max-width: 880px) {
      .travel-with-ua .three-button {
        gap: 1rem; } }
    @media (max-width: 640px) {
      .travel-with-ua .three-button {
        width: 64%;
        min-width: 300px; } }
    .travel-with-ua .three-button__two {
      display: flex;
      gap: 1.5rem; }
      @media (max-width: 880px) {
        .travel-with-ua .three-button__two {
          gap: 1rem; } }
      .travel-with-ua .three-button__two a.line-btn {
        width: calc(( 100% - 1rem ) / 2 ); }

/* ------------------
Footer
------------------*/
footer {
  padding: 6rem 2rem;
  text-align: center;
  background: #051464;
  color: #ffffff; }
  @media (max-width: 640px) {
    footer {
      padding: 6rem 2rem 16rem; } }

/* ------------------
Footer Logo
------------------*/
.ca-logo-wrap {
  width: 90%;
  max-width: 500px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto 3rem;
  padding: 3rem;
  gap: 8rem;
  position: relative; }
  @media (max-width: 640px) {
    .ca-logo-wrap {
      gap: 4rem;
      padding: 2rem; } }
  .ca-logo-wrap::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .ca-logo-wrap a {
    width: 35%; }
    @media (max-width: 640px) {
      .ca-logo-wrap a {
        width: calc(( 100% - 4rem ) / 2 ); } }
    .ca-logo-wrap a img {
      width: 100%;
      max-width: 160px;
      box-sizing: border-box; }

.logo {
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
  padding: 3rem;
  gap: 3rem; }
  .logo a {
    width: 20%; }
    @media (max-width: 640px) {
      .logo a {
        width: calc(( 100% - 3rem ) / 2 ); } }
    .logo a img {
      width: 100%;
      max-width: 160px;
      box-sizing: border-box; }
