@charset "UTF-8";
html {
  font-size: 10px;
  margin: 0;
  padding: 0;
  overflow-x: hidden; }

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3c3c3c;
  background-color: #F3F3F3;
  background-image: linear-gradient(white 1px, transparent 1px), linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 50px 50px; }

:root {
  --black:#3c3c3c;
  --gradation:linear-gradient(90deg,rgba(128, 0, 255, 1) 0%, rgba(255, 82, 125, 1) 50%, rgba(255, 166, 98, 1) 100%);
  --gradationtate:linear-gradient(0deg,rgba(128, 0, 255, 1) 0%, rgba(255, 82, 125, 1) 50%, rgba(255, 166, 98, 1) 100%);
  --bold:700;
  --sbold:600;
  --rbold:700;
  --ebold:800;
  --sh:0px 0px 15px 0px rgba(136,164,202,0.3); }

.roboto {
  font-family: "roboto", sans-serif;
  font-weight: 300;
  font-style: normal; }

a {
  text-decoration: none;
  color: var(--black);
  cursor: pointer;
  transition: all .3s; }
  a:hover {
    opacity: .6; }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

p {
  margin: 0;
  padding: 0; }

h1, h2, h3, h4, h5 {
  margin: 0; }

.pc_only {
  display: none; }

/*トップに戻るの設定*/
.totop {
  width: 30px;
  height: 35px;
  position: fixed;
  bottom: 80px;
  right: 20px;
  cursor: pointer;
  transition: all .3s; }
  .totop:hover {
    opacity: .6; }
  .totop img {
    width: 100%;
    height: auto; }

@media screen and (min-width: 1024px) {
  .totop {
    right: 50px; } }
/*ナビゲーションの設定（メディアクエリも設定）*/
nav {
  width: 100%;
  height: 70px;
  padding: 0 20px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); }

.logo_set {
  width: 260px;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  cursor: pointer; }

.nav_title_c {
  font-size: 1rem;
  font-weight: var(--bold); }

.nav_title_r {
  font-size: 2rem;
  font-weight: var(--sbold); }

h1 {
  width: 70px;
  height: auto; }
  h1 img {
    width: 100%;
    height: auto; }

.hamburger {
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  position: relative; }

.hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradation);
  transition: all 0.4s;
  border-radius: 1px; }

.hamburger span:nth-child(1) {
  top: 0px; }

.hamburger span:nth-child(2) {
  top: 12px; }

.hamburger span:nth-child(3) {
  top: 24px; }

.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(-45deg); }

.hamburger.open span:nth-child(2) {
  opacity: 0;
  /* 真ん中の線を消す */ }

.hamburger.open span:nth-child(3) {
  transform: translateY(-14px) rotate(45deg); }

.navigation {
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 90;
  transition: all 0.5s ease;
  padding: 0 20px;
  box-sizing: border-box;
  opacity: 0; }

.open-nav {
  top: 0;
  visibility: visible;
  opacity: 1; }

.navigation ul {
  list-style: none;
  text-align: center;
  margin-top: 0;
  padding: 0;
  margin-bottom: 20px; }

.navigation ul li a {
  font-size: 2rem;
  color: var(--black);
  text-decoration: none;
  display: block;
  margin: 60px;
  font-weight: var(--ebold);
  transition: all .3s;
  cursor: pointer; }
  .navigation ul li a:hover {
    opacity: .6; }

.sp_nav_cta {
  width: 100%;
  max-width: 400px;
  height: 100px;
  border-radius: 10px;
  border: solid 2px #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: all .3s;
  cursor: pointer;
  box-shadow: var(--sh);
  position: relative;
  background: linear-gradient(to right, #3c3c3c 50%, transparent 50%), var(--gradation);
  background-size: 200% 100%, 100% 100%;
  background-position: right bottom, center center;
  background-repeat: no-repeat; }
  .sp_nav_cta:hover {
    opacity: 1;
    background-position: left bottom, center center; }
  .sp_nav_cta::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url("../img/arrow_wh.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 40px;
    right: 20px; }

.sp_cta_p1 {
  font-size: 2rem; }

.sp_cta_p2 {
  font-size: 2.4rem;
  font-weight: var(--bold); }

#sp_nav_sns {
  width: 100%;
  max-width: 300px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px; }
  #sp_nav_sns li {
    width: 40px;
    height: 40px; }
    #sp_nav_sns li a {
      width: 100%;
      height: 100%;
      margin: 0; }
      #sp_nav_sns li a img {
        width: 100%;
        height: auto; }

