@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: 400px;
  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; }

.fv_menu {
  height: auto;
  position: absolute;
  top: 410px;
  left: 20px;
  font-size: 1.4rem;
  font-weight: var(--bold);
  display: flex;
  flex-direction: row;
  gap: 16px; }
  .fv_menu a {
    display: flex;
    margin-bottom: 10px;
    gap: 8px; }
    .fv_menu a .tri {
      width: 0;
      height: 0;
      border-style: solid;
      border-right: 7px solid transparent;
      border-left: 7px solid transparent;
      border-top: 12px solid var(--black);
      border-bottom: 0;
      margin-top: 5px; }

.people_nav {
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  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 20px;
  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; }

.about_h2 {
  font-size: 2rem;
  font-weight: var(--bold);
  position: absolute;
  top: 360px;
  left: 20px; }

/*数字でみるの設定*/
.number {
  width: 100%;
  max-width: 500px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto; }

.about_cap {
  font-size: 2.4rem;
  font-weight: var(--bold);
  margin-bottom: 30px; }

.number_ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }

.number_li {
  width: 48%;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden; }

.number_p {
  height: 35%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-bottom: 20px;
  box-sizing: border-box;
  font-weight: var(--ebold);
  color: #9B55D0;
  font-size: 6rem;
  line-height: 1;
  vertical-align: baseline; }

.noto {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: var(--bold);
  font-style: normal;
  font-size: 3rem; }

.number_h4 {
  height: 35%;
  font-weight: var(--bold);
  font-size: 1.6rem;
  margin-top: 5px; }

.num2 .number_p {
  font-size: 4.5rem;
  padding-top: 16px; }
  .num2 .number_p span {
    font-size: 2rem; }

.num7 span, .num11 span, .num12 span {
  font-size: 3rem; }

.num8 .number_p {
  font-size: 5rem;
  padding-top: 8px; }
  .num8 .number_p span {
    font-size: 2rem; }

.num11 h4 {
  font-size: 1.3rem; }

.number_li::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../img/i_bisiness.svg");
  background-size: contain;
  position: absolute;
  bottom: -20%;
  right: -20%;
  opacity: .05; }

.num2::after {
  background-image: url("../img/i_capital.svg"); }

.num3::after {
  background-image: url("../img/i_group.svg"); }

.num4::after {
  background-image: url("../img/i_gender.svg"); }

.num5::after {
  background-image: url("../img/i_employee.svg"); }

.num6::after {
  background-image: url("../img/i_member.svg"); }

.num7::after {
  background-image: url("../img/i_sales.svg"); }

.num8::after {
  background-image: url("../img/i_construction.svg"); }

.num9::after {
  background-image: url("../img/i_holiday.svg"); }

.num10::after {
  background-image: url("../img/i_time.svg"); }

.num11::after {
  background-image: url("../img/i_baby.svg"); }

.num12::after {
  background-image: url("../img/i_inexperienced.svg"); }

.num_annotation {
  text-align: right;
  font-size: 1.4rem;
  font-weight: var(--bold); }

/*社員の声セクションの設定*/
.voice {
  margin-top: 80px;
  position: relative; }
  .voice::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; }

.sp_none {
  display: none; }

.voice_flex_wrap {
  width: 100%;
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: var(--sh);
  margin-bottom: 16px; }

.voice_h4 {
  font-size: 1.8rem;
  font-weight: var(--bold);
  border-bottom: 2px solid transparent;
  border-image: var(--gradation);
  border-image-slice: 1;
  padding-bottom: 3px;
  margin-bottom: 24px; }

.voice_div {
  font-size: 1.4rem;
  font-weight: var(--bold);
  margin-bottom: 14px;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  align-items: center;
  gap: 20px; }
  .voice_div img {
    width: 34px;
    height: auto; }

.first {
  font-size: 1.8rem; }

@media screen and (min-width: 500px) {
  .number_h4 {
    margin-top: 0; }

  .num11 h4 {
    font-size: 1.6rem; } }
