@charset "utf-8";

:root {
  --color01: #2ea2da;
  --color02: #22b573;
  --color03: #2e82da;
  --color04: #00a99d;
  --noto: "Noto Sans JP","ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --zen: "Zen Old Mincho", serif;
  --oswald: "Oswald", sans-serif;
}
hr.anc {
  border: none;
  clear: both;
  background: none;
  margin: -120px 0 0;
  padding: 120px 0 0;
}

/* -----------------------------------------------------------
　common
----------------------------------------------------------- */

* {box-sizing: border-box;}
img {max-width: 100%;}
.fcred {color: #FF0000;}
.fwbold {font-weight: bold;}
.fs80 {font-size: 0.8em;}
.fs120 {font-size: 1.2em;}
.left {float: left;}
.right {float: right;}
.center ,
.aligncenter {text-align: center;}
.alignright {text-align: right;}
.alignleft {text-align: left;}
.clear {clear: both;}
.italic {font-style: italic;}
figure img {display: block;}
a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: var(--noto);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.86;
  color: #333333;
}
body.open {overflow: hidden;}
input,button ,select,option,textarea {
  font-family: var(--noto);
  color: inherit;
}
button {cursor: pointer;}

@media screen and (min-width: 801px) {
  
  .sp_cont {display: none !important;}
  
}
a:hover {
  text-decoration: underline;
  color: inherit;
}

/* -----------------------------------------------------------
  template
----------------------------------------------------------- */

/* :::::::::: header :::::::::: */

header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 115px;
  background: #FFFFFF;
}
header .logo {width: 235px;}
header .logo img {display: block;}

/* :::::::::: nav :::::::::: */

nav .menu {display: none;}
nav .menu_box > ul {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}
nav .menu_box > ul > li {
  position: relative;
  z-index: 1;
  width: fit-content;
}
nav .menu_box > ul > li > a,
nav .menu_box > ul > li > span {
  position: relative;
  z-index: 0;
  display: block;
  height: 100%;
  padding: 20px;
  font-size: 15px;
  font-weight: 500;
}
nav .menu_box > ul > li > span {
  padding: 20px 40px 20px 20px;
  cursor: pointer;
}
nav .menu_box > ul > li > span a,
nav .menu_box > ul > li > a {text-decoration: none;}
nav .menu_box > ul > li > a:hover,
nav .menu_box > ul > li:hover > span {color: var(--color01);}

nav .menu_box > ul > li > span::after {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: 16px;
  height: 8px;
  background: url("../img/common/ico_a.svg") no-repeat center / contain;
  margin: auto;
  inset: 5px 15px 0 auto;
}
nav .menu_box > ul > li > div {
  position: absolute;
  z-index: 1;
  inset: 100% -100% auto;
  margin: auto;
  width: 320px;
  padding: 15px 25px 25px;
  color: #FFFFFF;
  background: #2894d4;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
nav .menu_box > ul > li > div.open {
  opacity: 1;
  visibility: visible;
}
nav .menu_box > ul > li > div p {
  font-size: 15px;
  font-weight: 500;
  padding: 0 0 0.5em;
  margin: 10px 0 0;
  border-bottom: solid 1px #FFFFFF;
}
nav .menu_box > ul > li > div p + p {
  border: none;
  padding: 0;
}
nav .menu_box > ul > li > div ul li {
  font-size: 12px;
  margin: 10px 0 0;
}


@media screen and (max-width: 1350px) {
  nav .menu_box > ul > li > a,
  nav .menu_box > ul > li > span {
    padding: 20px 10px;
  }
  nav .menu_box > ul > li > span {
    padding: 20px 35px 20px 10px;
  }
}

/* :::::::::: main :::::::::: */

main {
  display: block;
  overflow: clip;
  padding: 115px 0 160px;
}
main.home {padding: 115px 0 0;}
main article {
  margin: 0 auto;
}
.box {
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}

/* :::::::::: footer :::::::::: */

.pagetop {
  position: fixed;
  z-index: 5;
  inset: auto 50px 20px auto;
  font-size: 0;
  background: url("../img/common/pagetop.svg") no-repeat center / contain;
  cursor: pointer;
  width: 100px;
  height: 100px;
}

footer {
  text-align: center;
  background: #ebf7fb;
}
footer .box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px 35px;
}
footer h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
footer p {
  font-size: 15px;
  margin: 30px 0 0;
}
footer p a {text-decoration: underline;}
footer .contact {margin: 40px 0 0;}
footer .contact a {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}
footer .copyright {
  color: var(--color01);
  font-size: 14px;
  margin: 0;
  padding: 1.5em 20px;
  background: #d7eef8;
}

