@charset "UTF-8";
/* CSS Document */
/*------------------------------
media query
------------------------------*/
/*------------------------------
変数の定義
--------------------------------*/
.sp_none {
  display: block;
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

.pc_none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 500ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*main
--------------------------------*/
#main {
  margin-top: 63px;
}
@media screen and (max-width: 768px) {
  #main {
    margin-top: 0;
  }
}

/* 文字大きさ・色
--------------------------------*/
.t_red {
  color: #da0004;
}

.t_deep_blue {
  color: #003282;
}

.t_black {
  color: #101019;
}

.t_blue {
  color: #35beff;
}

.x120 {
  font-size: 100%;
}

.x120 {
  font-size: 120%;
}

.x150 {
  font-size: 150%;
}

.bg_white {
  background-color: #fff;
  margin: 0 4px;
}

.blue_maker {
  background: linear-gradient(transparent 50%, #f0f7fa 50%);
}

/*btn
--------------------------------*/
.btn {
  background-color: #da0004;
  color: #fff;
  position: relative;
  width: 500px;
  display: inline-block;
  font-size: 24px;
  text-align: center;
  padding: 22px 0;
  border-radius: 50px;
  border-bottom: 7px solid #a80003;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 80%;
    max-width: 500px;
    font-size: 18px;
    padding: 17px 0;
  }
  .btn span {
    margin-bottom: 3px;
    font-size: small;
    display: block;
  }
}
.btn:hover {
  margin-top: 5px;
  border-bottom: 2px solid #a80003;
}
.btn::after {
  content: "";
  background-image: url(../images/index/arrow.png);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .btn::after {
    width: 18px;
    height: 18px;
    right: 20px;
  }
}

.cta {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.77);
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  padding: 1.2rem 0;
  display: none;
  transition: 0.3s;
}

.cta_wrap {
  text-align: center;
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/*KV
--------------------------------*/
.kv {
  width: 100%;
  height: 370px;
  background-image: url(../images/index/pc_kv_bg.jpg);
  position: relative;
}
@media screen and (max-width: 999px) {
  .kv {
    height: 38vw;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    margin-bottom: 34px;
    height: auto;
  }
}
.kv .btn_wrapper {
  position: absolute;
  bottom: -55px;
  left: 0;
  right: 0;
  text-align: center;
}

.kv_inner {
  margin: auto;
  padding-top: 20px;
  width: 95%;
  max-width: 1000px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .kv_inner {
    padding-top: 3%;
  }
}
@media screen and (max-width: 768px) {
  .kv_inner {
    display: none;
  }
}
.kv_inner .kv_illust {
  margin-right: 3%;
  width: 25.2%;
}
.kv_inner .kv_catch {
  width: 62.5%;
}

/* こんなお悩みありませんか
--------------------------------*/
.onayami {
  width: 100%;
  background-image: url(../images/index/pc_onayami_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 50px;
}
@media screen and (max-width: 768px) {
  .onayami {
    background-image: url(../images/index/sp_onayami_bg.jpg);
    padding: 30px 0 15%;
    background-position: top;
  }
}
.onayami .onayami_inner {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .onayami .onayami_inner {
    width: 100%;
  }
}
.onayami .onayami_inner .title_wrapper {
  text-align: center;
}
.onayami .onayami_inner h2 {
  font-size: 30px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .onayami .onayami_inner h2 {
    font-size: 20px;
  }
}
.onayami .onayami_inner .question {
  display: inline-block;
  transform: rotate(15deg);
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .onayami .onayami_inner .question {
    font-size: 24px;
  }
}
.onayami .onayami_list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .onayami .onayami_list {
    display: block;
  }
}
.onayami .onayami_list li:first-of-type {
  width: 100%;
}
.onayami .onayami_list li:first-of-type .img_wrapper {
  width: 50%;
  margin: auto;
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .onayami .onayami_list li:first-of-type .img_wrapper {
    width: 80%;
  }
}
.onayami .onayami_list li:nth-of-type(2) {
  width: 47.5%;
}
.onayami .onayami_list li:nth-of-type(2) .img_wrapper {
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .onayami .onayami_list li:nth-of-type(2) .img_wrapper {
    margin: auto 0 auto auto;
  }
}
@media screen and (max-width: 768px) {
  .onayami .onayami_list li:nth-of-type(2) {
    width: 85%;
    margin: 10px 5% auto auto;
  }
}
.onayami .onayami_list li:nth-of-type(3) {
  width: 47.5%;
}
.onayami .onayami_list li:nth-of-type(3) .img_wrapper {
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .onayami .onayami_list li:nth-of-type(3) {
    width: 85%;
    margin: 10px auto auto 5%;
  }
}

/* そこでオススメなのがあさがくナビ
--------------------------------*/
@media screen and (max-width: 768px) {
  .sp_osusume_bg_wrapper {
    margin-top: -8%;
  }
}
.osusume {
  background-color: #da0004;
  position: relative;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .osusume {
    margin-top: -1px;
    padding: 20px 0 30px;
  }
}
.osusume::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 60px 0 60px;
  border-color: #e5e9eb transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .osusume::before {
    display: none;
  }
}