.tab_nav_cta {
  display: none; }

.tab_only {
  display: contents; }

@media screen and (min-width: 768px) {
  nav {
    padding-right: 0;
    height: 100px; }

  .logo_set {
    gap: 20px; }

  .hamburger {
    display: none; }

  .tab_only {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 70%;
    max-width: 830px;
    height: 100%; }

  .navigation {
    position: static;
    height: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    z-index: 0;
    padding: 0;
    opacity: 1;
    width: 90%;
    max-width: 556px;
    background-color: transparent;
    margin-right: 40px; }

  .navigation ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 0;
    width: 100%; }

  .navigation ul li {
    display: inline-block; }

  .navigation ul li a {
    font-size: 1.6rem;
    color: var(--black);
    margin: 0; }

  .sp_nav_cta {
    display: none; }

  #sp_nav_sns {
    display: none; }

  .tab_nav_cta {
    width: 30%;
    max-width: 230px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    font-weight: var(--sbold);
    cursor: pointer;
    transition: all .3s;
    background: linear-gradient(to right, #3c3c3c 50%, transparent 50%), var(--gradation);
    background-size: 200% 100%, 100% 100%;
    background-position: right bottom, center center;
    background-repeat: no-repeat; }
    .tab_nav_cta:hover {
      background-position: left bottom, center center;
      opacity: 1; } }
@media screen and (min-width: 1024px) {
  .logo_set {
    gap: 20px;
    width: 350px; }

  h1 {
    width: 100px; }

  .nav_title_c {
    font-size: 1.2rem; }

  .nav_title_r {
    font-size: 2.8rem; } }
/*コンテンツ共通設定（メディアクエリも設定）*/
.common_cap {
  font-size: 3.6rem;
  background: var(--gradation);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 3px; }

.cap_p {
  font-size: 1.8rem;
  font-weight: var(--sbold);
  margin-bottom: 24px; }

.common_h3 {
  font-size: 2.3rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 20px; }

.common_p {
  font-size: 1.4rem;
  line-height: 2.2; }

@media screen and (min-width: 768px) {
  body {
    background-size: 60px 60px; }

  .sp_only {
    display: none; }

  .common_cap {
    font-size: 4.4rem;
    background: var(--gradation);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 3px; }

  .common_h3 {
    font-size: 3.6rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 50px; }

  .common_p {
    font-size: 1.8rem;
    line-height: 2.2; } }
@media screen and (min-width: 1024px) {
  .common_cap {
    font-size: 6rem;
    margin-bottom: 0; }

  .pc_only {
    display: block; }

  .cap_wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px; }

  .cap_p {
    margin-bottom: 0;
    font-size: 3rem; }

  .common_h3 {
    margin-bottom: 30px; } }
/*CTAセクションの設定（メディアクエリも設定）*/
.cta {
  width: 100%;
  max-width: 400px;
  margin: 100px auto;
  padding: 0 20px;
  box-sizing: border-box; }

.bottom_cta {
  margin: 0 auto; }

@media screen and (min-width: 768px) {
  .cta {
    width: 100%;
    max-width: 550px;
    margin: 130px auto;
    padding: 0 20px;
    box-sizing: border-box; }

  .bottom_cta {
    display: flex;
    margin: 0 auto;
    height: 145px;
    max-width: 550px; }
    .bottom_cta::before {
      content: "";
      width: 20px;
      height: 26px;
      background-image: url("../img/arrow_wh.png");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      top: 77px;
      right: 40px; }

  .bottom_cta_p1 {
    font-size: 2.4rem; }

  .bottom_cta_p2 {
    font-size: 3.6rem; } }