/* -----------------------------------------------------------
 common_parts
----------------------------------------------------------- */

.mt00 {margin-top: 0!important;}
.mt10 {margin-top: 10px!important;}
.mt20 {margin-top: 20px!important;}
.mt30 {margin-top: 30px!important;}
.mt40 {margin-top: 40px!important;}
.mt50 {margin-top: 50px!important;}
.mt60 {margin-top: 60px!important;}
.mt70 {margin-top: 70px!important;}
.mt80 {margin-top: 80px!important;}
.mt90 {margin-top: 90px!important;}
.mt100 {margin-top: 100px!important;}
.mb00 {margin-bottom: 0!important;}
.mb10 {margin-bottom: 10px!important;}
.mb20 {margin-bottom: 20px!important;}
.mb30 {margin-bottom: 30px!important;}
.mb40 {margin-bottom: 40px!important;}
.mb50 {margin-bottom: 50px!important;}
.mb60 {margin-bottom: 60px!important;}
.mb70 {margin-bottom: 70px!important;}
.mb80 {margin-bottom: 80px!important;}
.mb90 {margin-bottom: 90px!important;}
.mb100 {margin-bottom: 100px!important;}

.pt00 {padding-top: 0!important;}
.pt10 {padding-top: 10px!important;}
.pt20 {padding-top: 20px!important;}
.pt30 {padding-top: 30px!important;}
.pt40 {padding-top: 40px!important;}
.pt50 {padding-top: 50px!important;}
.pt60 {padding-top: 60px!important;}
.pt70 {padding-top: 70px!important;}
.pt80 {padding-top: 80px!important;}
.pt90 {padding-top: 90px!important;}
.pt100 {padding-top: 100px!important;}
.pb00 {padding-bottom: 0!important;}
.pb10 {padding-bottom: 10px!important;}
.pb20 {padding-bottom: 20px!important;}
.pb30 {padding-bottom: 30px!important;}
.pb40 {padding-bottom: 40px!important;}
.pb50 {padding-bottom: 50px!important;}
.pb60 {padding-bottom: 60px!important;}
.pb70 {padding-bottom: 70px!important;}
.pb80 {padding-bottom: 80px!important;}
.pb90 {padding-bottom: 90px!important;}
.pb100 {padding-bottom: 100px!important;}

.subpage > .box > *:nth-child(1) {margin-top: 0;}

.kv_sub {
  height: 230px;
  background: url("../img/common/kv_sub.jpg") no-repeat center / cover;
  margin: 0 auto 130px;
}
.kv_sub_g {background: url("../img/common/kv_sub_g.jpg") no-repeat center / cover;}
.kv_sub .box {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.kv_sub .box::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  pointer-events: none;
}

.join_company .kv_sub .box::after {
  background: url("../img/sub/kv_join_company.png") no-repeat center / contain;
  aspect-ratio: 567 / 417;
  width: 284px;
  inset: auto 40px 0 auto;
}
.join_advisory .kv_sub .box::after {
  background: url("../img/sub/kv_join_advisory.png") no-repeat center / contain;
  aspect-ratio: 469 / 409;
  width: 235px;
  inset: auto 40px 0 auto;
}
.refer_advisory .kv_sub .box::after {
  background: url("../img/sub/kv_refer_advisory.png") no-repeat center / contain;
  aspect-ratio: 474 / 362;
  width: 239px;
  inset: auto 90px 0 auto;
}
.faq_company .kv_sub .box::after {
  background: url("../img/sub/kv_faq_company.png") no-repeat center / contain;
  aspect-ratio: 189 / 135;
  width: 120px;
  inset: 0 70px 0 auto;
  margin: auto;
}
.faq_advisory .kv_sub .box::after {
  background: url("../img/sub/kv_faq_advisory.png") no-repeat center / contain;
  aspect-ratio: 189 / 135;
  width: 120px;
  inset: 0 70px 0 auto;
  margin: auto;
}
.contact .kv_sub .box::after {
  background: url("../img/sub/kv_contact.png") no-repeat center / contain;
  aspect-ratio: 240 / 200;
  width: 90px;
  inset: 0 70px 0 auto;
  margin: auto;
}

