@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: 2.8rem;
  background: var(--gradation);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 30px; }

.common_h3 {
  font-size: 2.3rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 14px;
  text-shadow: 0 0 10px white; }

.common_p {
  font-size: 1.4rem;
  line-height: 2.2;
  text-shadow: 0 0 10px white; }

@media screen and (min-width: 768px) {
  body {
    background-size: 60px 60px; }

  .sp_only {
    display: none; }

  .common_cap {
    font-size: 3.6rem;
    background: var(--gradation);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 20px; }

  .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) {
  .pc_only {
    display: block; } }
/*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: 680px;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }

.fv_deco {
  width: 890px;
  height: auto;
  position: absolute;
  top: 130px;
  left: -290px; }

.fv_deco_pc {
  display: none; }

.fv_cap {
  position: absolute;
  top: 270px;
  left: 20px;
  font-size: 3.4rem;
  font-weight: var(--bold);
  text-shadow: 0 0 10px white; }

.fv_p1 {
  font-size: 2.4rem;
  font-weight: var(--sbold);
  position: absolute;
  top: 350px;
  left: 20px; }

.fv_p2 {
  font-size: 1rem;
  font-weight: var(--sbold);
  position: absolute;
  top: 380px;
  left: 20px; }

.fv_image_1 {
  width: 70%;
  height: 210px;
  min-width: 206px;
  max-width: 300px;
  border-radius: 10px;
  background-color: #D9D9D9;
  position: absolute;
  top: 60px;
  right: -10px;
  overflow: hidden; }
  .fv_image_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; }

.fv_image_2 {
  width: 30%;
  min-width: 220px;
  max-width: 260px;
  height: 140px;
  border-radius: 10px;
  background-color: #eee;
  position: absolute;
  top: 400px;
  right: calc(50% - 220px);
  overflow: hidden;
  opacity: .8; }
  .fv_image_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.fv_image_3 {
  width: 120px;
  height: 80px;
  border-radius: 10px;
  background-color: #D9D9D9;
  position: absolute;
  top: 570px;
  left: 140px;
  overflow: hidden;
  opacity: .8; }
  .fv_image_3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.fv_image_4 {
  width: 170px;
  height: 110px;
  border-radius: 10px;
  background-color: #eee;
  position: absolute;
  top: 490px;
  left: -10px;
  overflow: hidden;
  opacity: .6; }
  .fv_image_4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

/*メッセージセクションの設定*/
.message {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }

.message_flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; }

.message_img_wrap {
  width: 100vw;
  height: 320px;
  margin-top: 40px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  position: relative; }

.message_img1 {
  width: 164px;
  height: 115px;
  background-color: #BABABA;
  border-radius: 6px;
  position: absolute;
  top: 0;
  right: calc(50% - 170px);
  overflow: hidden; }
  .message_img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left; }

.message_img2 {
  width: calc(100% - 100px);
  max-width: 300px;
  height: 180px;
  background-color: #BABABA;
  border-radius: 0 10px 10px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden; }
  .message_img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right; }

/*OURWORKSセクションの設定*/
.our_works {
  width: 100%;
  max-width: 400px;
  margin: 100px auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }
  .our_works::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; }

.work_flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; }

.work_link {
  width: 100%;
  max-width: 400px;
  display: flex;
  margin: 30px auto 40px auto;
  height: 60px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: var(--sh);
  justify-content: center;
  align-items: center;
  font-weight: var(--bold);
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all .3s ease; }
  .work_link::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; }
  .work_link:hover {
    color: #fff;
    opacity: 1; }
    .work_link:hover::after {
      transform: scaleX(1); }
    .work_link:hover::before {
      filter: brightness(0) invert(1); }
  .work_link::before {
    content: "";
    width: 13px;
    height: 15px;
    background-image: url("../img/arrow.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 23px;
    right: 25px; }

.works_img_wrap {
  width: 100vw;
  height: 240px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative; }

.works_img {
  width: calc(100% - 20px);
  height: 240px;
  max-width: 400px;
  background-color: #BABABA;
  border-radius: 10px;
  position: absolute;
  top: 0;
  right: -10px;
  overflow: hidden; }
  .works_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

/*PEOPLEセクションの設定*/
.people {
  width: 100%;
  max-width: 400px;
  margin: 100px auto;
  padding: 0 20px;
  box-sizing: border-box;
  position: relative; }
  .people::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: -80px;
    left: -350px;
    z-index: -1; }

