@charset "UTF-8";

/*=======================================

  こちらにLPページの個別cssを記述してください。

  =======================================*/
/*******************************
layout
*******************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

button {
  border: none;
}

body,
#header {
  font-size: 16px;
  color: var(--color-base);
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
}

#main {
  position: relative;
}

#main .content {
  max-width: 100%;
}

#headContent {
  margin-bottom: 0;
}

/* 背景固定 */
html.fixed {
  overflow: hidden;
  height: 100%;
}

html.fixed #container {
  overflow: auto;
  scrollbar-gutter: stable;
}

/*color*/
:root {
  --color-primary: #88BB43;
  --color-secondary: #F09800;
  --color-bg: #F6FFED;
  --color-base: #030303;
}

/*font*/
@font-face {
  font-family: recop-iconfonts;
  src:
    url('/jobfind-pc/original/css/option/font/recop-iconfont.eot?') format('eot'),
    url('/jobfind-pc/original/css/option/font/recop-iconfont.woff') format('woff'),
    url('/jobfind-pc/original/css/option/font/recop-iconfont.ttf') format('truetype');
  font-display: swap;
}

img,
img[loading="lazy"] {
  width: 100%;
}


/*link*/
a:link,
a:active,
a:visited,
a:hover {
  color: var(--color-base);
}

/*button*/
.c-button {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 5px 30px;
  background-color: var(--color-secondary);
  color: #fff !important;
  text-decoration: none;
  border-radius: 999em;
  position: relative;
  transition: 0.3s;
}

.c-button:hover:hover {
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    background-color: #F8D89E;
  }
}

@media screen and (max-width: 767px) {
  .c-button {
    height: 60px;
    font-size: 20px;
    box-shadow: 0 3px 6px rgb(0, 0, 0, 0.2);
  }
}

.c-button::before {
  content: "\E841";
  font-family: recop-iconfonts;
  position: absolute;
  right: 20px;
}