.kv_sub h1 {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  color: #FFFFFF;
}
.h2_common {
  position: relative;
  z-index: 0;
  color: var(--color01);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  margin: 80px 0 20px;
  padding: 0 0 15px;
}
.h2_common::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(to right,  #9ccdec 0%,#1e9cd7 60%,#0075be 100%); 
  inset: auto 0 0;
  margin: auto;
}

.h2_common_g {color: var(--color02);}
.h2_common_g::after {background: linear-gradient(to right,  #9adac1 0%,#32c582 60%,#17ac72 100%);}
h2.bottom {
  position: relative;
  z-index: 0;
  color: var(--color01);
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  padding: 0 0 30px;
  margin: 0 auto 30px;
}
h2.bottom:after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 50px;
  height: 6px;
  transform: skewX(-30deg);
  background: linear-gradient(to right,  #9ccdec 0%,#1e9cd7 60%,#0075be 100%); 
  inset: auto 0 0;
  margin: auto;
}

.h3_common {
  color: var(--color03);
  font-weight: 500;
  font-size: 26px;
  margin: 30px 0 20px;
}



.h4_common {
  color: var(--color03);
  font-weight: 500;
  font-size: 22px;
  margin: 40px 0 20px;
}
.h4_common_g {color: var(--color04);}
.btn {
  width: 300px;
  height: 50px;
  line-height: 50px!important;
}
.btn a {
  display: block;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 15px;
  background: #f7931e;
  border-radius: 99px;
  text-decoration: none;
  transition: 0.5s;
}
.btn a:hover {opacity: 0.5;}
.btn a span {
  font-size: 0.75em;
  margin: 0 0 0 1em;
}
.btn_common {
  display: inline-block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  min-width: 380px;
}
.btn_common a {
  position: relative;
  z-index: 0;
  display: block;
  height: 100%;
  padding: 1.5em 3em 1.5em 2em;
  color: #FFFFFF;
  background: #0071bc;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
}
.btn_common a:hover {opacity: 0.5;}
.btn_common a::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 0.5em;
  height: 1em;
  inset: 0 1.5em 0 auto;
  margin: auto;
  background: url("../img/common/ico_arw.svg") no-repeat center / contain;
}
  
.btn_common_b a {
  color: #0071bc;
  background: #FFFFFF;
}
.btn_common_b a::after {background: url("../img/common/ico_arb.svg") no-repeat center / contain;}
.btn_common_g a {
  color: var(--color02);
  background: #FFFFFF;
}
.btn_common_g a::after {background: url("../img/common/ico_arg.svg") no-repeat center / contain;}

.ad_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px 3%;
}
.ad_list section {
  position: relative;
  isolation: isolate;
  width: 48.5%;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
.ad_list section::after {
  position: absolute;
  display: block;
  content: "";
  inset: 0;
  z-index: -1; 
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%
  );
  background: #ffffff;
}
.ad_list section h2,
.ad_list section h3 {
  position: relative;
  z-index: 0;
  color: var(--color01);
  font-size: 20px;
  font-weight: 700;
  padding: 30px 20px 15px 140px;
}
.ad_list section h2::before,
.ad_list section h3::before ,
.ad_list section h2::after,
.ad_list section h3::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
}
.ad_list section h2::before,
.ad_list section h3::before {
  inset: auto auto 0 50px;
  aspect-ratio: 119 / 150;
  width: 2.25em;
  background: url("../img/sub/ico_male.svg") no-repeat center / contain;
}
.ad_list section h2.female::before,
.ad_list section h3.female::before {
  background: url("../img/sub/ico_female.svg") no-repeat center / contain;
}
.ad_list section h2::after,
.ad_list section h3::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,  #9ccdec 0%,#1e9cd7 60%,#0075be 100%); 
  inset: auto 0 0;
}
.ad_list section dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 20px 40px;
  text-align: left;
}
.ad_list section dl dt {
  width: 90px;
  color: var(--color01);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 15px;
}
.ad_list section dl dd {
  width: calc(100% - 90px);
  padding: 0 0 0 15px;
  border-left: solid 1px #CCCCCC;
  margin: 0 0 15px;
}
.ad_list section dl dd span {
  display: inline-block;
  background: #d9eaf5;
  padding: 0 0.75em;
  margin: 0 5px 5px 0;
}

