@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}

body {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

p {
  font-size: 16px;
  line-height: 1.5rem;
  font-weight: normal;
}

h2 {
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width:480px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 20px;
}

.l-header {
  width: 100%;
  height: auto;
  background-color: #E5F3FF;
}
.l-header__keyvisual {
  width: 100%;
}
.l-header__nav {
  width: 100%;
  height: 90px;
  border-bottom: 4px solid #0071bf;
  border-image-slice: 1;
  background-color: #ffffff;
}
@media screen and (max-width:768px) {
  .l-header__nav {
    height: 80px;
    border-bottom: solid 3px #0071bf;
  }
}
.l-header__nav ul {
  display: flex;
  justify-content: space-evenly;
}
.l-header__nav ul li {
  list-style: none;
}
.l-header__nav.HeightMin {
  position: fixed;
  z-index: 999; /*最前面へ*/
  height: 90px;
  animation: DownAnime 0.5s forwards;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width:768px) {
  .l-header__nav.HeightMin {
    height: 80px;
  }
}
.l-header__logo {
  width: 280px;
  margin-top: 20px;
}
@media screen and (max-width:768px) {
  .l-header__logo {
    width: 120px;
    padding-right: 5px;
    margin-top: 30px;
  }
}
.l-header__mynavi {
  width: 300px;
}
@media screen and (max-width:768px) {
  .l-header__mynavi {
    width: 70px;
    padding-top: 5px;
    padding-left: 5px;
  }
}
.l-header__human {
  width: 300px;
}
@media screen and (max-width:768px) {
  .l-header__human {
    width: 130px;
    padding-top: 5px;
  }
}
@media screen and (max-width:480px) {
  .l-header__human {
    width: 130px;
    padding-top: 13px;
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-115px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-cta-button {
  width: 100%;
  height: auto;
  background-color: #0071bf;
  margin-top: -10px;
}
.p-cta-button__area {
  margin: 0 auto;
  padding: 40px 0 50px;
  width: 1000px;
  text-align: center;
}
@media screen and (max-width:1024px) {
  .p-cta-button__area {
    width: 100%;
    padding: 30px 0;
  }
}
.p-cta-button__copy {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width:480px) {
  .p-cta-button__copy {
    font-size: 0.85rem;
  }
}
.p-cta-button__copy span {
  background-image: linear-gradient(transparent 60%, #ff9900 60%, #ff9100 100%);
}
.p-cta-button__copy:before {
  margin-right: 1rem;
  content: "＼";
}
@media screen and (max-width:480px) {
  .p-cta-button__copy:before {
    margin-right: 0.5rem;
  }
}
.p-cta-button__copy:after {
  margin-left: 1rem;
  content: "／";
}
@media screen and (max-width:480px) {
  .p-cta-button__copy:after {
    margin-left: 0.5rem;
  }
}

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  background: #0071bf;
  border: solid 3px #ffffff;
}
#page_top:hover {
  opacity: 0.5;
  transition: all 0.7s ease;
}
@media screen and (max-width:768px) {
  #page_top {
    right: 0px;
    bottom: 10px;
  }
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 25px;
  color: #ffffff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s;
}

.c-btn,
a.c-btn,
button.c-btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #003F65;
  border-radius: 0.5rem;
}
@media screen and (max-width:1024px) {
  .c-btn,
  a.c-btn,
  button.c-btn {
    font-size: 2rem;
    padding: 1rem 2rem;
  }
}
@media screen and (max-width:768px) {
  .c-btn,
  a.c-btn,
  button.c-btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}

a.c-btn__flat {
  overflow: hidden;
  padding: 1.5rem 6rem;
  color: #0071bf;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0px 6px #004a80;
}
@media screen and (max-width:768px) {
  a.c-btn__flat {
    padding: 1rem 2rem;
  }
}
a.c-btn__flat span {
  position: relative;
  z-index: 1;
}
a.c-btn__flat:hover {
  transform: translate(0, 3px);
  box-shadow: 2px 2px 4px #004a80 inset;
  box-shadow: 0px 0px #004a80;
}