.osusume_inner {
  width: 90%;
  max-width: 700px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .osusume_inner {
    width: 100%;
    max-width: none;
  }
}
.osusume_inner .catch .catch_inner {
  text-align: center;
}
.osusume_inner .catch p {
  color: #fff;
  font-size: 30px;
  display: inline-block;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .osusume_inner .catch p {
    font-size: 20px;
  }
}
.osusume_inner .catch p::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 30px;
  transform: rotate(-30deg);
  background-color: #fff;
  left: -15px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .osusume_inner .catch p::before {
    height: 20px;
  }
}
.osusume_inner .catch p::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 30px;
  transform: rotate(30deg);
  background-color: #fff;
  right: -15px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .osusume_inner .catch p::after {
    height: 20px;
  }
}
.osusume_inner .logo_wrapper {
  max-width: 600px;
  width: 90%;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .osusume_inner .logo_wrapper {
    width: 100%;
    background-color: #fff;
    max-width: none;
    text-align: center;
  }
  .osusume_inner .logo_wrapper img {
    width: 70%;
    margin: auto;
  }
}
.osusume_inner .txt {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .osusume_inner .txt {
    width: 90%;
    margin: 20px auto 0;
  }
}
.osusume_inner .txt p {
  margin-top: -80px;
  text-align: center;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .osusume_inner .txt p {
    font-size: 15px;
    margin-top: -10%;
  }
}
@media screen and (max-width: 449px) {
  .osusume_inner .txt p {
    margin-top: -5%;
  }
}