.contact_box {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  padding: 50px;
  margin: 35px auto 0;
}
.contact_box::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,  #cce0f4 0%,#1e9cd7 100%); 
  opacity: 0.1;
}
.contact_box dt {
  position: relative;
  z-index: 1;
  width: 30%;
  font-weight: 500;
}
.contact_box dd {
  position: relative;
  z-index: 1;
  width: 70%;
  padding: 0 0 0 10%;
}
.contact_box dd::before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 1px;
  height: calc(100% + 40px);
  background: var(--color01);
  opacity: 0.3;
  inset: -100% auto -100% 0;
  margin: auto;
}
.contact_box dd span {display: inline-block;}

/* -----------------------------------------------------------
 home
----------------------------------------------------------- */

.home_kv {
  height: min(830px,50vw);
  margin: 0 0 140px;
}
.home_kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_subject .bg_area {
  position: relative;
  z-index: 0;
  padding: 70px 0 100px;
  background: linear-gradient(to right,  #f6f6f6 0%,#d4d4d4 100%);
}
.home_subject .bg_area::after {
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: 64px;
  height: 75px;
  background: url("../img/home/ar_subject.svg") no-repeat center / contain;
  inset: auto 0 -38px;
  margin: auto;
}
.home_subject .bg_area h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto 60px;
}
.home_subject .bg_area ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.home_subject .bg_area ul li {
  padding: 50px 10px 20%;
  background: #FFFFFF;
  width: 32%;
  text-align: center;
  font-size: min(20px,1.8vw);
  font-weight: 700;
  line-height: 2;
}
.home_subject .bg_area ul li:nth-child(1) {background: url("../img/home/subject01.svg") no-repeat bottom center/ 75% ,#FFFFFF;}
.home_subject .bg_area ul li:nth-child(2) {background: url("../img/home/subject02.svg") no-repeat bottom center/ 64% ,#FFFFFF;}
.home_subject .bg_area ul li:nth-child(3) {background: url("../img/home/subject03.svg") no-repeat bottom center/ 71% ,#FFFFFF;}
.home_subject > .box {
  text-align: center;
  padding: 80px 50px;
}
.home_subject > .box p {
  font-size: 22px;
  font-weight: 500;
  line-height: 2.6;
}
.home_subject > .box p span {color: var(--color01);}

.home_contents > div {
  position: relative;
  z-index: 0;
  padding: 220px 0;
}
.home_contents > div::before ,
.home_contents > div::after ,
.home_contents > section::before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
}
.home_contents > div::before {
  aspect-ratio: 4527 / 1254;
  width: auto;
  height: 100%;
  inset: 0 -200%;
  margin: auto;
  background: url("../img/home/bg_contents01.png") no-repeat center / contain;
}
.home_contents > div .box {
  position: relative;
  z-index: 1;
}  
.home_contents > div h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 20px;
}
.home_contents > div p {
  font-size: 50px;
  font-weight: 600;
  font-family: var(--zen);
  line-height: 1.6;
}
.home_contents > div p span {
  display: inline-block;
  color: #FFFFFF;
  background: linear-gradient(to right,  #9ccdec 0%,#1e9cd7 60%,#0075be 100%); 
  line-height: 1.25;
}
.home_contents > section {
  position: relative;
  z-index: 0;
  padding: 100px 0 0 50%;
}
.home_contents > section::before {
  width: 100%;
  height: 100%;
  inset: 0 -200%;
  margin: 0 auto;
  background: url("../img/home/bg_contents03.png") no-repeat center / cover;
}
.home_contents > section h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
.home_contents > section ol li {
  position: relative;
  z-index: 0;
  padding: 20px 20px 20px 90px;
  line-height: 2.2;
  font-size: 18px;
  font-weight: 500;
  border-bottom: solid 1px #CCCCCC;
}
.home_contents > section ol li span {
  font-size: 22px;
  color: var(--color01);
}
.home_contents > section ol li::before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 24px;
  height: 32px;
  margin: auto;
  inset: 0 auto 0 35px;
}
.home_contents > section ol li:nth-child(1)::before {background: url("../img/home/ico01.svg") no-repeat center / contain;}
.home_contents > section ol li:nth-child(2)::before {background: url("../img/home/ico02.svg") no-repeat center / contain;}
.home_contents > section ol li:nth-child(3)::before {background: url("../img/home/ico03.svg") no-repeat center / contain;}

.home_merit {
  position: relative;
  z-index: 0;
  padding: 170px 0 160px;
}
.home_merit::before ,
.home_merit::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
}
.home_merit::before {
  aspect-ratio: 2388 / 1057;
  width: auto;
  height: 56.5%;
  inset: 0 auto auto -200px;
  background: url("../img/home/bg_merit01.png") no-repeat center / contain;
}
.home_merit::after {
  aspect-ratio: 2083 / 947;
  width: auto;
  height: 50%;
  inset: auto -200px 0 auto;
  background: url("../img/home/bg_merit02.png") no-repeat center / contain;
}
.home_merit .box {
  position: relative;
  z-index: 1;
  max-width: 1400px;
}
.home_merit .box > div {
  background: #FFFFFF;
  padding: 40px 20px;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.2); 
}
.home_merit .box > div ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.home_merit .box > div ul li {
  width: calc(100% / 3);
  padding: 30px 20px;
  border-right: solid 1px #CCCCCC;
  text-align: center;
  line-height: 2;
  font-size: min(16px,1.4vw);
}
.home_merit .box > div ul li:nth-last-child(1) {border: none;}
.home_merit .box > div ul li figure {
  width: 50%;
  aspect-ratio: 205 / 142;
  margin: 0 auto 40px;
}
.home_merit .box > div ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home_merit .box > div ul li p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(20px,1.8vw);
  font-weight: 500;
  line-height: 1.75;
  min-height: 3.5em;
  margin: 0 auto 20px;
}
.home_outline {padding: 0 0 150px;}
.home_outline .h2_area {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 340px;
  background: url("../img/home/bg_outline.jpg") no-repeat right / auto 100%;
  margin: 0 0 60px;
}
.home_outline .h2_area h2 {
  width: 100%;
  max-width: 1200px;
  padding: 0 50px;
  font-size: 48px;
  font-weight: 500;
  color: var(--color01);
  text-align: left;
}
.home_outline section h3 {
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 20px;
}
.home_outline section p {line-height: 2;}
.home_outline section > section {
  display: flex;
  align-items: center;
  background: #f0f8fc;
  margin: 130px 0 0;
  padding: 50px;
}
.home_outline section > section div {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.home_outline section > section div h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}
.home_outline section > section div figure {
  position: absolute;
  z-index: 1;
  width: 36%;
  inset: auto 0 -20px auto;
}
.home_outline section > section div .btn {margin: 20px 0 0;}