.p-contents {
  width: 100%;
  height: auto;
  background-color: #e6e6e6;
}
.p-contents a {
  text-decoration: none;
  color: #000000;
}
.p-contents__area {
  width: 1000px;
  margin: auto;
  padding-top: 70px;
  padding-bottom: 50px;
}
@media screen and (max-width:1024px) {
  .p-contents__area {
    width: 768px;
  }
}
@media screen and (max-width:768px) {
  .p-contents__area {
    width: 100%;
  }
}
.p-contents__area-box {
  text-align: center;
}
.p-contents span {
  display: inline-block;
}

.p-start {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  padding: 20px 0 0;
  overflow: hidden;
}
.p-start__area {
  margin: 0 auto;
  padding: 40px 0 0;
  width: 1200px;
}
@media screen and (max-width:1024px) {
  .p-start__area {
    width: 768px;
  }
}
@media screen and (max-width:768px) {
  .p-start__area {
    width: 480px;
    padding: 30px 0;
  }
}
@media screen and (max-width:480px) {
  .p-start__area {
    width: 90%;
  }
}
.p-start__area-box {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width:1024px) {
  .p-start__area-box {
    margin-bottom: 50px;
  }
}
.p-start__box {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}
.p-start__textbox {
  background-color: #ffffff;
  display: inline-block;
  vertical-align: top;
  width: calc(33.3333333333% - 30px);
  padding: 20px;
  box-shadow: 5px 5px 5px #aaaaaa;
  margin: 0 10px;
}
@media screen and (max-width:1024px) {
  .p-start__textbox {
    box-shadow: none;
    border: solid 0.5px #aaaaaa;
  }
}
.p-start__textbox h2 {
  color: #e6e6e6;
  font-size: 60px;
}
.p-start__textbox h3 {
  color: #3e3a39;
  padding-bottom: 5px;
}
@media screen and (max-width:1024px) {
  .p-start__textbox h3 {
    font-size: 20px;
  }
}
.p-start__textbox p {
  margin-top: 20px;
}
@media screen and (max-width:1024px) {
  .p-start__textbox p {
    margin-top: 10px;
    margin-bottom: 28px;
    font-size: 18px;
  }
}
.p-start__textbox p span {
  color: #E81E25;
  font-weight: bold;
}
.p-start img {
  max-width: 100%;
  vertical-align: bottom;
  padding: 30px 0 0;
}
@media screen and (max-width:768px) {
  .p-start img {
    padding: 0px;
  }
}

.c-mark {
  width: 50px;
  height: 2px;
  background-color: #3e3a39;
  border-right: solid 50px #e6e6e6;
  margin: auto;
  margin-top: 10px;
}
@media screen and (max-width:768px) {
  .c-mark {
    width: 30px;
    border-right: solid 30px #e6e6e6;
    height: 3px;
    margin-top: 10px;
  }
}

.c-mark2 {
  width: 50px;
  height: 2px;
  background-color: #3e3a39;
  border-right: solid 50px #ffffff;
  margin: auto;
  margin-top: 10px;
}
@media screen and (max-width:768px) {
  .c-mark2 {
    width: 30px;
    border-right: solid 30px #ffffff;
    height: 3px;
    margin-top: 10px;
  }
}

