@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: min(10px, 62.5%);
}

:root {
  font-size: min(10px, 62.5%);
  font-family: "Raleway", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
:root body, :root p, :root ul, :root li, :root td, :root th, :root dl, :root dt, :root dd {
  margin: 0;
  padding: 0;
}
:root body {
  font-family: "Raleway", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  background-color: #f5f5f5;
  color: #222;
}
:root h1, :root h2, :root h3, :root h4 {
  line-height: 1.2;
}
:root a::after {
  width: 0;
  height: 0;
  bottom: 0;
  transform: none;
  transform-origin: 0;
  transition: transform none;
}
:root a::after:hover::after {
  transform: none;
}
:root {
  /*----------------------------
  * メニュー本体
  *----------------------------*/
}
:root .navbar {
  padding: 7px 0 !important;
  z-index: 10;
}
:root .navbar a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000000;
  bottom: -1px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
:root .navbar a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
:root .container-lg {
  padding: 14px 10.5px 0 10.5px !important;
}
:root .navbar-brand {
  padding: 4.375px 0 21px !important;
}
:root .nav-item {
  font-family: 新ゴ R, Arial, Helvetica, sans-serif;
  font-size: 17.5px;
  font-weight: normal;
  padding: 0 14px;
}
:root .nav-item .nav-link {
  padding: 7px;
  height: 42px !important;
  line-height: 1.6 !important;
}
:root .container-lg {
  padding: 21px 10.5px !important;
}
:root .border-start, :root .lh-base {
  font-family: 新ゴ R, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (min-width: 992px) {
  :root .navbar-expand-lg .navbar-nav {
    width: 689px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 991px) {
  :root .navbar-nav {
    padding: 0 0 0 42px !important;
  }
  :root .nav-item {
    padding: 14px !important;
  }
  :root .nav-item .nav-link {
    padding: 7px 0 !important;
  }
}

.link-btn {
  display: flex;
  width: 30rem;
  height: 6rem;
  justify-content: center;
  align-items: center;
  background-color: #222;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  border: solid 0.2rem #222;
  border-radius: 5rem;
  margin-top: 5rem;
  transition: 0.3s;
}
.link-btn .btn-arrow {
  position: relative;
  display: inline-block;
  padding-left: 2rem;
}
.link-btn .btn-arrow::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 0;
  border-top: solid 0.2rem #fff;
  border-right: solid 0.2rem #fff;
  border-radius: 0.1rem;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -4.8rem;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.link-btn:hover {
  background: none;
  color: #222;
}
.link-btn:hover .btn-arrow::before {
  border-top: solid 0.2rem #222;
  border-right: solid 0.2rem #222;
}

.extend-button {
  width: 26.5rem;
}
.extend-button .extend-button-link {
  padding: 2rem;
  color: #222;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.extend-button .extend-button-link::before {
  content: "";
  width: 6rem;
  height: 6rem;
  background-color: #222;
  border-radius: 10rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  z-index: -1;
}
.extend-button .extend-button-link:hover::before {
  width: 100%;
}
.extend-button .extend-button-link:hover .extend-button-txt {
  color: #fff;
}
.extend-button .extend-button-link .arrow {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 0.2rem;
  margin: 0 0 0.7rem -3.5rem;
  border-radius: 10rem;
  background-color: #fff;
}
.extend-button .extend-button-link .arrow::before, .extend-button .extend-button-link .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.1rem);
  right: 0;
  width: 1rem;
  height: 0.2rem;
  border-radius: 10rem;
  background-color: #fff;
  transform-origin: calc(100% - 0.1rem) 50%;
}
.extend-button .extend-button-link .arrow::before {
  transform: rotate(45deg);
}
.extend-button .extend-button-link .arrow::after {
  transform: rotate(-45deg);
}
.extend-button .extend-button-link .extend-button-txt {
  font-size: 2rem;
  padding-left: 5rem;
  transition: 0.3s;
}

.breadcrumb ul,
.breadcrumb-mb ul,
.breadcrumb-p ul {
  display: flex;
  list-style: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
}
.breadcrumb ul li,
.breadcrumb-mb ul li,
.breadcrumb-p ul li {
  position: relative;
}
.breadcrumb ul li:not(:first-child),
.breadcrumb-mb ul li:not(:first-child),
.breadcrumb-p ul li:not(:first-child) {
  margin-left: 3.2rem;
}
.breadcrumb ul li:not(:first-child)::before,
.breadcrumb-mb ul li:not(:first-child)::before,
.breadcrumb-p ul li:not(:first-child)::before {
  content: ">";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: -60%;
  left: -2rem;
  bottom: 0;
  margin: auto;
}
.breadcrumb ul li a,
.breadcrumb-mb ul li a,
.breadcrumb-p ul li a {
  text-decoration: none;
  color: #222;
}
.breadcrumb ul li:last-child span,
.breadcrumb-mb ul li:last-child span,
.breadcrumb-p ul li:last-child span {
  color: #b5b5b5;
}

.breadcrumb ul {
  position: absolute;
  bottom: 0;
}

.breadcrumb-mb {
  display: none;
}

.scroll-down {
  position: relative;
  margin-top: 8rem;
  height: 8.2rem;
}
.scroll-down .scroll-down-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: serif;
  color: #222;
  font-size: 1.6rem;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
}
.scroll-down .scroll-down-icon .circle-arrow {
  width: 5rem;
  height: 5rem;
  border: 0.2rem solid #222;
  border-radius: 50%;
  position: relative;
  margin-top: 1.6rem;
  margin-inline: auto;
  animation: pulse 2s infinite;
}
.scroll-down .scroll-down-icon .circle-arrow::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  border-left: 0.2rem solid #222;
  border-bottom: 0.2rem solid #222;
  border-radius: 0.2rem;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes pulse {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-0.8rem);
  }
  35% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.4rem);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.text-slider {
  width: 100%;
  height: fit-content;
  margin-top: 15rem;
  font-size: 12.8rem;
  color: #e5e5e5;
  display: flex;
  place-items: center;
  overflow: hidden;
  text-wrap: nowrap;
  line-height: 1.18;
}
.text-slider .slider-item {
  display: inline-block;
}
.text-slider .slider-item img {
  display: inline-block;
  height: 8rem;
  width: auto;
  margin: 0 4rem;
}