/*フッターの設定(メディアクエリも設定)*/
footer {
  width: 100%;
  padding: 20px 20px 40px 20px;
  background-color: #fff;
  box-sizing: border-box; }

.footer_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.footer_sns {
  width: 100%;
  max-width: 300px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto; }
  .footer_sns li {
    width: 40px;
    height: 40px; }
    .footer_sns li a {
      width: 100%;
      height: 100%;
      margin: 0; }
      .footer_sns li a img {
        width: 100%;
        height: auto; }

.footer_logo_set {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px auto; }
  .footer_logo_set img {
    width: 70px;
    height: auto; }
  .footer_logo_set .footer_title_c {
    font-size: 1rem; }
  .footer_logo_set .footer_title_r {
    font-weight: var(--sbold);
    font-size: 2rem; }

.com_link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px; }
  .com_link p {
    font-size: 1.6rem;
    font-weight: var(--bold); }
  .com_link img {
    width: 20px;
    height: auto; }

small {
  font-size: 1rem;
  text-align: center;
  display: block; }

@media screen and (min-width: 1024px) {
  footer {
    padding: 60px 50px; }

  .footer_wrap {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px; }

  .footer_logo_set {
    order: -1;
    width: auto;
    margin: 0; }

  .footer_sns {
    margin: 0; }

  .com_link {
    margin: 0; } }
/*ここまで共通記述*/
/*ファーストビューの設定*/
.fv {
  width: 100%;
  height: 850px;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }

.fv_deco {
  width: 890px;
  height: auto;
  position: absolute;
  top: 60px;
  left: -290px; }

.fv_deco_pc {
  display: none; }

.fv_cap {
  position: absolute;
  top: 120px;
  left: 20px;
  font-size: 5rem;
  font-weight: var(--sbold); }

.fv_p1 {
  font-size: 1.8rem;
  font-weight: var(--bold);
  position: absolute;
  top: 190px;
  left: 20px; }

.people_nav {
  width: calc(100% - 40px);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  top: 245px;
  left: 20px;
  gap: 13px; }

.this {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  background-color: var(--black);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: var(--bold);
  box-shadow: var(--sh); }

.other {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  background-color: #fff;
  color: var(--black);
  gap: 10px;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: var(--bold);
  box-shadow: var(--sh);
  overflow: hidden;
  position: relative;
  transition: all .3s ease;
  z-index: 0; }
  .other::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3c3c3c;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
    z-index: -1; }
  .other:hover {
    color: #fff;
    opacity: 1; }
    .other:hover::after {
      transform: scaleX(1); }
    .other:hover img {
      filter: brightness(0) invert(1); }
  .other img {
    width: 10px;
    height: auto; }

.fv_image {
  width: 400px;
  height: 324px;
  background-color: #A3A3A3;
  border-radius: 20px;
  position: absolute;
  top: 370px;
  right: -90px;
  overflow: hidden; }
  .fv_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right; }

.fv_people_title_wrap {
  padding: 20px 20px 30px 20px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 650px;
  right: 20px;
  width: calc(100% - 40px);
  max-width: 400px;
  box-sizing: border-box;
  box-shadow: var(--sh); }
  .fv_people_title_wrap h2 {
    font-size: 3rem;
    font-weight: var(--bold);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    border-image: var(--gradation);
    border-image-slice: 1;
    margin-bottom: 20px; }
  .fv_people_title_wrap p {
    font-size: 2rem;
    font-weight: var(--bold); }