@media screen and (min-width: 768px) {
  /*ファーストビューの設定*/
  .fv_deco {
    display: none; }

  .fv_deco_pc {
    display: block;
    width: 2200px;
    height: auto;
    position: absolute;
    top: -360px;
    left: -810px; }

  .people_nav {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    position: absolute;
    top: 245px;
    left: 20px;
    gap: 13px; }

  .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); }

  .about_h2 {
    font-size: 2.4rem;
    top: 310px; }

  .fv_menu {
    top: 370px; }

  /*数字で見るの設定*/
  .number {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto; }

  .about_cap {
    font-size: 3rem;
    font-weight: var(--bold);
    margin-bottom: 30px; }

  .number_li {
    width: 32%; }

  .number_p {
    font-size: 8rem; }

  .noto {
    font-size: 3.4rem; }

  .number_h4 {
    font-size: 2rem; }

  .num2 .number_p {
    font-size: 6rem;
    padding-top: 16px; }
    .num2 .number_p span {
      font-size: 3rem; }

  .num7 span, .num11 span, .num12 span {
    font-size: 4rem; }

  .num8 .number_p {
    font-size: 6rem;
    padding-top: 16px; }
    .num8 .number_p span {
      font-size: 3rem; }

  .num11 h4 {
    font-size: 2rem; }

  /*社員の声セクションの設定*/
  .sp_none {
    display: block; }

  .voice {
    margin-top: 80px !important; }
    .voice::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;
      right: -1180px;
      z-index: -1; }

  .voice_flex_wrap {
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start; }

  .voice_h4 {
    font-size: 2rem;
    border-bottom: none;
    border-left: 3px solid #FFA662;
    border-image: none;
    border-image-slice: none;
    padding-left: 10px;
    padding-bottom: 3px;
    margin-bottom: 24px;
    width: 220px; }

  .voice_div {
    font-size: 1.6rem;
    margin-bottom: 14px;
    gap: 20px; }
    .voice_div img {
      width: 40px;
      height: auto; }

  .first {
    font-size: 2rem; }

  .third {
    margin-bottom: 0; } }
@media screen and (min-width: 1024px) {
  /*ファーストビューの設定*/
  .fv {
    height: 420px; }

  .fv_cap {
    left: 50px;
    font-size: 6rem; }

  .fv_p1 {
    top: 200px;
    left: 50px; }

  .people_nav {
    top: 165px;
    left: 340px; }

  .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); }

  .people_nav {
    top: 165px;
    left: 400px; }

  .about_h2 {
    top: 260px;
    left: 50px; }

  .fv_menu {
    top: 320px;
    left: 50px; }

  /*数字で見るの設定*/
  .number {
    max-width: 1200px;
    padding: 0 50px; }

  .about_cap {
    font-size: 4rem;
    margin-bottom: 60px; }

  .number_li {
    border-radius: 20px;
    margin-bottom: 24px; }

  .number_p {
    font-size: 11rem;
    margin-bottom: 6px; }

  .noto {
    font-size: 5rem; }

  .number_h4 {
    font-size: 3rem; }

  .num2 .number_p {
    font-size: 9rem;
    padding-top: 18px; }
    .num2 .number_p span {
      font-size: 4rem; }

  .num7 span, .num11 span, .num12 span {
    font-size: 5rem; }

  .num8 .number_p {
    font-size: 10rem;
    padding-top: 13px; }
    .num8 .number_p span {
      font-size: 5rem; }

  .num11 h4 {
    font-size: 3rem; }

  /*社員の声セクションの設定*/
  .voice {
    margin-top: 100px !important; }

  .voice_flex_wrap {
    padding: 40px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start; }

  .voice_h4 {
    font-size: 3rem;
    padding-left: 18px;
    width: 330px; }

  .voice_div {
    font-size: 2.4rem;
    margin-bottom: 30px; }
    .voice_div img {
      width: 60px;
      height: auto; }

  .first {
    font-size: 3rem; }

  .third {
    margin-bottom: 0; } }
@media screen and (min-width: 1200px) {
  /*ファーストビューの設定*/
  .fv {
    height: 500px; }

  .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: 440px; }

  .fv_people_title_wrap {
    top: 450px; }

  .about_h2 {
    top: 350px;
    left: 50px; }

  .fv_menu {
    top: 400px;
    left: 50px;
    font-size: 1.6rem; }
    .fv_menu a {
      display: flex;
      margin-bottom: 10px;
      gap: 8px; }
      .fv_menu a .tri {
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-top: 12px solid var(--black);
        border-bottom: 0;
        margin-top: 8px; } }