.p-list {
  width: 100%;
  height: auto;
  background-color: #ecf7ff;
  padding-bottom: 50px;
}
@media screen and (max-width:768px) {
  .p-list {
    padding-bottom: 10px;
  }
}
.p-list h2 span {
  display: inline-block;
}
.p-list__area {
  text-align: center;
  margin: auto;
  padding: 50px 0 20px;
}
@media screen and (max-width:1200px) {
  .p-list__area {
    width: 768px;
  }
}
@media screen and (max-width:768px) {
  .p-list__area {
    width: 95%;
    padding: 70px 0 10px;
  }
}
@media screen and (max-width:480px) {
  .p-list__area {
    padding: 30px 0;
  }
}
.p-list__box {
  margin-bottom: 20px;
}
.p-list__icon {
  margin-bottom: 0.2rem;
  width: 100px;
}
@media screen and (max-width:480px) {
  .p-list__icon {
    width: 60px;
  }
}
.p-list__bold {
  font-weight: bold;
}
.p-list__red {
  color: #E81E25;
  font-weight: bold;
}
.p-list__caution--red {
  padding-top: 10px;
  font-size: 15px;
  text-align: justify;
  color: #E81E25;
  font-weight: bold;
}
.p-list__caution--black {
  padding-top: 10px;
  font-size: 15px;
  text-align: justify;
  color: #000000;
}
.p-list__table {
  width: 1200px;
  margin: auto;
}
@media screen and (max-width:1200px) {
  .p-list__table {
    width: 768px;
  }
}
@media screen and (max-width:768px) {
  .p-list__table {
    width: 100%;
  }
}
.p-list table {
  border-collapse: collapse;
  width: 80%;
  margin: 50px auto;
}
@media screen and (max-width:1200px) {
  .p-list table {
    width: 95%;
    margin: 20px auto 50px;
  }
}
.p-list table td {
  border: solid 1px #0071bf;
  box-sizing: border-box;
  font-size: 17px;
  background-color: #ffffff;
}
@media screen and (max-width:1200px) {
  .p-list table td {
    padding: 10px 5px;
  }
}
@media screen and (max-width:768px) {
  .p-list table td {
    padding: 10px 0px;
  }
}
.p-list table td ul {
  list-style: inside;
  text-align: left;
  margin: auto;
}
@media screen and (max-width:768px) {
  .p-list table td ul {
    font-size: 16px;
  }
}
.p-list table td ul li {
  padding-left: 0;
}
@media screen and (max-width:768px) {
  .p-list table td ul li span {
    display: inline-block;
  }
}
.p-list table td ul li::marker {
  font-family: "游明朝";
  font-size: 120%;
  font-weight: bold;
  line-height: 1;
}
.p-list table td ul ul {
  list-style: inside;
  text-align: left;
  margin: auto;
}
@media screen and (max-width:768px) {
  .p-list table td ul ul {
    font-size: 16px;
  }
}
.p-list table td ul ul li {
  padding-left: 0;
}
@media screen and (max-width:768px) {
  .p-list table td ul ul li span {
    display: inline-block;
  }
}
.p-list table td ul ul li::marker {
  font-family: "游明朝";
  font-size: 50%;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width:768px) {
  .p-list table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
.p-list table th {
  width: 20%;
  border: solid 1px #ccc;
  box-sizing: border-box;
  background: #0071bf;
  font-size: 20px;
  color: #ffffff;
}
@media screen and (max-width:768px) {
  .p-list table th {
    padding: 10px 30px;
    display: block;
    width: 100%;
    border-bottom: none;
    font-size: 20px;
  }
}
@media screen and (max-width:768px) {
  .p-list table tr:last-child {
    border-bottom: solid 1px #0071bf;
  }
}
.p-list table td {
  font-weight: 550;
  padding: 20px 55px;
}
@media screen and (max-width:768px) {
  .p-list table td {
    padding: 20px 10px;
    font-weight: normal;
  }
}

.p-qa {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  padding: 30px 0 100px;
}
@media screen and (max-width:768px) {
  .p-qa {
    padding: 30px 0 40px;
  }
}
.p-qa__area {
  margin: 0 auto;
  padding: 40px 0;
  width: 1200px;
  text-align: center;
}
@media screen and (max-width:1024px) {
  .p-qa__area {
    width: 768px;
  }
}
@media screen and (max-width:768px) {
  .p-qa__area {
    width: 480px;
    padding: 10px 0;
  }
}
@media screen and (max-width:480px) {
  .p-qa__area {
    width: 90%;
  }
}
.p-qa__area-box {
  text-align: center;
}
.p-qa__content {
  margin: 20px auto;
  width: 1000px;
}
@media screen and (max-width:1024px) {
  .p-qa__content {
    width: 700px;
  }
}
@media screen and (max-width:768px) {
  .p-qa__content {
    width: 90%;
  }
}
@media screen and (max-width:480px) {
  .p-qa__content {
    padding-right: 10px;
  }
}
.p-qa__contents {
  font-size: 18px;
}
@media screen and (max-width:768px) {
  .p-qa__contents {
    font-size: 15px;
  }
}
.p-qa__q {
  background-color: #0071bf;
  height: 30px;
  padding: 10px 30px 30px;
  position: relative;
  cursor: pointer;
  align-items: center;
  font-weight: bold;
  color: #fff;
  margin: auto;
}
@media screen and (max-width:768px) {
  .p-qa__q {
    width: 88%;
    padding: 40px 40px 40px 10px;
  }
}
.p-qa__q:before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #fff;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width:768px) {
  .p-qa__q:before {
    right: 10px;
  }
}
.p-qa__q:after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #fff;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%) rotate(90deg);
}
@media screen and (max-width:768px) {
  .p-qa__q:after {
    right: 10px;
  }
}
.p-qa__q.active:after {
  display: none;
}
.p-qa__a {
  background-color: #fff;
  height: auto;
  display: none;
  padding: 25px 30px;
  line-height: normal;
}
.p-qa__text {
  font-size: 30px;
  padding-right: 20px;
}
@media screen and (max-width:768px) {
  .p-qa__text {
    font-size: 20px;
    padding-right: 10px;
    line-height: normal;
  }
}
@media screen and (max-width:480px) {
  .p-qa__text {
    font-size: 15px;
    padding-right: 10px;
  }
}
.p-qa__red {
  color: red;
  font-weight: bold;
}

