@charset "UTF-8";
/** pxからvwへ変換関数 **/
html {
  font-size: 10px;
}

body {
  width: 100%;
  color: #0F1C28;
  font-size: 1.6rem;
  line-height: 1.7;
  font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

select {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  /* 親と同じフォント */
  color: inherit;
  /* 親と同じ色 */
  line-height: inherit;
}

ul {
  list-style: none;
}

a {
  color: #0F1C28;
  -webkit-transition: all .4s 0s ease;
  transition: all .4s 0s ease;
}

a:hover {
  color: #0CA395;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h2 {
  font-size: 4rem;
  line-height: 1.5;
}

h3 {
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 3rem;
}

h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}

table {
  width: 100%;
  text-align: left;
}

main {
  overflow: hidden;
}

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

.text-align-right {
  text-align: right;
}

.font-bold {
  font-weight: bold;
}

.mt-03 {
  margin-top: 3rem;
}

.mt-05 {
  margin-top: 5rem;
}


.mb-04 {
  margin-bottom: 4rem;
}

.mb-05 {
  margin-bottom: 5rem;
}

.mb-06 {
  margin-bottom: 6rem;
}

.mb-02 {
  margin-bottom: 2rem;
}

.mb-01 {
  margin-bottom: 1rem;
}

.pl-01 {
  padding-left: 1rem;
}

.link-btn {
  color: #0CA395;
  text-decoration: underline;

}

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

.text-right {
  text-align: right;
  margin-top: 8rem;
}