/* 3つの理由
--------------------------------*/
.three_reason {
  background-color: #f5f7f8;
  width: 100%;
  padding: 40px 0 60px;
}
.three_reason .three_reason_inner {
  width: 95%;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .three_reason .three_reason_inner {
    width: 100%;
  }
}
.three_reason .three_reason_inner .three_reason_title p {
  font-size: 26px;
  display: inline-block;
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .three_reason .three_reason_inner .three_reason_title p {
    font-size: 18px;
  }
}
.three_reason .three_reason_inner .three_reason_title .img_wrapper {
  width: 170px;
  height: auto;
  margin: 20px auto 0;
  position: relative;
}
.three_reason .three_reason_inner .three_reason_title .img_wrapper::after {
  position: absolute;
  content: "";
  background-image: url(../images/index/pc_3reason_asirai.png);
  width: 23px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  right: -30px;
}
.three_reason ul {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  .three_reason ul {
    display: block;
  }
}
.three_reason ul li {
  width: 31%;
  background-color: #fff;
  padding-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .three_reason ul li {
    width: 50%;
    margin: 0 auto 30px;
  }
  .three_reason ul li:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .three_reason ul li {
    width: 80%;
  }
}
@media screen and (max-width: 449px) {
  .three_reason ul li {
    width: 100%;
    margin: 0 auto 0;
  }
}
.three_reason ul li .reason_catch {
  background-color: #35beff;
  padding: 2px 12px 6px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .three_reason ul li .reason_catch {
    padding: 2px 10% 6px;
  }
}
@media screen and (max-width: 449px) {
  .three_reason ul li .reason_catch {
    padding: 2px 5% 6px;
  }
}
.three_reason ul li .reason_catch p {
  text-align: left;
  align-items: center;
  color: #fff;
}
.three_reason ul li .reason_catch .number {
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.three_reason ul li .reason_catch .txt {
  margin-left: 8px;
  font-size: 18px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 999px) {
  .three_reason ul li .reason_catch .txt {
    margin-left: 15px;
  }
}
.three_reason ul li .img_wrapper {
  width: 225px;
  height: auto;
  margin: 20px auto 0;
}
.three_reason ul li .explanation {
  text-align: left;
  margin-top: 20px;
  font-size: 15px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .three_reason ul li .explanation {
    padding: 0 10%;
  }
}

/* さらに、あさがくナビは
--------------------------------*/
.orikon {
  background-color: #35beff;
  width: 100%;
  position: relative;
  padding: 40px 0 80px;
}
@media screen and (max-width: 768px) {
  .orikon {
    padding: 40px 0 60px;
  }
}
.orikon::after {
  content: "";
  background-image: url(../images/index/pc_orikon_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 50%;
  bottom: 40px;
  z-index: 1;
}

.orikon_inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .orikon_inner {
    width: 80%;
  }
}
.orikon_inner .catch_txt {
  width: 450px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .orikon_inner .catch_txt {
    width: 100%;
    max-width: 300px;
  }
}
.orikon_inner .orikon_content_wrapper {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 40px 40px;
  margin-top: 20px;
  box-shadow: 0px 7px 0px 0px rgb(48, 174, 234);
}
@media screen and (max-width: 768px) {
  .orikon_inner .orikon_content_wrapper {
    padding: 20px 0 30px;
    margin-top: 20px;
  }
}
.orikon_inner .orikon_content_wrapper .crown {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .orikon_inner .orikon_content_wrapper .crown {
    width: 90%;
    margin: auto;
  }
}
.orikon_inner .orikon_content_wrapper .flex {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .orikon_inner .orikon_content_wrapper .flex {
    display: block;
    width: 90%;
    margin: 30px auto 0;
  }
}
.orikon_inner .orikon_content_wrapper .flex .left {
  width: 48%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .orikon_inner .orikon_content_wrapper .flex .left {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 449px) {
  .orikon_inner .orikon_content_wrapper .flex .left .orikon_badge {
    width: 50%;
  }
}
.orikon_inner .orikon_content_wrapper .flex .left .txt {
  margin-right: 15px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .orikon_inner .orikon_content_wrapper .flex .left .txt {
    margin-left: 5%;
  }
}
.orikon_inner .orikon_content_wrapper .flex .left .txt p {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  .orikon_inner .orikon_content_wrapper .flex .left .txt p {
    font-size: 20px;
  }
}
@media screen and (max-width: 449px) {
  .orikon_inner .orikon_content_wrapper .flex .left .txt p {
    font-size: 5.33vw;
  }
}
.orikon_inner .orikon_content_wrapper .flex .left .txt strong {
  font-size: 48px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .orikon_inner .orikon_content_wrapper .flex .left .txt strong {
    font-size: 40px;
  }
}
@media screen and (max-width: 449px) {
  .orikon_inner .orikon_content_wrapper .flex .left .txt strong {
    font-size: 10.67vw;
  }
}
.orikon_inner .orikon_content_wrapper .flex .right {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .orikon_inner .orikon_content_wrapper .flex .right {
    width: 100%;
  }
}
.orikon_inner .orikon_content_wrapper .flex .right p {
  font-size: 15px;
}

/* 使える機能がたくさん！
--------------------------------*/
.function {
  width: 100%;
}

.function_inner {
  width: 90%;
  max-width: 700px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .function_inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
}
.function_inner .function_title {
  width: 500px;
  margin: -1px auto auto;
}
@media screen and (max-width: 768px) {
  .function_inner .function_title {
    width: 100%;
  }
}
.function_inner ul {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .function_inner ul {
    width: 80%;
    margin: 20px auto;
  }
}
.function_inner ul li {
  width: 30%;
  text-align: center;
}
.function_inner ul li h3 {
  background-color: #da0004;
  color: #fff;
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .function_inner ul li h3 {
    font-size: 15px;
  }
}
.function_inner ul li img {
  width: 90%;
  margin: 25px auto 0;
}
.function_inner .txt_wrapper {
  margin-top: 20px;
  background-color: #f5f7f8;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .function_inner .txt_wrapper {
    padding: 20px 0;
  }
}
.function_inner .txt_wrapper .txt {
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .function_inner .txt_wrapper .txt {
    width: 80%;
    margin: auto;
    text-align: left;
  }
}

/*あさがくナビで優良企業が見つかる！
--------------------------------*/
.slider {
  margin-top: 60px;
  background-color: #da0004;
  padding-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .slider {
    margin-top: 0;
  }
}
.slider .slider_title {
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .slider .slider_title {
    padding: 30px 0 20px;
  }
}
.slider .slider_title p {
  color: #fff;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .slider .slider_title p {
    font-size: 16px;
  }
}
.slider .note_wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  .slider .note_wrapper {
    margin: 20px auto 0;
  }
}
.slider .note_wrapper .note {
  color: #fff;
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .slider .note_wrapper .note {
    font-size: 12px;
  }
}

