@charset "UTF-8";
@import url(//db.onlinewebfonts.com/c/4387b781fdcc752283b72bdc76757065?family=All+Round+Gothic);
/* 画面外にいる状態 */
.fadein {
    opacity : 0.0;
    transform : translate(0, 50px);
    transition : all 1000ms;
    }

/* 画面内に入った状態 */
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }
/*--------------------------------------------------------------------------------------*/
/*---------------------------------------   PC   ---------------------------------------*/
/*--------------------------------------------------------------------------------------*/

@media screen and (min-width: 750px) {
  .NavMenu ,
  .Toggle ,
  .header ,
  .sp { display: none; }
  body {
    width: 100%;
    margin: 0 auto;
    color: #000;
    font-size: 14px;
    font-family: 'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  }
  header {
    display: block;
    width: 85%;
    margin: 0 auto;
    position: relative;
  }
  header h1 img {
    display: block;
    width: 200px;
    padding: 30px 0;
  }
  header ul {
    display: block;
    position: absolute;
    top: 25px;
    right: 0px;
    z-index: 10;
    padding: 20px 0 20px 20px;
  }
  header ul li {
    display: inline-block;
    width: 150px;
    text-align: center;
  }
  header ul li a {
    text-decoration: none;
    color: white;
    padding-bottom: 5px;
    margin: 0;
    letter-spacing: .5px;
    position: relative;
    font-size: 16px;
  }
  header ul li a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  header ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
  }
  #top {
    background: linear-gradient(90deg, rgb(0, 168, 236), rgb(45, 75, 155));
    height: 60vh;
    margin: 0;
    padding: 0;
  }

/*----------------------   top   ----------------------*/

  #top_image {
    margin: 0 auto;
    width: 85%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  #top_image h2 {
    color: white;
    font-size: 2.5vw;
    font-weight: 300;
    line-height: 1.5;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #top_image img {
    display: block;
    width: 60%;
  }
  .fadeUp{
    animation-name: fadeUpAnime;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeUpAnime{
    from {
      opacity: 0;
      transform: translateY(50px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/*----------------------   contens01   ----------------------*/

  #contens01 {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 168, 236, .2), rgba(45, 75, 155, .2));
    display: block;
    margin-top: 20vh;
    position: relative;
  }
  #contens01 .image01 {
    display: block;
    width: 1000px;
    position: absolute;
    top: 0;
    left: 0;
  }
  #contens01 .wrap {
    width: 85%;
    height: 400px;
    display: block;
    margin: 0 auto;
    position: relative;
  }
  #contens01 .wrap .image02 {
    display: block;
    position: absolute;
    height: 400px;
    top: 0;
    right: 0;
  }
  #contens01 .wrap h3 {
    font-size: 20px;
    padding: 105px 0;
  }
  #contens01 .wrap p {
    font-size: 16px;
    line-height: 1.8;
  }
  #contens01 .wrap p span {
    font-size: 20px;
    font-weight: bold;
  }

/*----------------------   contens02   ----------------------*/

  #contens02 {
    width: 100%;
    display: block;
    margin-top: 100px;
    position: relative;
  }
  #contens02 .image01 {
    display: block;
    width: 1000px;
    position: absolute;
    top: 0;
    left: 0;
  }
  #contens02 .wrap {
    width: 85%;
    display: block;
    margin: 0 auto;
    padding: 100px 0 80px;
    position: relative;
  }
  #contens02 .wrap h3 {
    font-size: 20px;
    padding: 30px 0 105px;
  }
  #contens02 .wrap table {
    width: 100%;
    font-size: 16px;
    margin: 60px 0;
  }
  #contens02 .wrap table tr {
    border-top: #2d4b9b solid 1px;
    border-bottom: #2d4b9b solid 1px;
  }
  #contens02 .wrap table th {
    text-align: left;
    color: #2d4b9b;
    padding: 30px 40px;
    width: 200px;
  }
  #contens02 .wrap table td {
    text-align: left;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.5;
    padding: 30px 40px;
  }
  #contens02 .wrap table td br.sp { display: none; }
  #contens02 .wrap iframe {
    display: block;
    width: 100%;
    height: 500px;
  }