.cta {
  background-color: #e5e5e5;
  border-top: solid 0.15rem #222;
}
.cta .cta-wrapper {
  padding: 8rem 0;
}
.cta .cta-wrapper .cta-title {
  text-align: center;
  margin-bottom: 4rem;
}
.cta .cta-wrapper .cta-title h2 {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: 0.24rem;
}
.cta .cta-wrapper .cta-title p {
  font-weight: 700;
  font-size: 1.6rem;
}
.cta .cta-wrapper p {
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 3.2rem;
}
.cta .cta-wrapper .cta-btn {
  width: fit-content;
  margin: 5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .cta-wrapper .cta-btn p {
  font-size: 1.4rem;
  line-height: 4rem;
}
.cta .cta-wrapper .cta-btn .link-btn {
  margin-top: 0;
}

.parallaxTarget {
  opacity: 0;
  transform: translateY(4rem);
}

.parallaxBtn {
  opacity: 0;
  transform: translateY(1.5rem);
}

.service h1,
.works h1,
.company h1,
.recruit h1,
.contact h1 {
  font-size: 3.4rem;
  font-weight: 700;
}
.service h2,
.works h2,
.company h2,
.recruit h2,
.contact h2 {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.service h3,
.works h3,
.company h3,
.recruit h3,
.contact h3 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 5rem;
}
.service h4,
.works h4,
.company h4,
.recruit h4,
.contact h4 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.works-top,
.company-top,
.recruit-top,
.contact-top {
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  margin-bottom: 10rem;
  display: flex;
  justify-content: space-between;
}
.works-top .works-title,
.works-top .company-title,
.works-top .recruit-title,
.works-top .contact-title,
.company-top .works-title,
.company-top .company-title,
.company-top .recruit-title,
.company-top .contact-title,
.recruit-top .works-title,
.recruit-top .company-title,
.recruit-top .recruit-title,
.recruit-top .contact-title,
.contact-top .works-title,
.contact-top .company-title,
.contact-top .recruit-title,
.contact-top .contact-title {
  padding: 2rem 0;
}
.works-top .works-title p,
.works-top .company-title p,
.works-top .recruit-title p,
.works-top .contact-title p,
.company-top .works-title p,
.company-top .company-title p,
.company-top .recruit-title p,
.company-top .contact-title p,
.recruit-top .works-title p,
.recruit-top .company-title p,
.recruit-top .recruit-title p,
.recruit-top .contact-title p,
.contact-top .works-title p,
.contact-top .company-title p,
.contact-top .recruit-title p,
.contact-top .contact-title p {
  font-size: 2rem;
  margin-bottom: 3.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.service {
  width: 100%;
}
.service .service-top {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.service .service-top .service-top-bg {
  width: 100%;
  height: 58rem;
  background-color: #91D7BB;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}
.service .service-top .service-top-wrapper {
  max-width: 1240px;
  width: 100%;
  padding: 8rem 4rem 0 4rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.service .service-top .service-top-wrapper .service-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.service .service-top .service-top-wrapper .service-title .bg {
  color: #fff;
  margin-bottom: 1rem;
}
.service .service-top .service-top-wrapper .service-title .bg .bg-wrap {
  position: relative;
  display: inline-block;
  padding: 0.8rem 0.4rem;
  margin-bottom: 2.4rem;
}
.service .service-top .service-top-wrapper .service-title .bg .bg-wrap .inn {
  color: #91D7BB;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.service .service-top .service-top-wrapper .service-title .bg.is-animated .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: #222;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.service .service-top .service-top-wrapper .service-title .bg.is-animated .bg-wrap .inn {
  color: #fff;
}
.service .service-top .service-top-wrapper .service-title p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}
.service .service-top .service-top-wrapper .service-top-img {
  display: flex;
  max-width: 66rem;
  width: 60%;
  height: auto;
  aspect-ratio: 660/554;
}
.service .service-problem {
  position: relative;
  max-width: 1240px;
  width: 91.5%;
  background-color: #e5e5e5;
  border-radius: 1rem;
  margin: 15rem auto 0;
  padding: 6rem;
}
.service .service-problem::before {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 5rem);
  border: 5rem solid transparent;
  border-top: 3.6rem solid #e5e5e5;
}
.service .service-problem ol {
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  list-style: none;
  counter-reset: li;
  padding-left: 6rem;
}
.service .service-problem ol li {
  position: relative;
  line-height: 1.5;
}
.service .service-problem ol li:not(:first-child) {
  margin-top: 2.4rem;
}
.service .service-problem ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: -6rem;
  top: -0.2rem;
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: #91D7BB;
  font-weight: 700;
  color: #222;
  line-height: 3.4rem;
  text-align: center;
}
.service .service-effect {
  max-width: 1240px;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 18.6rem auto 0;
}
.service .service-effect h3 {
  text-align: center;
}
.service .service-effect .effect-card-list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.service .service-effect .effect-card-list .effect-card {
  width: calc((100% - 8rem) / 3);
  background-color: #fff;
  border: solid 0.4rem #91D7BB;
  border-radius: 1rem;
  padding: 3.2rem 2.4rem;
}
.service .service-effect .effect-card-list .effect-card img {
  width: auto;
  height: 15rem;
  display: block;
  margin: 0 auto 3.2rem;
}
.service .service-effect .effect-card-list .effect-card p:nth-child(2) {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.service .service-effect .effect-card-list .effect-card p:last-child {
  font-size: 1.6rem;
  line-height: 2.8rem;
  text-align: justify;
}
.service .service-content {
  max-width: 1240px;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 15rem auto 0;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.service .service-content .service-content-title {
  position: sticky;
  top: 7rem;
}
.service .service-content .service-content-title h2 {
  text-align: left;
  margin-bottom: 0;
}
.service .service-content .service-content-title p {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
.service .service-content .service-content-list {
  width: 100%;
  margin-left: 8rem;
}
.service .service-content .service-content-list .stiky {
  position: sticky;
  top: 12rem;
  background-color: #91D7BB;
  border-radius: 0 1rem 1rem 1rem;
  text-decoration: none;
  color: #222;
  display: block;
}
.service .service-content .service-content-list .stiky:nth-child(n+3) {
  margin-top: 20rem;
}
.service .service-content .service-content-list .stiky:nth-child(4) {
  top: 17rem;
  background-color: #ADE38E;
}
.service .service-content .service-content-list .stiky:nth-child(6) {
  top: 22rem;
  background-color: #BCEA76;
}
.service .service-content .service-content-list .stiky:nth-child(8) {
  top: 27rem;
  background-color: #D9F648;
}
.service .service-content .service-content-list .stiky:nth-child(10) {
  top: 32rem;
}
.service .service-content .service-content-list .stiky:nth-child(12) {
  top: 37rem;
}
.service .service-content .service-content-list .service-content-card {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: solid 0.15rem #222;
  border-radius: 0 1rem 1rem 1rem;
  padding: 6rem 4rem 4rem;
  position: relative;
  margin-top: 5rem;
}
.service .service-content .service-content-list .service-content-card .card-number {
  position: absolute;
  top: -3.2rem;
  left: 3.2rem;
  z-index: 10;
  margin-bottom: 1.2rem;
  padding-left: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}
.service .service-content .service-content-list .service-content-card h4 {
  border-bottom: solid 0.1rem #222;
  padding: 0 0 1.2rem 0;
}
.service .service-content .service-content-list .service-content-card .service-card-bottom {
  display: flex;
  gap: 3.2rem;
}
.service .service-content .service-content-list .service-content-card .service-card-bottom div {
  background-color: #fff;
  width: 15rem;
  height: 15rem;
  border-radius: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service .service-content .service-content-list .service-content-card .service-card-bottom div .tab-top {
  position: absolute;
  width: 27.5rem;
  height: auto;
  top: -4.65rem;
  left: -0.1rem;
}
.service .service-content .service-content-list .service-content-card .service-card-bottom div img {
  display: block;
  width: auto;
  height: 8rem;
}
.service .service-content .service-content-list .service-content-card .service-card-bottom p {
  width: calc(100% - 20rem - 2.4rem);
  text-align: justify;
  font-size: 2rem;
  line-height: 3.6rem;
}
.service .service-feature {
  background-color: rgba(145, 215, 187, 0.3);
  margin-top: 15rem;
}
.service .service-feature .feature-wrapper {
  max-width: 1240px;
  width: 100%;
  margin: 15rem auto 0;
  padding: 8rem 4rem;
  display: flex;
  gap: 4rem;
}
.service .service-feature .feature-wrapper .feature-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service .service-feature .feature-wrapper .feature-left .feature-title p {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
.service .service-feature .feature-wrapper .feature-left .feature-img {
  bottom: 0;
  width: 35rem;
  height: auto;
}
.service .service-feature .feature-wrapper .feature-left .feature-img-mb {
  display: none;
}
.service .service-feature .feature-wrapper .feature-list ul {
  list-style: none;
}
.service .service-feature .feature-wrapper .feature-list ul li {
  background-color: #fff;
  border-radius: 1rem;
  padding: 3.2rem;
  position: relative;
}
.service .service-feature .feature-wrapper .feature-list ul li .feature-point {
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  color: #91D7BB;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.24rem;
  top: -2.4rem;
  left: 3.2rem;
  line-height: 1.5;
}
.service .service-feature .feature-wrapper .feature-list ul li:not(:first-child) {
  margin-top: 3.2rem;
}
.service .service-feature .feature-wrapper .feature-list ul li h4 {
  margin-bottom: 2.4rem;
  line-height: 4rem;
  text-align: justify;
}
.service .service-feature .feature-wrapper .feature-list ul li h4 .feature-marker {
  background: linear-gradient(transparent 65%, rgba(255, 99, 60, 0.5) 0%);
  padding: 0 0 0.16rem 0.4rem;
}
.service .service-feature .feature-wrapper .feature-list ul li p:last-child {
  font-size: 1.6rem;
  line-height: 2.8rem;
  text-align: justify;
}
.service .service-work {
  max-width: 1240px;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 15rem auto 0;
}
.service .service-work .service-work-title {
  text-align: center;
  margin-bottom: 5rem;
}
.service .service-work .service-work-title p {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
.service .service-work .service-work-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6.65%;
}
.service .service-work .service-work-gallery .service-work-item {
  margin-bottom: 8rem;
  width: 20%;
}
.service .service-work .service-work-gallery .service-work-item .service-work-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.service .service-work .service-work-gallery .service-work-item .service-work-inner .work-img img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1.6rem;
}
.service .service-work .service-work-gallery .service-work-item .service-work-inner .work-information {
  margin: 0;
}
.service .service-work .service-work-gallery .service-work-item .service-work-inner .work-information .work-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
  height: 5.6rem;
}
.service .service-work .service-work-gallery .service-work-item .service-work-inner .work-information .work-label {
  width: fit-content;
  font-size: 1.4rem;
  border: solid 0.15rem #222;
  border-radius: 5rem;
  padding: 0.2rem 1.6rem 0 1.6rem;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.service .service-work .service-work-gallery .service-work-item .service-work-inner .work-information .work-client {
  font-size: 1.4rem;
}
.service .service-work .service-work-gallery .service-work-item .service-work-inner .work-information .work-client span {
  color: #b5b5b5;
  margin-right: 1.6rem;
}
.service .service-work .link-btn {
  margin: 0 auto;
}
.service .service-voice-circle {
  width: 100%;
  height: 15rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.service .service-voice-circle::before {
  bottom: 0;
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 400vw;
  height: 500vw;
  border-radius: 100%;
  background-color: #f5f5f5;
}
.service .service-voice {
  background-color: #91D7BB;
  margin-top: -14.9rem;
  padding-bottom: 30rem;
}
.service .service-voice .voice-wrapper {
  max-width: 1240px;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 0 auto;
}
.service .service-voice .voice-wrapper .service-voice-title {
  text-align: center;
  padding-top: 25rem;
}
.service .service-voice .voice-wrapper .service-voice-title p {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
.service .service-voice .voice-wrapper .voice-list {
  margin-top: 5rem;
  display: flex;
  gap: 4rem;
  justify-content: center;
}
.service .service-voice .voice-wrapper .voice-list .voice-item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 32rem;
  background-color: #fff;
  padding: 4rem 2.8rem;
  border: solid 0.15rem #222;
  border-radius: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.service .service-voice .voice-wrapper .voice-list .voice-item .voice-text {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.service .service-voice .voice-wrapper .voice-list .voice-item .voice-client {
  display: flex;
  align-items: center;
  margin-top: 3.2rem;
  font-size: 1.4rem;
  line-height: 2.1rem;
}
.service .service-voice .voice-wrapper .voice-list .voice-item .voice-client img {
  width: 6rem;
  height: 6rem;
  margin-right: 1.6rem;
  background-color: #D9F648;
  border-radius: 6rem;
}
.service .service-voice .voice-wrapper .voice-list .voice-item::before, .service .service-voice .voice-wrapper .voice-list .voice-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  border-style: solid;
  border-color: #222 transparent transparent;
  translate: -50% 100%;
  transform: skew(30deg);
  transform-origin: top;
}
.service .service-voice .voice-wrapper .voice-list .voice-item::before {
  border-width: 3rem 1.75rem 0 1.75rem;
}
.service .service-voice .voice-wrapper .voice-list .voice-item::after {
  border-width: 2.7rem 1.58rem 0 1.58rem;
  border-color: #fff transparent transparent;
}
.service .service-flow {
  background-color: #fff;
  max-width: 1240px;
  width: 91.5%;
  margin: -15rem auto 0;
  border-radius: 1rem;
  padding: 8rem 5rem;
  display: flex;
}
.service .service-flow .service-flow-title p {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
.service .service-flow ul {
  margin-left: 8rem;
}
.service .service-flow ul li {
  display: flex;
  gap: 3.2rem;
  position: relative;
}
.service .service-flow ul li:not(:first-child) {
  margin-top: 10rem;
}
.service .service-flow ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -20.7rem;
  left: 3rem;
  display: block;
  width: 0;
  height: 20.7rem;
  border-right: 0.15rem solid #222;
}
.service .service-flow ul li .service-flow-icon {
  width: 6rem;
  height: 6rem;
  border: solid 0.15rem #222;
  border-radius: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.service .service-flow ul li .service-flow-icon img {
  width: auto;
  height: 2.8rem;
}
.service .service-flow ul li .service-flow-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.service .service-flow ul li .service-flow-content .service-flow-text h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 5.5rem;
  text-align: left;
  margin-bottom: 1.6rem;
}
.service .service-flow ul li .service-flow-content .service-flow-text h3 span {
  font-size: 2rem;
}
.service .service-flow ul li .service-flow-content .service-flow-text h3 .service-flow-icon-mb {
  display: none;
}
.service .service-flow ul li .service-flow-content .service-flow-text p {
  font-size: 1.8rem;
  margin: 0;
  line-height: 3.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.service .service-flow ul li .service-flow-content .service-flow-img {
  width: 25rem;
  height: fit-content;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-left: 3.2rem;
  border-radius: 1rem;
}
.service .service-faq {
  max-width: 1240px;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 15rem auto 0;
}
.service .service-faq .service-faq-title {
  text-align: center;
  margin-bottom: 5rem;
}
.service .service-faq .service-faq-title p {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
.service .service-faq .faq-item {
  width: 100%;
  max-width: 950px;
  margin: 2rem auto 0;
  border: 0.15rem solid #222;
  border-radius: 1rem;
}
.service .service-faq .faq-item .faq-question__wrap {
  position: relative;
  background: rgba(88, 208, 172, 0.5);
  padding: 1.6rem 7.2rem 1.6rem 3.2rem;
  border-radius: 1rem;
  cursor: pointer;
}
.service .service-faq .faq-item .faq-question__wrap .faq-question__title {
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.service .service-faq .faq-item .faq-question__wrap .faq-question__title span {
  font-size: 3.2rem;
  font-family: "Raleway", sans-serif;
  margin-right: 2.4rem;
}
.service .service-faq .faq-item .faq-question__wrap .minus-icon {
  position: absolute;
  content: "";
  width: 2rem;
  height: 0.2rem;
  background: #222;
  right: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.service .service-faq .faq-item .faq-question__wrap .plus-icon {
  position: absolute;
  content: "";
  width: 2rem;
  height: 0.2rem;
  background: #222;
  right: 3.2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
}
.service .service-faq .faq-item .faq-question__wrap .plus-icon.active {
  transform: translateY(-50%);
}
.service .service-faq .faq-item .faq-answer__wrap {
  background: #fff;
  padding: 0 3.2rem;
  border-radius: 1rem;
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
  height: 0;
  overflow: hidden;
  font-size: 1.6rem;
}
.service .service-faq .faq-item .faq-answer__wrap.active {
  height: auto;
  padding: 1.6rem 3.2rem;
}
.service .service-faq .faq-item .faq-answer__wrap .faq-answer__text {
  line-height: 2.8rem;
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.service .service2-top .service-top-bg {
  background-color: #D9F648;
}
.service .service2-top .service-top-wrapper .service-title h1 {
  font-size: 3.2rem;
}
.service .service2-top .service-top-wrapper .service-title .bg .bg-wrap {
  padding: 0.8rem 2rem;
}
.service .service2-top .service-top-wrapper .service-title .bg .bg-wrap .inn {
  color: #D9F648;
}
.service .service2-problem ol li::before {
  background-color: #D9F648;
}
.service .service2-effect .effect-card-list {
  gap: 1.4rem;
}
.service .service2-effect .effect-card-list .effect-card {
  width: calc((100% - 4.2rem) / 4);
  border: solid 0.4rem #D9F648;
  padding: 2.4rem 1.4rem;
}
.service .service2-effect .effect-card-list .effect-card img {
  width: auto;
  height: 15rem;
  display: block;
  margin: 0 auto 3.2rem;
}
.service .service2-effect .effect-card-list .effect-card p:nth-child(2) {
  font-size: 2rem;
}
.service .service2-effect .effect-card-list .effect-card p:last-child {
  font-size: 1.4rem;
  line-height: 2.45rem;
}
.service .service2-content .service-content-list .stiky {
  background-color: #D9F648;
}
.service .service2-content .service-content-list .stiky:nth-child(4) {
  background-color: #CAF05F;
}
.service .service2-content .service-content-list .stiky:nth-child(6) {
  background-color: #BCE976;
}
.service .service2-content .service-content-list .stiky:nth-child(8) {
  background-color: #AEE38D;
}
.service .service2-content .service-content-list .stiky:nth-child(10) {
  background-color: #A0DDA4;
}
.service .service2-content .service-content-list .stiky:nth-child(12) {
  background-color: #91D7BB;
}
.service .service2-feature {
  background-color: rgba(217, 246, 72, 0.3);
}
.service .service2-feature .feature-wrapper .feature-list ul li .feature-point {
  color: #F6D348;
}
.service .service2-feature .feature-wrapper .feature-list ul li h4 .feature-marker {
  background: linear-gradient(transparent 65%, rgba(145, 215, 187, 0.5) 0%);
}
.service .service2-voice {
  background-color: #D9F648;
}
.service .service2-voice .voice-wrapper .voice-list .voice-item {
  width: 100%;
}
.service .service2-voice .voice-wrapper .voice-list .voice-item .voice-client {
  height: 8.4rem;
}
.service .service2-voice .voice-wrapper .voice-list .voice-item .voice-client img {
  background-color: #FF633C;
}
.service .service2-flow ul li:nth-last-child(-n+2)::before {
  top: -22rem;
  height: 22rem;
}
.service .service2-faq .faq-item .faq-question__wrap {
  background: rgba(217, 246, 72, 0.5);
}

.service .service3-top .service-top-bg {
  background-color: #FF633C;
}
.service .service3-top .service-top-wrapper .service-title .bg {
  color: #fff;
}
.service .service3-top .service-top-wrapper .service-title .bg .bg-wrap {
  padding: 0.8rem 2rem;
}
.service .service3-top .service-top-wrapper .service-title .bg .bg-wrap .inn {
  color: #FF633C;
}
.service .service3-top .service-top-wrapper .service-title .bg.is-animated .bg-wrap::before {
  background: #fff;
}
.service .service3-top .service-top-wrapper .service-title .bg.is-animated .bg-wrap .inn {
  color: #222;
}
.service .service3-top .service-top-wrapper .service-title p {
  color: #fff;
  font-weight: 500;
}
.service .service3-top .service-top-wrapper .service-title .link-btn {
  background-color: #fff;
  color: #222;
  border: solid 0.2rem #fff;
}
.service .service3-top .service-top-wrapper .service-title .link-btn .btn-arrow::before {
  content: "";
  border-top: solid 0.2rem #222;
  border-right: solid 0.2rem #222;
}
.service .service3-top .service-top-wrapper .service-title .link-btn:hover {
  background: none;
  color: #fff;
}
.service .service3-top .service-top-wrapper .service-title .link-btn:hover .btn-arrow::before {
  border-top: solid 0.2rem #fff;
  border-right: solid 0.2rem #fff;
}
.service .service3-problem ol li::before {
  background-color: #FF633C;
}
.service .service3-effect .effect-card-list .effect-card {
  border: solid 0.4rem #FF633C;
}
.service .service3-effect .effect-card-list .effect-card p:nth-child(2) {
  font-size: 2rem;
}
.service .service3-content .service-content-list .stiky {
  background-color: #FF633C;
}
.service .service3-content .service-content-list .stiky:nth-child(4) {
  background-color: #FD7868;
}
.service .service3-content .service-content-list .stiky:nth-child(6) {
  background-color: #FB8D95;
}
.service .service3-content .service-content-list .stiky:nth-child(8) {
  background-color: #FAA2C2;
  color: #222;
}
.service .service3-content .service-content-list .stiky:nth-child(8) .card-number, .service .service3-content .service-content-list .stiky:nth-child(8) h4, .service .service3-content .service-content-list .stiky:nth-child(8) p {
  color: #222;
  border-color: #222;
}
.service .service3-content .service-content-list .stiky:nth-child(10) {
  background-color: #F8B6ED;
  color: #222;
}
.service .service3-content .service-content-list .stiky:nth-child(10) .card-number, .service .service3-content .service-content-list .stiky:nth-child(10) h4, .service .service3-content .service-content-list .stiky:nth-child(10) p {
  color: #222;
  border-color: #222;
}
.service .service3-content .service-content-list .service-content-card {
  color: #fff;
}
.service .service3-content .service-content-list .service-content-card h4 {
  border-color: #fff;
}
.service .service3-feature {
  background-color: rgba(255, 99, 60, 0.3);
}
.service .service3-feature .feature-wrapper .feature-list ul li .feature-point {
  color: #FF633C;
}
.service .service3-feature .feature-wrapper .feature-list ul li h4 .feature-marker {
  background: linear-gradient(transparent 65%, rgba(217, 246, 72, 0.5) 0%);
}
.service .service3-voice {
  background-color: #FF633C;
}
.service .service3-voice .voice-wrapper .service-voice-title {
  color: #fff;
}
.service .service3-voice .voice-wrapper .voice-list .voice-item .voice-client img {
  background-color: #6058BB;
}
.service .service3-flow ul li h3 {
  font-size: 3rem;
}
.service .service3-flow ul li:first-child .service-flow-icon img {
  max-width: 3.2rem;
  height: auto;
}
.service .service3-faq .faq-item .faq-question__wrap {
  background: rgba(255, 99, 60, 0.5);
}

.works {
  max-width: 1240px;
  margin: 8rem auto 0;
}
.works .attachment-full.size-full.wp-post-image {
  display: none;
}
.works .works-top .works-page-label {
  width: calc(100% - 40rem);
  border-left: solid 0.15rem #222;
  padding-left: 5rem;
  display: flex;
  align-items: center;
}
.works .works-top .works-page-label .page-category-wrapper p {
  font-size: 2rem;
  margin-bottom: 1.6rem;
}
.works .works-top .works-page-label .page-category-wrapper ul {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
.works .works-top .works-page-label .page-category-wrapper ul li .page-category-label {
  display: inline-block;
  border: solid 0.15rem #222;
  border-radius: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: #222;
  padding: 0.75rem 2rem;
}
.works .works-top .works-page-label .page-category-wrapper ul li .page-category-label.is-active {
  background-color: #222;
  color: #fff;
}
.works .works-content {
  max-width: 1240px;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 15rem auto 7rem;
}
.works .works-content .works-content-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6.65%;
}
.works .works-content .works-content-gallery a {
  text-decoration: none;
  color: #222;
}
.works .works-content .works-content-gallery .works-content-item {
  margin-bottom: 8rem;
  width: 20%;
}
.works .works-content .works-content-gallery .works-content-item .works-content-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.works .works-content .works-content-gallery .works-content-item .works-content-inner .work-img img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1.6rem;
}
.works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information {
  margin: 0;
}
.works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information .work-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
  height: 5.6rem;
}
.works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information .work-label {
  width: fit-content;
  font-size: 1.4rem;
  border: solid 0.15rem #222;
  border-radius: 5rem;
  padding: 0.2rem 1.6rem 0 1.6rem;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information .work-label a {
  text-decoration: none;
  color: #222;
}
.works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information .work-client {
  font-size: 1.4rem;
}
.works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information .work-client span {
  color: #b5b5b5;
  margin-right: 1.6rem;
}
.works .works-content .works-content-gallery .works-null {
  font-size: 1.6rem;
}
.works .works-explanation {
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
}
.works .works-explanation .works-explanation-stiky .works-explanation-title {
  width: 20rem;
  margin-right: 8rem;
  position: sticky;
  top: 8rem;
}
.works .works-explanation .works-explanation-stiky .works-explanation-title .works-explanation-name {
  font-size: 2rem;
  border-bottom: 0.15rem solid #222;
  padding-bottom: 1.6rem;
  margin-bottom: 3.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 2.8rem;
}
.works .works-explanation .works-explanation-stiky .works-explanation-title .works-explanation-label {
  width: fit-content;
  font-size: 1.4rem;
  border: solid 0.15rem #222;
  border-radius: 5rem;
  padding: 0.2rem 1.6rem 0 1.6rem;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.works .works-explanation .works-explanation-stiky .works-explanation-title .works-explanation-client {
  font-size: 1.4rem;
}
.works .works-explanation .works-explanation-stiky .works-explanation-title .works-explanation-client span {
  color: #b5b5b5;
  margin-right: 1.6rem;
}
.works .works-explanation .works-explanation-content {
  width: calc(100% - 28rem);
}
.works .works-explanation .works-explanation-content .works-explanation-img {
  width: 35rem;
  border-radius: 1rem;
  display: block;
  margin: 0 auto 10rem;
}
.works .works-explanation .works-explanation-content .works-overview {
  margin-bottom: 10rem;
}
.works .works-explanation .works-explanation-content .works-overview .works-overview-title {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}
.works .works-explanation .works-explanation-content .works-overview .works-overview-title .works-explanation-icon {
  width: 6rem;
  height: 6rem;
  background-color: #91D7BB;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works .works-explanation .works-explanation-content .works-overview .works-overview-title .works-explanation-icon img {
  width: auto;
  height: 3.2rem;
}
.works .works-explanation .works-explanation-content .works-overview .works-overview-title h2 span {
  font-size: 2rem;
  margin-left: 3.2rem;
}
.works .works-explanation .works-explanation-content .works-overview p {
  font-size: 1.6rem;
  margin-bottom: 2.4rem;
  line-height: 2.8rem;
}
.works .works-explanation .works-explanation-content .works-overview .works-overview-sample {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 8rem;
}
.works .works-explanation .works-explanation-content .works-overview .works-overview-sample div {
  width: calc((100% - 2rem) / 2);
  background-color: #e5e5e5;
  border-radius: 10px;
  padding: 3.2rem;
}
.works .works-explanation .works-explanation-content .works-overview .works-overview-sample div img {
  width: 100%;
  height: auto;
}
.works .works-explanation .works-explanation-content .works-member .works-member-title {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}
.works .works-explanation .works-explanation-content .works-member .works-member-title .works-explanation-icon {
  width: 6rem;
  height: 6rem;
  background-color: #6058BB;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works .works-explanation .works-explanation-content .works-member .works-member-title .works-explanation-icon img {
  width: auto;
  height: 3.2rem;
}
.works .works-explanation .works-explanation-content .works-member .works-member-title h2 span {
  font-size: 2rem;
  margin-left: 3.2rem;
}
.works .works-explanation .works-explanation-content .works-member .works-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.works .works-explanation .works-explanation-content .works-member .works-member-list .works-member-item {
  text-align: center;
}
.works .works-explanation .works-explanation-content .works-member .works-member-list .works-member-item .works-member-icon {
  background-color: #222;
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works .works-explanation .works-explanation-content .works-member .works-member-list .works-member-item .works-member-icon img {
  width: auto;
  height: 6.5rem;
}
.works .works-explanation .works-explanation-content .works-member .works-member-list .works-member-item small {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  display: block;
}
.works .works-explanation .works-explanation-content .works-member .works-member-list .works-member-item p {
  font-size: 2rem;
}
.works .works-explanation .works-explanation-content .link-btn {
  margin: 15rem auto 0;
}
.works .post-pagination-wrapper {
  margin: 0 auto 150px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.works .post-pagination-wrapper .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}
.works .post-pagination-wrapper .page-numbers li a, .works .post-pagination-wrapper .page-numbers li span {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 5px;
  text-decoration: none;
  color: #b5b5b5;
  font-size: 2.4rem;
}
.works .post-pagination-wrapper .page-numbers li span {
  color: #222;
}
.works .post-pagination-wrapper .page-numbers .next {
  background-color: #222;
  border-radius: 2rem;
  color: #fff;
  font-size: 2rem;
  padding: 0 0 0.6rem 0.1rem;
}
.works .post-pagination-wrapper .page-numbers .prev {
  background-color: #222;
  border-radius: 2rem;
  color: #fff;
  font-size: 2rem;
  padding: 0 0.2rem 0.7rem 0;
}

.company {
  max-width: 1240px;
  margin: 8rem auto 0;
}
.company .company-wrapper {
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 10rem auto 7rem;
  display: flex;
}
.company .company-wrapper .company-menu-content .company-menu-stiky {
  position: sticky;
  top: 8rem;
}
.company .company-wrapper .company-menu-content .company-menu-stiky .company-menu-tab {
  position: absolute;
  top: -2rem;
  left: 0;
}
.company .company-wrapper .company-menu-content .company-menu-stiky .company-menu-tab img {
  width: 11.5rem;
  height: auto;
}
.company .company-wrapper .company-menu-content .company-menu-stiky .company-menu {
  width: 20rem;
  margin: 3rem 8rem 0 0;
  background-color: #222;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  padding: 1rem 1.6rem 2.4rem;
}
.company .company-wrapper .company-menu-content .company-menu-stiky .company-menu li {
  list-style: none;
  border-bottom: solid 0.1rem #fff;
}
.company .company-wrapper .company-menu-content .company-menu-stiky .company-menu li .company-menu-txt {
  display: block;
  width: 100%;
  padding: 1.6rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}
.company .company-wrapper .company-menu-content .company-menu-stiky .company-menu li .company-menu-txt .arrow-right {
  position: relative;
  display: flex;
}
.company .company-wrapper .company-menu-content .company-menu-stiky .company-menu li .company-menu-txt .arrow-right::before {
  content: "";
  margin: auto;
  position: absolute;
  top: -1.45rem;
  right: 0rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 0.1rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: rotate(45deg);
}
.company .company-wrapper .company-menu-content .company-menu-stiky .company-menu li .company-menu-txt::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-bottom: 0.25rem;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  transition: 0.3s;
}
.company .company-wrapper .company-menu-content .company-menu-stiky .company-menu li .company-menu-txt:hover::before {
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 1rem;
  background-color: #fff;
}
.company .company-wrapper .company-content {
  width: calc(100% - 28rem);
}
.company .company-wrapper .company-content .company-about .company-about-title,
.company .company-wrapper .company-content .company-about .company-philosophy-title,
.company .company-wrapper .company-content .company-about .company-history-title,
.company .company-wrapper .company-content .company-about .company-overview-title,
.company .company-wrapper .company-content .company-philosophy .company-about-title,
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title,
.company .company-wrapper .company-content .company-philosophy .company-history-title,
.company .company-wrapper .company-content .company-philosophy .company-overview-title,
.company .company-wrapper .company-content .company-history .company-about-title,
.company .company-wrapper .company-content .company-history .company-philosophy-title,
.company .company-wrapper .company-content .company-history .company-history-title,
.company .company-wrapper .company-content .company-history .company-overview-title,
.company .company-wrapper .company-content .company-overview .company-about-title,
.company .company-wrapper .company-content .company-overview .company-philosophy-title,
.company .company-wrapper .company-content .company-overview .company-history-title,
.company .company-wrapper .company-content .company-overview .company-overview-title {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}
.company .company-wrapper .company-content .company-about .company-about-title .company-about-icon,
.company .company-wrapper .company-content .company-about .company-about-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-about .company-about-title .company-history-icon,
.company .company-wrapper .company-content .company-about .company-about-title .company-overview-icon,
.company .company-wrapper .company-content .company-about .company-philosophy-title .company-about-icon,
.company .company-wrapper .company-content .company-about .company-philosophy-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-about .company-philosophy-title .company-history-icon,
.company .company-wrapper .company-content .company-about .company-philosophy-title .company-overview-icon,
.company .company-wrapper .company-content .company-about .company-history-title .company-about-icon,
.company .company-wrapper .company-content .company-about .company-history-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-about .company-history-title .company-history-icon,
.company .company-wrapper .company-content .company-about .company-history-title .company-overview-icon,
.company .company-wrapper .company-content .company-about .company-overview-title .company-about-icon,
.company .company-wrapper .company-content .company-about .company-overview-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-about .company-overview-title .company-history-icon,
.company .company-wrapper .company-content .company-about .company-overview-title .company-overview-icon,
.company .company-wrapper .company-content .company-philosophy .company-about-title .company-about-icon,
.company .company-wrapper .company-content .company-philosophy .company-about-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-philosophy .company-about-title .company-history-icon,
.company .company-wrapper .company-content .company-philosophy .company-about-title .company-overview-icon,
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-about-icon,
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-history-icon,
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-overview-icon,
.company .company-wrapper .company-content .company-philosophy .company-history-title .company-about-icon,
.company .company-wrapper .company-content .company-philosophy .company-history-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-philosophy .company-history-title .company-history-icon,
.company .company-wrapper .company-content .company-philosophy .company-history-title .company-overview-icon,
.company .company-wrapper .company-content .company-philosophy .company-overview-title .company-about-icon,
.company .company-wrapper .company-content .company-philosophy .company-overview-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-philosophy .company-overview-title .company-history-icon,
.company .company-wrapper .company-content .company-philosophy .company-overview-title .company-overview-icon,
.company .company-wrapper .company-content .company-history .company-about-title .company-about-icon,
.company .company-wrapper .company-content .company-history .company-about-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-history .company-about-title .company-history-icon,
.company .company-wrapper .company-content .company-history .company-about-title .company-overview-icon,
.company .company-wrapper .company-content .company-history .company-philosophy-title .company-about-icon,
.company .company-wrapper .company-content .company-history .company-philosophy-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-history .company-philosophy-title .company-history-icon,
.company .company-wrapper .company-content .company-history .company-philosophy-title .company-overview-icon,
.company .company-wrapper .company-content .company-history .company-history-title .company-about-icon,
.company .company-wrapper .company-content .company-history .company-history-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-history .company-history-title .company-history-icon,
.company .company-wrapper .company-content .company-history .company-history-title .company-overview-icon,
.company .company-wrapper .company-content .company-history .company-overview-title .company-about-icon,
.company .company-wrapper .company-content .company-history .company-overview-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-history .company-overview-title .company-history-icon,
.company .company-wrapper .company-content .company-history .company-overview-title .company-overview-icon,
.company .company-wrapper .company-content .company-overview .company-about-title .company-about-icon,
.company .company-wrapper .company-content .company-overview .company-about-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-overview .company-about-title .company-history-icon,
.company .company-wrapper .company-content .company-overview .company-about-title .company-overview-icon,
.company .company-wrapper .company-content .company-overview .company-philosophy-title .company-about-icon,
.company .company-wrapper .company-content .company-overview .company-philosophy-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-overview .company-philosophy-title .company-history-icon,
.company .company-wrapper .company-content .company-overview .company-philosophy-title .company-overview-icon,
.company .company-wrapper .company-content .company-overview .company-history-title .company-about-icon,
.company .company-wrapper .company-content .company-overview .company-history-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-overview .company-history-title .company-history-icon,
.company .company-wrapper .company-content .company-overview .company-history-title .company-overview-icon,
.company .company-wrapper .company-content .company-overview .company-overview-title .company-about-icon,
.company .company-wrapper .company-content .company-overview .company-overview-title .company-philosophy-icon,
.company .company-wrapper .company-content .company-overview .company-overview-title .company-history-icon,
.company .company-wrapper .company-content .company-overview .company-overview-title .company-overview-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.company .company-wrapper .company-content .company-about .company-about-title .company-about-icon img,
.company .company-wrapper .company-content .company-about .company-about-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-about .company-about-title .company-history-icon img,
.company .company-wrapper .company-content .company-about .company-about-title .company-overview-icon img,
.company .company-wrapper .company-content .company-about .company-philosophy-title .company-about-icon img,
.company .company-wrapper .company-content .company-about .company-philosophy-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-about .company-philosophy-title .company-history-icon img,
.company .company-wrapper .company-content .company-about .company-philosophy-title .company-overview-icon img,
.company .company-wrapper .company-content .company-about .company-history-title .company-about-icon img,
.company .company-wrapper .company-content .company-about .company-history-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-about .company-history-title .company-history-icon img,
.company .company-wrapper .company-content .company-about .company-history-title .company-overview-icon img,
.company .company-wrapper .company-content .company-about .company-overview-title .company-about-icon img,
.company .company-wrapper .company-content .company-about .company-overview-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-about .company-overview-title .company-history-icon img,
.company .company-wrapper .company-content .company-about .company-overview-title .company-overview-icon img,
.company .company-wrapper .company-content .company-philosophy .company-about-title .company-about-icon img,
.company .company-wrapper .company-content .company-philosophy .company-about-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-philosophy .company-about-title .company-history-icon img,
.company .company-wrapper .company-content .company-philosophy .company-about-title .company-overview-icon img,
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-about-icon img,
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-history-icon img,
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-overview-icon img,
.company .company-wrapper .company-content .company-philosophy .company-history-title .company-about-icon img,
.company .company-wrapper .company-content .company-philosophy .company-history-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-philosophy .company-history-title .company-history-icon img,
.company .company-wrapper .company-content .company-philosophy .company-history-title .company-overview-icon img,
.company .company-wrapper .company-content .company-philosophy .company-overview-title .company-about-icon img,
.company .company-wrapper .company-content .company-philosophy .company-overview-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-philosophy .company-overview-title .company-history-icon img,
.company .company-wrapper .company-content .company-philosophy .company-overview-title .company-overview-icon img,
.company .company-wrapper .company-content .company-history .company-about-title .company-about-icon img,
.company .company-wrapper .company-content .company-history .company-about-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-history .company-about-title .company-history-icon img,
.company .company-wrapper .company-content .company-history .company-about-title .company-overview-icon img,
.company .company-wrapper .company-content .company-history .company-philosophy-title .company-about-icon img,
.company .company-wrapper .company-content .company-history .company-philosophy-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-history .company-philosophy-title .company-history-icon img,
.company .company-wrapper .company-content .company-history .company-philosophy-title .company-overview-icon img,
.company .company-wrapper .company-content .company-history .company-history-title .company-about-icon img,
.company .company-wrapper .company-content .company-history .company-history-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-history .company-history-title .company-history-icon img,
.company .company-wrapper .company-content .company-history .company-history-title .company-overview-icon img,
.company .company-wrapper .company-content .company-history .company-overview-title .company-about-icon img,
.company .company-wrapper .company-content .company-history .company-overview-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-history .company-overview-title .company-history-icon img,
.company .company-wrapper .company-content .company-history .company-overview-title .company-overview-icon img,
.company .company-wrapper .company-content .company-overview .company-about-title .company-about-icon img,
.company .company-wrapper .company-content .company-overview .company-about-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-overview .company-about-title .company-history-icon img,
.company .company-wrapper .company-content .company-overview .company-about-title .company-overview-icon img,
.company .company-wrapper .company-content .company-overview .company-philosophy-title .company-about-icon img,
.company .company-wrapper .company-content .company-overview .company-philosophy-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-overview .company-philosophy-title .company-history-icon img,
.company .company-wrapper .company-content .company-overview .company-philosophy-title .company-overview-icon img,
.company .company-wrapper .company-content .company-overview .company-history-title .company-about-icon img,
.company .company-wrapper .company-content .company-overview .company-history-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-overview .company-history-title .company-history-icon img,
.company .company-wrapper .company-content .company-overview .company-history-title .company-overview-icon img,
.company .company-wrapper .company-content .company-overview .company-overview-title .company-about-icon img,
.company .company-wrapper .company-content .company-overview .company-overview-title .company-philosophy-icon img,
.company .company-wrapper .company-content .company-overview .company-overview-title .company-history-icon img,
.company .company-wrapper .company-content .company-overview .company-overview-title .company-overview-icon img {
  width: auto;
  height: 3.2rem;
}
.company .company-wrapper .company-content .company-about .company-about-title h2 span,
.company .company-wrapper .company-content .company-about .company-philosophy-title h2 span,
.company .company-wrapper .company-content .company-about .company-history-title h2 span,
.company .company-wrapper .company-content .company-about .company-overview-title h2 span,
.company .company-wrapper .company-content .company-philosophy .company-about-title h2 span,
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title h2 span,
.company .company-wrapper .company-content .company-philosophy .company-history-title h2 span,
.company .company-wrapper .company-content .company-philosophy .company-overview-title h2 span,
.company .company-wrapper .company-content .company-history .company-about-title h2 span,
.company .company-wrapper .company-content .company-history .company-philosophy-title h2 span,
.company .company-wrapper .company-content .company-history .company-history-title h2 span,
.company .company-wrapper .company-content .company-history .company-overview-title h2 span,
.company .company-wrapper .company-content .company-overview .company-about-title h2 span,
.company .company-wrapper .company-content .company-overview .company-philosophy-title h2 span,
.company .company-wrapper .company-content .company-overview .company-history-title h2 span,
.company .company-wrapper .company-content .company-overview .company-overview-title h2 span {
  font-size: 2rem;
  margin-left: 3.2rem;
}
.company .company-wrapper .company-content .company-about {
  margin-bottom: 10rem;
}
.company .company-wrapper .company-content .company-about .company-about-title .company-about-icon {
  background-color: #91D7BB;
}
.company .company-wrapper .company-content .company-about p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 2.4rem;
  line-height: 2.8rem;
}
.company .company-wrapper .company-content .company-philosophy {
  margin-bottom: 10rem;
}
.company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-philosophy-icon {
  background-color: #D9F648;
}
.company .company-wrapper .company-content .company-philosophy h4 {
  margin-bottom: 1.6rem;
}
.company .company-wrapper .company-content .company-philosophy .philosophy-txt {
  font-size: 1.6rem;
}
.company .company-wrapper .company-content .company-philosophy .philosophy-point {
  display: flex;
  font-size: 1.6rem;
  margin-top: 3.2rem;
}
.company .company-wrapper .company-content .company-philosophy .philosophy-point ul {
  margin-left: 3.2rem;
  position: relative;
}
.company .company-wrapper .company-content .company-philosophy .philosophy-point ul li {
  list-style: none;
  margin-bottom: 1.6rem;
}
.company .company-wrapper .company-content .company-philosophy .philosophy-point ul li span {
  background-color: #D9F648;
  padding: 0.25rem;
  margin-right: 1rem;
}
.company .company-wrapper .company-content .company-philosophy .philosophy-point ul::before {
  position: absolute;
  content: "";
  top: 9%;
  left: -2.4rem;
  width: 1.6rem;
  height: 0.2rem;
  background-color: #222;
}
.company .company-wrapper .company-content .company-history {
  margin-bottom: 10rem;
}
.company .company-wrapper .company-content .company-history .company-history-title .company-history-icon {
  background-color: #6058BB;
}
.company .company-wrapper .company-content .company-history table {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  font-size: 1.6rem;
}
.company .company-wrapper .company-content .company-history table tr {
  border-bottom: solid 0.1rem #b5b5b5;
}
.company .company-wrapper .company-content .company-history table tr th {
  color: #6058BB;
  font-weight: 700;
  width: 12rem;
  padding: 1.6rem;
  vertical-align: top;
}
.company .company-wrapper .company-content .company-history table tr td {
  font-weight: 500;
  padding: 1.6rem;
  line-height: 2.8rem;
}
.company .company-wrapper .company-content .company-history table tr .history-Indent,
.company .company-wrapper .company-content .company-history table tr .history-Indent-md {
  display: inline-block;
  width: 5rem;
}
.company .company-wrapper .company-content .company-overview .company-overview-title .company-overview-icon {
  background-color: #FF633C;
}
.company .company-wrapper .company-content .company-overview table {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  font-size: 1.6rem;
}
.company .company-wrapper .company-content .company-overview table tr {
  border-bottom: solid 0.1rem #b5b5b5;
}
.company .company-wrapper .company-content .company-overview table tr th {
  color: #FF633C;
  font-weight: 700;
  width: 12rem;
  padding: 1.6rem;
  vertical-align: top;
}
.company .company-wrapper .company-content .company-overview table tr td {
  font-weight: 500;
  padding: 1.6rem;
  line-height: 2.8rem;
}
.company .company-wrapper .company-content .company-overview table tr td .overview-md {
  display: none;
}
.company .company-wrapper .company-content .company-overview table tr ul li span {
  vertical-align: -0.25rem;
}
.company .company-wrapper .company-content .company-overview table tr ul li::marker {
  font-size: 1rem;
}
.company .company-wrapper .company-content .company-overview .company-access {
  font-size: 2rem;
  margin-top: 3.2rem;
}
.company .company-wrapper .company-content .company-overview .company-access .triangle {
  display: inline-block;
  margin-right: 1.6rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-left: 1.4rem solid #222;
  border-right: 0;
}
.company .company-wrapper .company-content .company-overview iframe {
  margin-top: 1.6rem;
  aspect-ratio: 845/400;
  width: 100%;
  height: auto;
}

.recruit {
  max-width: 1240px;
  margin: 8rem auto 0;
}
.recruit .recruit-introduction {
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
}
.recruit .recruit-introduction p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.recruit .recruit-wrapper {
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  margin: 15rem auto 7rem;
  display: flex;
}
.recruit .recruit-wrapper .recruit-menu-content .recruit-menu-stiky {
  position: sticky;
  top: 8rem;
}
.recruit .recruit-wrapper .recruit-menu-content .recruit-menu-stiky .recruit-menu-tab {
  position: absolute;
  top: -2rem;
  left: 0;
}
.recruit .recruit-wrapper .recruit-menu-content .recruit-menu-stiky .recruit-menu-tab img {
  width: 11.5rem;
  height: auto;
}
.recruit .recruit-wrapper .recruit-menu-content .recruit-menu-stiky .recruit-menu {
  width: 20rem;
  margin: 3rem 8rem 0 0;
  background-color: #222;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  padding: 1rem 1.6rem 2.4rem;
}
.recruit .recruit-wrapper .recruit-menu-content .recruit-menu-stiky .recruit-menu li {
  list-style: none;
  border-bottom: solid 0.1rem #fff;
}
.recruit .recruit-wrapper .recruit-menu-content .recruit-menu-stiky .recruit-menu li .recruit-menu-txt {
  display: block;
  width: 100%;
  padding: 1.6rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}
.recruit .recruit-wrapper .recruit-menu-content .recruit-menu-stiky .recruit-menu li .recruit-menu-txt .arrow-right {
  position: relative;
  display: flex;
}
.recruit .recruit-wrapper .recruit-menu-content .recruit-menu-stiky .recruit-menu li .recruit-menu-txt .arrow-right::before {
  content: "";
  margin: auto;
  position: absolute;
  top: -1.45rem;
  right: 0rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 0.1rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transform: rotate(45deg);
}
.recruit .recruit-wrapper .recruit-menu-content .recruit-menu-stiky .recruit-menu li .recruit-menu-txt::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-bottom: 0.25rem;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  transition: 0.3s;
}
.recruit .recruit-wrapper .recruit-menu-content .recruit-menu-stiky .recruit-menu li .recruit-menu-txt:hover::before {
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 1rem;
  background-color: #fff;
}
.recruit .recruit-wrapper .recruit-content {
  width: calc(100% - 28rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.recruit .recruit-wrapper .recruit-content h2 {
  font-size: 3.2rem;
  margin-bottom: 6rem;
}
.recruit .recruit-wrapper .recruit-content h2 .heading-point {
  color: #FF633C;
}
.recruit .recruit-wrapper .recruit-content .recruit-type {
  margin-bottom: 10rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list {
  display: flex;
  gap: 4rem;
  padding: 0 0 8rem;
  border-bottom: solid 0.1rem #b5b5b5;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-img {
  width: 24rem;
  height: 24rem;
  background-color: #6058BB;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-img img {
  width: 9rem;
  height: auto;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt {
  width: calc(100% - 25rem - 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt h3 .heading-point {
  color: #6058BB;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt .type-list-md .type-list-md-img {
  display: none;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt h3 {
  margin-bottom: 1.6rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list:nth-of-type(2) {
  padding-top: 8rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list:nth-of-type(2) .type-list-img {
  background-color: #91D7BB;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list:nth-of-type(2) .type-list-txt h3 .heading-point {
  color: #91D7BB;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list:last-child {
  padding-top: 8rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list:last-child .type-list-img {
  background-color: #FF633C;
}
.recruit .recruit-wrapper .recruit-content .recruit-type .type-list:last-child .type-list-txt h3 .heading-point {
  color: #FF633C;
}
.recruit .recruit-wrapper .recruit-content .recruit-flow {
  margin-bottom: 10rem;
  padding-bottom: 8rem;
  border-bottom: solid 0.1rem #b5b5b5;
}
.recruit .recruit-wrapper .recruit-content .recruit-flow h2 .heading-point {
  color: #6058BB;
}
.recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block {
  background-color: #fff;
  border-radius: 1rem;
  padding: 3.2rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol {
  counter-reset: number;
  list-style-type: none;
  padding-left: 5.5rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li {
  position: relative;
}
.recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li::before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  counter-increment: number;
  content: counter(number);
  background: #222;
  color: #fff;
  width: 4rem;
  height: 4rem;
  top: -0.5rem;
  left: -6rem;
  border-radius: 50%;
  font-size: 2rem;
  padding-bottom: 0.25rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -13rem;
  left: -4rem;
  display: block;
  width: 0;
  height: 13rem;
  border-right: 0.15rem solid #222;
}
.recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li:not(:last-child) {
  margin-bottom: 6rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li h4 {
  margin-bottom: 1.6rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-office {
  margin-bottom: 10rem;
  padding-bottom: 8rem;
  border-bottom: solid 0.1rem #b5b5b5;
}
.recruit .recruit-wrapper .recruit-content .recruit-office h2 .heading-point {
  color: #91D7BB;
}
.recruit .recruit-wrapper .recruit-content .recruit-office img {
  width: 100%;
  height: auto;
  aspect-ratio: 2.1/1;
  object-fit: cover;
  margin-bottom: 3.2rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-office ul li {
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin-bottom: 1.6rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-office ul li:last-child {
  margin-bottom: 0;
}
.recruit .recruit-wrapper .recruit-content .recruit-office ul li span {
  vertical-align: -0.25rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-office ul li::marker {
  font-size: 1rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-entry .entry-copy {
  position: relative;
  display: block;
  background: #D9F648;
  border-radius: 5rem;
  padding: 1.2rem 4rem;
  font-weight: bold;
  color: #222;
  font-size: 1.6rem;
  width: fit-content;
  margin: 0 auto 2.4rem;
}
.recruit .recruit-wrapper .recruit-content .recruit-entry .entry-copy::before {
  content: "";
  border: 1rem solid transparent;
  border-top: 1rem solid #D9F648;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.recruit .recruit-wrapper .recruit-content .recruit-entry .entry-btn {
  display: block;
  background-color: #222;
  border-radius: 1rem;
  border: solid 0.2rem #222;
  color: #fff;
  width: 55rem;
  height: 12rem;
  margin: 0 auto;
  font-size: 3.2rem;
  line-height: 12rem;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.recruit .recruit-wrapper .recruit-content .recruit-entry .entry-btn:hover {
  background: none;
  color: #222;
}

.recruit .recruit-top .recruit-page-label {
  width: calc(100% - 40rem);
  border-left: solid 0.15rem #222;
  padding-left: 5rem;
  display: flex;
  align-items: center;
}
.recruit .recruit-top .recruit-page-label .recruit-category-wrapper p {
  font-size: 2rem;
  margin-bottom: 1.6rem;
}
.recruit .recruit-top .recruit-page-label .recruit-category-wrapper ul {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}
.recruit .recruit-top .recruit-page-label .recruit-category-wrapper ul li .page-category-label {
  display: inline-block;
  border: solid 0.15rem #222;
  border-radius: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: #222;
  padding: 0.75rem 2rem;
}
.recruit .recruit-top .recruit-page-label .recruit-category-wrapper ul li:first-child .page-category-label {
  background-color: #6058BB;
  color: #fff;
}
.recruit .recruit-top .recruit-page-label .recruit-category-wrapper ul li:nth-child(2) .page-category-label {
  background-color: #91D7BB;
}
.recruit .recruit-top .recruit-page-label .recruit-category-wrapper ul li:last-child .page-category-label {
  background-color: #FF633C;
  color: #fff;
}
.recruit .recruit-wrapper {
  margin-top: 10rem;
}
.recruit .recruit-wrapper .recruit-type-writer h3 .heading-point {
  color: #6058BB;
}
.recruit .recruit-wrapper .recruit-type-content .recruit-type-stiky {
  position: sticky;
  top: 8rem;
  width: 20rem;
  margin: 0 8rem 0 0;
}
.recruit .recruit-wrapper .recruit-type-content .recruit-type-stiky h3 {
  margin-bottom: 1.6rem;
}
.recruit .recruit-wrapper .recruit-type-content .recruit-type-stiky p {
  font-size: 2rem;
}
.recruit .recruit-wrapper .recruit-type-content .recruit-type-stiky p .triangle {
  display: inline-block;
  margin-right: 1.6rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-left: 1.4rem solid #222;
  border-right: 0;
}
.recruit .recruit-wrapper .recruit-information-content .recruit-information-list {
  margin-top: 4.5rem;
}
.recruit .recruit-wrapper .recruit-information-content .recruit-information-list table {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  font-size: 1.6rem;
}
.recruit .recruit-wrapper .recruit-information-content .recruit-information-list table tr {
  border-bottom: solid 0.1rem #b5b5b5;
}
.recruit .recruit-wrapper .recruit-information-content .recruit-information-list table tr th {
  color: #6058BB;
  font-weight: 700;
  width: 18.5rem;
  padding: 1.6rem;
  vertical-align: top;
}
.recruit .recruit-wrapper .recruit-information-content .recruit-information-list table tr td {
  font-weight: 500;
  padding: 1.6rem;
  line-height: 2.8rem;
}
.recruit .recruit-wrapper .recruit-information-content .recruit-information-list table tr ul li span {
  vertical-align: -0.25rem;
}
.recruit .recruit-wrapper .recruit-information-content .recruit-information-list table tr ul li::marker {
  font-size: 1rem;
}
.recruit .recruit-wrapper .recruit-information-content .recruit-information-list .link-btn {
  margin: 8rem auto 0;
}

.contact {
  max-width: 1240px;
  margin: 8rem auto 0;
}
.contact .contact-wrapper {
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.contact .contact-wrapper .contact-introduction {
  display: flex;
  margin-bottom: 6.5rem;
}
.contact .contact-wrapper .contact-introduction p {
  margin-left: 10rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.contact .contact-wrapper .contact-introduction h3 .heading-point {
  color: #6058BB;
}
.contact .contact-wrapper .contact-introduction h3 .heading-point:last-child {
  color: #FF633C;
}
.contact .contact-wrapper .contact-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.5rem;
  background-color: #222;
  color: #fff;
  border-radius: 1rem;
  padding: 3.2rem 0;
}
.contact .contact-wrapper .contact-tel h4 {
  margin: 0;
}
.contact .contact-wrapper .contact-tel .tel-txt {
  font-size: 4.8rem;
  font-weight: 700;
}
.contact .contact-wrapper .contact-tel p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.contact .contact-wrapper .contact-form {
  margin: 15rem auto 0;
  max-width: 84rem;
}
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item {
  margin-bottom: 4rem;
}
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item p {
  display: flex;
  justify-content: space-between;
}
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item label {
  font-size: 1.6rem;
  padding-top: 1.5rem;
}
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item label .required {
  font-size: 1.4rem;
  background-color: #D9F648;
  padding: 0.25rem 1.6rem;
  margin-left: 1.6rem;
}
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-text-box,
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-select-box,
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-text-area {
  width: 55rem;
  height: 4.5rem;
  padding: 0 1.6rem;
  font-size: 1.4rem;
  border: solid 0.1rem #222;
  border-radius: 0.5rem;
}
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-text-area {
  height: 20rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  line-height: 2.45rem;
}
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-check-box {
  width: 55rem;
  display: inline-block;
}
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-check-box .wpcf7-list-item {
  margin: 0 1.4rem 0 0;
  font-size: 1.4rem;
  line-height: 2rem;
}
.contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-select-box {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("https://writerhouse.jp/wp-content/uploads/2026/02/select-arrow.png");
  background-repeat: no-repeat;
  background-size: 1.4rem auto;
  background-position: right 1.6rem center;
}
.contact .contact-wrapper .contact-form input[type=checkbox] {
  width: 1.4rem;
  height: 1.4rem;
}
.contact .contact-wrapper .contact-form input[type=submit] {
  border-radius: 5rem;
  margin: 8rem auto 0;
}

@media (min-width: 769px) and (max-width: 1239px) {
  :root {
    font-size: 0.806451613vw;
  }
}
@media screen and (max-width: 768px) {
  :root {
    font-size: 2.6666666667vw;
  }
  .breadcrumb {
    display: none;
  }
  .breadcrumb-mb {
    display: block;
    margin-left: 1.6rem;
    margin-top: 1.6rem;
  }
  .breadcrumb-mb ul {
    display: flex;
    list-style: none;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.2rem;
  }
  .breadcrumb-mb ul li {
    position: relative;
  }
  .breadcrumb-mb ul li:not(:first-child) {
    margin-left: 3.2rem;
  }
  .breadcrumb-mb ul li:not(:first-child)::before {
    content: ">";
    width: 0.857rem;
    height: 0.857rem;
    position: absolute;
    top: -60%;
    left: -1.714rem;
    bottom: 0;
    margin: auto;
  }
  .breadcrumb-mb ul li a {
    text-decoration: none;
    color: #222;
  }
  .text-slider {
    margin-top: 8rem;
    font-size: 8rem;
  }
  .text-slider .slider-item img {
    height: 5rem;
    margin: 0 3.5rem;
  }
  .cta {
    border-top: solid 0.135rem #222;
  }
  .cta .cta-wrapper {
    padding: 7rem 1.6rem;
  }
  .cta .cta-wrapper .cta-title {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .cta .cta-wrapper .cta-title h2 {
    font-size: 4.2rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.21rem;
  }
  .cta .cta-wrapper .cta-title p {
    font-size: 1.4rem;
  }
  .cta .cta-wrapper p {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
  .cta .cta-wrapper .cta-btn {
    margin: 4.375rem auto 0;
  }
  .cta .cta-wrapper .cta-btn p {
    font-size: 1.225rem;
    line-height: 3.5rem;
  }
  .extend-button {
    width: 21.2rem;
  }
  .extend-button .extend-button-link {
    padding: 2rem;
  }
  .extend-button .extend-button-link::before {
    width: 4.8rem;
    height: 4.8rem;
    left: 0;
    top: 50%;
  }
  .extend-button .extend-button-link .arrow {
    width: 2rem;
    height: 0.2rem;
    margin: 0 0 0.7rem -2.8rem;
  }
  .extend-button .extend-button-link .arrow::before, .extend-button .extend-button-link .arrow::after {
    top: calc(50% - 0.1rem);
    right: 0;
    width: 1rem;
    height: 0.2rem;
    transform-origin: calc(100% - 0.1rem) 50%;
  }
  .extend-button .extend-button-link .extend-button-txt {
    font-size: 1.6rem;
    padding-left: 4rem;
  }
  .service .service-top .service-top-bg {
    width: 100%;
    height: 58rem;
    background-color: #91D7BB;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0% 70%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
  }
  .service .service-top .service-top-wrapper {
    padding: 3.2rem 1.6rem 0 1.6rem;
    display: block;
  }
  .service .service-top .service-top-wrapper .service-title {
    margin-bottom: 2.4rem;
  }
  .service .service-top .service-top-wrapper .service-title h1 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 1.4rem;
  }
  .service .service-top .service-top-wrapper .service-title .bg .bg-wrap {
    margin-bottom: 1.4rem;
  }
  .service .service-top .service-top-wrapper .service-title p {
    font-size: 1.4rem;
  }
  .service .service-top .service-top-wrapper .service-title .link-btn {
    display: none;
  }
  .service .service-top .service-top-wrapper .service-top-img {
    width: 80%;
    height: auto;
    margin-left: auto;
  }
  .service .service-problem {
    border-radius: 0.875rem;
    padding: 4.25rem 2.4rem;
    margin-top: 8rem;
  }
  .service .service-problem::before {
    left: calc(50% - 3.75rem);
    border: 3.75rem solid transparent;
    border-top: 2.7rem solid #e5e5e5;
  }
  .service .service-problem ol {
    font-size: 1.4rem;
    padding-left: 4.25rem;
    line-height: 2.45rem;
  }
  .service .service-problem ol li:not(:first-child) {
    margin-top: 2.1rem;
  }
  .service .service-problem ol li::before {
    left: -4.25rem;
    top: -0.175rem;
    width: 3.15rem;
    height: 3.15rem;
    line-height: 2.975rem;
  }
  .service .service-effect {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    margin: 10.7rem auto 0;
  }
  .service .service-effect h3 {
    margin-bottom: 4.375rem;
  }
  .service .service-effect .effect-card-list {
    display: block;
  }
  .service .service-effect .effect-card-list .effect-card {
    width: 100%;
    border: solid 0.35rem #91D7BB;
    border-radius: 1rem;
    padding: 3.2rem 2.4rem;
  }
  .service .service-effect .effect-card-list .effect-card:nth-child(n+2) {
    margin-top: 1.4rem;
  }
  .service .service-effect .effect-card-list .effect-card img {
    height: 13.125rem;
    margin: 0 auto 2.8rem;
  }
  .service .service-effect .effect-card-list .effect-card p:nth-child(2) {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
  }
  .service .service-effect .effect-card-list .effect-card p:nth-child(2) br {
    display: none;
  }
  .service .service-effect .effect-card-list .effect-card p:last-child {
    font-size: 1.4rem;
    line-height: 2.45rem;
  }
  .service .service-content {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    margin: 8rem auto 0;
    display: block;
  }
  .service .service-content .service-content-title {
    position: static;
    margin: 0 auto 4.375rem;
    width: fit-content;
    text-align: center;
  }
  .service .service-content .service-content-title p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .service .service-content .service-content-list {
    margin-left: 0;
  }
  .service .service-content .service-content-list .service-content-card {
    min-height: 36.0541rem;
    border: solid 0.135rem #222;
    border-radius: 0 0.875rem 0.875rem 0.875rem;
    padding: 3.2rem 2.4rem;
    margin-top: 10.7rem;
  }
  .service .service-content .service-content-list .service-content-card:not(:first-child) {
    margin-top: 17.5rem;
  }
  .service .service-content .service-content-list .service-content-card .card-number {
    top: -2.8rem;
    left: 2.8rem;
    margin-bottom: 1.05rem;
    padding-left: 0.7rem;
    font-size: 1.6rem;
  }
  .service .service-content .service-content-list .service-content-card h4 {
    font-size: 1.8rem;
    padding: 0 0 1.05rem 0;
    margin-bottom: 1.4rem;
  }
  .service .service-content .service-content-list .service-content-card .service-card-bottom {
    display: block;
  }
  .service .service-content .service-content-list .service-content-card .service-card-bottom div {
    width: 12rem;
    height: 12rem;
    border-radius: 17.5rem;
    margin: 0 auto 1.4rem;
  }
  .service .service-content .service-content-list .service-content-card .service-card-bottom div .tab-top {
    width: 24.0625rem;
    top: -4.06875rem;
    left: -0.15rem;
  }
  .service .service-content .service-content-list .service-content-card .service-card-bottom div img {
    height: 7rem;
  }
  .service .service-content .service-content-list .service-content-card .service-card-bottom p {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2.45rem;
  }
  .service .service-content .service-content-list .stiky {
    border-radius: 0 0.875rem 0.875rem 0.875rem;
  }
  .service .service-content .service-content-list .stiky:nth-child(2) {
    top: 10.5rem;
  }
  .service .service-content .service-content-list .stiky:nth-child(4) {
    top: 14.875rem;
  }
  .service .service-content .service-content-list .stiky:nth-child(6) {
    top: 19.75rem;
  }
  .service .service-content .service-content-list .stiky:nth-child(8) {
    top: 24.625rem;
  }
  .service .service-content .service-content-list .stiky:nth-child(10) {
    top: 29.5rem;
  }
  .service .service-feature {
    margin-top: 8rem;
  }
  .service .service-feature .feature-wrapper {
    margin: 8rem auto 0;
    padding: 3.5rem 1.6rem;
    display: block;
    position: relative;
  }
  .service .service-feature .feature-wrapper .feature-left {
    margin-bottom: 4.375rem;
  }
  .service .service-feature .feature-wrapper .feature-left .feature-title {
    text-align: center;
  }
  .service .service-feature .feature-wrapper .feature-left .feature-title p {
    font-size: 1.4rem;
  }
  .service .service-feature .feature-wrapper .feature-left .feature-img {
    display: none;
  }
  .service .service-feature .feature-wrapper .feature-left .feature-img-mb {
    display: block;
    position: absolute;
    bottom: -8rem;
    right: 1.6rem;
    z-index: 10;
    width: 12rem;
    height: auto;
  }
  .service .service-feature .feature-wrapper .feature-list ul li {
    border-radius: 0.875rem;
    padding: 3.2rem 2.4rem;
  }
  .service .service-feature .feature-wrapper .feature-list ul li .feature-point {
    font-size: 2.8rem;
    letter-spacing: 0.21rem;
    top: -2.1rem;
    left: 2.8rem;
  }
  .service .service-feature .feature-wrapper .feature-list ul li:not(:first-child) {
    margin-top: 3.2rem;
  }
  .service .service-feature .feature-wrapper .feature-list ul li h4 {
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
    line-height: 3.2rem;
  }
  .service .service-feature .feature-wrapper .feature-list ul li h4 .feature-marker {
    padding: 0 0 0.14rem 0.1rem;
  }
  .service .service-feature .feature-wrapper .feature-list ul li h4 br {
    display: none;
  }
  .service .service-feature .feature-wrapper .feature-list ul li p:last-child {
    font-size: 1.4rem;
    line-height: 2.45rem;
  }
  .service .service-work {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    margin: 8rem auto 0;
  }
  .service .service-work .service-work-title {
    margin-bottom: 4.375rem;
  }
  .service .service-work .service-work-title p {
    font-size: 1.4rem;
  }
  .service .service-work .service-work-gallery .service-work-item {
    margin-bottom: 4rem;
    width: 46.675%;
    gap: 1rem;
  }
  .service .service-work .service-work-gallery .service-work-item .service-work-inner .work-img img {
    border-radius: 0.875rem;
    margin-bottom: 1rem;
  }
  .service .service-work .service-work-gallery .service-work-item .service-work-inner .work-information .work-name {
    font-size: 1.6rem;
    line-height: 2.24rem;
    margin-bottom: 1.6rem;
    height: 4.48rem;
  }
  .service .service-work .service-work-gallery .service-work-item .service-work-inner .work-information .work-name br {
    display: none;
  }
  .service .service-work .service-work-gallery .service-work-item .service-work-inner .work-information .work-label {
    font-size: 1.225rem;
    border: solid 0.135rem #222;
    border-radius: 4.375rem;
    padding: 0.175rem 1.4rem 0 1.4rem;
    margin-bottom: 1.4rem;
  }
  .service .service-work .service-work-gallery .service-work-item .service-work-inner .work-information .work-client {
    font-size: 1.1rem;
  }
  .service .service-work .service-work-gallery .service-work-item .service-work-inner .work-information .work-client span {
    margin-right: 1rem;
  }
  .service .service-work .link-btn {
    position: relative;
    z-index: 100;
  }
  .service .service-voice-circle {
    height: 18rem;
    margin: -8rem auto 0;
  }
  .service .service-voice-circle::before {
    width: 350vw;
    height: 500vw;
  }
  .service .service-voice {
    margin-top: -7.9rem;
    padding-bottom: 8rem;
  }
  .service .service-voice .voice-wrapper {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .service .service-voice .voice-wrapper .service-voice-title {
    padding-top: 12rem;
  }
  .service .service-voice .voice-wrapper .service-voice-title p {
    font-size: 1.4rem;
  }
  .service .service-voice .voice-wrapper .voice-list {
    margin-top: 4.375rem;
    display: block;
  }
  .service .service-voice .voice-wrapper .voice-list .voice-item {
    width: 100%;
    padding: 3.2rem 2.4rem;
    border: solid 0.135rem #222;
    border-radius: 0.875rem;
    margin-bottom: 6rem;
  }
  .service .service-voice .voice-wrapper .voice-list .voice-item .voice-text {
    font-size: 1.4rem;
    line-height: 2.45rem;
  }
  .service .service-voice .voice-wrapper .voice-list .voice-item .voice-client {
    margin-top: 2.8rem;
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  .service .service-voice .voice-wrapper .voice-list .voice-item .voice-client img {
    width: 5.25rem;
    height: 5.25rem;
    margin-right: 1.4rem;
    border-radius: 5.25rem;
  }
  .service .service-voice .voice-wrapper .voice-list .voice-item::before {
    border-width: 2.625rem 1.53125rem 0 1.53125rem;
  }
  .service .service-voice .voice-wrapper .voice-list .voice-item::after {
    border-width: 2.3625rem 1.3825rem 0 1.3825rem;
  }
  .service .service-voice .voice-wrapper .voice-list .voice-item:last-child {
    margin-bottom: 8rem;
  }
  .service .service-flow {
    width: 91.5%;
    margin: -8rem auto 0;
    border-radius: 0.875rem;
    padding: 3.5rem 2.4rem;
    display: block;
  }
  .service .service-flow .service-flow-title {
    text-align: center;
  }
  .service .service-flow .service-flow-title p {
    font-size: 1.4rem;
  }
  .service .service-flow ul {
    margin-left: 0;
    margin-top: 4.375rem;
  }
  .service .service-flow ul li {
    display: block;
  }
  .service .service-flow ul li:not(:first-child) {
    margin-top: 4rem;
  }
  .service .service-flow ul li:not(:first-child)::before {
    display: none;
  }
  .service .service-flow ul li .service-flow-icon {
    display: none;
  }
  .service .service-flow ul li .service-flow-content {
    display: block;
  }
  .service .service-flow ul li .service-flow-content .service-flow-text h3 {
    font-size: 1.8rem;
    line-height: 3.2rem;
    margin-bottom: 1rem;
    display: flex;
  }
  .service .service-flow ul li .service-flow-content .service-flow-text h3 span {
    font-size: 1.2rem;
  }
  .service .service-flow ul li .service-flow-content .service-flow-text h3 .service-flow-icon-mb {
    width: 3.15rem;
    height: 3.15rem;
    border: solid 0.135rem #222;
    border-radius: 5.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 1.4rem;
  }
  .service .service-flow ul li .service-flow-content .service-flow-text h3 .service-flow-icon-mb img {
    width: auto;
    height: 1.5rem;
  }
  .service .service-flow ul li .service-flow-content .service-flow-text p {
    font-size: 1.4rem;
    line-height: 2.45rem;
  }
  .service .service-flow ul li .service-flow-content .service-flow-img {
    width: 100%;
    margin-left: 0;
    margin-top: 1.4rem;
    border-radius: 0.875rem;
  }
  .service .service-faq {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    margin: 8rem auto 0;
  }
  .service .service-faq .service-faq-title p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .service .service-faq .faq-item {
    margin: 1.75rem auto 0;
    border: 0.135rem solid #222;
    border-radius: 0.875rem;
  }
  .service .service-faq .faq-item .faq-question__wrap {
    padding: 1.4rem 6.3rem 1.4rem 2.8rem;
    border-radius: 0.875rem;
  }
  .service .service-faq .faq-item .faq-question__wrap .faq-question__title {
    font-size: 1.4rem;
  }
  .service .service-faq .faq-item .faq-question__wrap .faq-question__title span {
    font-size: 2.8rem;
    margin-right: 2.1rem;
  }
  .service .service-faq .faq-item .faq-question__wrap .minus-icon {
    width: 1.75rem;
    height: 0.157rem;
    right: 2.8rem;
  }
  .service .service-faq .faq-item .faq-question__wrap .plus-icon {
    width: 1.75rem;
    height: 0.157rem;
    right: 2.8rem;
  }
  .service .service-faq .faq-item .faq-answer__wrap {
    padding: 0 2.8rem;
  }
  .service .service-faq .faq-item .faq-answer__wrap.active {
    padding: 1.6rem 2.8rem;
  }
  .service .service-faq .faq-item .faq-answer__wrap .faq-answer__text {
    font-size: 1.4rem;
    line-height: 2.45rem;
  }
  .service .service2-top .service-top-bg {
    background-color: #D9F648;
  }
  .service .service2-top .service-top-wrapper .service-title h1 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.4rem;
  }
  .service .service2-effect .effect-card-list .effect-card {
    border: solid 0.35rem #D9F648;
  }
  .service .service2-effect .effect-card-list .effect-card p:nth-child(2) br {
    display: block;
  }
  .service .service2-voice .voice-wrapper .voice-list .voice-item .voice-client {
    height: fit-content;
  }
  .service .service3-top .service-top-bg {
    background-color: #FF633C;
  }
  .service .service3-effect .effect-card-list .effect-card {
    border: solid 0.35rem #FF633C;
  }
  .service .service3-effect .effect-card-list .effect-card p:nth-child(2) br {
    display: block;
  }
  .service .service3-flow ul li .service-flow-content .service-flow-text h3 {
    font-size: 1.7rem;
  }
  .service .service3-flow ul li .service-flow-content .service-flow-text h3 div {
    line-height: 2.4rem;
  }
  .service .service3-flow ul li .service-flow-content .service-flow-text h3 div .mb-block {
    display: block;
    padding-left: 2rem;
  }
  .works h1,
  .company h1,
  .recruit h1,
  .contact h1 {
    font-size: 2.8rem;
  }
  .works h2,
  .company h2,
  .recruit h2,
  .contact h2 {
    font-size: 4.2rem;
    margin-bottom: 0.35rem;
  }
  .works h3,
  .company h3,
  .recruit h3,
  .contact h3 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
  }
  .works h4,
  .company h4,
  .recruit h4,
  .contact h4 {
    font-size: 2.1rem;
    margin-bottom: 2.8rem;
  }
  .works,
  .company,
  .recruit,
  .contact {
    margin-top: 4rem;
  }
  .works .works-top,
  .works .company-top,
  .works .recruit-top,
  .works .contact-top,
  .company .works-top,
  .company .company-top,
  .company .recruit-top,
  .company .contact-top,
  .recruit .works-top,
  .recruit .company-top,
  .recruit .recruit-top,
  .recruit .contact-top,
  .contact .works-top,
  .contact .company-top,
  .contact .recruit-top,
  .contact .contact-top {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    margin-bottom: 8rem;
    display: block;
  }
  .works .works-top .works-title,
  .works .works-top .company-title,
  .works .works-top .recruit-title,
  .works .works-top .contact-title,
  .works .company-top .works-title,
  .works .company-top .company-title,
  .works .company-top .recruit-title,
  .works .company-top .contact-title,
  .works .recruit-top .works-title,
  .works .recruit-top .company-title,
  .works .recruit-top .recruit-title,
  .works .recruit-top .contact-title,
  .works .contact-top .works-title,
  .works .contact-top .company-title,
  .works .contact-top .recruit-title,
  .works .contact-top .contact-title,
  .company .works-top .works-title,
  .company .works-top .company-title,
  .company .works-top .recruit-title,
  .company .works-top .contact-title,
  .company .company-top .works-title,
  .company .company-top .company-title,
  .company .company-top .recruit-title,
  .company .company-top .contact-title,
  .company .recruit-top .works-title,
  .company .recruit-top .company-title,
  .company .recruit-top .recruit-title,
  .company .recruit-top .contact-title,
  .company .contact-top .works-title,
  .company .contact-top .company-title,
  .company .contact-top .recruit-title,
  .company .contact-top .contact-title,
  .recruit .works-top .works-title,
  .recruit .works-top .company-title,
  .recruit .works-top .recruit-title,
  .recruit .works-top .contact-title,
  .recruit .company-top .works-title,
  .recruit .company-top .company-title,
  .recruit .company-top .recruit-title,
  .recruit .company-top .contact-title,
  .recruit .recruit-top .works-title,
  .recruit .recruit-top .company-title,
  .recruit .recruit-top .recruit-title,
  .recruit .recruit-top .contact-title,
  .recruit .contact-top .works-title,
  .recruit .contact-top .company-title,
  .recruit .contact-top .recruit-title,
  .recruit .contact-top .contact-title,
  .contact .works-top .works-title,
  .contact .works-top .company-title,
  .contact .works-top .recruit-title,
  .contact .works-top .contact-title,
  .contact .company-top .works-title,
  .contact .company-top .company-title,
  .contact .company-top .recruit-title,
  .contact .company-top .contact-title,
  .contact .recruit-top .works-title,
  .contact .recruit-top .company-title,
  .contact .recruit-top .recruit-title,
  .contact .recruit-top .contact-title,
  .contact .contact-top .works-title,
  .contact .contact-top .company-title,
  .contact .contact-top .recruit-title,
  .contact .contact-top .contact-title {
    padding: 1.75rem 0;
  }
  .works .works-top .works-title p,
  .works .works-top .company-title p,
  .works .works-top .recruit-title p,
  .works .works-top .contact-title p,
  .works .company-top .works-title p,
  .works .company-top .company-title p,
  .works .company-top .recruit-title p,
  .works .company-top .contact-title p,
  .works .recruit-top .works-title p,
  .works .recruit-top .company-title p,
  .works .recruit-top .recruit-title p,
  .works .recruit-top .contact-title p,
  .works .contact-top .works-title p,
  .works .contact-top .company-title p,
  .works .contact-top .recruit-title p,
  .works .contact-top .contact-title p,
  .company .works-top .works-title p,
  .company .works-top .company-title p,
  .company .works-top .recruit-title p,
  .company .works-top .contact-title p,
  .company .company-top .works-title p,
  .company .company-top .company-title p,
  .company .company-top .recruit-title p,
  .company .company-top .contact-title p,
  .company .recruit-top .works-title p,
  .company .recruit-top .company-title p,
  .company .recruit-top .recruit-title p,
  .company .recruit-top .contact-title p,
  .company .contact-top .works-title p,
  .company .contact-top .company-title p,
  .company .contact-top .recruit-title p,
  .company .contact-top .contact-title p,
  .recruit .works-top .works-title p,
  .recruit .works-top .company-title p,
  .recruit .works-top .recruit-title p,
  .recruit .works-top .contact-title p,
  .recruit .company-top .works-title p,
  .recruit .company-top .company-title p,
  .recruit .company-top .recruit-title p,
  .recruit .company-top .contact-title p,
  .recruit .recruit-top .works-title p,
  .recruit .recruit-top .company-title p,
  .recruit .recruit-top .recruit-title p,
  .recruit .recruit-top .contact-title p,
  .recruit .contact-top .works-title p,
  .recruit .contact-top .company-title p,
  .recruit .contact-top .recruit-title p,
  .recruit .contact-top .contact-title p,
  .contact .works-top .works-title p,
  .contact .works-top .company-title p,
  .contact .works-top .recruit-title p,
  .contact .works-top .contact-title p,
  .contact .company-top .works-title p,
  .contact .company-top .company-title p,
  .contact .company-top .recruit-title p,
  .contact .company-top .contact-title p,
  .contact .recruit-top .works-title p,
  .contact .recruit-top .company-title p,
  .contact .recruit-top .recruit-title p,
  .contact .recruit-top .contact-title p,
  .contact .contact-top .works-title p,
  .contact .contact-top .company-title p,
  .contact .contact-top .recruit-title p,
  .contact .contact-top .contact-title p {
    font-size: 1.75rem;
    margin-bottom: 2.8rem;
  }
  .works .works-content,
  .works .company-wrapper,
  .works .recruit-wrapper,
  .works .contact-wrapper,
  .company .works-content,
  .company .company-wrapper,
  .company .recruit-wrapper,
  .company .contact-wrapper,
  .recruit .works-content,
  .recruit .company-wrapper,
  .recruit .recruit-wrapper,
  .recruit .contact-wrapper,
  .contact .works-content,
  .contact .company-wrapper,
  .contact .recruit-wrapper,
  .contact .contact-wrapper {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    margin: 8rem auto 5rem;
  }
  .works .works-top .works-page-label {
    width: 100%;
    border-left: none;
    border-top: solid 0.13rem #222;
    padding-left: 0;
    padding-top: 2rem;
    margin-top: 2rem;
    display: inline-block;
  }
  .works .works-top .works-page-label .page-category-wrapper p {
    font-size: 1.75rem;
    margin-bottom: 1.4rem;
  }
  .works .works-top .works-page-label .page-category-wrapper ul {
    flex-wrap: wrap;
    gap: 1.4rem;
  }
  .works .works-top .works-page-label .page-category-wrapper ul li .page-category-label {
    border: solid 0.135rem #222;
    font-size: 1.225rem;
    padding: 0.65625rem 1.75rem;
    min-width: 8rem;
    text-align: center;
  }
  .works .works-content .works-content-title {
    margin-bottom: 4.375rem;
  }
  .works .works-content .works-content-title p {
    font-size: 1.4rem;
  }
  .works .works-content .works-content-gallery .works-content-item {
    margin-bottom: 4rem;
    width: 46.675%;
    gap: 1rem;
  }
  .works .works-content .works-content-gallery .works-content-item .works-content-inner .work-img img {
    border-radius: 0.875rem;
    margin-bottom: 1rem;
  }
  .works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information .work-name {
    font-size: 1.6rem;
    line-height: 2.24rem;
    margin-bottom: 1.6rem;
    height: 4.48rem;
  }
  .works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information .work-name br {
    display: none;
  }
  .works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information .work-label {
    font-size: 1.225rem;
    border: solid 0.135rem #222;
    border-radius: 4.375rem;
    padding: 0.175rem 1.4rem 0 1.4rem;
    margin-bottom: 1.4rem;
  }
  .works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information .work-client {
    font-size: 1.1rem;
  }
  .works .works-content .works-content-gallery .works-content-item .works-content-inner .work-information .work-client span {
    margin-right: 1rem;
  }
  .works .works-content .works-content-gallery .works-null {
    font-size: 1.4rem;
  }
  .works .works-explanation-top {
    margin-bottom: 8rem;
  }
  .works .works-explanation {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    display: block;
  }
  .works .works-explanation .works-explanation-stiky {
    margin-bottom: 5rem;
  }
  .works .works-explanation .works-explanation-stiky .works-explanation-title {
    width: 100%;
    margin-right: 0;
    position: static;
    top: 8rem;
  }
  .works .works-explanation .works-explanation-stiky .works-explanation-title .works-explanation-name {
    font-size: 2.4rem;
    border-bottom: 0.135rem solid #222;
    padding-bottom: 1.4rem;
    margin-bottom: 2, 4rem;
  }
  .works .works-explanation .works-explanation-content {
    width: 100%;
  }
  .works .works-explanation .works-explanation-content .works-explanation-img {
    width: 46.675%;
    border-radius: 0.875rem;
    display: block;
    margin: 0 auto 5rem;
  }
  .works .works-explanation .works-explanation-content .works-overview {
    margin-bottom: 8rem;
  }
  .works .works-explanation .works-explanation-content .works-overview .works-overview-title {
    gap: 1.4rem;
    margin-bottom: 2.4rem;
  }
  .works .works-explanation .works-explanation-content .works-overview .works-overview-title .works-explanation-icon {
    width: 5rem;
    height: 5rem;
  }
  .works .works-explanation .works-explanation-content .works-overview .works-overview-title .works-explanation-icon img {
    height: 2.4rem;
  }
  .works .works-explanation .works-explanation-content .works-overview .works-overview-title h2 span {
    display: block;
    font-size: 1.4rem;
    margin-left: 0;
  }
  .works .works-explanation .works-explanation-content .works-overview p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 2.45rem;
  }
  .works .works-explanation .works-explanation-content .works-overview .works-overview-sample {
    gap: 1rem;
    margin-top: 5rem;
  }
  .works .works-explanation .works-explanation-content .works-overview .works-overview-sample div {
    width: calc((100% - 1rem) / 2);
    border-radius: 8.75px;
    padding: 1.6rem;
  }
  .works .works-explanation .works-explanation-content .works-overview .works-overview-sample div img {
    width: 100%;
    height: auto;
  }
  .works .works-explanation .works-explanation-content .works-member .works-member-title {
    gap: 1.4rem;
    margin-bottom: 2.4rem;
  }
  .works .works-explanation .works-explanation-content .works-member .works-member-title .works-explanation-icon {
    width: 5rem;
    height: 5rem;
  }
  .works .works-explanation .works-explanation-content .works-member .works-member-title .works-explanation-icon img {
    height: 2.4rem;
  }
  .works .works-explanation .works-explanation-content .works-member .works-member-title h2 span {
    font-size: 1.6rem;
    margin-left: 0;
    display: block;
  }
  .works .works-explanation .works-explanation-content .works-member .works-member-list {
    gap: 4rem;
  }
  .works .works-explanation .works-explanation-content .works-member .works-member-list .works-member-item .works-member-icon {
    width: 8.75rem;
    height: 8.75rem;
  }
  .works .works-explanation .works-explanation-content .works-member .works-member-list .works-member-item .works-member-icon img {
    height: 4.85rem;
  }
  .works .works-explanation .works-explanation-content .works-member .works-member-list .works-member-item small {
    margin-top: 1.4rem;
    font-size: 1.2rem;
  }
  .works .works-explanation .works-explanation-content .works-member .works-member-list .works-member-item p {
    font-size: 1.4rem;
  }
  .works .works-explanation .works-explanation-content .link-btn {
    margin: 8rem auto 0;
  }
  .company .company-wrapper {
    display: block;
  }
  .company .company-wrapper .company-menu-content {
    display: none;
  }
  .company .company-wrapper .company-content {
    width: 100%;
  }
  .company .company-wrapper .company-content .company-about .company-about-title,
  .company .company-wrapper .company-content .company-about .company-philosophy-title,
  .company .company-wrapper .company-content .company-about .company-history-title,
  .company .company-wrapper .company-content .company-about .company-overview-title,
  .company .company-wrapper .company-content .company-philosophy .company-about-title,
  .company .company-wrapper .company-content .company-philosophy .company-philosophy-title,
  .company .company-wrapper .company-content .company-philosophy .company-history-title,
  .company .company-wrapper .company-content .company-philosophy .company-overview-title,
  .company .company-wrapper .company-content .company-history .company-about-title,
  .company .company-wrapper .company-content .company-history .company-philosophy-title,
  .company .company-wrapper .company-content .company-history .company-history-title,
  .company .company-wrapper .company-content .company-history .company-overview-title,
  .company .company-wrapper .company-content .company-overview .company-about-title,
  .company .company-wrapper .company-content .company-overview .company-philosophy-title,
  .company .company-wrapper .company-content .company-overview .company-history-title,
  .company .company-wrapper .company-content .company-overview .company-overview-title {
    gap: 1.4rem;
    margin-bottom: 2.4rem;
  }
  .company .company-wrapper .company-content .company-about .company-about-title .company-about-icon,
  .company .company-wrapper .company-content .company-about .company-about-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-about .company-about-title .company-history-icon,
  .company .company-wrapper .company-content .company-about .company-about-title .company-overview-icon,
  .company .company-wrapper .company-content .company-about .company-philosophy-title .company-about-icon,
  .company .company-wrapper .company-content .company-about .company-philosophy-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-about .company-philosophy-title .company-history-icon,
  .company .company-wrapper .company-content .company-about .company-philosophy-title .company-overview-icon,
  .company .company-wrapper .company-content .company-about .company-history-title .company-about-icon,
  .company .company-wrapper .company-content .company-about .company-history-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-about .company-history-title .company-history-icon,
  .company .company-wrapper .company-content .company-about .company-history-title .company-overview-icon,
  .company .company-wrapper .company-content .company-about .company-overview-title .company-about-icon,
  .company .company-wrapper .company-content .company-about .company-overview-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-about .company-overview-title .company-history-icon,
  .company .company-wrapper .company-content .company-about .company-overview-title .company-overview-icon,
  .company .company-wrapper .company-content .company-philosophy .company-about-title .company-about-icon,
  .company .company-wrapper .company-content .company-philosophy .company-about-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-philosophy .company-about-title .company-history-icon,
  .company .company-wrapper .company-content .company-philosophy .company-about-title .company-overview-icon,
  .company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-about-icon,
  .company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-history-icon,
  .company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-overview-icon,
  .company .company-wrapper .company-content .company-philosophy .company-history-title .company-about-icon,
  .company .company-wrapper .company-content .company-philosophy .company-history-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-philosophy .company-history-title .company-history-icon,
  .company .company-wrapper .company-content .company-philosophy .company-history-title .company-overview-icon,
  .company .company-wrapper .company-content .company-philosophy .company-overview-title .company-about-icon,
  .company .company-wrapper .company-content .company-philosophy .company-overview-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-philosophy .company-overview-title .company-history-icon,
  .company .company-wrapper .company-content .company-philosophy .company-overview-title .company-overview-icon,
  .company .company-wrapper .company-content .company-history .company-about-title .company-about-icon,
  .company .company-wrapper .company-content .company-history .company-about-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-history .company-about-title .company-history-icon,
  .company .company-wrapper .company-content .company-history .company-about-title .company-overview-icon,
  .company .company-wrapper .company-content .company-history .company-philosophy-title .company-about-icon,
  .company .company-wrapper .company-content .company-history .company-philosophy-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-history .company-philosophy-title .company-history-icon,
  .company .company-wrapper .company-content .company-history .company-philosophy-title .company-overview-icon,
  .company .company-wrapper .company-content .company-history .company-history-title .company-about-icon,
  .company .company-wrapper .company-content .company-history .company-history-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-history .company-history-title .company-history-icon,
  .company .company-wrapper .company-content .company-history .company-history-title .company-overview-icon,
  .company .company-wrapper .company-content .company-history .company-overview-title .company-about-icon,
  .company .company-wrapper .company-content .company-history .company-overview-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-history .company-overview-title .company-history-icon,
  .company .company-wrapper .company-content .company-history .company-overview-title .company-overview-icon,
  .company .company-wrapper .company-content .company-overview .company-about-title .company-about-icon,
  .company .company-wrapper .company-content .company-overview .company-about-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-overview .company-about-title .company-history-icon,
  .company .company-wrapper .company-content .company-overview .company-about-title .company-overview-icon,
  .company .company-wrapper .company-content .company-overview .company-philosophy-title .company-about-icon,
  .company .company-wrapper .company-content .company-overview .company-philosophy-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-overview .company-philosophy-title .company-history-icon,
  .company .company-wrapper .company-content .company-overview .company-philosophy-title .company-overview-icon,
  .company .company-wrapper .company-content .company-overview .company-history-title .company-about-icon,
  .company .company-wrapper .company-content .company-overview .company-history-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-overview .company-history-title .company-history-icon,
  .company .company-wrapper .company-content .company-overview .company-history-title .company-overview-icon,
  .company .company-wrapper .company-content .company-overview .company-overview-title .company-about-icon,
  .company .company-wrapper .company-content .company-overview .company-overview-title .company-philosophy-icon,
  .company .company-wrapper .company-content .company-overview .company-overview-title .company-history-icon,
  .company .company-wrapper .company-content .company-overview .company-overview-title .company-overview-icon {
    width: 5rem;
    height: 5rem;
  }
  .company .company-wrapper .company-content .company-about .company-about-title .company-about-icon img,
  .company .company-wrapper .company-content .company-about .company-about-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-about .company-about-title .company-history-icon img,
  .company .company-wrapper .company-content .company-about .company-about-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-about .company-philosophy-title .company-about-icon img,
  .company .company-wrapper .company-content .company-about .company-philosophy-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-about .company-philosophy-title .company-history-icon img,
  .company .company-wrapper .company-content .company-about .company-philosophy-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-about .company-history-title .company-about-icon img,
  .company .company-wrapper .company-content .company-about .company-history-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-about .company-history-title .company-history-icon img,
  .company .company-wrapper .company-content .company-about .company-history-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-about .company-overview-title .company-about-icon img,
  .company .company-wrapper .company-content .company-about .company-overview-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-about .company-overview-title .company-history-icon img,
  .company .company-wrapper .company-content .company-about .company-overview-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-about-title .company-about-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-about-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-about-title .company-history-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-about-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-about-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-history-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-philosophy-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-history-title .company-about-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-history-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-history-title .company-history-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-history-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-overview-title .company-about-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-overview-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-overview-title .company-history-icon img,
  .company .company-wrapper .company-content .company-philosophy .company-overview-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-history .company-about-title .company-about-icon img,
  .company .company-wrapper .company-content .company-history .company-about-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-history .company-about-title .company-history-icon img,
  .company .company-wrapper .company-content .company-history .company-about-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-history .company-philosophy-title .company-about-icon img,
  .company .company-wrapper .company-content .company-history .company-philosophy-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-history .company-philosophy-title .company-history-icon img,
  .company .company-wrapper .company-content .company-history .company-philosophy-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-history .company-history-title .company-about-icon img,
  .company .company-wrapper .company-content .company-history .company-history-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-history .company-history-title .company-history-icon img,
  .company .company-wrapper .company-content .company-history .company-history-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-history .company-overview-title .company-about-icon img,
  .company .company-wrapper .company-content .company-history .company-overview-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-history .company-overview-title .company-history-icon img,
  .company .company-wrapper .company-content .company-history .company-overview-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-overview .company-about-title .company-about-icon img,
  .company .company-wrapper .company-content .company-overview .company-about-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-overview .company-about-title .company-history-icon img,
  .company .company-wrapper .company-content .company-overview .company-about-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-overview .company-philosophy-title .company-about-icon img,
  .company .company-wrapper .company-content .company-overview .company-philosophy-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-overview .company-philosophy-title .company-history-icon img,
  .company .company-wrapper .company-content .company-overview .company-philosophy-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-overview .company-history-title .company-about-icon img,
  .company .company-wrapper .company-content .company-overview .company-history-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-overview .company-history-title .company-history-icon img,
  .company .company-wrapper .company-content .company-overview .company-history-title .company-overview-icon img,
  .company .company-wrapper .company-content .company-overview .company-overview-title .company-about-icon img,
  .company .company-wrapper .company-content .company-overview .company-overview-title .company-philosophy-icon img,
  .company .company-wrapper .company-content .company-overview .company-overview-title .company-history-icon img,
  .company .company-wrapper .company-content .company-overview .company-overview-title .company-overview-icon img {
    height: 2.4rem;
  }
  .company .company-wrapper .company-content .company-about .company-about-title h2 span,
  .company .company-wrapper .company-content .company-about .company-philosophy-title h2 span,
  .company .company-wrapper .company-content .company-about .company-history-title h2 span,
  .company .company-wrapper .company-content .company-about .company-overview-title h2 span,
  .company .company-wrapper .company-content .company-philosophy .company-about-title h2 span,
  .company .company-wrapper .company-content .company-philosophy .company-philosophy-title h2 span,
  .company .company-wrapper .company-content .company-philosophy .company-history-title h2 span,
  .company .company-wrapper .company-content .company-philosophy .company-overview-title h2 span,
  .company .company-wrapper .company-content .company-history .company-about-title h2 span,
  .company .company-wrapper .company-content .company-history .company-philosophy-title h2 span,
  .company .company-wrapper .company-content .company-history .company-history-title h2 span,
  .company .company-wrapper .company-content .company-history .company-overview-title h2 span,
  .company .company-wrapper .company-content .company-overview .company-about-title h2 span,
  .company .company-wrapper .company-content .company-overview .company-philosophy-title h2 span,
  .company .company-wrapper .company-content .company-overview .company-history-title h2 span,
  .company .company-wrapper .company-content .company-overview .company-overview-title h2 span {
    display: block;
    font-size: 1.4rem;
    margin-left: 0;
  }
  .company .company-wrapper .company-content .company-about {
    margin-bottom: 8rem;
  }
  .company .company-wrapper .company-content .company-about p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 2.45rem;
  }
  .company .company-wrapper .company-content .company-philosophy {
    margin-bottom: 8rem;
  }
  .company .company-wrapper .company-content .company-philosophy h4 {
    margin-bottom: 1.4rem;
  }
  .company .company-wrapper .company-content .company-philosophy .philosophy-txt {
    font-size: 1.4rem;
  }
  .company .company-wrapper .company-content .company-philosophy .philosophy-point {
    font-size: 1.4rem;
    margin-top: 2.8rem;
  }
  .company .company-wrapper .company-content .company-philosophy .philosophy-point ul {
    margin-left: 2.8rem;
  }
  .company .company-wrapper .company-content .company-philosophy .philosophy-point ul li {
    margin-bottom: 1.4rem;
  }
  .company .company-wrapper .company-content .company-philosophy .philosophy-point ul li span {
    padding: 0.25rem;
    margin-right: 0.875rem;
  }
  .company .company-wrapper .company-content .company-philosophy .philosophy-point ul::before {
    left: -2.1rem;
    width: 1.4rem;
    height: 0.175rem;
  }
  .company .company-wrapper .company-content .company-history {
    margin-bottom: 8rem;
  }
  .company .company-wrapper .company-content .company-history table {
    font-size: 1.4rem;
  }
  .company .company-wrapper .company-content .company-history table tr th {
    width: 7.5rem;
    padding: 1.4rem 0;
  }
  .company .company-wrapper .company-content .company-history table tr td {
    padding: 1.4rem 0;
    line-height: 2.45rem;
  }
  .company .company-wrapper .company-content .company-history table tr .history-Indent {
    width: 3.5rem;
  }
  .company .company-wrapper .company-content .company-history table tr .history-Indent-md {
    display: none;
  }
  .company .company-wrapper .company-content .company-overview table {
    font-size: 1.4rem;
  }
  .company .company-wrapper .company-content .company-overview table tr th {
    width: 7.5rem;
    padding: 1.4rem 0;
  }
  .company .company-wrapper .company-content .company-overview table tr td {
    padding: 1.4rem 0;
    line-height: 2.45rem;
  }
  .company .company-wrapper .company-content .company-overview table tr td .overview-md {
    display: block;
    margin-left: -1rem;
  }
  .company .company-wrapper .company-content .company-overview table tr ul li span {
    vertical-align: -0.25rem;
  }
  .company .company-wrapper .company-content .company-overview .company-access {
    font-size: 2rem;
    margin-top: 3.2rem;
  }
  .company .company-wrapper .company-content .company-overview .company-access span {
    margin-right: 1.6rem;
  }
  .company .company-wrapper .company-content .company-overview iframe {
    margin-top: 1.6rem;
    aspect-ratio: 845/400;
    width: 100%;
    height: auto;
  }
  .recruit .recruit-introduction {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .recruit .recruit-introduction p {
    font-size: 1.4rem;
    line-height: 2.45rem;
  }
  .recruit .recruit-introduction .link-btn {
    margin: 4.375rem auto 0;
  }
  .recruit .recruit-wrapper {
    display: block;
    margin-top: 15rem;
  }
  .recruit .recruit-wrapper .recruit-menu-content {
    display: none;
  }
  .recruit .recruit-wrapper .recruit-content {
    width: 100%;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type {
    margin-bottom: 6rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list {
    display: block;
    padding: 6rem 0;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list:nth-child(2) {
    padding-top: 0;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-img {
    display: none;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt {
    width: 100%;
    gap: 3.2rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt .type-list-md {
    display: flex;
    align-items: center;
    margin-bottom: 1.6rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt .type-list-md .type-list-md-img {
    display: block;
    width: 8rem;
    height: 8rem;
    background-color: #6058BB;
    border-radius: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt .type-list-md .type-list-md-img img {
    width: 3rem;
    height: auto;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt .type-list-md h3 {
    margin: 0 0 0 1.6rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list .type-list-txt p {
    font-size: 1.4rem;
    line-height: 2.45rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list:nth-child(3) {
    padding-top: 6rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list:nth-child(3) .type-list-txt .type-list-md .type-list-md-img {
    background-color: #91D7BB;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list:last-child {
    padding-top: 6rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-type .type-list:last-child .type-list-txt .type-list-md .type-list-md-img {
    background-color: #FF633C;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-flow {
    margin-bottom: 6rem;
    padding-bottom: 6rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block {
    border-radius: 0.875rem;
    padding: 2.4rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol {
    padding-left: 4rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li::before {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.6rem;
    left: -4.5rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li:not(:first-child)::after {
    top: -14rem;
    left: -2.95rem;
    height: 14rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li:not(:last-child) {
    margin-bottom: 5rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li h4 {
    font-size: 2rem;
    margin-bottom: 1.4rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-flow .recruit-flow-block ol li p {
    font-size: 1.4rem;
    line-height: 2.45rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-office {
    margin-bottom: 6rem;
    padding-bottom: 6rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-office ul li {
    font-size: 1.4rem;
    line-height: 2.45rem;
    margin-bottom: 1.4rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-entry .entry-copy {
    padding: 1rem 3.5rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .recruit .recruit-wrapper .recruit-content .recruit-entry .entry-btn {
    border: solid 0.175rem #222;
    border-radius: 0.875rem;
    width: 100%;
    height: 8rem;
    line-height: 8rem;
    font-size: 2.1rem;
  }
  .recruit .recruit-top .recruit-page-label {
    width: 100%;
    border-left: none;
    border-top: solid 0.13rem #222;
    padding-left: 0;
    padding-top: 2rem;
    margin-top: 2rem;
    display: inline-block;
  }
  .recruit .recruit-top .recruit-page-label .recruit-category-wrapper p {
    font-size: 1.75rem;
    margin-bottom: 1.4rem;
  }
  .recruit .recruit-top .recruit-page-label .recruit-category-wrapper ul {
    flex-wrap: wrap;
    gap: 1.4rem;
  }
  .recruit .recruit-top .recruit-page-label .recruit-category-wrapper ul li .page-category-label {
    border: solid 0.135rem #222;
    font-size: 1.225rem;
    padding: 0.65625rem 1.75rem;
    min-width: 8rem;
    text-align: center;
  }
  .recruit .recruit-type-wrapper {
    margin-top: 8rem;
  }
  .recruit .recruit-type-wrapper .recruit-type-content .recruit-type-stiky h3 {
    margin-bottom: 1.4rem;
  }
  .recruit .recruit-type-wrapper .recruit-type-content .recruit-type-stiky p {
    font-size: 1.75rem;
  }
  .recruit .recruit-type-wrapper .recruit-type-content .recruit-type-stiky p .triangle {
    margin-right: 1.4rem;
    border-top: 0.7rem solid transparent;
    border-bottom: 0.7rem solid transparent;
  }
  .recruit .recruit-type-wrapper .recruit-information-content .recruit-information-list {
    margin-top: 4.5rem;
  }
  .recruit .recruit-type-wrapper .recruit-information-content .recruit-information-list table tr {
    border-bottom: solid 0.0875rem #b5b5b5;
  }
  .recruit .recruit-type-wrapper .recruit-information-content .recruit-information-list table tr th {
    font-size: 1.6rem;
    width: 100%;
    padding: 2.4rem 0 0;
    display: block;
  }
  .recruit .recruit-type-wrapper .recruit-information-content .recruit-information-list table tr td {
    font-size: 1.4rem;
    padding: 1.4rem 0 2.4rem;
    line-height: 2.45rem;
    display: block;
  }
  .recruit .recruit-type-wrapper .recruit-information-content .recruit-information-list table tr ul {
    padding-left: 0.2rem;
  }
  .recruit .recruit-type-wrapper .recruit-information-content .recruit-information-list table tr ul li::marker {
    font-size: 1rem;
  }
  .recruit .recruit-type-wrapper .recruit-information-content .recruit-information-list .link-btn {
    margin: 6rem auto 0;
  }
  .contact .contact-wrapper .contact-introduction {
    display: block;
    margin-bottom: 5rem;
  }
  .contact .contact-wrapper .contact-introduction p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 2.45rem;
  }
  .contact .contact-wrapper .contact-tel {
    display: block;
    padding: 2.8rem 1.4rem;
    text-align: center;
  }
  .contact .contact-wrapper .contact-tel h4 {
    margin-bottom: 2.4rem;
    font-size: 1.8rem;
  }
  .contact .contact-wrapper .contact-tel .tel-txt {
    font-size: 4.2rem;
    margin-bottom: 2.4rem;
  }
  .contact .contact-wrapper .contact-tel p {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
  .contact .contact-wrapper .contact-form {
    margin: 8rem auto 0;
    width: 100%;
  }
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item {
    margin-bottom: 1.6rem;
  }
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item p {
    display: block;
  }
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item label {
    font-size: 1.6rem;
    padding-top: 0;
    padding-bottom: 1rem;
  }
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item label .required {
    font-size: 1.2rem;
    padding: 0.2rem 1.4rem;
    margin-left: 1.4rem;
  }
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-text-box,
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-select-box,
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-text-area {
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    border: solid 0.0875rem #222;
    border-radius: 0.4375rem;
  }
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-text-area {
    height: 20rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    line-height: 2rem;
  }
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-check-box {
    width: 100%;
  }
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-check-box .wpcf7-list-item {
    margin: 0 1.4rem 0 0;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .contact .contact-wrapper .contact-form .contact-form-wrapper .contact-form-item .form-select-box {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("https://writerhouse.jp/wp-content/uploads/2026/02/select-arrow.png");
    background-repeat: no-repeat;
    background-size: 1.4rem auto;
    background-position: right 1.6rem center;
  }
}/*# sourceMappingURL=style.css.map */