@charset "shift-jis";
*,*::before,*::after{ box-sizing: border-box;}

body {
  counter-reset: process 0;
  overflow-x: hidden;
}

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

/* ------------------------------
inner
------------------------------ */
section .inner{
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0;
}
@media screen and (max-width: 599px) {
  section .inner {
    padding: 40px 0;
  }
}

/* ------------------------------
margin
------------------------------ */
.mb50 { margin-bottom: 60px;}
.mb60 { margin-bottom: 60px;}
.mb70 { margin-bottom: 70px;}
.ml10 { margin-left: 10px;}
.ml20 { margin-left: 20px;}
.ml35 { margin-left: 35px;}

/* ------------------------------
padding
------------------------------ */
.pt0 { padding-top: 0 !important;}

/* ------------------------------
display
------------------------------ */
.pc {
  display: inherit;
}
.tab {
  display: none;
}
.sp {
  display: none;
}
.sp_tab {
  display: none;
}
@media screen and (min-width: 600px) {
  .tab_pc {
    display: inherit;
  }
}
@media screen and (max-width: 999px) {
  .pc {
    display: none;
  }
  .tab {
    display: inherit;
  }
  .sp {
    display: none;
  }
  .sp_tab {
    display: inherit;
  }
}
@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
  .tab {
    display: none ;
  }
  .sp {
    display: inherit;
  }
  .tab_pc {
    display: none;
  }
}

/* ------------------------------
align
------------------------------ */
.tal { text-align: left;}
.tac { text-align: center;}
.tar { text-align: right;}