/*インタビューセクションの設定*/
.interview {
  width: 100%;
  max-width: 500px;
  margin: 50px auto 150px auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }
  .interview::before {
    content: "";
    width: 900px;
    height: 300px;
    background-image: url("../img/SP_bgGradation.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -130px;
    right: -440px;
    z-index: -1; }

.interview_doc_wrap {
  margin-bottom: 20px; }

.interview_cap {
  font-size: 2rem;
  font-weight: var(--bold);
  padding-left: 55px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 30px;
  margin-top: 60px; }
  .interview_cap::before {
    content: "Q.1";
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: calc(50% - 25px);
    left: 0;
    font-family: "roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3rem;
    background: var(--gradation);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; }

.q1::before {
  content: "Q.1"; }

.q2::before {
  content: "Q.2"; }

.q3::before {
  content: "Q.3"; }

.q4::before {
  content: "Q.4"; }

.q5::before {
  content: "Q.5"; }

.answer {
  font-size: 2.4rem;
  font-weight: var(--bold);
  margin-bottom: 20px;
  line-height: 1.4; }

.answer_doc {
  font-size: 1.4rem;
  line-height: 2.2; }

.interview_image_1 {
  width: 100%;
  height: 235px;
  background-color: #898989;
  border-radius: 10px;
  overflow: hidden; }
  .interview_image_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.interview_image_2 {
  width: 100%;
  height: 235px;
  background-color: #898989;
  border-radius: 10px;
  overflow: hidden; }
  .interview_image_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

/*1日の流れの設定*/
.day_flow {
  width: 100%;
  max-width: 500px;
  margin: 50px auto 100px auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }

.day_cap {
  font-size: 2.8rem;
  font-weight: var(--bold);
  margin-bottom: 40px; }

.time {
  font-size: 2.2rem;
  font-weight: var(-bold);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center; }

.time_left {
  font-size: 1.8rem;
  margin-right: 20px; }

.day_dis {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  border-left: solid 1px var(--black); }

.day_last {
  border-left: none; }

.day_image {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 160px; }

.day_image_1 {
  width: 60%;
  height: 180px;
  background-color: #969696;
  border-radius: 10px;
  flex-shrink: 0;
  margin-right: -10%;
  overflow: hidden; }
  .day_image_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.day_image_2 {
  width: 60%;
  height: 180px;
  background-color: #969696;
  border-radius: 10px;
  flex-shrink: 0;
  margin-left: -10%;
  margin-bottom: -120px;
  overflow: hidden; }
  .day_image_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

/*他の職種を見るの設定*/
.other_jobs {
  width: 100%;
  max-width: 500px;
  margin: 50px auto 140px auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }
  .other_jobs::before {
    content: "";
    width: 900px;
    height: 300px;
    background-image: url("../img/SP_bgGradation.webp");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -100px;
    left: -350px;
    z-index: -1; }

.job_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 30px auto; }

.job_items_a {
  display: flex;
  width: 100%;
  height: auto;
  padding: 20px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: var(--sh);
  box-sizing: border-box; }
  .job_items_a h4 {
    font-size: 2rem;
    font-weight: var(--bold);
    text-align: left;
    display: block;
    width: 100%;
    border-bottom: 2px solid transparent;
    border-image: var(--gradation);
    border-image-slice: 1;
    padding-bottom: 4px;
    margin-bottom: 18px; }
  .job_items_a p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 500; }

.job_items_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin-bottom: 20px; }

.job_items_img {
  width: 133px;
  height: 100px;
  background-color: #8C8C8C;
  border-radius: 10px;
  order: 1;
  flex-shrink: 0;
  overflow: hidden; }
  .job_items_img img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.job_items_a_wrap {
  display: flex;
  flex-direction: column;
  align-items: center; }

.job_items_button {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  background-image: linear-gradient(#fff, #fff), var(--gradation);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 4px 16px;
  box-sizing: border-box;
  box-shadow: var(--sh);
  font-size: 1.4rem;
  font-weight: var(--bold);
  margin-bottom: 16px;
  transition: all .3s ease;
  overflow: hidden;
  position: relative;
  z-index: 0; }
  .job_items_button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3c3c3c;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
    z-index: -1; }
  .job_items_button:hover {
    color: #fff;
    opacity: 1;
    border: 2px solid var(--black); }
    .job_items_button:hover::after {
      transform: scaleX(1); }
    .job_items_button:hover img {
      filter: brightness(0) invert(1); }

.arrow_b {
  width: 10px;
  height: auto; }