.home_bnr {
  color: #FFFFFF;
  text-align: center;
  padding: 140px 0 90px;
  background: url("../img/home/bg_bnr.jpg") no-repeat bottom center / cover;
}
.home_bnr h2 {
  line-height: 2;
  font-size: 30px;
  margin: 0 auto 30px;
}
.home_bnr ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
}  
.home_bnr ul li {
  width: 50%;
  font-size: min(17px,1.5vw);
  font-weight: 500;
  padding: 0 20px;
}
.home_bnr ul li figure {
  width: 30%;
  max-width: 245px;
  aspect-ratio: 245 / 280;
  margin: 0 auto 30px;
}
.home_bnr ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home_bnr ul li p {
  font-size: min(27px,2.4vw);
  font-weight: 700;
  margin: 0 auto 20px;
}
.home_bnr ul li .btn_common {
  display: block;
  font-size: min(20px,1.8vw);
  min-width: auto;
  max-width: 385px;
  margin: 30px auto 0;
}
.home_advisor {padding: 200px 0 150px;}
.home_advisor h2 + p {
  text-align: center;
  margin: 0 auto 60px;
}
.home_advisor .ad_list {
  display: block;
  padding: 20px 0;
  width: 580px;
}
.home_advisor .slick-list {overflow: visible;}
.home_advisor .slick-slide {
 height: inherit !important;
  margin: 0 30px 0 0;
}
.home_advisor .slick-track{display: flex !important;}
.home_advisor .slick-slide > div{height: 100%;}
.home_advisor .indicate {
  position: relative;
  width: 100%;
  height: 8px;
  margin: 20px 0 0;
  overflow: hidden;
}
.home_advisor .indicate::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 100%;
  height: 8px;
  margin: auto;
  inset: 0;
  background: #e6e6e6;
  border-radius: 4px;
}
.home_advisor .indicate span {
  position: relative;
  z-index: 1;
  display: block;
  height: 8px;
  background: #999999;
  border-radius: 4px;
  transition: left 0.3s ease;
}
.home_advisor .btn_common {
  display: block;
  width: 380px;
  margin: 80px auto 0;
} 
.home_contact {padding: 0 50px 30px;}
.home_contact + .home_contact {padding: 0 50px 80px;}
.home_contact > div {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 70px;
  clip-path: polygon(0 0,100% 0,100% calc(100% - 20px),calc(100% - 20px) 100%,0 100%);
  background: url("../img/home/bg_contact01.jpg") no-repeat center / cover;
}
.home_contact + .home_contact > div {
  background: url("../img/home/bg_contact02.jpg") no-repeat center / cover;
}
.home_contact > div::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #0071bc;
  opacity: 0.8;
} 
.home_contact > div div {
  position: relative;
  z-index: 1;
}
.home_contact > div div:nth-of-type(1) {
  width: calc(100% - 410px);
  padding: 0 0 0 100px;
  color: #FFFFFF;
}
.home_contact > div div:nth-of-type(1) > img {
  position: absolute;
  width: 70px;
  inset: 0 auto auto 0;
}
.home_contact + .home_contact > div div:nth-of-type(1) > img {
  width: 60px;
  inset: 0 auto auto 10px;
}
.home_contact > div div:nth-of-type(1) h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 10px;
}
.home_contact > div div:nth-of-type(1) p {font-size: 20px;}