.w1000 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.w900 {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.w800 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.w700 {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.w50 {
  width: 50%;
}

.w30 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.grad-green {
  background-image: -webkit-gradient(linear, left top, right top, from(#0ca395), to(#068cbb));
  background-image: linear-gradient(90deg, #0ca395, #068cbb);
}

.bg-black {
  background-color: #0F1C28;
}

.bg-gray {
  background-color: #F5F6F6;
}

/*===========
main contents
=============*/
.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-direction-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.col-01 {
  width: 100%;
}

.col-02 {
  width: 48%;
  margin-bottom: 3rem;
}

.col-03 {
  width: 31%;
}

.col-04 {
  width: 23%;
}

.header {
  background-color: #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  -o-border-image: linear-gradient(90deg, #0CA395, #068CBB) 1;
     border-image: -webkit-gradient(linear, left top, right top, from(#0CA395), to(#068CBB)) 1;
     border-image: linear-gradient(90deg, #0CA395, #068CBB) 1;
}

.header .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 3rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .header__nav .nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header #js-hamburger {
  background: #fff;
  height: 48px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 15px -5px #d6d6d6;
          box-shadow: 0px 0px 15px -5px #d6d6d6;
}

.header .logo {
  width: 130px;
}

section {
  padding: 6rem 0;
}

section .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3rem;
}

section .title h2 {
  font-size: 4rem;
  color: #023893;
}

section .title h2 .en {
  display: block;
  margin-bottom: 1rem;
}

section .title a {
  color: #1D98C4;
  text-decoration: underline;
  position: relative;
}

section .arrow {
  width: 30px;
  height: 30px;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#0CA395), to(#068CBB));
  background: linear-gradient(to right, #0CA395, #068CBB);
  border-radius: 50%;
  position: absolute;
  left: -45px;
  top: -3px;
}

section .arrow:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.news {
  padding: 6rem 0 6rem;
}

.news .news-content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1.5rem 0;
  border-bottom: 1px solid #C8C8C8;
}

.news .news-content dl dt {
  width: 25%;
}

.news .news-content dl dt .date {
  width: 120px;
  display: inline-block;
}

.news .news-content dl dt .tag {
  font-size: 1.4rem;
  min-width: 100px;
  text-align: center;
  display: inline-block;
  color: #fff;
  background-color: #0F1C28;
  padding: .5rem 0;
  font-weight: 400;
  border-radius: 6px;
}

.news .news-content dl dd {
  width: 75%;
  position: relative;
}

.news .news-content dl dd > a {
  display: block;
  position: relative;
  width: 100%;
  color: #0CA395;
  text-decoration: underline;
}

.news .news-content dl dd .arrow {
  left: auto;
  right: 0;
  position: absolute;
  top: 0;
}

.news .news-content dl dd ul {
  margin-top: 1rem;
}

.news .news-content dl dd ul li {
  display: inline-block;
  margin-right: 3rem;
}

.news .news-content dl dd ul li a {
  font-size: 1.3rem;
  color: #0F1C28;
  text-decoration: underline;
}

section .title h2 {
  font-size: initial;
  border-left: 4px solid #0CA395;
  padding: 1.3rem 2rem;
}

section .title h2 .en {
  font-size: 2.4rem;
  font-family: "Doppio One", "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic";
  font-style: normal;
  background: -webkit-gradient(linear, left top, right top, from(#0CA395), to(#068CBB));
  background: linear-gradient(90deg, #0CA395, #068CBB);
  background-clip: text;
  /* 一部ブラウザ用 */
  color: transparent;
  /* フォールバック */
}

section .title h2 .ja {
  font-size: 2.6rem;
  color: #0F1C28;
  display: block;
  line-height: 1;
}

.search .font20 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2.5rem;
}

.search .box-white {
  background-color: #fff;
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  z-index: 1;
}

.search .title {
  display: block;
}

.search .title h2 {
  border-left: 0px;
  text-align: center;
}

.search .title h2 .en {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
}

.search select {
  width: 100%;
  background-color: #EDEDED;
  padding: 1rem;
  font-size: 2rem;
}

.search button {
  font-size: 2rem;
  color: #fff;
  background-color: #0F1C28;
  border: 1px solid #0F1C28;
  display: block;
  width: 240px;
  padding: 1.5rem 0;
  text-align: center;
  margin: 4rem auto 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.search button:hover {
  color: #0F1C28;
  background-color: transparent;
}

footer .container {
  max-width: 1200px;
}

footer .footer-top {
  padding: 2rem 0 1.5rem;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  -o-border-image: linear-gradient(90deg, #0CA395, #068CBB) 1;
  border-image: -webkit-gradient(linear, left top, right top, from(#0CA395), to(#068CBB)) 1;
  border-image: linear-gradient(90deg, #0CA395, #068CBB) 1;
}

footer .footer-top img {
  width: 160px;
}

footer .footer-top .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-layer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 3rem 0;
}

footer .footer-layer li:first-child a {
  border-left: 1px solid #fff;
}

footer .footer-layer li a {
  color: #fff;
  padding: 2rem;
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.copyright {
  padding: 1.5rem 0;
}

.copyright small {
  color: #fff;
}

.copyright a {
  font-size: 1.2rem;
  color: #fff;
}

@media screen and (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
  body {
    font-size: 4vw;
  }
  h2 {
    font-size: 6.66667vw;
  }
  h3 {
    font-size: 4.8vw;
  }
  h4 {
    font-size: 4.26667vw;
  }
  .col-03 {
    width: 100%;
  }
  .col-02 {
    width: 100%;
  }
  .w35 {
    width: 100%;
  }
  .w65 {
    width: 100%;
  }
  main section {
    padding: 6rem 2rem;
  }
  .news {
    padding: 6rem 2rem;
  }
  .news .news-content dl {
    padding: 2rem 0;
  }
  .news .news-content dl dt, .news .news-content dl dd {
    width: 100%;
  }
  .news .news-content dl dt {
    margin-bottom: 1rem;
  }
  .news .news-content dl dd a {
    padding-right: .7rem;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #1D98C4;
  -webkit-transition: ease .4s;
  transition: ease .4s;
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.header .contact-btn {
  border-right: 0;
}

.header .contact-btn svg {
  margin-right: 1rem;
}

.header .contact-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #fff;
  font-size: 1.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .4s;
  transition: all .4s;
  background: linear-gradient(65deg, #023893 0%, #0087c4 100%);
  padding: 1rem 3em;
  border-radius: 30px;
}

.header .contact-btn a:hover #bg-green #hoverchange {
  fill: #2FA8DD;
}

.header .contact-btn #bg-green {
  position: absolute;
  top: -2rem;
  right: -2em;
  z-index: -1;
}

.header .contact-btn #icon-contact {
  width: 20px;
  height: 20px;
}

.border-right-zero {
  border-right: 0px !important;
}

@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    -webkit-transform: initial;
            transform: initial;
    background-color: inherit;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

@media screen and (min-width: 960px) {
  .nav__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: initial;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 85px;
  }
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0;
}

@media screen and (min-width: 960px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

/* ナビのリンク */
.nav-items__item {
  border-right: 1px solid #0CA395;
  height: 100%;
}

.nav-items__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 3rem;
}

.nav-items__item a span {
  font-size: 1.4rem;
  color: #1D98C4;
}

@media screen and (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .nav-items__item a:hover {
    color: #fff;
    background-color: #0CA395;
  }
  .nav-items__item:first-child {
    border-left: 1px solid #0CA395;
  }
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 70%;
  height: 1px;
  background-color: #000;
  position: relative;
  -webkit-transition: ease .4s;
  transition: ease .4s;
  display: block;
  margin: 0 auto;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 6px auto;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 751px) {
  .nav-items__item a::after {
    content: none !important;
  }
}

@media screen and (min-width: 751px) {
  .sp-br {
    display: none;
  }
}

@media screen and (max-width: 959px) {
  .header .header__nav .nav__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
  }
  .header .contact-btn {
    margin-top: 2rem;
  }
  .nav-items__item {
    border-right: 0;
    margin-bottom: 2rem;
  }
  .nav-items__item a {
    font-weight: bold;
    border: 1px solid #fff;
    padding: 1.5rem 1rem;
    background-color: #fff;
  }
  .header .header-container {
    padding: 1rem 2rem;
  }
}

@media screen and (max-width: 750px) {
  .pc-br {
    display: none;
  }
  main section {
    padding: 4rem 2rem;
  }
  body {
    font-size: 4vw;
  }
  h3 {
    font-size: 6vw;
  }
  p {
    font-size: 4vw;
  }
  .header .logo {
    width: 100px;
  }
  footer h5 {
    margin-top: 2.5rem;
  }
  footer .footer-top {
    margin-bottom: 0;
  }
  footer .footer-top img {
    margin-right: 0;
    max-width: 50%;
  }
  footer .footer-top p {
    width: 80%;
    padding-left: 1.5rem;
  }
  footer .footer-layer li:first-child a {
    border-left: 0px;
    border-top: 1px solid #fff;
  }
  footer .footer-layer li a {
    border-right: 0px;
    border-top: 0px;
  }
  footer .footer-layer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem 2rem;
  }
  .news .news-content dl dt .date {
    width: 100px;
  }
  section .title h2 {
    width: 100%;
  }
  footer .footer-layer li a {
    padding: 1.5rem;
  }
  .copyright {
    padding: 1.5rem 2rem;
  }
}

@media screen and (max-width: 540px) {
  .header .logo img {
    height: auto;
  }
  section .title h2 {
    font-size: 10.66667vw;
  }
  section .title h2 .en {
    font-size: 5.33333vw;
  }
  section .title h2 .ja {
    font-size: 5.8vw;
  }
  footer h5 {
    font-size: 4.26667vw;
  }
  footer ul li {
    font-size: 3.73333vw;
  }
  .search .font20 {
    font-size: 4.8vw;
  }
}
/*# sourceMappingURL=style.css.map */