/*----------------------   contens03   ----------------------*/

  #contens03 {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 168, 236, .2), rgba(45, 75, 155, .2));
    display: block;
    margin-top: 100px;
    position: relative;
  }
  #contens03 .image01 {
    display: block;
    width: 1000px;
    position: absolute;
    top: 0;
    left: 0;
  }
  #contens03 .wrap {
    width: 85%;
    display: block;
    margin: 0 auto;
    padding: 100px 0 80px;
    position: relative;
  }
  #contens03 .wrap h3 {
    font-size: 20px;
    padding: 30px 0 105px;
  }
  #contens03 .wrap .text_wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }
  #contens03 .wrap .text_wrap div img {
    display: inline-block;
    vertical-align: top;
    width: 280px;
    margin: 0 10px 20px 0;
  }
  #contens03 .wrap .text_wrap div p {
    display: inline-block;
    vertical-align: top;
    width: 400px;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 1px;
  }
  #contens03 .wrap .text_wrap div p.text_area { width: 400px; }
  #contens03 .wrap .text_wrap div p span{
    display: block;
    color: #00a8ec;
    font-size: 20px;
    font-weight: bold;
  }

/*----------------------   footer   ----------------------*/

  footer img {
    display: block;
    width: 200px;
    margin: 100px auto;
  }
  footer p {
    text-align: center;
    color: #2d4b9b;
    font-size: 14px;
    margin:  0 0 30px;
  }


  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: -50px;
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(0, 168, 236, .6) 0%, rgba(45, 75, 155, 1) 90% );
    color: white;
    border-radius: 50%;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: FontAwesome;
    font-style: normal;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
}

/*--------------------------------------------------------------------------------------*/
/*----------------------------------------- sp -----------------------------------------*/
/*--------------------------------------------------------------------------------------*/

@media screen and (max-width: 749px) {
  body {
    width: 100%;
    margin: 0 auto;
    color: #000;
    font-size: 13px;
    font-family: 'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  }
  #pc { display: none; }

  /*ハンバーガーボタン*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 100;
  }
  .el_humburger {
    position: absolute;
    top: 28px;
    right: 20px;
    width: 40px;
    background: linear-gradient(90deg, rgba(0, 168, 236, .6), rgba(45, 75, 155, .6));
    height: auto;
    padding: 8px 5px;
    box-sizing: border-box;
    z-index: 10000;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    pointer-events: auto;
  }
  .el_humburger > span {
    display: block;
    width: 90%;
    margin: 0 auto 8px;
    height: 2px;
    background: white;
    transition: all 0.2s ease-in-out;
  }
  .el_humburger > span:last-child { margin-bottom: 0; }
  .js_humburgerOpen .el_humburger > span { background: white; }
  .js_humburgerOpen .el_humburger > span.top { transform: translateY(10px) rotate(-45deg); }
  .js_humburgerOpen .el_humburger > span.middle { opacity: 0; }
  .js_humburgerOpen .el_humburger > span.bottom { transform: translateY(-10px) rotate(45deg); }
  .el_humburgerButton.el_humburgerButton__close {
    top: 2%;
    right: 2%;
  }
  .el_humburgerButton__close > span {
    display: block;
    width: 35px;
    margin: 0 auto;
    height: 4px;
    background: #fff;
  }
  .el_humburgerButton__close > span.el_humburgerLineTop { transform: translateY(5px) rotate(-45deg); }
  .el_humburgerButton__close > span.el_humburgerLineBottom { transform: translateY(-6px) rotate(45deg); }
  /*ナビゲーション*/
  .uq_spNavi { display: none; }
  .uq_spNavi.js_appear {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    z-index: 9999;
  }
  .uq_spNavi_screen {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 168, 236, 1), rgba(45, 75, 155, 1));
    z-index: 0;
    margin-top: 0px;
    padding-top: 0px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navigation {
    padding: 80px 0 0 0;
    text-align: center;
  }
  .navigation_item {
    font-size: 20px;
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .navigation_item > a {
    color: white;
    text-decoration: none;
  }
  .js_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  header {
    display: block;
    width: 85%;
    margin: 0 auto;
    position: relative;
  }
  header h1 img {
    display: block;
    width: 45vw;
    padding: 30px 0;
  }
  #top {
    background: linear-gradient(90deg, rgb(0, 168, 236), rgb(45, 75, 155));
    height: 35vh;
    margin: 0;
    padding: 0;
  }

/*----------------------   top   ----------------------*/

  #top_image {
    margin: 0 auto;
    width: 90%;
    display: block;
    position: relative;
  }
  #top_image h2 {
    display: block;
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    text-shadow: 0 0 8px rgb(0, 0, 0, 0.5);
    font-weight: 700;
  }
  #top_image img {
    display: block;
    width: 100%;
  }
  .fadeUp{
    animation-name: fadeUpAnime;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeUpAnime{
    from {
      opacity: 0;
      transform: translateY(50px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/*----------------------   contens01   ----------------------*/

  #contens01 {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 168, 236, .2), rgba(45, 75, 155, .2));
    display: block;
    margin-top: 13vh;
    position: relative;
  }
  #contens01 .image01 {
    display: block;
    width: 80%;
    position: absolute;
    top: 2vw;
    left: 0;
  }
  #contens01 .wrap {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
  }
  #contens01 .wrap .image02 {
    display: block;
    position: absolute;
    height: 430px;
    top: 0;
    right: 0;
  }
  #contens01 .wrap h3 {
    font-size: 18px;
    padding-bottom: 50px;
  }
  #contens01 .wrap p {
    font-size: 14px;
    line-height: 1.8;
  }
  #contens01 .wrap p span {
    font-size: 18px;
    font-weight: bold;
  }

