@charset "UTF-8";
/* Scss Document */
/* 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; } }
@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: #ffffff; }

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

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

.bg-white {
  background-color: #ffffff;
  color: #000000; }

.bg-light-blue {
  background: #a5ebff; }

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

.bg-dark-burgundy {
  background-color: #7D283C;
  color: #ffffff; }

.bg-medium-burgundy {
  background-color: #d7aaaa;
  color: #000000; }

.bg-light-burgundy {
  background-color: #fadce1;
  color: #000000; }

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

div {
  box-sizing: border-box; }

/* ------------------
アニメーション指定 
------------------*/
.fadeUpTrigger {
  opacity: 0;
  will-change: transform, opacity; }

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.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; } }

section {
  padding: 8rem 0; }
  @media (max-width: 880px) {
    section {
      padding: 5.5rem 0; } }
  @media (max-width: 640px) {
    section {
      padding: 4rem 0; } }

h1 {
  text-align: center; }

h2, h3, h4, h5 {
  line-height: 1.6;
  padding: 0; }

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

ul {
  margin: 0;
  padding: 0;
  list-style: none; }

ul.point-list li p {
  padding-left: 1em;
  text-indent: -1em; }
  ul.point-list li p::before {
    content: '•';
    margin-right: 0.5em; }

.note {
  font-size: 80%; }

.note-margintop {
  margin-top: 1rem; }

.wrap {
  width: 100%; }

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

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

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

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

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

.pcsp-only {
  display: block; }
  @media (max-width: 880px) {
    .pcsp-only {
      display: none; } }
  @media (max-width: 640px) {
    .pcsp-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 2.5rem 1.6rem 2.5rem;
  box-sizing: border-box;
  border-radius: 30px;
  text-align: center;
  color: #ffffff;
  background: #1414d2;
  border: solid 1px #1414d2;
  transition: 0.3s;
  text-decoration: none;
  line-height: 1.3; }
  @media (max-width: 640px) {
    .btn {
      padding: 1rem 2rem; } }
  .btn:hover {
    background: #0D0D8F;
    border: solid 1px #0D0D8F; }

.line-btn {
  display: inline-block;
  padding: 1.4rem 2.5rem 1.6rem 2.5rem;
  box-sizing: border-box;
  border-radius: 30px;
  text-align: center;
  color: #000000;
  background: #ffffff;
  border: solid 1px #000000;
  transition: 0.3s;
  text-decoration: none;
  line-height: 1.3; }
  @media (max-width: 640px) {
    .line-btn {
      padding: 1rem 2rem; } }
  .line-btn:hover {
    color: #0D0D8F;
    border: solid 1px #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; }
  header nav {
    margin: 0 auto;
    width: 95%;
    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: 880px) {
      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: 880px) {
        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: 880px) {
          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; }
          header nav div ul li a:hover {
            color: #0D0D8F; }
          @media (max-width: 880px) {
            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 3.5rem 1.6rem 3.5rem;
          margin: 0 0 0 1rem;
          box-sizing: border-box;
          font-size: 1.4rem; }
          header nav div ul li .btn:hover {
            color: #FFF; }
          @media (max-width: 1412px) {
            header nav div ul li .btn {
              width: 100%;
              border: solid 1px #1414d2; } }
          @media (max-width: 880px) {
            header nav div ul li .btn {
              width: 95%;
              max-width: 400px;
              font-size: 1.8rem;
              margin: 1.5rem auto;
              display: flex;
              justify-content: center;
              font-feature-settings: 'palt';
              padding: 1.4rem 1.5rem 1.6rem 1.5rem;
              box-sizing: border-box;
              border-radius: 30px;
              text-align: center;
              text-decoration: none;
              color: #FFF;
              border: solid 1px #FFF;
              background: #1414d2;
              transition: .3s; }
              header nav div ul li .btn:hover {
                background: #0D0D8F;
                color: #FFF;
                border: solid 1px #FFF; } }
        @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: 160px;
  height: auto;
  transition: .3s; }
  @media (max-width: 640px) {
    #logo-united {
      width: 80px !important; } }

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

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

  #g-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.4rem;
    z-index: 99;
    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 {
    transform: translateY(-50%); }
    #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); } }
/* ------------------
Footer
------------------*/
footer {
  padding: 8rem 0 10rem;
  text-align: left;
  background: #051464;
  color: #ffffff;
  margin: 0 auto; }
  footer .footer-logo {
    width: 25%;
    max-width: 250px;
    margin: 0 auto;
    padding-bottom: 2rem; }
    @media (max-width: 640px) {
      footer .footer-logo {
        width: 40%; } }

/* ------------------
Footer
------------------
footer {
	padding: 5rem 2rem;
	text-align: center;
	background: $dark-blue;
	color: $white;
	h1,h2{
		color:$white;
	}
	.footerdate{
		text-align: center;
		font-size:2rem;
		margin:1rem auto;
	}
	
}*/