/*先輩の声
--------------------------------*/
.voice {
  width: 100%;
  background-color: #da0004;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .voice {
    padding-bottom: 40px;
  }
}
.voice .voice_title {
  padding: 30px 0 20px;
  background-color: #e5e9eb;
}
@media screen and (max-width: 768px) {
  .voice .voice_title {
    padding: 20px 0 20px;
  }
}
.voice .voice_title h2 {
  width: 260px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .voice .voice_title h2 {
    width: 170px;
  }
}
.voice .voice_inner {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner {
    padding-top: 40px;
  }
}
.voice .voice_inner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 60px 0 60px;
  border-color: #e5e9eb transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 30px 0 30px;
    border-color: #e5e9eb transparent transparent transparent;
  }
}
.voice .voice_inner ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  .voice .voice_inner ul {
    display: block;
  }
}
.voice .voice_inner ul li {
  background-color: #fff;
  width: 30%;
  padding: 30px 0 0;
  border-radius: 10px;
  box-shadow: 0px 7px 0px 0px rgb(198, 0, 4);
  position: relative;
}
@media screen and (max-width: 999px) {
  .voice .voice_inner ul li {
    width: 60%;
    margin: 0 auto 50px;
  }
  .voice .voice_inner ul li:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .voice .voice_inner ul li {
    width: 100%;
  }
}
.voice .voice_inner ul li::before {
  position: absolute;
  top: -15px;
  left: 20px;
  content: "";
  background-image: url(../images/index/pc_voice_mark.png);
  width: 40px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
}
.voice .voice_inner ul li .list_inner {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner ul li .title_wrapper {
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 20px;
  }
}
.voice .voice_inner ul li .img_wrapper {
  width: 90px;
  height: auto;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .voice .voice_inner ul li .img_wrapper {
    width: 90px;
    margin: auto;
    padding-left: 10px;
  }
}
.voice .voice_inner ul li h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .voice .voice_inner ul li h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .voice .voice_inner ul li h3 {
    width: 70%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 449px) {
  .voice .voice_inner ul li h3 {
    font-size: 5.33vw;
  }
}
.voice .voice_inner ul li p {
  font-size: 15px;
  padding-bottom: 30px;
}
.voice .voice_inner ul li .bottom {
  position: absolute;
  bottom: -18px;
  right: 40px;
  width: 21px;
}

/* btn_area */
.btn_area {
  margin: 0 auto;
  width: 500px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .btn_area {
    width: 100%;
    text-align: center;
    margin: 10px auto 20px;
  }
}
.btn_area .btn_line {
  border: solid #da0004 3px;
  width: 345px;
  margin: -20px auto 0;
  text-align: center;
  padding: 15px 5PX;
  position: relative;
  bottom: -20px;
  z-index: 99;
  background: #fff;
  color: #da0004;
}
@media screen and (max-width: 768px) {
  .btn_area .btn_line {
    width: 65%;
    bottom: -15px;
    font-size: 13px;
    padding: 10px 5px;
  }
}

/* 追加　優良企業が見つかる */
.find_company {
  margin-top: 50px;
}
.find_company .find_tit {
  color: #fff;
  text-align: center;
}
.find_company ul {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: 30px auto;
}
@media screen and (max-width: 768px) {
  .find_company ul {
    display: block;
    width: 90%;
  }
}
.find_company ul li {
  background: #fff;
  border-radius: 5px;
  width: 30%;
  padding: 30px 0 30px;
}
@media screen and (max-width: 768px) {
  .find_company ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.find_company ul li .list_inner {
  padding: 0 20px;
}
.find_company ul li .img_wrapper {
  width: 100px;
  margin: 0 auto 20px;
}
.find_company ul li h3 {
  text-align: center;
  margin-bottom: 10px;
}
.find_company ul li p {
  font-size: 15px;
}/*# sourceMappingURL=layout.css.map */