@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("/assets/fonts/woff2/NeuePlakTextforUnited-Rg.woff2") format("woff2"), url("/assets/fonts/woff/NeuePlakTextforUnited-Rg.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "NeuePlak";
  src: url("/assets/fonts/woff2/NeuePlakTextforUnited-Bd.woff2") format("woff2"), url("/assets/fonts/woff/NeuePlakTextforUnited-Bd.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "NeuePlak";
  src: url("/assets/fonts/woff2/NeuePlakTextforUnited-SmBd.woff2") format("woff2"), url("/assets/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 0.75s 0s ease;
}

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

.fadeInTtl {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.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: 30%;
  vertical-align: super;
  letter-spacing: 0;
}

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 0.25rem;
  opacity: 0.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;
}

.max-img {
  width: 100%;
  height: auto;
}

/*--------------------
Bacic Toggle Button
--------------------*/
.toggle-btn {
  cursor: pointer;
  position: relative;
  border-radius: 1rem;
  border: solid 2px #ffffff;
  transition: 0.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: 0.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: 0.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;
}
.btn.white-btn {
  background: #fff;
  color: #1414d2;
}
.btn.white-btn:hover {
  color: #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: 0.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: 0.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: 0.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: 0.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: 0.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 {
  width: 100%;
}
.schedule__header {
  margin-bottom: 2rem;
}
.schedule__title {
  font-size: clamp(18px, 8vw, 40px);
}
.schedule__subtitle {
  font-size: clamp(16px, 4vw, 22px);
}
.schedule__table-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 1rem;
}
.schedule__table {
  width: 100%;
  margin: 1rem 0 2rem;
  border-radius: 4px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  table-layout: fixed;
  font-size: 90%;
}
.schedule__table thead th:first-child {
  border-top-left-radius: 4px;
}
.schedule__table thead th:last-child {
  border-top-right-radius: 4px;
}
.schedule__table tr {
  border-bottom: solid 1px #ddd;
}
.schedule__table tr:last-child {
  border-bottom: none;
}
.schedule__table th, .schedule__table td {
  padding: 2rem;
}
@media (max-width: 640px) {
  .schedule__table th, .schedule__table td {
    padding: 1rem;
  }
}
.schedule__table th {
  color: #fff;
  text-align: left;
  background: #1414d2;
}
.schedule__table td {
  vertical-align: middle;
}
.schedule__icon {
  width: 16px;
  height: auto;
  vertical-align: baseline;
}
.schedule__icon--ua {
  margin-right: 5px;
  vertical-align: bottom;
  width: 26px;
}
@media (max-width: 640px) {
  .schedule__icon--ua {
    display: none;
  }
}
.schedule__time span {
  font-size: clamp(8px, 2.2vw, 12px);
}
.schedule__time p {
  margin-top: 0.2rem;
  line-height: 1;
}
.schedule__divider {
  position: relative;
}
.schedule__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: dashed 1px #b7b7b7;
}
.schedule__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(/assets/img/icon/icon_airplane_grey.svg) no-repeat center/contain;
}
.schedule .short-cell {
  width: 30px;
}
@media (max-width: 640px) {
  .schedule .short-cell {
    display: none;
  }
}
.schedule__annotation {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

/* ------------------
Card
------------------*/
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 880px) {
  .grid-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.grid-cards .card {
  display: flex;
  flex-direction: column;
  color: #000;
  background: #fff;
  border-radius: var(--border-radius-default);
  transition: 0.3s;
  box-shadow: var(--shadow-card);
}
@media (max-width: 880px) {
  .grid-cards .card {
    flex-direction: unset;
  }
}
.grid-cards .card-img {
  position: relative;
}
@media (max-width: 880px) {
  .grid-cards .card-img {
    height: 30vw;
    min-height: 185px;
    width: 50%;
  }
}
@media screen and (max-width: 375px) {
  .grid-cards .card-img {
    min-height: 200px;
  }
}
.grid-cards .card-img p.credit {
  position: absolute;
  left: 5px;
  bottom: 5px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
}
.grid-cards .card-img p.category {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #fff;
  border-radius: 5px;
  color: #1414d2;
  padding: 8px 10px;
  line-height: 1;
  font-size: 14px;
}
.grid-cards .card-img img {
  border-radius: var(--border-radius-default) var(--border-radius-default) 0 0;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 880px) {
  .grid-cards .card-img img {
    height: 100%;
    border-radius: var(--border-radius-default) 0 0 var(--border-radius-default);
  }
}
.grid-cards .card__body {
  padding: var(--small);
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 880px) {
  .grid-cards .card__body {
    font-size: 12px;
    width: 50%;
  }
}
.grid-cards .card__body h4 {
  line-height: 1.2;
  font-size: var(--font-size-medium);
}
.grid-cards .card__body h4 span {
  font-size: 70%;
  font-feature-settings: "palt";
  margin-top: 0.5rem;
  display: block;
}
.grid-cards .card__body h4 span.thin {
  display: block;
  transform: scale(0.68, 1);
  transform-origin: top left;
  width: 160%;
}
.grid-cards .card__body h4 + p {
  margin: var(--small) 0;
}
.grid-cards .card__body .btn {
  margin: auto 0 0;
  padding: 1.4rem 2rem;
  width: 200px;
}
@media (max-width: 640px) {
  .grid-cards .card__body .btn {
    width: auto;
  }
}

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

/* ------------------
大きい背景セクション
------------------*/
.bg-cover {
  height: 50vw;
  max-height: 600px;
  background-size: cover;
  position: relative;
  background-position: center;
  padding: 3rem;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .bg-cover {
    padding: 3rem 0;
  }
}
.bg-cover .txt {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 70%;
}
.bg-cover .txt .btn-wrapper {
  width: 45%;
  margin: var(--medium) 0 0;
}
.bg-cover .txt .btn-wrapper .btn:first-child {
  margin: 0 0 1rem;
}
.bg-cover .txt .uabr {
  display: none;
}
@media screen and (max-width: 1350px) {
  .bg-cover .txt .uabr {
    display: block;
  }
}
.bg-cover h2 {
  font-size: clamp(18px, 8vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.bg-cover h2 span.en-heading {
  font-size: clamp(22px, 7vw, 68px);
  letter-spacing: -0.03em;
}
@media (max-width: 880px) {
  .bg-cover h2 span.en-heading {
    margin: 0 0 1rem;
  }
}
.bg-cover p.ja-heading {
  font-size: clamp(14px, 2.1vw, 24px);
  letter-spacing: 0.2em;
  color: #051464;
  font-weight: 500;
}
@media (max-width: 640px) {
  .bg-cover.mp .txt {
    width: 90%;
  }
}
.bg-cover.mp h2,
.bg-cover.mp h2 + p,
.bg-cover.mp .btn-wrapper {
  width: 45%;
  text-align: center;
}
.bg-cover.mp .logo-mp {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 0 0 2rem;
}
.bg-cover.mp h2 + p {
  font-size: clamp(14px, 2.1vw, 24px);
  letter-spacing: 0.2em;
  text-align: center;
}

/* ------------------
SERVICE
------------------*/
#service .wrap {
  width: 80%;
  padding: var(--large) 0;
}
@media (max-width: 640px) {
  #service .wrap {
    padding: 0;
    width: 90%;
  }
}

.sec2rows {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 6rem 0;
}
@media (max-width: 640px) {
  .sec2rows {
    padding: 3rem 0;
  }
}
.sec2rows:nth-child(odd) {
  flex-direction: row-reverse;
}
.sec2rows__box {
  width: 48%;
}
@media (max-width: 880px) {
  .sec2rows__box {
    width: 100%;
  }
}
.sec2rows__box.img {
  position: relative;
}
.sec2rows__box.img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec2rows__box.img .caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 80%;
  line-height: 1;
  opacity: 0.8;
}
.sec2rows__box h3 {
  font-size: clamp(18px, 8vw, 40px);
  font-weight: 500;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
.sec2rows__box h3 p {
  font-size: 50%;
  letter-spacing: 0;
}
.sec2rows ul li {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .sec2rows ul li {
    padding: 1rem 0;
  }
}
.sec2rows ul li svg {
  width: 28px;
  height: auto;
  margin: 0 20px 0 0;
}
.sec2rows ul li p {
  width: calc(100% - 48px);
}
.sec2rows ul li p + .note {
  width: 100%;
  margin: 100px 0 0;
}
@media (max-width: 640px) {
  .sec2rows ul li p + .note {
    margin: 20px 0 0;
  }
}
.sec2rows svg {
  fill: #fff;
}

/* ------------------
Banner
------------------*/
.banner {
  width: 90%;
  max-width: 1080px;
  margin: auto;
  padding: var(--large) 0;
}
.banner__ttl {
  margin-bottom: var(--small);
}
.banner__item {
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

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

/* ------------------
マイレージプラス
------------------*/
.mp-list {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}
.mp-list li {
  text-align: center;
}
@media (max-width: 880px) {
  .mp-list li {
    width: 46%;
    text-align: center;
    padding-bottom: 2vh;
  }
  .mp-list li img {
    max-width: 100px;
  }
}
.mp-list li p {
  color: #fff;
}
.mp-list li p span {
  font-weight: 600;
}
.mp-list__wrapper {
  padding: var(--large) 0;
}
.mp-list__wrapper .btn-wrapper {
  margin-top: var(--medium);
}
.mp-list__wrapper .btn-wrapper .btn {
  width: 30%;
  min-width: 300px;
  margin: 1rem;
}

/* ------------------
Offer Card
------------------*/
.offer-card-wrapper {
  padding-left: 10%;
  padding-right: 5%;
  display: flex;
  color: #000;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 640px) {
  .offer-card-wrapper {
    padding-left: 5%;
    gap: 1rem;
  }
}
.offer-card-wrapper a {
  text-decoration: none;
  color: #000;
}
.offer-card-wrapper .card {
  display: flex;
  flex-direction: column;
  min-width: 300px;
  background: #ffffff;
  border-radius: 1rem;
  transition: 0.3s;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 640px) {
  .offer-card-wrapper .card {
    width: 280px;
    min-width: 280px;
  }
}
.offer-card-wrapper .card .pic-wrapper {
  position: relative;
}
.offer-card-wrapper .card .pic-wrapper .pic {
  border-radius: 1rem 1rem 0 0;
  position: relative;
}
.offer-card-wrapper .card .pic-wrapper .logo {
  max-width: 80%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.offer-card-wrapper .card .pic-wrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  border-radius: 1rem 1rem 0 0;
}
.offer-card-wrapper .card .txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2rem;
  box-sizing: border-box;
  font-size: 12px;
  text-align: center;
  font-feature-settings: "palt";
}
@media (max-width: 640px) {
  .offer-card-wrapper .card .txt {
    padding: 1rem 1rem 2rem;
  }
}
.offer-card-wrapper .card .txt h3 {
  text-align: center;
  font-size: clamp(14px, 3vw, 20px);
  margin: 0 0 1rem;
  font-weight: 600;
}
.offer-card-wrapper .card .txt h3 p {
  margin: 0 0 0.5rem;
  font-size: 50%;
}
@media (max-width: 640px) {
  .offer-card-wrapper .card .txt h3 p {
    font-size: 70%;
  }
}
.offer-card-wrapper .card .txt .highlight {
  font-weight: 600;
  line-height: 1;
  padding: 0.5rem;
}
.offer-card-wrapper .card .txt ul {
  flex-grow: 1;
}
.offer-card-wrapper .card .txt ul .point {
  color: #051464;
  border-bottom: solid 1px;
}
.offer-card-wrapper .card .txt ul li {
  margin: 1rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
  font-feature-settings: "palt";
}
.offer-card-wrapper .card .txt ul li span {
  font-weight: 600;
  text-decoration: underline;
  font-size: 120%;
  color: #051464;
}
.offer-card-wrapper .card .txt ul li:before {
  font-size: 120%;
  position: absolute;
  top: 0;
  left: 0.25rem;
  transform: scale(1.2);
}
.offer-card-wrapper .card .txt .period {
  padding: 1rem 0;
  border-top: solid 2px #f7f4f2;
}
.offer-card-wrapper .card .txt .period span {
  display: block;
  font-size: 90%;
}
.offer-card-wrapper .card .txt .btn {
  color: #ffffff;
  line-height: 1;
  margin: auto auto 0;
  font-size: 16px;
}
@media (max-width: 640px) {
  .offer-card-wrapper .card .txt .btn {
    font-size: unset;
  }
}
.offer-card-wrapper .card .txt .price {
  margin: 0 0 2rem;
}
.offer-card-wrapper .card .txt .price p {
  line-height: 1.2;
}
.offer-card-wrapper .card .txt .price p:first-child {
  color: #ff4b4b;
}
.offer-card-wrapper .card .txt .price p:nth-child(2) {
  color: #ff4b4b;
  font-size: clamp(16px, 5vw, 26px);
  font-weight: 600;
}/*# sourceMappingURL=common.css.map */