.people_ul {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  gap: 20px; }

.people_li {
  width: 100%;
  height: 155px;
  padding: 10px 10px 10px 20px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: var(--sh);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }
  .people_li:hover {
    opacity: 1; }
    .people_li:hover img {
      transform: scale(1.1); }
  .people_li h3 {
    font-size: 1.7rem;
    font-weight: var(--bold);
    margin-bottom: 8px; }
  .people_li p {
    font-size: 1.3rem;
    font-weight: 500; }

.people_doc {
  width: calc(100% - 155px); }

.people_img {
  width: 135px;
  height: 135px;
  background-color: #B8B8B8;
  border-radius: 5px;
  overflow: hidden; }
  .people_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease; }

/*アバウトセクションの設定*/
.about {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }

.about_link_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  gap: 20px; }
  .about_link_wrap a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 170px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    box-shadow: var(--sh);
    overflow: hidden;
    position: relative; }
    .about_link_wrap a:hover {
      opacity: 1; }
      .about_link_wrap a:hover::after {
        transform: scale(1.2); }
    .about_link_wrap a h4 {
      font-size: 1.8rem;
      font-weight: var(--ebold);
      margin-bottom: 10px;
      line-height: 1.6;
      text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8); }
    .about_link_wrap a div {
      background-color: #fff;
      width: 180px;
      height: 36px;
      border-radius: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative; }
      .about_link_wrap a div p {
        background: var(--gradation);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: var(--sbold);
        font-size: 1.3rem; }
      .about_link_wrap a div::before {
        content: "";
        width: 13px;
        height: 12px;
        background-image: url("../img/arrow.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 13px;
        right: 19px; }

.insight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/insight.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .4s ease;
  z-index: -1; }

.toabout::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/toabout.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .4s ease;
  z-index: -1; }

@media screen and (min-width: 500px) {
  /*ファーストビューの設定*/
  .fv_image_1 {
    right: calc(50% - 270px);
    top: 60px;
    max-width: 340px; }

  .fv_image_2 {
    right: calc(50% - 230px); }

  /*メッセージセクションの設定*/
  .message_img2 {
    left: calc(50% - 200px);
    border-radius: 10px; }

  /*OURWORKSセクションの設定*/
  .works_img {
    right: calc(50% - 200px); } }
