@charset "UTF-8";
/* Scss Document */
/* Color Palette */
/* Padding */
/* Header Space */
/* Wrap */
/* Padding */
/*-----------
Root
-------------*/
:root {
  --xlarge: 10rem;
  --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 {
    --xlarge: 8rem;
    --large: 6rem;
    --medium: 4rem;
    --small: 1.5rem;
    --section-padding: 6rem 0; } }
@media screen and (max-width: 1024px) {
  :root {
    --xlarge: 6rem;
    --large: 5rem;
    --medium: 3rem;
    --small: 1.5rem;
    --section-padding: 5rem 0; } }
@media screen and (max-width: 640px) {
  :root {
    --xlarge: 4rem;
    --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; }

.black {
  color: #000; }

.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; }

/* ------------------
アニメーション指定 
------------------*/
.deco_2 {
  width: 100%;
  height: 20px;
  background: linear-gradient(to right, #051464 0, #051464 50%, #D7D2FF 50%, #D7D2FF 100%); }

.deco_3 {
  width: 100%;
  height: 20px;
  background: linear-gradient(to right, #a5ebff 0, #a5ebff 33%, #276ef1 33%, #276ef1 66%, #051464 66%, #051464 100%); }

/* ----------------
アニメーション指定 
------------------*/
.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; }

.slideIn.second {
  animation-delay: 0.2s;
  animation-fill-mode: both; }

/* ------------------
共通指定 
------------------*/
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; }

.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: 1024px) {
    .w-half > div {
      width: 100%; } }
.w-half > li {
  width: 50%; }
  @media (max-width: 1024px) {
    .w-half > li {
      width: 100%; } }

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

.section-padding {
  padding: var(--large) 0 var(--xlarge); }

/*--------------------
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: 1024px) {
    .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;
  font-weight: 500; }
  @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;
  font-weight: 500;
  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 {
  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);
  vertical-align: middle;
  display: flex;
  align-items: center;
  /*padding-left:20px;*/ }
  header nav {
    margin: 0 auto;
    width: 96%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s; }
    @media (max-width: 640px) {
      header nav {
        width: calc(100% - 3rem);
        height: 52px !important; } }
    @media (max-width: 640px) {
      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; }
      @media (max-width: 640px) {
        header nav div ul {
          display: block;
          width: 90%;
          margin: auto;
          padding: 0 0 6rem; } }
      header nav div ul li {
        display: flex;
        align-items: center; }
        @media (max-width: 640px) {
          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: 640px) {
            header nav div ul li a {
              padding: 1.4rem 0;
              display: block;
              font-size: 2rem;
              color: #ffffff;
              text-align: center; } }
          header nav div ul li a span {
            font-weight: normal;
            font-size: 1rem;
            display: block;
            margin: 0 0 .3rem; }
            @media (max-width: 640px) {
              header nav div ul li a span {
                font-size: 3vw; } }
        header nav div ul li .btn {
          padding: 1.4rem;
          margin: 0 0 0 1rem;
          box-sizing: border-box;
          font-size: 1.4rem; }
          @media (max-width: 1412px) {
            header nav div ul li .btn {
              width: 100%;
              border: solid 2px #ffffff; } }
          @media (max-width: 640px) {
            header nav div ul li .btn {
              padding: 1.8rem 1rem; } }
        @media (max-width: 1412px) {
          header nav div ul li .line-btn {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.2);
            border: solid 2px #ffffff; } }
        header nav div ul li:nth-last-child(3) a {
          border: none; }

#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; }

/* ------------------
navigation card
------------------*/
.to-enjoy {
  padding: 8rem 0; }
  @media (max-width: 1024px) {
    .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: 1024px) {
          .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: 1024px) {
    .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: 1024px) {
        .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: 1024px) {
      .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: 1024px) {
        .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: #ffffff;
  color: #000000; }
  @media (max-width: 640px) {
    footer {
      padding: 6rem 2rem; } }

/* ------------------
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; }
