@charset "UTF-8";
/* Scss Document */
/* Color Palette */
/* Padding */
/* Header Space */
/* Wrap */
:root {
  /* デフォルト */
  --large: 8rem;
  --medium: 3rem;
  --small: 1rem; }

@media screen and (max-width: 640px) {
  :root {
    --large: 3rem;
    --medium: 2rem;
    --small: .5rem; } }
@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; }
/* ------------------
背景・文字色用カラー指定 
------------------*/
.white {
  color: #ffffff; }

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

.dark-blue {
  color: #051464; }

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

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

/* ------------------
アニメーション指定 
------------------*/
.fadeUpTrigger {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: transform, opacity; }

.fadeUpTrigger.is-animated {
  opacity: 1;
  transform: translateY(0); }

.fadeUp {
  opacity: 1;
  transform: translateY(0); }

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.fadeIn {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s 0s ease; }

.fadeIn.second {
  transition: all 1s 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; } }
@keyframes slide-anim {
  0% {
    transform: translateX(0); }
  80% {
    transform: translateX(0); }
  90% {
    transform: translateX(20px); }
  100% {
    transform: translateX(0); } }
@keyframes scale-anim-bounce {
  0% {
    transform: scale(1); }
  79% {
    transform: scale(1); }
  80% {
    transform: scale(1.05); }
  100% {
    transform: scale(1); } }
@keyframes slide-down {
  0% {
    opacity: 0; }
  100% {
    opacity: 1;
    bottom: 6%; } }
.slideIn {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards; }

.slideInTrigger.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  animation-delay: 0.5s; }

.slideInTrigger {
  opacity: 0;
  will-change: transform, opacity; }

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

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

h1 {
  text-align: center; }

h1, h2, h3, h4 h5 {
  line-height: 1.6;
  font-weight: 500; }

p {
  line-height: 1.6; }

a {
  color: #1414d2; }
  a .fas {
    margin: 0 .25rem;
    opacity: .4;
    transform: scale(0.8); }

a:hover {
  color: #0D0D8F; }

div, img {
  vertical-align: bottom; }

.note {
  font-size: 80%; }

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

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

.section-padding {
  padding: 8rem 0; }
  @media (max-width: 1412px) {
    .section-padding {
      padding: 6rem 0; } }
  @media (max-width: 640px) {
    .section-padding {
      padding: 4rem 0; } }

.btn-wrapper {
  margin: var(--large) auto 0; }
  .btn-wrapper .btn {
    margin: 0 .5rem; }
    @media (max-width: 880px) {
      .btn-wrapper .btn {
        margin: .5rem 0;
        width: 90%; } }

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

.note {
  padding-left: 1.5rem;
  text-indent: -1.5rem; }

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

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

.align-c {
  text-align: center;
  margin: auto;
  display: block; }

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

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

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

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

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

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

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

.line-btn {
  color: #ffffff;
  border: 2px solid #ffffff;
  background: #1414d2;
  box-sizing: border-box;
  transition: .3s; }
  .line-btn:hover {
    background: #0D0D8F;
    color: #ffffff;
    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;
  align-items: center; }
  .before-hamburger .on-tab {
    display: flex;
    gap: 2rem;
    align-items: center; }
    .before-hamburger .on-tab .back-to-top {
      text-decoration: none;
      font-weight: 600; }
      @media (max-width: 640px) {
        .before-hamburger .on-tab .back-to-top {
          display: none; } }

#be-a-mpmember {
  padding: 1.2rem 2rem; }
  @media (max-width: 640px) {
    #be-a-mpmember {
      display: none; } }

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; } }
    header nav div {
      display: none; }
      @media (max-width: 1412px) {
        header nav div {
          display: flex;
          align-items: center;
          justify-content: center;
          position: absolute;
          top: 0;
          right: -100vw;
          opacity: 0;
          width: 70%;
          height: 100vh;
          background: rgba(20, 20, 210, 0.95);
          transition: 0.3s; } }
      header nav div ul {
        display: flex;
        gap: 1rem; }
        @media (max-width: 1412px) {
          header nav div ul {
            display: block;
            width: 86%;
            margin: auto; } }
        @media (max-width: 1412px) {
          header nav div ul {
            padding: 0 0 6rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start; } }
        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: 14px; } }
          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: 640px) {
  .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); } }
a.active-link {
  position: relative;
  font-weight: 700;
  opacity: 1; }
  a.active-link span {
    font-weight: 700; }
  a.active-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #051464;
    width: calc(100% - 1.5rem);
    height: 2px; }
    @media (max-width: 1412px) {
      a.active-link:before {
        background: none; } }
  a.active-link:after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: #051464;
    width: calc(100% - 1.5rem);
    height: 2px; }
    @media (max-width: 1412px) {
      a.active-link:after {
        background: none; } }

/* ------------------
Footer
------------------*/
footer {
  padding: 4rem 0;
  text-align: center;
  background: #051464;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 4rem; }
  footer .footer-logo {
    width: 25%;
    max-width: 200px;
    margin: 0 auto; }
    @media (max-width: 640px) {
      footer .footer-logo {
        width: 40%; } }