@media screen and (min-width: 768px) {
  /*ファーストビューの設定*/
  .fv {
    height: 720px;
    margin-bottom: 100px; }

  .fv_image_1 {
    max-width: 470px;
    height: 335px;
    top: 70px;
    right: -10px;
    border-radius: 10px; }

  .fv_image_2 {
    right: 160px;
    top: 440px;
    height: 170px; }

  .fv_image_3 {
    width: 200px;
    height: 130px;
    top: 570px;
    left: 140px; }

  .fv_image_4 {
    width: 220px;
    height: 140px;
    top: 460px;
    left: -10px; }

  .fv_cap {
    position: absolute;
    top: 147px;
    left: 20px;
    font-size: 4.4rem;
    font-weight: var(--bold); }

  .fv_p1 {
    font-size: 2.8rem;
    top: 300px; }

  .fv_p2 {
    font-size: 1.4rem;
    top: 337px; }

  .fv_deco {
    display: none; }

  .fv_deco_pc {
    display: block;
    width: 2200px;
    height: auto;
    position: absolute;
    top: -300px;
    left: -810px; }

  /*メッセージセクションの設定*/
  .message {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 20px; }

  .message_flex {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start; }

  .message_img_wrap {
    width: 100px;
    height: 100px;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0; }

  .message_img1 {
    width: 200px;
    height: 120px;
    border-radius: 20px;
    top: -310px;
    right: -240px; }

  .message_img2 {
    width: 500px;
    max-width: none;
    height: 328px;
    bottom: -150px;
    left: 0;
    border-radius: 20px; }

  /*OURWORKSセクションの設定*/
  .our_works {
    width: 100%;
    max-width: none;
    margin: 160px auto;
    padding: 0 20px;
    box-sizing: border-box; }
    .our_works::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: -130px;
      right: -1210px;
      z-index: -1; }

  .work_flex {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }

  .work_doc_wrap {
    width: 80%; }

  .work_link {
    width: 100%;
    max-width: 400px;
    display: flex;
    margin: 30px auto 20px 0;
    height: 70px;
    background-color: #fff;
    border-radius: 35px;
    box-shadow: var(--sh);
    justify-content: center;
    align-items: center;
    font-weight: var(--bold);
    font-size: 1.6rem;
    position: relative; }
    .work_link::before {
      content: "";
      width: 13px;
      height: 15px;
      background-image: url("../img/arrow.png");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      top: 28px;
      right: 25px; }

  .works_img_wrap {
    width: 10%;
    height: 320px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative; }

  .works_img {
    width: 650px;
    height: 300px;
    max-width: none;
    background-color: #BABABA;
    border-radius: 20px;
    position: absolute;
    top: -150px;
    right: -20px;
    z-index: -1; }

  /*PEOPLEセクションの設定*/
  .people {
    max-width: none;
    margin: 160px auto;
    padding: 0 20px; }
    .people::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: -130px;
      left: -850px;
      z-index: -1; }

  .people_cap_wrap {
    text-align: center; }

  .people_p {
    text-align: center; }

  .people_ul {
    width: 100%;
    max-width: 1160px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    gap: 30px;
    flex-wrap: wrap; }
    .people_ul li {
      width: 45%; }

  .people_li {
    width: 100%;
    height: 155px;
    padding: 10px 10px 10px 20px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: var(--sh);
    border-radius: 10px; }
    .people_li h3 {
      font-size: 2rem;
      font-weight: var(--bold);
      margin-bottom: 14px; }
    .people_li p {
      font-size: 1.4rem; }

  .people_doc {
    width: calc(100% - 155px); }

  .people_img {
    width: 135px;
    height: 135px;
    background-color: #B8B8B8;
    border-radius: 5px; }

  /*アバウトセクションの設定*/
  .about {
    max-width: 1160px;
    margin: 160px auto;
    padding: 0 20px; }

  .about_cap_wrap {
    text-align: center; }

  .about_link_wrap {
    width: 100%;
    flex-direction: row;
    margin: 70px auto;
    gap: 40px; }
    .about_link_wrap a {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 280px;
      border-radius: 20px;
      color: #fff;
      text-align: center;
      box-shadow: var(--sh); }
      .about_link_wrap a h4 {
        font-size: 2.8rem;
        font-weight: var(--ebold);
        margin-bottom: 20px;
        line-height: 1.6;
        height: 100px; }
      .about_link_wrap a .about_sec {
        padding-top: 30px;
        box-sizing: border-box; }
      .about_link_wrap a div {
        background-color: #fff;
        width: 60%;
        max-width: 250px;
        height: 50px;
        border-radius: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative; }
        .about_link_wrap a div p {
          background: var(--gradation);
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
          font-weight: var(--sbold);
          font-size: 1.8rem; }
        .about_link_wrap a div::before {
          content: "";
          width: 13px;
          height: 15px;
          background-size: contain;
          background-position: center;
          background-repeat: no-repeat;
          position: absolute;
          top: 18px;
          right: 20px; } }