/*----------------------   contens02   ----------------------*/

  #contens02 {
    width: 100%;
    display: block;
    position: relative;
    padding-top: 5vh;
    background-color: white;
    z-index: 10;
  }
  #contens02 .image01 {
    display: block;
    width: 80%;
    position: absolute;
    top: 12vw;
    left: 0;
  }
  #contens02 .wrap {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
  }
  #contens02 .wrap h3 {
    font-size: 18px;
    padding-bottom: 50px;
  }
  #contens02 .wrap table {
    width: 100%;
    font-size: 14px;
    margin: 20px 0;
  }
  #contens02 .wrap table tr {
    border-top: #2d4b9b solid 1px;
    border-bottom: #2d4b9b solid 1px;
  }
  #contens02 .wrap table th ,
  #contens02 .wrap table td {
    padding: 25px 20px;
    line-height: 1.75;
    letter-spacing: 1.5px;
  }
  #contens02 table th {
    text-align: left;
    color: #2d4b9b;
    width: 40%;
  }
  #contens02 .wrap iframe {
    display: block;
    width: 100%;
    height: 40vh;
  }

/*----------------------   contens03   ----------------------*/

  #contens03 {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 168, 236, .2), rgba(45, 75, 155, .2));
    display: block;
    margin-top: 5vh;
    position: relative;
  }
  #contens03 .image01 {
    display: block;
    width: 80%;
    position: absolute;
    top: 2vw;
    left: 0;
  }
  #contens03 .wrap {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 50px 0;
    position: relative;
  }
  #contens03 .wrap h3 {
    font-size: 18px;
    padding-bottom: 50px;
  }
  #contens03 .wrap .text_wrap div .image02 {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  #contens03 .wrap .text_wrap div p {
    font-size: 14px;
    line-height: 1.8;
    display: block;
    width: 100%;
    margin: 20px auto 40px;
  }
  #contens03 .wrap .text_wrap div p span{
    display: block;
    color: #00a8ec;
    font-size: 18px;
    font-weight: bold;
  }

/*----------------------   footer   ----------------------*/

  footer img {
    display: block;
    margin: 100px auto;
    width: 200px;
  }
  footer p {
    text-align: center;
    color: #2d4b9b;
    font-size: 14px;
    margin:  0 0 30px;
  }


  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: -50px;
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(0, 168, 236, .6) 0%, rgba(45, 75, 155, 1) 90% );
    color: white;
    border-radius: 50%;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: FontAwesome;
    font-style: normal;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
}

/*--------------------------------------------------------------------------------------*/
/*----------------------------------------- pad -----------------------------------------*/
/*--------------------------------------------------------------------------------------*/

@media screen and (min-width:768px) and ( max-width:1200px) {

  .NavMenu ,
  .Toggle ,
  .header ,
  .sp { display: none; }
  body {
    width: 100%;
    margin: 0 auto;
    color: #000;
    font-size: 14px;
    font-family: 'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  }
  header {
    display: block;
    width: 85%;
    margin: 0 auto;
    position: relative;
  }
  header h1 img {
    display: block;
    width: 200px;
    padding: 30px 0;
  }
  header ul {
    display: block;
    position: absolute;
    top: 25px;
    right: 0px;
    z-index: 10;
    padding: 20px 0 20px 20px;
  }
  header ul li {
    display: inline-block;
    width: 150px;
    text-align: center;
  }
  header ul li a {
    text-decoration: none;
    color: white;
    padding-bottom: 5px;
    margin: 0;
    letter-spacing: .5px;
    position: relative;
    font-size: 16px;
  }
  header ul li a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background: white;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  header ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
  }
  #top {
    background: linear-gradient(90deg, rgb(0, 168, 236), rgb(45, 75, 155));
    height: 45vh;
    margin: 0;
    padding: 0;
  }