/* ------------------------------
text
------------------------------ */
.txt_orange { color: #ea5520;}
.txt_red { color: #ff0000;}
.txt_blue { color: #2c4198;}

/* ------------------------------
letter spacing
------------------------------ */
@media screen and (max-width: 599px) {
  .letter_spc_nml_sp {
    letter-spacing: normal;
  }
}

/* ------------------------------
background
------------------------------ */
.bg_gray {
  background-color: #f5f5f5;
}

/* ------------------------------
button
------------------------------ */
/* btn_more */
.btn_more_wrap {
  padding: 20px 40px 30px;
  text-align: right;
}
.btn_more {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 315px;
  min-height: 75px;
  padding: 0.5em 45px 0.5em 1em;
  background-color: #fff;
  border: 2px solid #1c236d;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #1c236d;
  font-size: 16px;
  text-align: left;
  line-height: 1.4;
}
.btn_more::before {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #1c236d;
  border-radius: 50%;
  content: '';
}
.btn_more::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 32px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #1c236d;
  border-right: 1px solid #1c236d;
  content: '';
}
.btn_more:hover {
  text-decoration: none;
  opacity: 0.7;
}
@media screen and (max-width: 599px) {
  .btn_more_wrap {
    padding-right: 10px;
  }
}

/* btn_view_schedule */
.btn_view_schedule {
  display: block;
  position: relative;
  width: 100%;
  max-width: 340px;
  padding: 1em 30px 1em 1em;
  background: #3ca240;
  border: 2px solid #fff;
  border-radius: 9999px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.btn_view_schedule::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: '';
}
.btn_view_schedule:hover {
  text-decoration: none;
  opacity: 0.8;
}
@media screen and (max-width: 599px) {
  .btn_view_schedule {
    padding-top: 1.35em;
    padding-bottom: 1.35em;
    font-size: 16px;
  }
}

/* .fixed-btn */
.fixed-btn {
  min-height: 90px;
  padding: 0 65px 0 5px;
}
.fixed-btn .btn {
  width: 100%;
}
.fixed-btn .btn_view_schedule {
  width: 100%;
  max-width: 400px;
  padding: 0.6em 20px 0.6em 0.5em;
}
.fixed-btn .btn_view_schedule::after {
  right: 15px;
}
@media screen and (min-width: 600px) {
  .fixed-btn .btn_view_schedule {
    font-size: 17px;
  }
}

/* ------------------------------
front-cover
------------------------------ */
.front-cover {
  position: relative;
}
.front-cover .bg {
  display: flex;
}
.front-cover .bg::before,
.front-cover .bg::after {
  content: '';
  display: block;
  width: 50%;
  min-height: 610px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.front-cover .bg::before {
  background-image: url(/diagnosis/img/bg_front1.jpg);
}
.front-cover .bg::after {
  background-image: url(/diagnosis/img/bg_front2.jpg);
}
.front-cover .in {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.front-cover .in .txts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: auto;
  padding-top: 100px;
}
.front-cover .ttl-main {
  color: #fff;
  font-size: 50px;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
}
.front-cover .txt-yn {
  font-family: 'Josefin Slab', serif;
  font-size: 25px;
  color: #ffffff;
  margin-top: 10px;
}
.front-cover .btn-start {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #1C2569;
  color: #ffffff;
  font-size: 20px;
  border-radius: 5px;
  min-height: 120px;
  max-width: 530px;
  width: 100%;
  margin-top: 30px;
  position: relative;
}
.front-cover .btn-start::after {
  content: '';
  display: block;
  width: 34px;
  height: 9px;
  background: url(/diagnosis/img/icn_arrow_r.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.front-cover .btn-start .en {
  font-family: 'Josefin Slab', serif;
  font-size: 25px;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.front-cover .word-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-bottom: 20px;
}
.front-cover .word-list .item {
  font-family: 'Josefin Slab', serif;
  font-size: 30px;
  color: #ffffff;
  opacity: 0.5;
  margin: 20px 20px 0;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .front-cover .bg {
    flex-direction: column;
  }
  .front-cover .bg::before, .front-cover .bg::after {
    width: 100%;
    min-height: 310px;
    background-position: 50% 0%;
  }
  .front-cover .in .txts {
    padding-top: 0;
  }
  .front-cover .ttl-main {
    font-size: 28px;
  }
  .front-cover .txt-yn {
    font-size: 20px;
  }
  .front-cover .btn-start {
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
  }
  .front-cover .btn-start .en {
    font-size: 20px;
  }
  .front-cover .word-list {
    justify-content: flex-start;
  }
  .front-cover .word-list .item {
    font-size: 20px;
    margin: 12px 7px 0;
  }
}

/* ------------------------------
questions
------------------------------ */
.questions section .inner {
  padding-top: 30px;
  position: relative;
}
.questions .heading {
  background: rgb(126,103,141);
  background: linear-gradient(90deg, rgba(128,103,141,0.4) 0%, rgba(128,103,141,0.4) 50%, rgba(94,118,167,0.4) 50%, rgba(94,118,167,0.4) 100%);
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.questions .ttl-questions {
  font-weight: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.questions .ttl-questions .txt-q {
  font-size: 25px;
  font-family: 'Josefin Slab', serif;
}
.questions .ttl-questions .question-num {
  font-size: 50px;
  line-height: 1;
}
.questions .ttl-questions .txt-main {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
  padding: 0 20px;
  max-width: 1000px;
}
.questions .icn-q {
  width: 300px;
  height: 113px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: auto;
  margin: 0 auto;
}
.questions .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding-bottom: 30px;
}
.questions .btn-wrap .item {
  width: 100%;
}
.questions .btn-wrap .btn {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 335px;
  width: 100%;
  min-height: 73px;
  font-family: inherit;
  color: #ffffff;
  border-radius: 5px;
  font-size: 16px;
  position: relative;
}
.questions .btn-wrap .btn::after {
  content: '';
  display: block;
  width: 34px;
  height: 9px;
  background: url(/diagnosis/img/icn_arrow_r.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.questions .btn-wrap .btn .en {
  font-family: 'Josefin Slab', serif;
  margin-bottom: 10px;
}
.questions .btn-wrap .btn.yes {
  background-color: #7E678D;
  margin-right: 20px;
}
.questions .btn-wrap .btn.no {
  background-color: #5E76A7;
  margin-left: 20px;
}
.questions .btn-wrap .btn:hover {
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .questions section .inner {
    padding-top: 20px;
    padding-bottom: 100px;
  }
  .questions .heading {
    min-height: 150px;
  }
  .questions .ttl-questions .txt-q,
  .questions .ttl-questions .txt-main {
    font-size: 16px;
  }
  .questions .ttl-questions .question-num {
    font-size: 40px;
  }
  .questions .ttl-questions .txt-main {
    margin-top: 10px;
  }
  .questions .icn-q {
    height: 80px;
    background-size: contain;
  }
  .questions .btn-wrap {
    margin-top: 20px;
  }
  .questions .btn-wrap .btn.yes {
    margin-right: 12px;
  }
  .questions .btn-wrap .btn.no {
    margin-left: 12px;
  }
}

/* ------------------------------
wiper style
------------------------------ */
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: initial;
  bottom: 20px;
  width: 68px;
  height: 68px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #CCCCCC;
  border-radius: 50%;
  display: flex;
  flex-direction: column-reverse;
}
.swiper-button-prev {
  left: calc((100% - 1000px) /2 );
  right: auto;
}
.swiper-button-next {
  right: calc((100% - 1000px) /2 );
  left: auto;
}
.swiper-button-next:before,
.swiper-button-prev:before {
  content: '';
  display: block;
  width: 34px;
  height: 9px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 5px;
}
.swiper-button-next:before {
  background-image: url(/diagnosis/img/icn_arrow_r.svg);
}
.swiper-button-prev:before {
  background-image: url(/diagnosis/img/icn_arrow_l.svg);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: inherit;
  font-size: 16px;
  text-transform: none!important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after {
  content: '–ß‚é';
}
.swiper-button-next:after {
  content: 'ŽŸ‚Ö';
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  visibility: hidden;
}
[data-whatinput="mouse"] .swiper-container *:focus,
[data-whatinput="touch"] .swiper-container *:focus {
  outline: none;
}
[v-cloak] {
  display: none;
}
@media screen and (max-width: 999px) {
  .swiper-button-prev {
    left: 15px;
  }
  .swiper-button-next {
    right: 15px;
  }
}

/* ------------------------------
result
------------------------------ */
.result {
  padding-bottom: 90px;
  background: rgb(126,103,141);
  background: linear-gradient(90deg, rgba(128,103,141,0.4) 0%, rgba(128,103,141,0.4) 50%, rgba(94,118,167,0.4) 50%, rgba(94,118,167,0.4) 100%);
  font-size: 16px;
  letter-spacing: 0.08em;
} 
.result .result_inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}
/* heading */
.result .heading {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.result .heading .ttl_result {
  font-size: 26px;
  color: #1c2569;
  font-weight: normal;
}
.result .heading .lead {
  font-size: 20px;
  margin-top: 1em;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .result {
    padding-bottom: 60px;
    font-size: 14px;
  }
  .result .heading {
    min-height: 160px;
  }
  .result .heading .ttl_result {
    font-size: 20px;
  }
  .result .heading .lead {
    font-size: 16px;
  }
}
/* result_body */
.result .result_body {
  padding: 40px 4%;
  background: #fff;
  border-radius: 10px 10px 0 0;
  text-align: center;
}
.result .result_body h2 {
  margin-bottom: 0.5em;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.result .result_body h2 .ttl_inner {
  padding: 0.35em;
  background: #1c2569;
}
.result .result_body h2 .txt_l {
  font-size: 35px;
}
.result .result_body .lead_ttl {
  margin: 0.5em 0 1em;
  color: #1c2569;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}
.result .result_body .lead {
  display: inline-block;
  text-align: left;
  line-height: 2.0;
}
.result .result_body .lead .strong {
  padding-bottom: 0.2em;
  background: linear-gradient(transparent 40%, rgb(254, 236, 103) 40%);
  font-weight: bold;
}
.result .result_body .result_school {
  margin-top: 3em;
}
.result .result_body .result_school .ttl {
  min-height: 4.4em;
  margin-bottom: 1em;
  padding-top: 1em;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22277.844%22%20height%3D%2280.212%22%20viewBox%3D%220%200%20277.844%2080.212%22%3E%3Cg%20transform%3D%22translate(-466%20-832.5)%22%3E%3Cpath%20d%3D%22M1559.382%2C891.508H1404.508a1%2C1%2C0%2C0%2C1%2C0-2h154.874a1%2C1%2C0%2C0%2C1%2C0%2C2Z%22%20transform%3D%22translate(-936.508%20-2.008)%22%20fill%3D%22%231c2569%22%2F%3E%3Cpath%20d%3D%22M1555.6%2C915.22a1%2C1%2C0%2C0%2C1-.781-1.624l19.249-24.088h101.5a1%2C1%2C0%2C0%2C1%2C0%2C2h-100.54l-18.648%2C23.336A1%2C1%2C0%2C0%2C1%2C1555.6%2C915.22Z%22%20transform%3D%22translate(-932.729%20-2.508)%22%20fill%3D%22%231c2569%22%2F%3E%3Cpath%20d%3D%22M1679.352%2C891.508H1404.508a1%2C1%2C0%2C0%2C1%2C0-2h274.844a1%2C1%2C0%2C0%2C1%2C0%2C2Z%22%20transform%3D%22translate(-937.508%20-57.008)%22%20fill%3D%22%231c2569%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #1c2569;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}
.result .result_body .result_school .type {
  display: inline-block;
  min-width: 142px;
  padding: 1.1em 0.3em;
  border-radius: 5px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1em;
}
.result .result_body .result_school .type.fudo {
  background-color: #44a1c5;
}
.result .result_body .result_school .type.kabu {
  background-color: #5e76a7;
}
.result .result_body .result_school .type.mf {
  background-color: #8a9f55;
}
.result .result_body .result_school .times {
  margin: 0 1.2em;
}
.result .result_body .result_school .tail_txt {
  margin: 0.8em 0 1.8em;
  color: #1c2569;
  font-size: 24px;
  font-weight: bold;
}
.result .result_body h3 {
  position: relative;
  width: 90%;
  margin: 0 auto 1.3em;
  color: #1c2569;
  font-size: 21px;
  font-weight: bold;
}
.result .result_body h3::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 2px dotted #1c2569;
  content: '';
}
.result .result_body h3 span {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 1.5em;
  background-color: #fff;
}
.result .result_body .reasons_list .list_num {
  margin-bottom: 0.2em;
  font-family: 'Josefin Slab', serif;
  color: #1c2569;
  font-size: 40px;
  text-align: center;
  line-height: 1;
}
.result .result_body .reasons_list h4 {
  position: relative;
  margin-bottom: 0.5em;
  font-size: 24px;
  text-align: left;
  line-height: 1.9;
}
.result .result_body .reasons_list h4 span {
  display: inline;
  padding: 0.3em 0.8em;
  background-color: #1c2569;
  color: #fff;
}
.result .result_body .reasons_list h4 + p {
  text-align: left;
}
.result .result_body .reasons_list .img {
  position: absolute;
  bottom: 2em;
  right: 10px;
}
.result .result_body .reasons_list .img_01 {
  width: 89px;
  height: auto;
}
.result .result_body .reasons_list .img_02 {
  width: 76px;
  height: auto;
}
.result .result_body .reasons_list .img_03 {
  right: 0;
  width: 113px;
  height: auto;
}
.result .result_body .reasons_list .img_04 {
  bottom: 1em;
  width: 69px;
  height: auto;
}
@media screen and (min-width: 600px) {
  .result .result_body .result_school .times svg {
    width: 25px;
    height: auto;
  }
}
@media screen and (min-width: 730px) {
  .result .result_body .reasons_list {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
  }
  .result .result_body .reasons_list li {
    width: 49%;
  }
}
@media screen and (min-width: 860px) {
  .result .result_body .reasons_list li {
    width: 47%;
  }
}
@media screen and (min-width: 730px) and (max-width: 859px) {
  .result .result_body .reasons_list h4 {
    font-size: 21px;
  }
  .result .result_body .reasons_list h4 + p {
    width: 96%;
  }
}
@media screen and (max-width: 729px) {
  .result .result_body .reasons_list li + li {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .result .result_body {
    padding: 20px 4%;
  }
  .result .result_body h2 {
    margin-bottom: 0.2em;
    font-size: 20px;
    text-align: left;
  }
  .result .result_body h2 .txt_l {
    font-size: 23px;
  }
  .result .result_body .lead_ttl {
    font-size: 15px;
  }
  .result .result_body .result_school {
    margin-top: 2em;
  }
  .result .result_body .result_school .ttl {
    font-size: 18px;
  }
  .result .result_body .result_school .type {
    min-width: 111px;
    font-size: 18px;
  }
  .result .result_body .result_school .tail_txt {
    font-size: 18px;
  }
  .result .result_body h3 {
    font-size: 18px;
  }
  .result .result_body .reasons_list li + li {
    margin-top: 20px;
  }
  .result .result_body .reasons_list .img {
    bottom: 2em;
    right: 10px;
  }
  .result .result_body .reasons_list .img_02 {
    right: 20px;
  }
  .result .result_body .reasons_list .img_04 {
    bottom: 0;
  }
  .result .result_body .reasons_list h4 {
    font-size: 20px;
  }
}
/* consultation */
.result .consultation {
  background: #fff;
  text-align: center;
}
.result .consultation .top_msg {
  padding: 2em 1.5em 4.5em;
  background: #edeef4;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
  font-size: 18px;
  text-align: center;
}
.result .consultation .top_msg p {
  font-weight: bold;
  line-height: 2.2;
}
.result .consultation .top_msg p + p {
  margin-top: 2em;
}
.result .consultation .top_msg .strong {
  padding-bottom: 0.2em;
  background: linear-gradient(transparent 40%, rgb(254, 236, 103) 40%);
  font-size: 18px;
}
.result .consultation .consultation_inner {
  padding: 25px 4% 60px;
}
.result .consultation h2 {
  color: #fff;
  font-size: 24px;
  line-height: 2.0;
}
.result .consultation h2 span {
  padding: 0.3em 0.5em;
  background-color: #3ca240;
}
.result .consultation .arrow_double {
  margin: 25px 0 20px;
}
.result .consultation .txt {
  display: inline-block;
  max-width: 600px;
  margin-top: 1.5em;
  line-height: 2.2;
  text-align: left;
}
.result .consultation .txt .strong {
  padding-bottom: 0.2em;
  background: linear-gradient(transparent 40%, rgb(254, 236, 103) 40%);
  font-weight: bold;
}
.result .consultation .detail_box {
  max-width: 600px;
  margin: 30px auto 0;
  padding: 30px 30px 20px;
  background: #edeef4;
  border-radius: 20px;
}
.result .consultation .detail_box dt {
  margin-bottom: 1em;
  background: #1c2569;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
}
.result .consultation .detail_box dd {
  font-weight: bold;
}
.result .consultation .detail_box dd + dt {
  margin-top: 2em;
}
.result .consultation .detail_box .gain_list li {
  min-height: 18px;
  padding-left: 25px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.266%22%20height%3D%2217.268%22%20viewBox%3D%220%200%2017.266%2017.268%22%3E%3Cpath%20d%3D%22M14.327-511.709a1.658%2C1.658%2C0%2C0%2C0-.337.169c-.081.057-2.871%2C2.828-6.2%2C6.154l-6.047%2C6.05-.8%2C1.937c-.439%2C1.063-.806%2C1.994-.813%2C2.065a.784.784%2C0%2C0%2C0%2C.756.84%2C11.742%2C11.742%2C0%2C0%2C0%2C2.271-.874l1.8-.742%2C6.07-6.067c3.337-3.337%2C6.111-6.134%2C6.165-6.219a1.266%2C1.266%2C0%2C0%2C0%2C.071-1.228A5.536%2C5.536%2C0%2C0%2C0%2C16.3-510.7c-.729-.725-.9-.881-1.066-.955A1.348%2C1.348%2C0%2C0%2C0%2C14.327-511.709Zm.7.526a5.8%2C5.8%2C0%2C0%2C1%2C.952.867c.833.84.918.955.921%2C1.248%2C0%2C.273-.111.432-.817%2C1.134l-.651.651-1.259-1.259L12.914-509.8l.665-.665c.712-.709.844-.8%2C1.124-.8A.847.847%2C0%2C0%2C1%2C15.023-511.183Zm-1.208%2C3c.675.675%2C1.225%2C1.238%2C1.225%2C1.259a3.148%2C3.148%2C0%2C0%2C1-.344.378l-.348.348-1.255-1.255-1.259-1.259.344-.344a2.916%2C2.916%2C0%2C0%2C1%2C.381-.347C12.576-509.408%2C13.143-508.858%2C13.815-508.186Zm-3.408%2C3.057c-2.328%2C2.332-2.251%2C2.237-2.065%2C2.419s.088.263%2C2.419-2.065l2.153-2.153.54.54.54.54-4.579%2C4.579-4.582%2C4.582-.54-.54-.54-.54%2C2.153-2.153c1.181-1.181%2C2.149-2.176%2C2.149-2.207a.309.309%2C0%2C0%2C0-.3-.3c-.03%2C0-1.026.968-2.207%2C2.149L3.4-498.121l-.54-.54-.54-.54L6.9-503.78l4.582-4.582.54.54.54.54Zm-7.194%2C7.565c.628.628%2C1.137%2C1.151%2C1.13%2C1.157-.034.027-1.933.8-1.971.8a12.8%2C12.8%2C0%2C0%2C1-1.134-1.13c0-.047.79-1.974.81-1.974S2.582-498.2%2C3.213-497.565Zm-1.427%2C2.2A6.463%2C6.463%2C0%2C0%2C1%2C.864-495a.315.315%2C0%2C0%2C1-.233-.233%2C7.366%2C7.366%2C0%2C0%2C1%2C.344-.894c.03-.054.081-.017.435.337A2.319%2C2.319%2C0%2C0%2C1%2C1.786-495.365Z%22%20transform%3D%22translate(-0.13%20511.762)%22%20fill%3D%22%231c2569%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: top 0.4em left;
  text-align: left;
  line-height: 1.6;
}
.result .consultation .detail_box .gain_list li + li {
  margin-top: 0.4em;
}
.result .consultation .detail_box .add_txt {
  margin-top: 1em;
  padding: 0.5em;
  background: #fff;
  color: #1c2569;
  font-size: 14px;
  text-align: center;
}
.result .consultation .detail_box .txt_l {
  font-size: 23px;
}
.result .consultation .btn_view_schedule {
  margin: 40px auto 0;
}
@media screen and (min-width: 600px) {
  .result .consultation .arrow_double svg {
    width: 30px;
    height: auto;
  }
}
@media screen and (max-width: 599px) {
  .result .consultation .top_msg {
    padding-bottom: 4em;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
    font-size: 16px;
  }
  .result .consultation .top_msg .strong {
    font-size: 18px;
  }
  .result .consultation .consultation_inner {
    padding-bottom: 35px;
  }
  .result .consultation h2 {
    font-size: 20px;
  }
  .result .consultation .arrow_double {
    margin: 20px 0 15px;
  }
  .result .consultation .detail_box {
    margin-top: 20px;
    padding: 20px 15px 10px;
  }
  .result .consultation .detail_box dt {
    font-size: 13px;
  }
  .result .consultation .detail_box dd + dt {
    margin-top: 1.5em;
  }
  .result .consultation .detail_box .add_txt {
    font-size: 12px;
  }
  .result .consultation .detail_box .txt_l {
    font-size: 18px;
  }
  .result .consultation .btn_view_schedule {
    margin-top: 25px;
  }
}
/* fp */
.result .fp {
  background: #fff;
  border-radius: 0 0 10px 10px;
  text-align: center;
}
.result .fp h2 {
  padding: 0.2em 1em 0.9em;
  background: #1c2569;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.result .fp h2 .en {
  font-family: 'Josefin Slab', serif;
  font-size: 18px;
  font-weight: normal;
}
.result .fp .fp_inner {
  padding: 40px 4% 50px;
}
.result .fp .lead {
  display: inline-block;
  max-width: 600px;
  margin-bottom: 0.3em;
  text-align: left;
  line-height: 2.2;
}
.result .fp .teacher_list {
  max-width: 600px;
  margin: 0 auto;
}
.result .fp .teacher_list li {
  display: grid;
  grid-template-columns: 150px auto;
  column-gap: 20px;
  row-gap: 1.2em;
  align-items: center;
  padding-top: 1.5em;
  text-align: left;
}
.result .fp .teacher_list li + li {
  margin-top: 1.5em;
  border-top: 1px solid #ccc;
}
.result .fp .teacher_list .img {
  grid-column: 1/2;
  grid-row: 1/2;
}
.result .fp .teacher_list .profile {
  grid-column: 2/3;
  grid-row: 1/2;
  line-height: 1.6;
}
.result .fp .teacher_list .history {
  grid-column: 1/3;
  grid-row: 2/3;
  font-size: 14px;
}
.result .fp .teacher_list .profile .name {
  margin-bottom: 0.2em;
  color: #1c2569;
  font-weight: bold;
}
.result .fp .teacher_list .profile .position {
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .result .fp h2 {
    font-size: 18px;
  }
  .result .fp h2 .en {
    font-size: 16px;
  }
  .result .fp .fp_inner {
    padding: 25px 4% 35px;
  }
  .result .fp .teacher_list li {
    grid-template-columns: 100px auto;
    column-gap: 10px;
  }
  .result .fp .teacher_list .profile .position {
    font-size: 12px;
  }
  .result .fp .teacher_list .history {
    font-size: 12px;
  }
}

/* ------------------------------
financial_academy
------------------------------ */
.financial_academy .financial_academy_main {
  position: relative;
  padding-bottom: 4px;
}
.financial_academy .financial_academy_main::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #44a1c5 0%, #44a1c5 15%, #5e76a7 15%, #5e76a7 29%, #7e678d 29%, #7e678d 43%, #c36380 43%, #c36380 57%, #e16f4e 57%, #e16f4e 71%, #d7ba41 71%, #d7ba41 85%, #8a9f55 85%, #8a9f55 100%);
  content: '';
}
.financial_academy .financial_academy_main::before {
  top: 0;
}
.financial_academy .financial_academy_main::after {
  bottom: 0;
}
.financial_academy .financial_academy_img_pc,
.financial_academy .financial_academy_img_sp {
  width: 100%;
}
.financial_academy .financial_academy_img_sp {
  display: none;
}
.financial_academy .financial_academy_main_inner {
  padding: 58px 20px 45px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 52%,rgba(255,255,255,1) 48%,rgba(255,255,255,0) 100%), linear-gradient(to right,  #e7fcfd 0%,#e0e9ff 16%,#f8f8f5 33%,#ffe3ec 50%,#ffe6de 67%,#fdf7db 84%,#eef5da 100%);
}
.financial_academy h2 {
  color: #1c236d;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.financial_academy h2 .txt_s {
  font-size: 36px;
}
.financial_academy h2 .txt_ss {
  font-size: 22px;
}
.financial_academy h2 .fa_name {
  display: inline-block;
  position: relative;
  margin-top: 0.2em;
  padding: 0.5em 1.5em 0;
  font-family: 'Josefin Slab', serif;
  font-size: 31px;
  font-weight: normal;
  letter-spacing: 0.12em;
}
.financial_academy h2 .fa_name::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #44a1c5 0%, #44a1c5 15%, #5e76a7 15%, #5e76a7 29%, #8a9f55 29%, #8a9f55 43%, #d7ba41 43%, #d7ba41 57%, #e16f4e 57%, #e16f4e 71%, #c36380 71%, #c36380 85%, #7e678d 85%, #7e678d 100%);
  content: '';
}
.financial_academy .ico_no1 {
  padding: 25px 20px 20px;
  background: #f5f5f5;
  text-align: center;
}
.financial_academy .no1_caution {
  width: 92%;
  max-width: 1000px;
  margin: 2em auto 3em;
  font-size: 10px;
}
.financial_academy .intro {
  min-height: 430px;
  padding-top: 110px;
  background: url(/diagnosis/img/result/img_fa_pc.jpg) no-repeat bottom left / cover;
}
.financial_academy .intro p {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em 10%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.financial_academy .intro .strong {
  background: linear-gradient(transparent 65%, rgb(255, 255, 0) 65%);
  font-weight: bold;
}
@media screen and (min-width: 1440px) {
  .financial_academy .intro p {
    padding: 2em 135px;
  }
}
@media screen and (max-width: 999px) {
  .financial_academy .intro {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }
  .financial_academy .intro p {
    padding: 2em 5%;
  }
}
@media screen and (max-width: 599px) {
  .financial_academy .financial_academy_img_pc {
    display: none;
  }
  .financial_academy .financial_academy_img_sp {
    display: block;
  }
  .financial_academy .financial_academy_main_inner {
    padding: 35px 15px 25px;
  }
  .financial_academy h2 {
    font-size: 32px;
  }
  .financial_academy h2 .txt_s {
    font-size: 28px;
  }
  .financial_academy h2 .txt_ss {
    font-size: 21px;
  }
  .financial_academy h2 .fa_name {
    font-size: 18px;
  }
  .financial_academy .ico_no1 {
    padding: 15px;
  }
  .financial_academy .ico_no1 img {
    max-width: 308px;
    height: auto;
  }
  .financial_academy .no1_caution {
    margin: 2em auto;
  }
  .financial_academy .intro {
    display: block;
    min-height: 484px;
    padding-top: 55px;
    background: url(/diagnosis/img/result/img_fa_sp.jpg) no-repeat bottom center / cover;
  }
  .financial_academy .intro p {
    padding: 3em 1em;
  }
}

/* ------------------------------
infographics
------------------------------ */
.infographics {
  position: relative;
  padding-top: 30px;
}
.infographics::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  clip-path: polygon(220px 0, 100% 0, 100% calc(100% - 150px), calc(100% - 220px) 100%, 0 100%, 0 150px);
  content: '';
}
.infographics .inner {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.infographics h2 {
  margin-bottom: 1.2em;
  color: #1c2569;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.infographics h2 .strong {
  font-size: 50px;
}
.infographics .infographics_list {
  text-align: center;
}
.infographics .infographics_list h3 {
  margin-bottom: 1em;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
}
.infographics .infographics_list img {
  width: 100%;
  max-width: 240px;
  margin-top: 10px;
}
.infographics .infographics_list .txt {
  max-width: 350px;
  margin: 1em auto 0;
  color: #333;
  font-size: 14px;
  text-align: left;
}
.infographics .infographics_list .num_01 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}
.infographics .infographics_list .num_01 span {
  display: inline-block;
  margin-right: 10px;
  font-family: 'Josefin Slab', serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 100px;
  line-height: 1;
}
.infographics .infographics_list .box_ratio {
  display: flex;
  justify-content: space-between;
  font-size: 19px;
  font-weight: bold;
}
.infographics .infographics_list .box_ratio > div {
  width: 49%;
  line-height: 1.2;
}
.infographics .infographics_list .achievement {
  color: #f2921c;
}
.infographics .infographics_list .num_people {
  color: #47639d;
}
.infographics .infographics_list .ratio {
  color: #de5049;
}
.infographics .infographics_list .ratio h3 {
  margin-bottom: 0.7em;
}
.infographics .infographics_list .ratio img {
  margin-top: 8px;
}
.infographics .infographics_list .ratio .man {
  color: #5390cb;
}
.infographics .infographics_list .ratio .woman {
  color: #da6075;
}
.infographics .infographics_list .ratio .num_01 span {
  font-size: 84px;
}
.infographics .infographics_list .ratio .num_01 span.txt_num {
  font-size: 35px;
}
.infographics .infographics_list #num_students {
  display: none;
}
@media screen and (min-width: 600px) {
  .infographics .infographics_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    column-gap: 20px;
  }
}
@media screen and (min-width: 1055px) {
  .infographics .infographics_list {
    column-gap: 50px;
  }
}
@media screen and (min-width: 600px) and (max-width: 989px) {
  .infographics .infographics_list li {
    margin-bottom: 50px;
  }
  .infographics .infographics_list li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .infographics {
    padding-top: 25px;
  }
  .infographics::before {
    clip-path: polygon(65px 0, 100% 0, 100% calc(100% - 45px), calc(100% - 65px) 100%, 0 100%, 0 45px);
  }
  .infographics h2 {
    font-size: 24px;
  }
  .infographics h2 .strong {
    font-size: 34px;
  }
  .infographics .infographics_list li + li {
    margin-top: 60px;
  }
  .infographics .infographics_list .txt {
    max-width: 90%;
  }
  .infographics .infographics_list .num_01 {
    font-size: 24px;
  }
  .infographics .infographics_list .num_01 span {
    font-size: 81px;
  }
  .infographics .infographics_list .sp_box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .infographics .infographics_list .sp_box > p {
    width: 55%;
  }
  .infographics .infographics_list .sp_box > div {
    width: 45%;
  }
  .infographics .infographics_list .sp_box img {
    margin-top: 0;
  }
  .infographics .infographics_list .achievement img {
    width: 180px;
    object-position: -8px 0;
  }
  .infographics .infographics_list .num_people img {
    width: 220px;
    object-position: -10px -10px;
  }
  .infographics .infographics_list .num_people .txt {
    margin-top: 0;
  }
}

/* js_target. */
.js_target.fadein {
  opacity: 0;
  transition: transform 2s, opacity 2s;
}
.js_target.fadein.on {
  opacity: 1;
}

/* ------------------------------
media
------------------------------ */
.media .inner {
  padding-top: 90px;
  padding-bottom: 0;
}
.media .lead {
  margin-bottom: 45px;
  color: #1c236d;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}
.media .list_media_wrapper {
  background-color: #fff;
  padding: 35px 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}
.media .loop.pc {
  display: flex !important;
}
.media .loop.sp {
  display: none !important;
}
.media .loop img {
  width: calc(100% - 50px);
  padding: 0 25px;
}
.media .loop img:first-child {
  animation: loop 50s -25s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.media .loop img:last-child {
  animation: loop2 50s linear infinite;
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media screen and (max-width: 599px) {
  .media .inner {
    padding-top: 70px;
  }
  .media .lead {
    margin-bottom: 35px;
    font-size: 16px;
  }
  .media .list_media_wrapper {
    padding: 20px 0;
  }
  .media .loop.pc {
    display: none !important;
  }
  .media .loop.sp {
    display: flex !important;
  }
  .media .loop img {
    width: calc(200% - 20px);
    padding: 0 10px;
    max-width: initial;
  }
}

/* ------------------------------
reasons
------------------------------ */
.reasons .inner {
  padding-bottom: 70px;
}
.reasons h2 {
  margin-bottom: 1.4em;
  font-size: 40px;
  font-weight: normal;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.reasons h2 .strong {
  font-weight: bold;
}
.reasons h2 .txt_l {
  font-size: 50px;
}
.reasons .reasons_list li {
  padding: 20px;
  background: #fff;
  border: 1px solid;
  border-width: 5px 1px 1px;
  text-align: center;
}
.reasons .reasons_list .number {
  font-family: 'Josefin Slab', serif;
  font-style: italic;
  font-size: 21px;
  text-align: center;
  line-height: 1;
}
.reasons .reasons_list .number span {
  display: inline-block;
  padding: 0.1em 0.2em 0 0;
  font-size: 70px;
  line-height: 1;
}
.reasons .reasons_list h3 {
  margin-bottom: 1em;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.reasons .reasons_list h3 .txt_l {
  font-size: 30px;
}
.reasons .reasons_list .txt {
  margin: 1em 0 1.5em;
  font-size: 14px;
}
.reasons .reasons_list .link {
  text-decoration: underline;
  color: #000aff;
  font-size: 14px;
}
.reasons .reasons_list li.reason1 {
  border-color: #c36380;
}
.reasons .reasons_list li.reason1 .number {
  color: #c36380;
}
.reasons .reasons_list li.reason2 {
  border-color: #5e76a7;
}
.reasons .reasons_list li.reason2 .number {
  color: #5e76a7;
}
.reasons .reasons_list li.reason3 {
  border-color: #8a9f55;
}
.reasons .reasons_list li.reason3 .number {
  color: #8a9f55;
}
@media screen and (min-width: 600px) {
  .reasons .reasons_list {
    display: flex;
    justify-content: space-between;
  }
  .reasons .reasons_list li {
    width: 32%;
  }
}
@media screen and (max-width: 599px) {
  .reasons .inner {
    padding-bottom: 45px;
  }
  .reasons h2 {
    font-size: 22px;
  }
  .reasons h2 .txt_l {
    font-size: 30px;
  }
  .reasons .reasons_list li + li {
    margin-top: 30px;
  }
}