@media screen and (min-width: 500px) {
  .fv_image {
    right: -20px; }

  .fv_people_title_wrap {
    right: auto;
    left: 20px; }
    .fv_people_title_wrap h2 {
      font-size: 3rem;
      font-weight: var(--bold);
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
      border-image: var(--gradation);
      border-image-slice: 1;
      margin-bottom: 20px; }
    .fv_people_title_wrap p {
      font-size: 2rem;
      font-weight: var(--bold); } }
@media screen and (min-width: 768px) {
  /*ファーストビューの設定*/
  .fv {
    height: 800px; }

  .fv_deco {
    display: none; }

  .fv_deco_pc {
    display: block;
    width: 2200px;
    height: auto;
    position: absolute;
    top: -360px;
    left: -810px; }

  .fv_image {
    right: 20px;
    width: 600px;
    height: 350px;
    top: 320px; }

  .fv_people_title_wrap {
    right: auto;
    left: 20px;
    max-width: 500px;
    top: 580px; }
    .fv_people_title_wrap h2 {
      font-size: 3rem;
      font-weight: var(--bold);
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
      border-image: var(--gradation);
      border-image-slice: 1;
      margin-bottom: 20px; }
    .fv_people_title_wrap p {
      font-size: 2rem;
      font-weight: var(--bold); }

  /*インタビューセクションの設定*/
  .interview {
    width: 100%;
    max-width: 1160px;
    margin: 50px auto 100px auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative; }
    .interview::before {
      content: "";
      width: 2300px;
      height: 800px;
      background-image: url("../img/bgGradation.webp");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      bottom: -220px;
      right: -1210px;
      z-index: -1; }

  .interview_doc_wrap {
    margin-bottom: 20px; }

  .interview_cap {
    font-size: 3rem;
    font-weight: var(--bold);
    padding-left: 85px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 30px;
    margin-top: 90px; }
    .interview_cap::before {
      width: 80px;
      height: 50px;
      font-size: 5rem; }

  .answer {
    font-size: 4rem;
    font-weight: var(--bold);
    margin-bottom: 20px;
    line-height: 1.4; }

  .answer_doc {
    font-size: 1.8rem;
    line-height: 2.2; }

  .interview_image_1 {
    height: 500px; }

  .interview_image_2 {
    height: 500px; }

  /*1日の流れの設定*/
  .day_flow {
    width: 100%;
    max-width: 1160px;
    margin: 50px auto 100px auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative; }

  .day_cap {
    font-size: 4.4rem;
    font-weight: var(--bold);
    margin-bottom: 50px; }

  .time {
    font-size: 3rem;
    font-weight: var(-bold);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; }

  .time_left {
    font-size: 2.4rem;
    margin-right: 20px; }

  .day_dis {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 62px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    border-left: solid 1px var(--black); }

  .day_last {
    border-left: none; }

  .day_image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 160px; }

  .day_image_1 {
    width: 50%;
    height: 300px;
    background-color: #969696;
    border-radius: 10px;
    flex-shrink: 0;
    margin-right: -5%; }

  .day_image_2 {
    width: 50%;
    height: 300px;
    background-color: #969696;
    border-radius: 10px;
    flex-shrink: 0;
    margin-left: -5%;
    margin-bottom: -120px; }

  /*他の職種を見るの設定*/
  .other_jobs {
    width: 100%;
    max-width: 1160px;
    margin: 50px auto 170px auto; }
    .other_jobs::before {
      content: "";
      width: 2300px;
      height: 800px;
      background-image: url("../img/bgGradation.webp");
      background-position: center;
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      bottom: -180px;
      left: -850px;
      z-index: -1; }

  .job_wrap {
    flex-direction: row;
    align-items: stretch;
    justify-content: center; }

  .job_items {
    display: flex;
    width: 32%; }

  .job_items_a {
    justify-content: flex-start; }
    .job_items_a h4 {
      font-size: 2.4rem; }
    .job_items_a p {
      font-size: 1.6rem;
      margin-bottom: 0; }

  .job_items_inner {
    flex-direction: column;
    justify-content: space-between; }

  .job_items_img {
    width: 100%;
    height: 150px;
    order: -1; } }