/*section*/
.l-section_inner {
  max-width: 1230px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

/*pc sp*/
@media (max-width: 1280px) {
  .pc_1280 {
    display: none;
  }
}

/*******************************
header
*******************************/
.l-header {
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.l-header__inner {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 15px;
  padding-left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

@media (max-width:920px) {
  .l-header__inner {
    padding: 15px 20px;
    padding-left: 5px;
    grid-template-columns: 1fr auto;
  }
}

.l-header__logoWrap {
  width: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
}

@media (max-width:920px) {
  .l-header__logoWrap {
    gap: 10px;
  }
}

.l-header__logo {
  width: 224px;
}

@media (max-width:767px) {
  .l-header__logo {
    width: 180px;
  }
}

.l-header__logo img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s;
}

@media (hover: hover) and (pointer: fine){
  .l-header__logo a:hover img {
    opacity: 0.6;
  }
}

.l-header_h1 {
  padding-right: 10px;
}

.head-title {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
}

.head-title span{
  display: inline-block;
}

/* ------- gnav ------- */
.l-header__navWrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

@media (max-width:920px) {
  .l-header__navWrap {
    grid-template-columns: auto;
  }
}

.l-header__nav {
  width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width:921px) {
  .l-header__nav {
    display: block !important;
  }
}

@media (max-width:920px) {
  .l-header__nav {
    position: fixed;
    top: 86px;
    left: 0;
    width: 100%;
    height: calc(100vh - 66px);
    padding: 100px 0;
    background-color: var(--color-primary);
    display: none;
    overflow-y: scroll;
  }
}

.l-header__navList {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  justify-content: end;
  list-style: none;
}

@media (max-width:920px) {
  .l-header__navList {
    grid-auto-flow: row;
    justify-content: center;
    gap: 30px;
  }
}

.l-header__navList li {
  border-left: 1px solid var(--color-base);
}

@media screen and (max-width: 920px) {
  .l-header__navList li {
    border: none;
  }
}

.l-header__nav-link {
  display: flex;
  width: auto;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 5px 30px;
  text-decoration: none;
  transition: 0.3s;
}

.l-header__nav-link:hover {
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .l-header__nav-link:hover {
    color: #AFAFAF;
  }
}

@media (max-width:920px) {
  .l-header__nav-link {
    font-size: 20px;
    font-weight: bold;
    color: #fff !important;
  }
}

.l-header__entry {
  padding-left: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

@media (max-width:1000px) {
  .l-header__entry {
    padding-left: 30px;
  }
}

@media (max-width:920px) {
  .l-header__entry {
    padding-left: 0;
  }
}

.l-header__buttonWrap {
  width: 170px;
}

.l-header__buttonWrap .c-button {
  height: 44px;
  font-size: 20px;
}

@media screen and (max-width: 920px) {
  .l-header__buttonWrap {
    width: 300px;
  }

  .l-header__buttonWrap .c-button {
    height: 60px;
    color: var(--color-primary) !important;
    background-color: #fff;
    box-shadow: 0 3px 6px rgb(0, 0, 0, 0.3);
  }
}

/* ------- hamburger ------- */
.l-header__hamburger {
  display: none;
}

@media (max-width:920px) {
  .l-header__hamburger {
    display: block;
  }
}

.c-hamburger {
  width: 40px;
  height: 40px;
  border: none;
  display: grid;
  place-content: center;
  gap: 5px;
  background-color: var(--color-primary);
}

.c-hamburger span {
  width: 25px;
  height: 2px;
  display: block;
  background: #fff;
  transition: 0.3s;
}

.c-hamburger span:last-child {
  width: 16px;
}

/*open*/
.opened .c-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.opened .c-hamburger span:nth-child(2) {
  opacity: 0;
}

.opened .c-hamburger span:last-child {
  width: 25px;
  transform: rotate(-45deg) translate(5px, -5px);
}

/*******************************
kv
*******************************/
.l-kv {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.l-kv_contents {
  position: relative;
}

.l-kv_imgWrap {
  max-width: 1280px;
  margin: auto;
  position: relative;
}

.l-kv_img {
  max-width: 72.11vw;
  width: 100%;
  margin: auto;
  margin-right: 0;
}

@media (min-width:1281px) {
  .l-kv_img {
    max-width: 923px;
  }
}

@media (max-width:767px) {
  .l-kv_img {
    max-width: 100%;
    padding-left: 40px;
  }
}

.l-kv_img img {
  border-radius: 60px;
}

@media (max-width:767px) {
  .l-kv_img img {
    border-radius: 60px 0 0 60px;
  }
}

.l-kv_copy {
  position: absolute;
  max-width: 39.92vw;
  top: 7.19vw;
  left: 8.20vw;
  z-index: 10;
}

@media (min-width:1281px) {
  .l-kv_copy {
    max-width: 511px;
    top: 92px;
    left: 105px;
  }
}

@media (max-width:767px) {
  .l-kv_copy {
    max-width: 85.33vw;
    /* 320px / 375px = 0.8533 */
    top: 53.87vw;
    /* 202px / 375px = 0.5387 */
    left: 0;
  }
}

.l-kv_copy_imgWrap {
  display: grid;
  gap: 20px;
}

@media (max-width:767px) {
  .l-kv_copy_imgWrap {
    gap: 12px;
  }
}

.l-kv_copy_img {
  width: auto;
  max-height: 4.30vw; /* 55px / 1280px = 0.0430 */
  position: relative;
}

@media (min-width:1281px){
  .l-kv_copy_img {
    max-height: 55px;
  }
}

@media screen and (max-width: 767px){
  .l-kv_copy_img {
    max-height: 9.6vw;
    /* 36px / 375px = 0.096 */
  }
}

.l-kv_copy_img.num-02 {
  left: 2.73vw;
  /* 35px / 1280px = 0.0273 */
}

@media (min-width:1281px) {
  .l-kv_copy_img.num-02 {
    left: 35px;
  }
}

@media (max-width:767px) {
  .l-kv_copy_img.num-02 {
    left: 0;
  }
}

.l-kv_btnWrap {
  position: absolute;
  width: 240px;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.l-kv_leadWrap {
  background-color: var(--color-bg);
}

@media screen and (max-width: 767px) {
  .l-kv_leadWrap {
    padding-top: 22.33vw;
  }

  .l-kv_h1 {
    padding: 0 20px;
    text-align: center;
  }
}

.l-kv_lead {
  max-width: 43.75vw;
  /* 560px / 1280px = 0.4375 */
  margin: auto;
  margin-right: 0;
  font-size: 1.25vw;
  /* 16px / 1280px = 0.0125 */
}

@media (max-width:1280px) {
  .l-kv_lead {
    font-size: 16px;
  }
}

@media (min-width:1281px) {
  .l-kv_lead {
    max-width: 560px;
    font-size: 16px;
  }
}

@media (max-width:767px) {
  .l-kv_lead {
    max-width: 100%;
    margin-top: 20px;
  }
}

.l-kv_wave {
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}

.l-kv_wave svg.l-kv_wave_fixed {
  display: block;
}

@media (min-width:1281px) {
  .l-kv_wave svg.l-kv_wave_fixed {
    display: none;
  }
}

.l-kv_wave svg.l-kv_wave_stretch {
  display: none;
}

@media (min-width:1281px) {
  .l-kv_wave svg.l-kv_wave_stretch {
    display: block;
  }
}

svg.l-kv_wave_fixed {
  display: block;
}

@media (min-width:1281px) {
  svg.l-kv_wave_fixed {
    display: none;
  }

  svg.l-kv_wave_stretch {
    display: block;
  }
}

/*deco*/
.l-kv_deco {
  position: absolute;
  width: 65.39vw;
  /* 837px / 1280px = 0.6539 */
  top: 7.03vw;
  /* 90px / 1280px = 0.0703 */
  left: -15.63vw;
  /* -200px / 1280px = -0.1563 */
  z-index: 2;
}


@media (min-width:1281px) {
  .l-kv_deco {
    width: 837px;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -420px;
  }
}

@media screen and (max-width: 767px) {
  .l-kv_deco {
    width: 86.67vw;
    /* 325px / 375px = 0.8667 */
    top: 55.07vw;
    left: -32vw;
    /* -120px / 375px = -0.32 */
  }
}

/*******************************
missionField
*******************************/
.l-missionField {
  padding: 80px 0 20px;
  background: linear-gradient(to bottom, var(--color-bg) 0%, var(--color-bg) 50%, #fff 50%, #fff 100%);
  position: relative;
  overflow: hidden;
}

@media (max-width:767px) {
  .l-missionField {
    padding: 45px 0 20px;
    background: linear-gradient(to bottom, var(--color-bg) 0%, var(--color-bg) 30%, #fff 30%, #fff 100%);
  }
}

.l-missionField::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(/newgraduate/images/bg_mission-field.png) no-repeat top center / 110%;
  position: absolute;
  top: 10px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .l-missionField::after {
    background: url(/newgraduate/images/bg_mission-field_sp.png) no-repeat top 30px left -20px / 120%;
  }
}

.l-missionField .l-section_inner {
  max-width: 1280px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.l-missionField_titleWrap {
  padding: 0 15px;
  text-align: center;
}

.l-missionField_titleImg {
  margin-bottom: 20px;
}

.l-missionField_titleImg img {
  max-width: 427px;
  margin: auto;
}

@media (max-width:767px) {
  .l-missionField_titleImg img {
    max-width: 247px;
  }
}

.l-missionField_title {
  font-size: 34px;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width:767px) {
  .l-missionField_title {
    font-size: 22px;
  }
}

.l-missionField_lead {
  margin-top: 24px;
}

@media (max-width:767px) {
  .l-missionField_lead {
    margin-top: 15px;
    text-align: left;
  }
}

.l-missionField_contents {
  position: relative;
  min-height: 497px;
  margin-top: 75px;
}

@media (max-width:767px) {
  .l-missionField_contents {
    min-height: auto;
    margin-top: 15px;
  }
}

.l-missionField_img {
  max-width: 55.08vw;
  /* 705px / 1280px = 0.5508 */
  position: absolute;
  top: -30px;
  left: 0;
}

@media (min-width:1281px) {
  .l-missionField_img {
    max-width: 705px;
  }
}

@media (max-width:767px) {
  .l-missionField_img {
    position: static;
    max-width: 100%;
    padding-right: 15px;
  }
}

.l-missionField_img img {
  border-radius: 0 30px 30px 0;
}


.l-missionField_blocks {
  max-width: 50vw;
  /* 640px / 1280px = 0.5 */
  background-color: #fff;
  position: relative;
  margin: auto;
  margin-right: 0;
  padding: 30px 40px;
  border-radius: 30px 0 0 30px;
  z-index: 1;
}

@media (min-width:1281px) {
  .l-missionField_blocks {
    max-width: 640px;
  }
}

@media (max-width:767px) {
  .l-missionField_blocks {
    max-width: 100%;
    padding: 30px 15px 0;
  }
}

.l-missionField_block+.l-missionField_block {
  margin-top: 30px;
}

@media (max-width:767px) {
  .l-missionField_block+.l-missionField_block {
    margin-top: 45px;
  }
}

.l-missionField_subTitleImg img {
  width: auto;
  max-height: 18px;
}

@media (max-width:767px) {
  .l-missionField_subTitleImg img {
    margin: auto;
  }
}

.l-missionField_block_title {
  margin-top: 15px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width:767px) {
  .l-missionField_block_title {
    margin-top: 15px;
    font-size: 18px;
    text-align: center;
  }
}

.l-missionField_text {
  margin-top: 20px;
  max-width: 500px;
}

@media screen and (max-width: 767px){
  .l-missionField_text {
    margin: auto;
    margin-top: 20px;
  }
}

/*******************************
business
*******************************/
.l-business {
  padding: 75px 0 120px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

@media (max-width:767px) {
  .l-business {
    padding: 85px 0 75px;
  }
}

.l-business::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("/newgraduate/images/bg_business.png") no-repeat center / auto;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .l-business::after {
    background: url("/newgraduate/images/bg_business_sp.png") no-repeat top 30px center / 120%;
  }
}

.l-business_wave {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.l-business_wave svg {
  width: 1280px;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

@media (min-width:1281px) {
  .l-business_wave svg {
    width: 100%;
    transform: none;
    left: 0;
  }
}

@media (max-width:767px) {
  .l-business_wave svg {
    width: 100%;
    transform: none;
    left: 0;
  }
}

@media (max-width:767px) {
  .l-business_wave svg.l-business_wave_sp {
    display: block;
  }
}

@media (min-width:768px) and (max-width:1280px) {
  .l-business_wave svg.l-business_wave_fixed {
    display: block;
  }
}

@media (min-width:1281px) {
  .l-business_wave svg.l-business_wave_stretch {
    display: block;
  }
}

.l-business .l-section_inner {
  position: relative;
  z-index: 1;
}

.l-business_titleWrap {
  margin-bottom: 40px;
  text-align: center;
}

@media (max-width:767px) {
  .l-business_titleWrap {
    margin-bottom: 20px;
  }
}

.l-business_title {
  font-size: 34px;
  line-height: 1.4;
}

@media (max-width:767px) {
  .l-business_title {
    font-size: 24px;
  }
}

.l-business_img {
  max-width: 780px;
  margin: auto;
}

@media (max-width:767px) {
  .l-business_img {
    max-width: 100%;
    margin: 0 auto 30px;
  }
}

.l-business_img img {
  width: 100%;
  height: auto;
  display: block;
}

.l-business_text {
  max-width: 840px;
  margin: 40px auto 0;
  text-align: center;
}

@media (max-width:767px) {
  .l-business_text {
    max-width: 100%;
    margin-top: 30px;
    text-align: left;
  }
}

/*******************************
faq
*******************************/
.bg_03 {
  background: url("/newgraduate/images/bg_faq.png") no-repeat top center/auto;
}

@media screen and (max-width: 767px) {
  .bg_03 {
    background: url("/newgraduate/images/bg_faq_sp.png") no-repeat top center/110%;
  }
}

.l-faq {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .l-faq {
    padding-top: 45px;
  }
}

.l-faq_titleWrap {
  margin-bottom: 25px;
  font-size: 18px;
  text-align: center;
}

.l-faq_title_img {
  max-width: 175px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .l-faq_title_img {
    max-width: 100px;
  }
}

.l-faq_title {
  margin-top: 10px;
  font-size: 18px;
}

.p-faq_categoryWrap {
  max-width: 980px;
  margin: auto;
  padding: 35px 40px 40px;
  border-radius: 30px;
  background-color: #F6FFED;
}

@media screen and (max-width: 767px) {
  .p-faq_categoryWrap {
    padding: 0;
    background-color: transparent;
  }
}

.p-faq_category+.p-faq_category {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-faq_category+.p-faq_category {
    margin-top: 40px;
  }
}

.p-faq_category_title {
  margin: 0 0 20px;
  position: relative;
}

@media (max-width:767px) {
  .p-faq_category_title {
    margin: 0 0 16px;
  }
}

.p-faq_category_title img {
  margin: auto;
  width: auto;
  max-height: 28px;
}

@media (max-width:767px) {
  .p-faq_category_title img {
    max-height: 23px;
  }
}

.p-faq_list {
  width: 100%;
  margin-top: 30px;
  list-style: none;
  display: grid;
  gap: 14px;
}

@media (max-width:767px) {
  .p-faq_list {
    margin-top: 20px;
    gap: 10px;
  }
}

.p-faq_question {
  width: 100%;
  padding: 15px 50px 15px 80px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  display: block;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width:767px) {
  .p-faq_question {
    min-height: 80px;
    padding: 10px 50px 10px 60px;
    font-size: 16px;
    border-radius: 10px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .p-faq_question:hover {
    opacity: 0.7;
  }
}

.p-faq_question::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background: url("/newgraduate/images/icon_faq-q.png") no-repeat center / contain;
}

@media (max-width:767px) {
  .p-faq_question::before {
    width: 36px;
    height: 36px;
    left: 10px;
  }
}

.p-faq_icon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-faq_icon {
    right: 20px;
  }
}

.p-faq_icon::before,
.p-faq_icon::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 #fff;
  transition: 0.3s;
}

.p-faq_icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.opened .p-faq_icon::after {
  transform: translateY(-50%) rotate(0);
}

.p-faq_answer {
  width: 100%;
  padding: 22px 0 22px 80px;
  position: relative;
  display: none;
}

@media (max-width:767px) {
  .p-faq_answer {
    padding: 12px 10px 12px 60px;
  }
}

.p-faq_answer::before {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  top: 24px;
  left: 25px;
  background: url("/newgraduate/images/icon_faq-a.png") no-repeat center / contain;
}

@media (max-width:767px) {
  .p-faq_answer::before {
    left: 15px;
  }
}

.c-link_tel{
  color: var(--color-base)!important;
  text-decoration: none;
  transition: 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .c-link_tel:hover {
    color: #AFAFAF !important;
  }
}

/*******************************
entry
*******************************/
.l-entry {
  padding: 60px 20px;
}

@media screen and (max-width: 767px) {
  .l-entry {
    padding: 40px 40px 60px;
  }
}

.l-entry_btnWrap {
  max-width: 400px;
  margin: auto;
}

/*pagetop*/
.l-float_btnWrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
  position: relative;
  z-index: 99;
}

.l-float_btnWrap.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.l-float_btn {
  width: 72px;
  height: 72px;
  background-color: #F8E448;
  z-index: 99;
  position: absolute;
  bottom: -34px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999em;
  transition: 0.3s;
}

.l-float_btn:hover {
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .l-float_btn:hover {
    background-color: #FDF6BB;
  }
}

.l-float_btnWrap.is-fixed .l-float_btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

@media screen and (max-width: 767px) {
  .l-float_btn {
    width: 50px;
    height: 50px;
    bottom: -25px;
    right: 15px;
  }

  .l-float_btnWrap.is-fixed .l-float_btn {
    bottom: 15px;
    right: 15px;
  }
}


.l-float_btn::before {
  content: "\E844";
  color: #6E6E6E;
  font-family: recop-iconfonts;
  font-size: 30px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .l-float_btn::before {
    font-size: 22px;
  }
}