.p-strengths {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  padding-bottom: 70px;
}
@media screen and (max-width:768px) {
  .p-strengths {
    padding-bottom: 30px;
  }
}
.p-strengths__area {
  text-align: center;
  margin: auto;
  padding: 70px 0 20px;
}
@media screen and (max-width:1200px) {
  .p-strengths__area {
    width: 768px;
  }
}
@media screen and (max-width:768px) {
  .p-strengths__area {
    width: 95%;
    font-weight: 590;
    padding: 70px 0 10px;
  }
}
@media screen and (max-width:480px) {
  .p-strengths__area {
    padding: 30px 0;
  }
}
.p-strengths__area__contents {
  width: 1000px;
  height: auto;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width:1024px) {
  .p-strengths__area__contents {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
  }
}
.p-strengths__area--left {
  width: 400px;
  height: 230px;
  margin: 40px 0;
  padding: 30px;
  text-align: justify;
  background-color: #fff;
  border: solid 5px #0071bf;
}
@media screen and (max-width:1024px) {
  .p-strengths__area--left {
    width: 85%;
    height: auto;
    margin: 20px 0 0px;
  }
}
@media screen and (max-width:768px) {
  .p-strengths__area--left {
    width: 75%;
    height: auto;
  }
}
.p-strengths__area--left ul {
  font-size: 25px;
  font-weight: bold;
  list-style: none;
  line-height: 3rem;
}
.p-strengths__area--left ul span {
  font-size: 50px;
  color: #3e3a39;
}
@media screen and (max-width:768px) {
  .p-strengths__area--left ul {
    font-size: 20px;
  }
}
.p-strengths__area--left ul li ul {
  font-size: 17px;
  font-weight: normal;
  line-height: normal;
}
@media screen and (max-width:768px) {
  .p-strengths__area--left ul li ul {
    font-size: 16px;
    font-weight: normal;
  }
}
.p-strengths__area--left ul li ul ul {
  font-size: 20px;
  list-style: inside;
}
@media screen and (max-width:768px) {
  .p-strengths__area--left ul li ul ul {
    font-size: 16px;
    font-weight: bold;
  }
}
.p-strengths__area--left ul li ul ul span {
  font-size: 18px;
  display: block;
}
@media screen and (max-width:768px) {
  .p-strengths__area--left ul li ul ul span {
    font-size: 15px;
    font-weight: normal;
  }
}
.p-strengths__area--right {
  width: 400px;
  height: 230px;
  margin: 40px 0;
  padding: 30px;
  text-align: justify;
  background-color: #fff;
  border: solid 5px #0071bf;
}
@media screen and (max-width:1024px) {
  .p-strengths__area--right {
    width: 85%;
    margin-top: 50px;
    height: auto;
  }
}
@media screen and (max-width:768px) {
  .p-strengths__area--right {
    width: 75%;
    height: auto;
  }
}
.p-strengths__area--right ul {
  font-size: 25px;
  font-weight: bold;
  list-style: none;
}
.p-strengths__area--right ul span {
  font-size: 50px;
  color: #3e3a39;
}
@media screen and (max-width:768px) {
  .p-strengths__area--right ul {
    font-size: 20px;
  }
}
.p-strengths__area--right ul li ul {
  font-size: 17px;
  font-weight: 550;
}
@media screen and (max-width:768px) {
  .p-strengths__area--right ul li ul {
    font-size: 16px;
    font-weight: normal;
  }
}
.p-strengths__area--right ul li ul ul {
  font-size: 20px;
  list-style: inside;
}
@media screen and (max-width:768px) {
  .p-strengths__area--right ul li ul ul {
    font-size: 16px;
  }
}
.p-strengths__area--right ul li ul ul img {
  width: 18px;
  padding: 0px 5px;
}
.p-strengths__area--right ul li ul ul li a {
  position: relative;
  z-index: 1;
  color: #fff;
  text-decoration: none;
  border-bottom: solid 2px #fff;
}
.p-strengths__area--right ul li ul ul li a::after {
  background: #ff701e;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}
.p-strengths__area--right ul li ul ul li a:hover {
  color: #fff;
  border-bottom: none;
}
.p-strengths__area--right ul li ul ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.p-flow {
  width: 100%;
  height: auto;
  background-color: #ecf7ff;
}
.p-flow__area {
  margin: 0 auto;
  padding: 40px 0;
  width: 1200px;
}
@media screen and (max-width:1024px) {
  .p-flow__area {
    width: 768px;
  }
}
@media screen and (max-width:768px) {
  .p-flow__area {
    width: 480px;
    padding: 30px 0;
  }
}
@media screen and (max-width:480px) {
  .p-flow__area {
    width: 90%;
  }
}
.p-flow__area-box {
  text-align: center;
}
.p-flow__pic--pc {
  width: 100%;
  padding: 20px 0;
}
@media screen and (max-width:768px) {
  .p-flow__pic--pc {
    padding: 50px 0 0px;
  }
}

.main {
  padding-top: 30px;
}

.stepHide.is-show {
  animation: none;
}

#lp_entryForm {
  background: #f0f0f0;
  min-height: 100%;
  padding-bottom: 80px;
  margin-top: -10px;
}