.home_contact > div div:nth-of-type(2) {width: 380px;}
.home_contact > div div:nth-of-type(2) .btn_common:nth-of-type(2) {margin: 20px 0 0;}

.home_news {padding: 90px 0 100px;}
.home_news .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.home_news .box .bottom {
  width: 200px;
  text-align: left;
  margin: 0;
}
.home_news .box .bottom::after {inset: auto auto 0 0;}
.home_news .box ul {
  width: calc(100% - 240px);
  padding: 0.5em 0 0;
}
.home_news .box ul li {
  padding: 0 1.5em 0.75em;
  margin: 0 0 0.75em;
  border-bottom: solid 1px #CCCCCC;
}
.home_news .box ul li span {
  display: inline-block;
  width: 140px;
}
.home_news .box ul li p {
  display: inline-block;
  width: calc(100% - 140px);
}

/* -----------------------------------------------------------
 join
----------------------------------------------------------- */

.anc_list {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
.anc_list::after {
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 0;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(to right,  #9ccdec 0%,#1e9cd7 60%,#0075be 100%);
}
.anc_list > li {
  position: relative;
  z-index: 0;
  width: 25%;
}
.anc_list > li::after {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(to right,  #9ccdec 0%,#1e9cd7 60%,#0075be 100%); 
}
.anc_list_g::after {background: linear-gradient(to right,  #9adac1 0%,#32c582 60%,#17ac72 100%);}
.anc_list_g > li::after {background: linear-gradient(to right,  #9adac1 0%,#32c582 60%,#17ac72 100%);}
.anc_list > li a {
  display: block;
  height: 100%;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  padding: 1.5em 1em 2em;
  text-decoration: none;
}
.anc_list > li:nth-last-child(1) a {
  padding: 0.75em 1em 3em;
}
.anc_list > li a::after {
  position: absolute;
  z-index: 0;
  inset: auto 0 1.5em;
  margin: auto;
  display: block;
  content: "";
  width: 1.2em;
  height: 0.6em;
  background: url("../img/common/ico_ab.svg") no-repeat center / contain;
}
.anc_list_g > li a::after {background: url("../img/common/ico_abg.svg") no-repeat center / contain;}
.flex,
.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flex > section {
  width: 48%;
}
.flex > section h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 500;
  padding: 1.5em;
  height: 175px;
  background: url("../img/sub/h3_project.jpg") no-repeat center / cover;
  margin: 60px 0 20px;
}
.flex > section:nth-of-type(2) h3 {background: url("../img/sub/h3_dx.jpg") no-repeat center / cover;}
.flex > section h3 + p {min-height: 7.5em;}
.table_join {
  table-layout: fixed;
  margin: 30px 0;
  border-top: solid 1px #e9eef5;
}
.join_company .table_join_g {margin-bottom: 170px;}
.table_join tr {border-bottom: solid 1px #e9eef5;}
.table_join th {
  width: 170px;
  background: #f1f7ff;
  color: var(--color03);
  padding: 20px;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  vertical-align: top;
}
.table_join_g th {
  background: #f7fcfa;
  color: var(--color04);
}
.table_join td {
  padding: 20px;
  font-size: 14px;
}
ul.mark li {
  position: relative;
  z-index: 0;
  padding: 0 0 0 1.5em;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 5px;
}
ul.mark li::before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color03);
  inset: 0.7em auto auto 0.25em;
}
ol.num_list {margin: 40px 0 0;}
ol.num_list > li {
  position: relative;
  z-index: 0;
  padding: 0 0 0 3em;
}
ol.num_list > li > span {
  position: absolute;
  z-index: 0;
  inset: 0 auto auto 0;
}
ol.num_list > li ul li {
  position: relative;
  z-index: 0;
  padding: 0 0 0 2.5em;
}
ol.num_list > li > ul li span {
  position: absolute;
  z-index: 0;
  inset: 0 auto auto 0;
}

ol.step li {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 50px 0 0;
}
ol.step li p {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 85px;
  color: #FFFFFF;
  font-family: var(--oswald);
  background: var(--color01);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
ol.step li p span {
  display: block;
  font-size: 40px;
}
ol.step li p::before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 6px;
  height: 50px;
  background: var(--color01);
  inset: auto 0 100%;
  margin: auto;
}
ol.step li:nth-child(1) p::before {display: none;}
ol.step li dl {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100% - 85px);
  padding: 30px 50px 30px 150px;
  background: #f1f4fb;
  line-height: 1.5;
  min-height: 150px;
}
ol.step li dl dt {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
}
ol.step li dl::before {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 80px;
  height: 80px;
  inset: 0 auto 0 35px;
  margin: auto;
}
ol.step li:nth-child(1) dl::before {background: url("../img/sub/step101.svg") no-repeat center / contain;}
ol.step li:nth-child(2) dl::before {background: url("../img/sub/step102.svg") no-repeat center / contain;}
ol.step li:nth-child(3) dl::before {background: url("../img/sub/step103.svg") no-repeat center / contain;}
ol.step li:nth-child(4) dl::before {background: url("../img/sub/step104.svg") no-repeat center / contain;}
ol.step li:nth-child(5) dl::before {background: url("../img/sub/step105.svg") no-repeat center / contain;}
ol.step li:nth-child(6) dl::before {background: url("../img/sub/step106.svg") no-repeat center / contain;}
ol.step li:nth-child(7) dl::before {background: url("../img/sub/step107.svg") no-repeat center / contain;}

ol.step_g li p {background: #16ab70;}
ol.step_g li p::before {background: #16ab70;}
ol.step_g li dl {background: #f4f9f4;}
ol.step_g li:nth-child(1) dl::before {background: url("../img/sub/step201.svg") no-repeat center / contain;}
ol.step_g li:nth-child(2) dl::before {background: url("../img/sub/step202.svg") no-repeat center / contain;}
ol.step_g li:nth-child(3) dl::before {background: url("../img/sub/step203.svg") no-repeat center / contain;}
ol.step_g li:nth-child(4) dl::before {background: url("../img/sub/step204.svg") no-repeat center / contain;}
ol.step_g li:nth-child(5) dl::before {background: url("../img/sub/step205.svg") no-repeat center / contain;}
ol.step_g li:nth-child(6) dl::before {background: url("../img/sub/step206.svg") no-repeat center / contain;}
ol.step_g li:nth-child(7) dl::before {background: url("../img/sub/step207.svg") no-repeat center / contain;}
ol.step_g li:nth-child(8) dl::before {background: url("../img/sub/step208.svg") no-repeat center / contain;}
ol.step_g li:nth-child(9) dl::before {background: url("../img/sub/step209.svg") no-repeat center / contain;}
ol.step_g li:nth-child(10) dl::before {background: url("../img/sub/step210.svg") no-repeat center / contain;}
ol.step_g li:nth-child(11) dl::before {background: url("../img/sub/step211.svg") no-repeat center / contain;}

.dl_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #f7f5f4;
  margin: 50px 0 0;
}
.dl_box dt {
  width: 240px;
  padding: 50px 0 30px 30px;
  line-height: 1.5;
  font-size: 20px;
  font-weight: 500;
}
.dl_box dd {
  width: calc(100% - 240px);
  max-width: 660px;
  padding: 20px 30px;
  line-height: 1.5;
  font-size: 15px;
}
.dl_box dd ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.dl_box dd ul li {
  width: 48%;
  margin: 5px 0;
  height: 90px;
}
.dl_box dd ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  font-size: 15px;
  background: #FFFFFF;
  padding: 0 20px;
  text-decoration: none;
  transition: 0.5s;
}
.dl_box dd ul li a:hover {opacity: 0.5;}
.dl_box dd ul li a[href$=".pdf"] {
  border: solid 1px #e42a27;
  border-left: solid 7px #e42a27;
}
.dl_box dd ul li a[href$=".xlsx"] {
  border: solid 1px #3d9543;
  border-left: solid 7px #3d9543;
}
.dl_box dd ul li a[href$=".docx"] {
  border: solid 1px #1b5ee3;
  border-left: solid 7px #1b5ee3;
}

.dl_box dd ul li a::before {
  display: block;
  content: "";
  width: 20px;
  height: 27px;
  margin: 0 1em 0 0;
}
.dl_box dd ul li a[href$=".pdf"]::before {background: url("../img/common/ico_pdf.svg") no-repeat center / contain;}
.dl_box dd ul li a[href$=".xlsx"]:before {background: url("../img/common/ico_excel.svg") no-repeat center / contain;}
.dl_box dd ul li a[href$=".docx"]::before {background: url("../img/common/ico_word.svg") no-repeat center / contain;}


/* -----------------------------------------------------------
 faq
----------------------------------------------------------- */

dl.faq {
  position: relative;
  z-index: 0;
}
dl.faq::before ,
dl.faq::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(to right,  #9ccdec 0%,#1e9cd7 60%,#0075be 100%); 
  inset: 0 0 auto;
  margin: auto;
}
dl.faq::after {display: none;}
dl.faq:nth-last-of-type(1)::after {display: block;inset: auto 0 0;}
dl.faq dt {
  position: relative;
  z-index: 0;
  font-size: 18px;
  font-weight: 500;
  padding: 35px 75px 35px 55px;
  line-height: 1.5;
  cursor: pointer;
}
dl.faq dt::before ,
dl.faq dt::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  background: #949494;
  margin: auto;
}
dl.faq dt::before {
  width: 24px;
  height: 2px;
  inset: 0 15px 0 auto;
}
dl.faq dt::after {
  width: 2px;
  height: 24px;
  inset: 0 26px 0 auto;
}
dl.faq dt.open::after {display: none;}
dl.faq dt span {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #FFFFFF;
  font-family: var(--oswald);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.05em;
  background: linear-gradient(to right,  #9ccdec 0%,#1e9cd7 60%,#0075be 100%); 
  inset: 30px auto auto 0;
}
dl.faq dd {
  display: none;
  position: relative;
  z-index: 0;
  padding: 35px 0 35px 55px;
  line-height: 2.2;
  border-top: solid 1px #e9eef5;
}
dl.faq dd span {
  position: absolute;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 40px;
  text-align: center;
  color: var(--color01);
  font-family: var(--oswald);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.05em;
  background: #FFFFFF;
  inset: 31px auto auto 1px;
}
dl.faq dd span::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background: linear-gradient(to right,  #9ccdec 0%,#1e9cd7 60%,#0075be 100%); 
  inset: -1px auto auto -1px;
  margin: auto;
}

.faq_advisory dl.faq::before ,
.faq_advisory dl.faq::after {background: linear-gradient(to right,  #9adac1 0%,#32c582 60%,#17ac72 100%);}
.faq_advisory dl.faq dt span {background: linear-gradient(to right, #9adac1 0%,#32c582 60%,#17ac72 100%);}
.faq_advisory dl.faq dd span {color: var(--color02);}
.faq_advisory dl.faq dd span::after {background: linear-gradient(to right,  #9adac1 0%,#32c582 60%,#17ac72 100%);}

/* -----------------------------------------------------------
 static
----------------------------------------------------------- */

.contact .h2_common + p {margin: 0 0 50px;}

.privacy .box p {margin: 0 0 20px;}
.privacy .box ul {
  margin: 0 0 20px 1.5em;
  list-style-type: disc;
}
.privacy .box ol {
  margin: 0 0 20px 1.5em;
  list-style-type: decimal;
}

.privacy .box p a {
  color: var(--color01);
  text-decoration: underline;
}