@media screen and (min-width: 1024px) {
  /*ファーストビューの設定*/
  .fv {
    height: 680px; }

  .fv_cap {
    left: 50px;
    font-size: 6rem; }

  .fv_p1 {
    top: 200px;
    left: 50px; }

  .people_nav {
    top: 165px;
    left: 340px; }

  .fv_image {
    width: 900px;
    height: 370px;
    top: 270px;
    right: 50px; }

  .fv_people_title_wrap {
    right: auto;
    left: 50px;
    max-width: 600px;
    top: 340px;
    padding: 30px 40px; }
    .fv_people_title_wrap h2 {
      font-size: 4rem;
      font-weight: var(--bold);
      padding-bottom: 4px;
      border-bottom: 2px solid transparent;
      border-image: var(--gradation);
      border-image-slice: 1;
      margin-bottom: 20px; }
    .fv_people_title_wrap p {
      font-size: 3rem;
      font-weight: var(--bold); }

  /*インタビューセクションの設定*/
  .interview {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 160px auto;
    padding: 0 50px;
    box-sizing: border-box;
    position: relative; }

  .interview_doc_wrap {
    margin-bottom: 20px; }

  .interview_cap {
    font-size: 3rem;
    font-weight: var(--bold);
    padding-left: 85px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 50px;
    margin-top: 100px; }
    .interview_cap::before {
      width: 80px;
      height: 50px;
      font-size: 5rem; }

  .answer {
    font-size: 4rem;
    font-weight: var(--bold);
    margin-bottom: 40px;
    line-height: 1.4; }

  .answer_doc {
    font-size: 1.8rem;
    line-height: 2.2; }

  .interview_flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start; }

  .interview_doc_wrap {
    width: calc(100% - 550px); }

  .interview_image_1 {
    width: 500px;
    height: 390px;
    border-radius: 20px; }

  .interview_image_2 {
    width: 500px;
    height: 390px;
    border-radius: 20px; }

  /*1日の流れの設定*/
  .day_flow {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 100px auto;
    padding: 0 50px;
    box-sizing: border-box;
    position: relative; }

  .day_cap {
    font-size: 4.4rem;
    font-weight: var(--bold);
    margin-bottom: 50px; }

  .day_flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px; }

  .time {
    font-size: 3rem;
    font-weight: var(-bold);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center; }

  .time_left {
    font-size: 2.4rem;
    margin-right: 20px; }

  .day_dis {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 62px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    border-left: solid 1px var(--black); }

  .day_last {
    border-left: none; }

  .day_image {
    width: 400px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    flex-shrink: 0;
    gap: 20px; }

  .day_image_1 {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    margin-right: 0; }

  .day_image_2 {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    margin-left: 0;
    margin-bottom: 0; }

  /*他の職種を見るの設定*/
  .other_jobs {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto 100px auto;
    padding: 0 50px; }

  .job_wrap {
    gap: 30px; }

  .job_items_a {
    justify-content: flex-start; }
    .job_items_a p {
      height: 54px; }

  .job_items_img {
    width: 100%;
    height: 190px;
    order: -1; } }
@media screen and (min-width: 1200px) {
  /*ファーストビューの設定*/
  .fv {
    height: 800px; }

  .fv_cap {
    position: absolute;
    top: 190px;
    left: 50px;
    font-size: 7rem;
    font-weight: var(--sbold); }

  .fv_p1 {
    font-size: 1.8rem;
    font-weight: var(--bold);
    position: absolute;
    top: 280px;
    left: 50px; }

  .fv_deco_pc {
    display: block;
    width: 2200px;
    height: auto;
    position: absolute;
    top: -250px;
    left: -780px; }

  .people_nav {
    top: 235px;
    left: 370px; }

  .fv_image {
    width: 90%;
    max-width: 1180px;
    height: 450px;
    top: 340px; }

  .fv_people_title_wrap {
    top: 450px; } }
@media screen and (min-width: 1500px) {
  .fv_people_title_wrap {
    left: calc(50% - 710px); }

  .fv_image {
    right: calc(50% - 710px); } }