#lp_entryForm h2 {
  padding: 0px 0 25px;
  text-align: center;
}

.ent_stepWrap, #ent_contentWrap, .ent_stepWrap p {
  background: #f0f0f0;
}

#lp_entryForm #ef-container {
  background-color: #f0f0f0;
}

#lp_entryForm .ent_stepWrap h2 {
  background: url(../images/agnet_entry_title01.png) no-repeat center 25px;
  margin: 0 auto;
  padding: 25px 0;
  width: 413px;
  height: 151px;
  display: block;
}

.spOnly {
  display: none;
}

@media screen and (max-width: 640px) {
  .main {
    padding-top: 0px;
  }
  .keyvisual {
    margin-top: 50px;
  }
  .stepHide.is-show {
    animation: none;
  }
  #lp_entryForm {
    margin-bottom: 10px;
    padding-bottom: 0px;
    margin-top: 0px;
  }
  #lp_entryForm .ent_stepWrap h2 {
    padding: 0;
    margin: 0;
    display: none;
  }
  .spOnly {
    display: block;
  }
  #lp_entryForm .ent_stepWrap .incHeader {
    background-image: none;
    background-color: #2673bf;
    padding: 10px 0;
    margin: 0 0 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff !important;
    text-align: center;
  }
  .footer {
    margin: 0;
  }
}
.l-breadcrumb {
  background-image: #fff;
  padding: 10px 20px;
}
@media screen and (max-width:768px) {
  .l-breadcrumb {
    text-align: center;
    font-size: 14px;
  }
}
.l-breadcrumb__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-breadcrumb li {
  display: inline;
  list-style: none;
  font-weight: bold;
  color: #3e3a39;
}
.l-breadcrumb li:after {
  content: ">";
  padding: 0 0.2em;
}
.l-breadcrumb li:last-child:after {
  content: "";
}
.l-breadcrumb li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #3e3a39;
}
.l-breadcrumb li a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #3e3a39;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.l-breadcrumb li a:hover::after {
  transform: scale(1, 1);
}
.l-breadcrumb span {
  display: inline-block;
}

.l-footer {
  background: #0071bf;
}/*# sourceMappingURL=style.css.map */