@charset "UTF-8";
/********************************
settings
********************************/
/********************************
common
********************************/
html {
  font-size: 62.5%;
}

html * {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Helvetica Neue", "Helvetica", "Arial", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 160%;
  margin: 0;
  color: #323232;
}

main {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
}

figure {
  line-height: 1;
}

a {
  color: #03314B;
  transition: 0.3s;
}
a:hover {
  color: #03314B;
  text-decoration: none;
}

section .inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  section .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  section .inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  width: 200px;
}
.btn a {
  display: block;
  padding: 13px 25px;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: #1DCC98;
  text-decoration: none;
  transition: 0.3s;
}
.btn a:hover {
  background: #00DD9C;
}
.btn.white a {
  color: #03314B;
  background: #fff;
}
.btn.white a:hover {
  background: #E8EEF0;
}

/* animation */
.scroll {
  position: relative;
  filter: blur(1.5rem);
  transition: all 0.8s ease-in-out 0s;
  transform: scale(0.95, 0.95);
  opacity: 0;
}

.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1, 1);
}

.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
/********************************
header
********************************/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 35px;
}
header .logo_area {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .logo_area .logo {
  width: 220px;
}
header .logo_area .txt {
  color: #03314B;
  font-size: 1.7rem;
}
header .hd_area {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .hd_area .login a {
  font-weight: 600;
  text-decoration: none;
}
header .hd_area .login a:hover {
  text-decoration: underline;
}
header .hd_area .btn {
  width: 140px;
}
header .hd_area .btn a {
  font-size: 1.4rem;
  padding: 8px 28px;
}

@media only screen and (max-width: 767px) {
  header {
    padding: 20px;
  }
  header .logo_area {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  header .logo_area .logo {
    width: 200px;
  }
  header .logo_area .txt {
    font-size: 1.3rem;
  }
  header .hd_area {
    gap: 0;
  }
  header .hd_area .login a {
    font-size: 1.5rem;
  }
  header .hd_area .btn {
    display: none;
  }
}
/********************************
CTA
********************************/
.sec_cta {
  padding: 84px 0;
  background: #03314B url(../images/common/bg_cta.jpg) no-repeat top center/cover;
}
.sec_cta .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec_cta .inner .txt_block {
  color: #fff;
  line-height: 1;
}
.sec_cta .inner .txt_block .sub {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.sec_cta .inner .txt_block .lead {
  font-size: 4.5rem;
  font-weight: 700;
}
.sec_cta .inner .txt_block .lead span {
  color: #FC0;
}
.sec_cta .inner .btn_block {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

@media only screen and (max-width: 920px) {
  .sec_cta {
    padding: 70px 0;
  }
  .sec_cta .inner {
    flex-direction: column;
    gap: 30px;
  }
  .sec_cta .inner .txt_block .sub {
    font-size: 2.1rem;
  }
  .sec_cta .inner .txt_block .lead {
    font-size: 3.3rem;
  }
  .sec_cta .inner .btn_block {
    width: 100%;
    flex-direction: column;
  }
  .sec_cta .inner .btn_block .btn {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .sec_cta .inner .btn_block .btn a {
    padding: 20px;
  }
}
/********************************
footer
********************************/
footer {
  padding: 40px;
}
footer .logo {
  width: 220px;
  margin: 0 auto 15px;
}
footer ul.sns {
  display: flex;
  justify-content: center;
  gap: 14px;
  list-style: none;
  margin: 0 auto 40px;
}
footer ul.sns li {
  width: 32px;
}
footer ul.sns li a {
  transition: 0.3s;
}
footer ul.sns li a:hover {
  opacity: 0.8;
}
footer ul.link {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin-bottom: 30px;
}
footer ul.link li {
  font-size: 1.4rem;
  position: relative;
  padding-left: 18px;
}
footer ul.link li::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #03314B;
  position: absolute;
  top: 9px;
  left: 0;
}
footer ul.link li a {
  text-decoration: none;
}
footer ul.link li a:hover {
  text-decoration: underline;
}
footer .copyright {
  font-size: 1rem;
  text-align: center;
  color: #03314B;
}

@media only screen and (max-width: 767px) {
  footer ul.sns {
    margin-bottom: 30px;
  }
  footer ul.link {
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    gap: 5px;
  }
}