/*----------------------   top   ----------------------*/

  #top_image {
    margin: 0 auto;
    width: 85%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  #top_image h2 {
    color: white;
    font-size: 2.5vw;
    font-weight: 300;
    line-height: 1.5;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #top_image img {
    display: block;
    width: 60%;
  }
  .fadeUp{
    animation-name: fadeUpAnime;
    animation-duration: 2.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeUpAnime{
    from {
      opacity: 0;
      transform: translateY(50px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

/*----------------------   contens01   ----------------------*/

  #contens01 {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 168, 236, .2), rgba(45, 75, 155, .2));
    display: block;
    margin-top: 10vh;
    position: relative;
  }
  #contens01 .image01 {
    display: block;
    width: 55%;
    position: absolute;
    top: 1vw;
    left: 0;
  }
  #contens01 .wrap {
    width: 85%;
    display: block;
    margin: 0 auto;
    padding: 100px 0 80px;
    position: relative;
  }
  #contens01 .wrap .image02 {
    display: block;
    position: absolute;
    height: 510px;
    top: 0;
    right: 0;
  }
  #contens01 .wrap h3 {
    font-size: 20px;
    padding-bottom: 105px;
  }
  #contens01 .wrap p {
    font-size: 16px;
    line-height: 1.8;
  }
  #contens01 .wrap p span {
    font-size: 20px;
    font-weight: bold;
  }

/*----------------------   contens02   ----------------------*/

  #contens02 {
    width: 100%;
    display: block;
    margin-top: 100px;
    position: relative;
  }
  #contens02 .image01 {
    display: block;
    width: 55%;
    position: absolute;
    top: 1vw;
    left: 0;
  }
  #contens02 .wrap {
    width: 85%;
    display: block;
    margin: 0 auto;
    padding: 80px 0;
    position: relative;
  }
  #contens02 .wrap h3 {
    font-size: 20px;
    padding: 30px 0 105px;
  }
  #contens02 .wrap table {
    width: 100%;
    font-size: 16px;
    margin: 60px 0;
  }
  #contens02 .wrap table tr {
    border-top: #2d4b9b solid 1px;
    border-bottom: #2d4b9b solid 1px;
  }
  #contens02 .wrap table th {
    text-align: left;
    color: #2d4b9b;
    padding: 30px 40px;
    width: 200px;
  }
  #contens02 .wrap table td {
    text-align: left;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.5;
    padding: 30px 40px;
  }
  #contens02 .wrap iframe {
    display: block;
    width: 100%;
    height: 40vh;
  }

/*----------------------   contens03   ----------------------*/

  #contens03 {
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 168, 236, .2), rgba(45, 75, 155, .2));
    display: block;
    margin-top: 100px;
    position: relative;
  }
  #contens03 .image01 {
    display: block;
    width: 55%;
    position: absolute;
    top: 1vw;
    left: 0;
  }
  #contens03 .wrap {
    width: 85%;
    display: block;
    margin: 0 auto;
    padding: 80px 0;
    position: relative;
  }
  #contens03 .wrap h3 {
    font-size: 20px;
    padding: 30px 0 105px;
  }
  #contens03 .wrap .text_wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }
  #contens03 .wrap .text_wrap div {
    display: block;
    vertical-align: top;
    width: 100%;
  }
  #contens03 .wrap .text_wrap div p {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 1px;
    margin-top: 20px;
    width: 80%;
  }
  #contens03 .wrap .text_wrap div p span{
    display: block;
    color: #00a8ec;
    font-size: 18px;
    font-weight: bold;
  }

/*----------------------   footer   ----------------------*/

  footer img {
    display: block;
    margin: 100px auto;
  }
  footer p {
    text-align: center;
    color: #2d4b9b;
    font-size: 14px;
    margin:  0 0 30px;
  }


  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: -50px;
    background-image: radial-gradient( circle farthest-corner at 10% 20%,  rgba(0, 168, 236, .6) 0%, rgba(45, 75, 155, 1) 90% );
    color: white;
    border-radius: 50%;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: FontAwesome;
    font-style: normal;
    content: '\f102';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }

}