@media screen and (min-width: 1024px) {
  /*ファーストビューの設定*/
  .fv {
    height: 830px;
    margin-bottom: 150px; }

  .fv_image_1 {
    max-width: 720px;
    height: 430px;
    right: -20px;
    top: 50px;
    border-radius: 20px; }

  .fv_image_2 {
    max-width: 380px;
    width: 412px;
    height: 250px;
    top: 510px;
    right: 230px;
    border-radius: 20px; }

  .fv_image_3 {
    width: 200px;
    height: 130px;
    top: 670px;
    left: 140px; }

  .fv_image_4 {
    width: 220px;
    height: 140px;
    top: 570px;
    left: -10px; }

  .fv_cap {
    position: absolute;
    top: 147px;
    left: 50px;
    font-size: 5.4rem; }

  .fv_p1 {
    font-size: 2.8rem;
    top: 320px;
    left: 50px;
    display: none; }

  .fv_p2 {
    font-size: 1.4rem;
    top: 357px;
    left: 50px;
    display: none; }

  .fv_deco {
    display: none; }

  .fv_deco_pc {
    display: block;
    width: 2200px;
    height: auto;
    position: absolute;
    top: -280px;
    left: -740px; }

  /*メッセージセクションの設定*/
  .message {
    padding: 0 50px;
    max-width: 1160px; }

  .message_flex {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative; }

  .message_img_wrap {
    display: none; }

  .message_img1 {
    width: 267px;
    height: 176px;
    top: -120px;
    right: -60px; }

  .message_img2 {
    width: 500px;
    max-width: none;
    height: 328px;
    bottom: auto;
    top: 160px;
    left: auto;
    right: 0;
    z-index: -1; }

  /*OURWORKSセクションの設定*/
  .our_works {
    width: 100%;
    max-width: 1160px;
    margin: 160px auto;
    padding: 0 50px;
    box-sizing: border-box; }

  .work_flex {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }

  .work_doc_wrap {
    width: 80%; }

  .work_link {
    width: 100%;
    max-width: 400px;
    display: flex;
    margin: 30px auto 40px 0;
    height: 70px;
    background-color: #fff;
    border-radius: 35px;
    box-shadow: var(--sh);
    justify-content: center;
    align-items: center;
    font-weight: var(--bold);
    font-size: 1.6rem;
    position: relative; }
    .work_link::before {
      content: "";
      width: 13px;
      height: 15px;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      position: absolute;
      top: 28px;
      right: 25px; }

  .works_img_wrap {
    width: 10%;
    height: 320px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative; }

  .works_img {
    width: 650px;
    height: 300px;
    max-width: none;
    background-color: #BABABA;
    position: absolute;
    top: -150px;
    right: -20px;
    z-index: -1; }

  /*PEOPLEセクションの設定*/
  .people {
    max-width: none;
    margin: 160px auto;
    padding: 0 50px; }

  .people_cap_wrap {
    text-align: center; }

  .people_p {
    text-align: center; }

  .people_ul {
    width: 100%;
    max-width: 1160px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 70px auto;
    gap: 40px; }
    .people_ul li {
      width: 46%; }

  .people_li {
    width: 100%;
    height: 230px;
    padding: 20px 20px 20px 40px;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: var(--sh);
    border-radius: 10px; }
    .people_li h3 {
      font-size: 2.4rem;
      font-weight: var(--bold);
      margin-bottom: 14px; }
    .people_li p {
      font-size: 1.6rem; }

  .people_doc {
    width: calc(100% - 215px); }

  .people_img {
    width: 195px;
    height: 195px;
    background-color: #B8B8B8;
    border-radius: 5px; } }
@media screen and (min-width: 1200px) {
  /*ファーストビューの設定*/
  .fv {
    height: 1000px; }

  .fv_image_1 {
    max-width: 700px;
    height: 460px;
    right: -20px;
    top: 140px;
    border-radius: 20px; }

  .fv_image_2 {
    max-width: 410px;
    width: 410px;
    height: 270px;
    top: 650px;
    right: 190px;
    border-radius: 20px; }

  .fv_image_3 {
    width: 230px;
    height: 150px;
    top: 880px;
    left: 310px;
    border-radius: 20px; }

  .fv_image_4 {
    width: 380px;
    height: 250px;
    top: 680px;
    left: -20px;
    border-radius: 20px; }

  .fv_cap {
    top: 210px;
    left: 50px;
    font-size: 7rem; }

  .fv_p1 {
    font-size: 2.8rem;
    top: 410px;
    left: calc(50% - 570px);
    display: none; }

  .fv_p2 {
    font-size: 1.4rem;
    top: 450px;
    left: calc(50% - 570px);
    display: none; }

  .fv_deco_pc {
    width: 2200px;
    top: -80px;
    left: -690px; } }
@media screen and (min-width: 1500px) {
  /*ファーストビューの設定*/
  .fv_image_1 {
    max-width: 800px;
    right: calc(50% - 790px);
    border-radius: 20px; }

  .fv_image_2 {
    right: calc(50% - 520px);
    border-radius: 20px; }

  /*メッセージの設定*/
  .message_img1 {
    right: -120px; }

  /*アワーワークスの設定*/
  .works_img_wrap {
    width: 20%; }

  .works_img {
    width: 770px;
    height: 360px;
    right: -20px; } }
@media screen and (min-width: 1700px) {
  .works_img {
    width: 830px;
    height: 380px;
    right: -20px; } }
