@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --viewport: 1920;
}
@media (max-width: 1280px) {
  :root {
    --viewport: 1200;
  }
}
@media (max-width: 768px) {
  :root {
    --viewport: 768;
  }
}

html {
  scroll-behavior: initial;
  width: 100%;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  min-height: 100%;
  font-family: "Poppins", "IBM-Plex-Sans-JP", sans-serif;
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.tb {
  display: none;
}
@media (max-width: 1280px) {
  .tb {
    display: block;
  }
}

@media (max-width: 1280px) {
  .pc-tb {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.mv {
  height: 300vh;
  position: sticky;
  top: 0;
}
@media (max-width: 768px) {
  .mv {
    height: 400vh;
  }
}
.mv .mv-wrap {
  position: sticky;
  top: 100px;
}
@media (max-width: 768px) {
  .mv .mv-wrap {
    position: sticky;
    top: 70px;
  }
}

.mv-slider {
  height: calc(100vh - 100px);
  overflow: hidden;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .mv-slider {
    height: calc(100vh - 100px);
  }
}
.mv-slider > div {
  position: absolute;
}

.mask-content {
  height: calc(100vh - 100px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .mask-content video {
    height: 100vh;
    width: auto !important;
    max-width: auto;
  }
}

.mv-slide {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    225deg,
    #000 0%,
    #000 100%,
    transparent 100%,
    transparent 0%
  );
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: auto 100%;
}
.mv-slide .mask-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv-slide .mask-content video {
  width: 100%;
  max-width: auto;
}
@media (max-width: 768px) {
  .mv-slide .mask-content img {
    height: 100%;
    width: auto;
    max-width: auto;
  }
}
.mv-slide.current-slide {
  z-index: 1;
}
.mv-slide.prev-slide {
  z-index: -1;
}
.mv-slide.next-slide {
  z-index: 0;
  mask-image: linear-gradient(
    225deg,
    #000 0%,
    #000 100%,
    transparent 100%,
    transparent 0%
  ) !important;
}

.add-animation {
  mask-image: linear-gradient(
    225deg,
    #000 0%,
    #000 30%,
    transparent 30%,
    transparent 0%
  );
}

@keyframes zoomUp {
  0% {
    mask-image: scale(1);
  }
  100% {
    mask-image: linear-gradient(
      225deg,
      rgb(0, 0, 0) 0%,
      rgb(0, 0, 0) 0%,
      transparent 0%,
      transparent 100%
    ); /* 拡大率 */
  }
}
.mv-shade {
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: calc(100vh - 70px);
  padding-left: 160px;
  padding-bottom: 200px;
  display: flex;
  justify-content: start;
  align-items: end;
}
@media (max-width: 768px) {
  .mv-shade {
    padding-left: 20px;
    padding-bottom: 0;
    align-items: center;
  }
}
.mv-shade h1 {
  font-size: 72px;
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .mv-shade h1 {
    font-size: 36px;
  }
}
.mv-shade p {
  margin-top: 80px;
  font-size: 32px;
  color: #fff;
}
@media (max-width: 768px) {
  .mv-shade p {
    margin-top: 30px;
    font-size: 18px;
  }
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
}
@media (max-width: 1280px) {
  header {
    padding: 0 0 0 20px;
    align-items: center;
  }
}

header .logo {
  width: 235px;
}
@media (max-width: 768px) {
  header .logo {
    width: 210px;
  }
}
header .logo img {
  width: 100%;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
header nav ul li.contact a {
  color: #fff;
  display: block;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  background: linear-gradient(90deg, #4bbc37 0%, #91e42c 100%);
}
header nav ul li.contact a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #91e42c 0%, #4bbc37 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
header nav ul li.contact a:hover::after {
  opacity: 1;
}
header nav ul li.contact a span {
  position: relative;
  z-index: 2;
}

.second-section {
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 97px;
  z-index: 3;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  scrollbar-width: none;
}
@media (max-width: 1280px) {
  .second-section {
    padding-top: 50px;
    top: 88px;
    height: calc(100vh - 88px);
  }
}
.second-section > div {
  width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1280px) {
  .second-section > div {
    justify-content: center;
    padding: 0 20px;
    height: 100%;
  }
}
.second-section > div div {
  color: #fff;
}
@media (max-width: 1280px) {
  .second-section > div div {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 1280px) {
  .second-section > div div.text-wrap {
    display: grid;
    align-items: stretch;
    height: 100%;
  }
}
@media (max-width: 1280px) {
  .second-section > div div .title {
    padding-bottom: 40px;
  }
}
.second-section > div div .title h2 {
  font-size: 48px;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .second-section > div div .title h2 {
    font-size: 32px;
  }
  .second-section > div div .title h2:last-of-type {
    margin-bottom: 40px;
  }
}
@media (max-width: 1280px) {
  .second-section > div div a {
    margin-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .second-section > div div a {
    width: 255px;
    text-align: center;
    margin: 50px auto 70px;
    display: block;
  }
}
.second-section > div div p {
  margin-top: 80px;
  line-height: 2.5;
  font-weight: 300;
  letter-spacing: -1px;
}
@media (max-width: 1280px) {
  .second-section > div div p {
    font-size: 14px;
    margin-top: 0px;
    line-height: 2;
  }
}

.link-btn {
  color: #fff;
  display: inline-block;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid #fff;
  transition: border 0.5s;
  margin-top: 100px;
}
.link-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #91e42c 0%, #4bbc37 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.link-btn:hover {
  border: 1px solid rgba(255, 255, 255, 0);
}
.link-btn:hover::after {
  opacity: 1;
}
.link-btn span {
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 82px;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 54px;
  }
}
.section-title h2.small {
  font-size: 20px;
  color: #4bbc37;
  font-weight: 600;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .section-title h2.small {
    margin-top: 20px;
    font-size: 16px;
  }
}

#service {
  position: relative;
  padding: 150px 0;
  z-index: 5;
  width: 100%;
  background-color: #fff;
}
@media (max-width: 1280px) {
  #service {
    padding: 80px 0;
  }
}
#service .service-wrap {
  width: 100%;
  max-width: 1600px;
  gap: 200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1280px) {
  #service .service-wrap {
    gap: 50px;
  }
}
#service .service-wrap .img {
  height: 70vh;
  width: 52.5vh;
  position: relative;
}
#service .service-wrap .img img {
  position: absolute;
  height: 100%;
  top: 0;
  opacity: 0;
  transition: all 0.8s;
  max-width: 100%;
}
@media (max-width: 768px) {
  #service .service-wrap .img img {
    position: relative;
    opacity: 1;
  }
}
#service .service-wrap .img img.active {
  opacity: 1;
}
#service .message {
  margin: 80px 0;
  line-height: 2;
}
@media (max-width: 1280px) {
  #service .message {
    margin: 50px 0;
  }
}
@media (max-width: 768px) {
  #service .message {
    font-size: 14px;
  }
}
#service ul {
  max-width: 800px;
  width: 100%;
}
#service ul li {
  opacity: 0.3;
}
#service ul li.active {
  opacity: 1;
  transition: all 1s;
}
#service ul li.active .arrow {
  transform: translateX(0);
  opacity: 1;
}
#service ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 30px 50px;
  border-left: 2px solid #4bbc37;
  line-height: 1;
}
@media (max-width: 768px) {
  #service ul li a {
    padding: 20px 0 20px 20px;
  }
}
#service ul li a .category {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  #service ul li a .category {
    gap: 20px;
  }
}
#service ul li a .category .number {
  color: #4bbc37;
  font-size: 24px;
}
@media (max-width: 768px) {
  #service ul li a .category .number {
    font-size: 20px;
  }
}
#service ul li a .category .text {
  font-size: 24px;
}
@media (max-width: 768px) {
  #service ul li a .category .text {
    font-size: 18px;
  }
}
#service ul li a .arrow {
  display: flex;
  align-items: center;
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.8s;
}
@media (max-width: 768px) {
  #service ul li a .arrow {
    width: 20px;
    transform: translateX(-30px);
  }
}

#case {
  background: #ffffff;
  padding: 150px 160px 150px 0;
  position: relative;
  z-index: 3;
}
@media (max-width: 1280px) {
  #case {
    padding: 100px 20px;
  }
}
#case .case-wrap {
  display: flex;
  gap: 9.375em;
  font-size: 0.83vw;
}
@media (max-width: 1280px) {
  #case .case-wrap {
    flex-wrap: wrap-reverse;
    gap: 50px;
  }
}
#case .list-wrap {
  width: 100%;
  max-width: 81.25em;
}
@media (max-width: 1280px) {
  #case .list-wrap {
    max-width: none;
  }
}
#case .list-wrap .case-list .slick-slide {
  margin: 0 10px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  #case .list-wrap .case-list .slick-slide {
    margin: 0;
  }
}
#case .list-wrap ul .slick-track {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 30px;
}
@media (max-width: 768px) {
  #case .list-wrap ul .slick-track {
    gap: 10px;
  }
}
#case .list-wrap ul li {
  display: flex;
  align-items: centere;
}
#case .list-wrap ul li a {
  background-color: #f5f5f5;
  padding: 30px;
  display: inline-block;
  font-size: 0.83vw;
  width: 100%;
}
@media (max-width: 1280px) {
  #case .list-wrap ul li a {
    padding: 20px 10px 30px;
  }
}
@media (max-width: 768px) {
  #case .list-wrap ul li a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #case .list-wrap ul li a {
    width: 162px;
  }
}
#case .list-wrap ul li a .thumbnail {
  width: 100%;
  height: 15.625em;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  #case .list-wrap ul li a .thumbnail {
    width: 142px;
    height: 100px;
  }
}
#case .list-wrap ul li a .thumbnail img {
  height: 100%;
  max-width: auto;
  width: auto;
}
#case .list-wrap ul li a .text {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  #case .list-wrap ul li a .text {
    flex-wrap: wrap-reverse;
    gap: 10px;
    margin-top: 20px;
  }
}
#case .list-wrap ul li a .text .title {
  font-size: 20px;
}
@media (max-width: 1280px) {
  #case .list-wrap ul li a .text .title {
    font-size: 14px;
  }
}
#case .list-wrap ul li a .text .taxonomies {
  background: #4bbc37;
  display: flex;
  width: 100px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1;
  font-size: 12px;
}
@media (max-width: 1280px) {
  #case .list-wrap ul li a .text .taxonomies {
    padding: 10px 0;
    font-size: 10px;
    width: 64px;
  }
}
@media (max-width: 1280px) {
  #case .title-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
  }
}
#case .section-title.case {
  font-size: 0.83vw;
}
#case .section-title.case h2 {
  font-size: 9.375em;
}
@media (max-width: 1280px) {
  #case .section-title.case h2 {
    font-size: 150px;
  }
}
@media (max-width: 768px) {
  #case .section-title.case h2 {
    font-size: 54px;
  }
}
#case .section-title.case h2.small {
  font-size: 1.5em;
  margin-top: 20px;
}
@media (max-width: 1280px) {
  #case .section-title.case h2.small {
    font-size: 16px;
  }
}
#case .link-btn {
  color: #000;
  border: 1px solid #000;
}
@media (max-width: 1280px) {
  #case .link-btn {
    margin-top: 0;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #case .link-btn {
    font-size: 12px;
  }
}
#case .link-btn:hover {
  border: 1px solid rgba(0, 0, 0, 0);
  color: #fff;
}

#recruit {
  padding: 150px 0 0;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  #recruit {
    padding: 80px 0;
  }
}
#recruit .recruit-wrap {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
  display: flex;
  gap: 150px;
  align-items: center;
}
@media (max-width: 1280px) {
  #recruit .recruit-wrap {
    max-width: 800px;
    display: block;
  }
}
#recruit .recruit-wrap .text-warp {
  color: #fff;
  line-height: 2.5;
}
@media (max-width: 1280px) {
  #recruit .recruit-wrap .text-warp {
    margin: 50px 0;
  }
}
@media (max-width: 768px) {
  #recruit .recruit-wrap .text-warp {
    font-size: 14px;
  }
}
#recruit .recruit-foot {
  margin-top: 180px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0 0 30px;
}
#recruit .recruit-foot .slick-slide {
  padding: 0 15px;
}
#recruit .recruit-foot img {
  height: 259px;
}
@media (max-width: 768px) {
  #recruit .recruit-foot img {
    height: 143px;
  }
}
@media (max-width: 768px) {
  #recruit .recruit-foot {
    margin-top: 80px;
  }
}
#recruit .section-title.recruit h2 {
  color: #fff;
  font-size: 100px;
}
@media (max-width: 768px) {
  #recruit .section-title.recruit h2 {
    font-size: 54px;
  }
}
#recruit .section-title.recruit h2.small {
  font-size: 16px;
  color: #fff;
}
#recruit .link-btn {
  color: #fff;
  border: 1px solid #fff;
}
#recruit .link-btn:hover {
  border: 1px solid rgba(0, 0, 0, 0);
  color: #fff;
}
@media (max-width: 1280px) {
  #recruit .link-btn {
    width: 255px;
    margin-top: 0;
    text-align: center;
    margin: auto;
    display: block;
  }
}

#news {
  padding: 150px 0;
  background-color: #fff;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  #news {
    padding: 80px 0;
  }
}
#news .news-wrap {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 768px) {
  #news .news-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  #news .news-wrap .title-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
  }
}
#news .news-wrap .link-btn {
  color: #000;
  border: 1px solid #000;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #news .news-wrap .link-btn {
    font-size: 12px;
    margin-top: 0;
  }
}
#news .news-wrap .news-contents {
  width: 100%;
}
#news .news-wrap .news-contents li a {
  display: flex;
  gap: 15px;
  border-top: 1px solid #f5f5f5;
  padding: 30px 0;
  justify-content: space-between;
}
#news .news-wrap .news-contents li a:last-child {
  border-bottom: 1px solid #f5f5f5;
}
#news .news-wrap .news-contents li a .text-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  #news .news-wrap .news-contents li a .text-wrap {
    display: block;
  }
}
#news .news-wrap .news-contents li a .label-date {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  #news .news-wrap .news-contents li a .label-date {
    gap: 20px;
  }
}
#news .news-wrap .news-contents li a .label-date .date {
  font-size: 14px;
}
@media (max-width: 768px) {
  #news .news-wrap .news-contents li a .label-date .date {
    font-size: 10px;
  }
}
#news .news-wrap .news-contents li a .label-date .label {
  padding: 8px 0;
  white-space: nowrap;
  border: 0.5px solid #222;
  font-size: 12px;
  width: 100px;
  text-align: center;
  line-height: 1;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  #news .news-wrap .news-contents li a .label-date .label {
    padding: 10px 0;
    font-size: 10px;
    width: 100px;
  }
}
#news .news-wrap .news-contents li a .text {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  #news .news-wrap .news-contents li a .text {
    margin-top: 16px;
    font-size: 12px;
  }
}
#news .news-wrap .news-contents li a .arrow {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translate(-30px);
  transition: transform 0.5s;
}
#news .news-wrap .news-contents li a:hover .arrow {
  opacity: 1;
  transform: translate(0px);
}

#contact {
  background-image: url(../img/global/contact-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 3;
}
#contact .contact-shade {
  backdrop-filter: blur(10px);
  padding: 135px 0;
  background-color: rgba(0, 33, 95, 0.3);
}
@media (max-width: 768px) {
  #contact .contact-shade {
    padding: 0;
  }
}
#contact .img-wrap {
  font-size: 0.83vw;
  width: 43.25rem;
  max-width: 692px;
}
@media (max-width: 768px) {
  #contact .img-wrap {
    width: 335px;
    margin: auto;
  }
}
#contact .img-wrap img {
  width: 100%;
}
#contact .contact-wrap {
  width: 100%;
  max-width: 1600px;
  padding: 100px 70px 160px 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  gap: 50px;
}
@media (max-width: 1280px) {
  #contact .contact-wrap {
    justify-content: center;
    padding: 80px 20px;
  }
}
#contact .section-title.contact h2 {
  color: #fff;
  font-size: 120px;
}
@media (max-width: 768px) {
  #contact .section-title.contact h2 {
    font-size: 54px;
  }
}
#contact .section-title.contact h2.small {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 768px) {
  #contact .section-title.contact h2.small {
    font-size: 16px;
  }
}
#contact .text {
  line-height: 2.5;
  color: #fff;
  margin-top: 100px;
}
@media (max-width: 1280px) {
  #contact .text {
    margin: 50px 0;
  }
}
@media (max-width: 768px) {
  #contact .text {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  #contact .link-btn {
    width: 255px;
    margin: 50px auto 0;
    text-align: center;
    display: block;
  }
}

footer {
  padding: 100px 160px;
  position: relative;
  z-index: 3;
}

footer {
  padding: 100px 160px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  footer {
    padding: 80px 20px;
  }
}
footer .footer-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  footer .footer-nav {
    display: block;
    max-width: 335px;
    margin: auto;
  }
}
footer .logo {
  width: 235px;
}
footer .logo img {
  width: 100%;
}
@media (max-width: 768px) {
  footer .logo {
    margin: auto;
  }
}
footer nav ul {
  display: flex;
  align-items: center;
  color: #fff;
  flex-wrap: wrap;
}
@media (max-width: 1280px) {
  footer nav ul {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  footer nav ul {
    display: block;
    margin-top: 50px;
  }
}
footer nav ul li {
  font-size: 0.83vw;
  width: 10em;
  padding: 0 30px;
  text-align: center;
  border-left: 1px solid rgba(153, 153, 153, 0.1);
}
@media (max-width: 1280px) {
  footer nav ul li {
    width: auto;
    padding: 0 30px;
    border-left: 0;
    border-top: 1px solid rgba(153, 153, 153, 0.1);
  }
}
footer nav ul li a {
  padding: 20px 0;
}
@media (max-width: 768px) {
  footer nav ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
footer nav ul li a .en {
  font-size: 18px;
}
footer nav ul li a .jp {
  font-size: 12px;
  margin-top: 16px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  footer nav ul li a .jp {
    margin-top: 0;
  }
}
footer nav ul li.contact {
  width: auto;
}
footer nav ul li.contact a {
  font-size: 16px;
  color: #fff;
  display: block;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  white-space: nowrap;
  width: 160px;
  background: linear-gradient(90deg, #4bbc37 0%, #91e42c 100%);
}
@media (max-width: 768px) {
  footer nav ul li.contact a {
    width: 255px;
    width: 100%;
    margin-top: 30px;
  }
}
footer nav ul li.contact a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #91e42c 0%, #4bbc37 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
footer nav ul li.contact a:hover::after {
  opacity: 1;
}
footer nav ul li.contact a span {
  position: relative;
  z-index: 2;
}

iframe {
  filter: grayscale(1);
}
@media (max-width: 768px) {
  iframe {
    height: 88px;
  }
}

.map-wrap {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}
.map-wrap > div {
  width: 100%;
}
.map-wrap p {
  color: #fff;
  font-size: 12px;
  line-height: 2;
  font-weight: 300;
}
.map-wrap p.name {
  font-weight: 600;
  font-size: 14px;
  margin-top: 30px;
}

.separate-character h2 {
  line-height: 1 !important;
  overflow: hidden;
}
.separate-character h2 span {
  position: relative;
}
.separate-character h2 span span {
  top: 0.7em;
  opacity: 0;
}

.separate-character-title h2 {
  line-height: 1 !important;
  overflow: hidden;
}
.separate-character-title h2 span {
  position: relative;
}
.separate-character-title h2 span span {
  top: 0.7em;
  opacity: 0;
}
.separate-character-title p {
  overflow: hidden;
}
.separate-character-title p span {
  position: relative;
}
.separate-character-title p span span {
  top: 0.7em;
  opacity: 0;
}
footer.under-page {
  overflow: hidden;
}
footer.under-page .video {
  position: absolute;
  left: 0;
  top: 0;
}
footer.under-page .shade {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(34, 34, 34, 0.8);
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.footer-wrap {
  position: relative;
  z-index: 1;
}
.sv {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 150px 320px;
  position: relative;
  margin-top: 100px;
}
@media (max-width: 1280px) {
  .sv {
    padding: 100px 150px;
  }
}
@media (max-width: 768px) {
  .sv {
    padding: 80px 20px;
    margin-top: 70px;
  }
}
.sv h1 {
  font-size: 82px;
  line-height: 1;
}
@media (max-width: 768px) {
  .sv h1 {
    font-size: 36px;
  }
}
.sv p {
  line-height: 1;
  margin-top: 30px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .sv p {
    font-size: 14px;
    margin-top: 20px;
  }
}
.sv.service {
  background-image: url(../img/sv/service.png);
}
.sv.privacy {
  background-image: url(../img/sv/privacy.png);
}
.sv.company {
  background-image: url(../img/sv/company.png);
}
.sv.recruit {
  background-image: url(../img/sv/recruit.png);
}
.sv.case {
  background-image: url(../img/sv/case.png);
}
.sv.news {
  background-image: url(../img/sv/news.png);
}
.sv.contact {
  background-image: url(../img/sv/contact.png);
}

.service-page-contents .service-page-content {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .service-page-contents .service-page-content {
    padding: 80px 0;
  }
}
.service-page-contents .service-page-content:nth-of-type(2n) {
  background: #f5f5f5;
}
.service-page-contents .service-page-content-wrap {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: auto;
}
.service-page-contents .service-page-content-wrap .title {
  display: flex;
  gap: 20px;
}
.service-page-contents .service-page-content-wrap .title h2 {
  color: #222;
  font-size: 36px;
}
@media (max-width: 768px) {
  .service-page-contents .service-page-content-wrap .title h2 {
    font-size: 20px;
  }
}
.service-page-contents .service-page-content-wrap .title .number {
  color: #4bbc37;
}
.service-page-contents .service-page-content-wrap .text {
  margin: 80px 0;
  line-height: 2;
  color: #666;
}
@media (max-width: 1280px) {
  .service-page-contents .service-page-content-wrap .text {
    margin: 50px 0;
  }
}
@media (max-width: 768px) {
  .service-page-contents .service-page-content-wrap .text {
    font-size: 14px;
  }
}
.service-page-contents .service-page-content-wrap .img img {
  width: 100%;
}

.fade-up {
  opacity: 0;
  visibility: hidden;
}

.company-page-contents {
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
}
.company-page-contents.numbers .title h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .company-page-contents.numbers .title h2 {
    font-size: 20px;
    text-align: left;
  }
}
.company-page-contents.numbers .list-wrap {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .company-page-contents.numbers .list-wrap {
    margin-top: 50px;
  }
}
.company-page-contents.numbers .list-wrap ul {
  display: grid;
  grid-template-columns: auto auto;
}
.company-page-contents.numbers .list-wrap ul.tb {
  display: none;
}
@media (max-width: 1280px) {
  .company-page-contents.numbers .list-wrap ul.tb {
    display: block;
  }
}
@media (max-width: 1280px) {
  .company-page-contents.numbers .list-wrap ul {
    grid-template-columns: auto;
    max-width: 800px;
    margin: auto;
  }
  .company-page-contents.numbers .list-wrap ul.pc-tb {
    display: none;
  }
}
.company-page-contents.numbers .list-wrap ul li {
  padding: 30px 50px;
  color: #666;
  border-top: 1px solid #e5e5e5;
}
.company-page-contents.numbers .list-wrap ul li:last-child {
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 768px) {
  .company-page-contents.numbers .list-wrap ul li {
    padding: 30px 20px;
  }
}
.company-page-contents.numbers .list-wrap ul li.gray {
  background-color: #e5e5e5;
}
.company-page-contents.numbers .list-wrap ul li p {
  display: flex;
}
@media (max-width: 1280px) {
  .company-page-contents.numbers .list-wrap ul li p {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .company-page-contents.numbers .list-wrap ul li p {
    font-size: 14px;
  }
}
.company-page-contents.numbers .list-wrap ul li p span:first-child {
  width: 400px;
}
@media (max-width: 1280px) {
  .company-page-contents.numbers .list-wrap ul li p span:first-child {
    width: auto;
  }
}
.company-page-contents.chart {
  background-color: #f5f5f5;
}
.company-page-contents.chart .title h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .company-page-contents.chart .title h2 {
    font-size: 20px;
  }
}
.company-page-contents.chart .chart-list {
  margin: 80px auto 0;
  width: 1000px;
}
@media (max-width: 768px) {
  .company-page-contents.chart .chart-list {
    margin: 50px auto 0;
  }
}
.company-page-contents.chart .chart-list svg {
  width: 100%;
  height: auto;
}
.company-page-contents.chart .chart-list svg rect {
  transform-origin: 90px 0px !important;
  transform: matrix(0, 0, 0, 1, 0, 0);
}
@media (max-width: 768px) {
  .company-page-contents.chart .chart-list svg rect {
    transform-origin: 50px 0px !important;
  }
}
@media (max-width: 1280px) {
  .company-page-contents.chart .chart-list {
    width: 100%;
  }
}
.company-page-contents.message {
  background-image: url(../img/company/message-bg.png);
}
@media (max-width: 1280px) {
  .company-page-contents.message {
    background-size: contain;
  }
}
.company-page-contents.detail {
  background-image: url(../img/company/detail-bg.png);
}
.company-page-contents.detail .title h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .company-page-contents.detail .title h2 {
    font-size: 20px;
    text-align: left;
  }
}
.company-page-contents.detail table {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .company-page-contents.detail table {
    margin-top: 50px;
  }
}
.company-page-contents.detail table th,
.company-page-contents.detail table td {
  padding: 50px 0;
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 768px) {
  .company-page-contents.detail table th,
  .company-page-contents.detail table td {
    display: block;
    border: none;
    padding: 0;
  }
}
.company-page-contents.detail table tr:last-child th,
.company-page-contents.detail table tr:last-child td {
  border-bottom: 1px solid #e5e5e5;
}
.company-page-contents.detail table th {
  font-weight: 500;
  padding-left: 140px;
  width: 340px;
}
@media (max-width: 768px) {
  .company-page-contents.detail table th {
    padding-left: 0;
    width: auto;
    padding: 0;
    padding-top: 50px;
    border-top: 1px solid #e5e5e5;
  }
}
.company-page-contents.detail table td {
  font-weight: 400;
  padding-right: 140px;
  line-height: 2;
}
@media (max-width: 768px) {
  .company-page-contents.detail table td {
    width: auto;
    padding-right: 0;
    padding-bottom: 50px;
    padding-top: 20px;
    font-size: 14px;
  }
}
.company-page-contents.detail table td span {
  color: #999;
  font-size: 12px;
}
.company-page-contents .company-page-content {
  padding: 100px 20px;
  width: 100%;
  max-width: 1280px;
  margin: auto;
}
@media (max-width: 768px) {
  .company-page-contents .company-page-content {
    padding: 80px 20px;
  }
}
.company-page-contents .company-page-content.message {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1280px) {
  .company-page-contents .company-page-content.message {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .company-page-contents .company-page-content.message {
    gap: 80px;
  }
}
.company-page-contents .company-page-content.message .img img {
  width: 100%;
}
@media (max-width: 1280px) {
  .company-page-contents .company-page-content.message .img {
    font-size: 0.83vw;
    width: 30.25em;
    min-width: 350px;
  }
}
.company-page-contents .company-page-content.message .message-wrap {
  max-width: 550px;
}
.company-page-contents .company-page-content.message .message-wrap h2 {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .company-page-contents .company-page-content.message .message-wrap h2 {
    font-size: 20px;
  }
}
.company-page-contents .company-page-content.message .message-text {
  font-weight: 400;
  margin-top: 80px;
  line-height: 2.5;
}
@media (max-width: 768px) {
  .company-page-contents .company-page-content.message .message-text {
    margin-top: 50px;
    font-size: 14px;
  }
}
.company-page-contents .company-page-content.message .message-text span {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .company-page-contents .company-page-content.message .message-text span {
    font-size: 14px;
  }
}
.company-page-contents .company-page-content.message .message-name {
  margin-top: 80px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 768px) {
  .company-page-contents .company-page-content.message .message-name {
    margin-top: 50px;
    font-size: 14px;
  }
}

.recruit-page-contents.graph {
  padding: 100px 0;
  background-image: url(../img/recruit/graph-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.recruit-page-contents .recruit-page-content.jobs .job-content-wrap {
  display: flex;
}
@media (max-width: 1280px) {
  .recruit-page-contents .recruit-page-content.jobs .job-content-wrap {
    display: block;
  }
}
.recruit-page-contents
  .recruit-page-content.jobs
  .job-content-wrap
  .job-content {
  font-size: 0.83vw;
  padding: 9.375em 6em;
  clip-path: inset(0% 100% 0% 0%);
}
@media (max-width: 1280px) {
  .recruit-page-contents
    .recruit-page-content.jobs
    .job-content-wrap
    .job-content {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .recruit-page-contents
    .recruit-page-content.jobs
    .job-content-wrap
    .job-content {
    padding: 80px 1.25rem;
  }
}
.recruit-page-contents
  .recruit-page-content.jobs
  .job-content-wrap
  .job-content:nth-of-type(2) {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
@media (max-width: 1280px) {
  .recruit-page-contents
    .recruit-page-content.jobs
    .job-content-wrap
    .job-content:nth-of-type(2) {
    border-left: none;
    border-right: none;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
  }
}
.recruit-page-contents
  .recruit-page-content.jobs
  .job-content-wrap
  .job-content
  .title {
  text-align: center;
  font-size: 1.5em;
}
@media (max-width: 768px) {
  .recruit-page-contents
    .recruit-page-content.jobs
    .job-content-wrap
    .job-content
    .title {
    font-size: 20px;
  }
}
.recruit-page-contents
  .recruit-page-content.jobs
  .job-content-wrap
  .job-content
  .img {
  margin: 50px auto;
  width: 27.5em;
}
.recruit-page-contents
  .recruit-page-content.jobs
  .job-content-wrap
  .job-content
  .img.bigger {
  margin: 50px auto;
  width: 47.5em;
}
@media (max-width: 1280px) {
  .recruit-page-contents
    .recruit-page-content.jobs
    .job-content-wrap
    .job-content
    .img {
    margin: 50px auto;
  }
  .recruit-page-contents
    .recruit-page-content.jobs
    .job-content-wrap
    .job-content
    .img.bigger {
    margin: 50px 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .recruit-page-contents
    .recruit-page-content.jobs
    .job-content-wrap
    .job-content
    .img {
    width: 100%;
  }
  .recruit-page-contents
    .recruit-page-content.jobs
    .job-content-wrap
    .job-content
    .img.bigger {
    width: 100%;
  }
}
.recruit-page-contents
  .recruit-page-content.jobs
  .job-content-wrap
  .job-content
  .img
  img {
  width: 100%;
}
.recruit-page-contents
  .recruit-page-content.jobs
  .job-content-wrap
  .job-content
  .text {
  color: #999999;
  line-height: 2;
  font-size: 1em;
}
@media (max-width: 768px) {
  .recruit-page-contents
    .recruit-page-content.jobs
    .job-content-wrap
    .job-content
    .text {
    font-size: 14px;
  }
}
.recruit-page-contents .recruit-page-content.graph {
  padding: 0 20px;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1280px) {
  .recruit-page-contents .recruit-page-content.graph {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.recruit-page-contents .recruit-page-content.graph .graph-wrap {
  display: grid;
  grid-template-columns: auto auto;
}
.recruit-page-contents .recruit-page-content.graph .graph-wrap .circle {
  width: 275px;
  height: 275px;
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.8) 100%
  );
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .recruit-page-contents .recruit-page-content.graph .graph-wrap .circle {
    width: 168px;
    height: 168px;
  }
}
.recruit-page-contents .recruit-page-content.graph .graph-wrap .circle .title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .recruit-page-contents
    .recruit-page-content.graph
    .graph-wrap
    .circle
    .title {
    font-size: 12px;
  }
}
.recruit-page-contents
  .recruit-page-content.graph
  .graph-wrap
  .circle
  .numbers {
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .recruit-page-contents
    .recruit-page-content.graph
    .graph-wrap
    .circle
    .numbers {
    margin-top: 0;
  }
}
.recruit-page-contents
  .recruit-page-content.graph
  .graph-wrap
  .circle
  .numbers
  .number-target {
  font-size: 54px;
  color: #4bbc37;
  font-weight: 500;
  display: inline-block;
  height: 1em;
  overflow: hidden;
}
@media (max-width: 768px) {
  .recruit-page-contents
    .recruit-page-content.graph
    .graph-wrap
    .circle
    .numbers
    .number-target {
    font-size: 32px;
  }
}
.recruit-page-contents
  .recruit-page-content.graph
  .graph-wrap
  .circle
  .numbers
  .number-target
  span {
  position: relative;
  top: 1em;
}
.recruit-page-contents
  .recruit-page-content.graph
  .graph-wrap
  .circle
  .numbers
  .unit {
  font-size: 16px;
  font-weight: 400;
  color: #222;
  height: 1em;
  overflow: hidden;
}
@media (max-width: 768px) {
  .recruit-page-contents
    .recruit-page-content.graph
    .graph-wrap
    .circle
    .numbers
    .unit {
    font-size: 12px;
  }
}
.recruit-page-contents
  .recruit-page-content.graph
  .graph-wrap
  .circle
  .numbers
  .unit
  span {
  position: relative;
  top: 1em;
}
.recruit-page-contents .recruit-page-content.graph .text-wrap h2 {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .recruit-page-contents .recruit-page-content.graph .text-wrap h2 {
    font-size: 20px;
  }
}
.recruit-page-contents .recruit-page-content.graph .text-wrap p {
  font-weight: 400;
  line-height: 2.5;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .recruit-page-contents .recruit-page-content.graph .text-wrap p {
    font-size: 14px;
  }
}

.case-page-contents .case-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 100px auto;
  display: flex;
  font-size: 0.83vw;
}
@media (max-width: 1280px) {
  .case-page-contents .case-wrap {
    flex-wrap: wrap;
    gap: 50px;
  }
  .case-page-contents .case-wrap {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .case-page-contents .case-wrap {
    margin: 80px 0;
  }
}
.case-page-contents .single-content {
  width: 100%;
  max-width: 1000px;
}
.case-page-contents .single-content .detail {
  margin: 80px 0;
}
.case-page-contents .single-content .title-wrap {
  display: flex;
  gap: 15px;
  padding: 35px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.single-content .content p {
  line-height: 1.5;
}
.case-page-contents .single-content .title-wrap .title {
  color: #222;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}
.case-page-contents .single-content .title-wrap .taxonomies {
  background: #4bbc37;
  display: flex;
  width: 100px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1;
  font-size: 12px;
}
@media (max-width: 1280px) {
  .case-page-contents .single-content .title-wrap .taxonomies {
    padding: 10px 0;
    font-size: 10px;
    width: 64px;
  }
}
.case-page-contents .list-wrap {
  width: 100%;
  max-width: 81.25em;
}
@media (max-width: 1280px) {
  .case-page-contents .list-wrap {
    max-width: none;
  }
}
.case-page-contents .list-wrap ul {
  width: 1000px;
  display: grid;
  grid-template-columns: auto auto;
  row-gap: 80px;
  column-gap: 30px;
}
@media (max-width: 1280px) {
  .case-page-contents .list-wrap ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
    justify-content: center;
    row-gap: 30px;
  }
}
@media (max-width: 768px) {
  .case-page-contents .list-wrap ul {
    column-gap: 10px;
    row-gap: 20px;
  }
}
.case-page-contents .list-wrap ul li {
  display: flex;
  align-items: center;
  background-color: #e5e5e5;
  max-width: 485px;
}
.case-page-contents .list-wrap ul li a {
  padding: 30px;
  display: inline-block;
  font-size: 0.83vw;
  width: 100%;
}
@media (max-width: 1280px) {
  .case-page-contents .list-wrap ul li a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .case-page-contents .list-wrap ul li a {
    padding: 20px 10px 30px;
    width: 162px;
  }
}
.case-page-contents .list-wrap ul li a .thumbnail {
  width: 425px;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .case-page-contents .list-wrap ul li a .thumbnail {
    width: 142px;
    height: 100px;
  }
}
.case-page-contents .list-wrap ul li a .thumbnail img {
  width: 100%;
  height: auto;
}
.case-page-contents .list-wrap ul li a .text {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .case-page-contents .list-wrap ul li a .text {
    flex-wrap: wrap-reverse;
    gap: 10px;
    margin-top: 20px;
  }
}
.case-page-contents .list-wrap ul li a .text .title {
  font-size: 20px;
}
@media (max-width: 1280px) {
  .case-page-contents .list-wrap ul li a .text .title {
    font-size: 14px;
  }
}
.case-page-contents .list-wrap ul li a .text .taxonomies {
  background: #4bbc37;
  display: flex;
  width: 100px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1;
  font-size: 12px;
}
@media (max-width: 1280px) {
  .case-page-contents .list-wrap ul li a .text .taxonomies {
    padding: 10px 0;
    font-size: 10px;
    width: 64px;
  }
}

.years {
  width: 200px;
  text-align: right;
}
.years p {
  font-size: 24px;
  font-weight: 500;
  white-space: nowrap;
  margin: 30px 0;
}
.years ul li {
  padding: 20px 0;
}

@media (max-width: 768px) {
  .years {
    width: 100%;
    text-align: center;
  }
}
.single-content .button-wrap {
  display: flex;
  justify-content: center;
}
.single-content .link-btn {
  color: #222;
  border: 1px solid #222;
  width: 200px;
  text-align: center;
}
.single-content .link-btn:hover {
  color: #fff;
  border: 1px solid #fff;
}

.news-page-contents .news-wrap {
  max-width: 1280px;
  width: 100%;
  margin: 100px auto;
}
.news-page-contents .news-wrap .content {
  margin-top: 80px;
}
.news-page-contents .news-wrap .content img {
  max-width: 100%;
}
.news-page-contents .news-wrap .title-wrap {
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  padding: 30px 0;
}
.news-page-contents .news-wrap .title-wrap .title-text {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.news-page-contents .news-wrap .title-wrap .date {
  font-size: 14px;
  font-weight: 500;
}
.news-page-contents .news-wrap .title-wrap .taxonomies {
  border: 0.5px solid #222;
  display: flex;
  width: 100px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  line-height: 1;
}
.news-page-contents .news-wrap .title-wrap .title {
  color: #222;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}
.news-page-contents .news-wrap .news {
  padding: 38px 10px;
  border-top: 1px solid #f5f5f5;
}
.news-page-contents .news-wrap .news:last-child {
  border-bottom: 1px solid #f5f5f5;
}
.news-page-contents .news-wrap {
  padding: 0 20px;
}
.news-page-contents .news-wrap .news a {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .news-page-contents .news-wrap .news a {
    display: grid;
    row-gap: 16px;
  }
}
.news-page-contents .news-wrap .news a .text {
  display: flex;
  gap: 16px;
  align-items: center;
}
.news-page-contents .news-wrap .news a .text .date {
  font-size: 14px;
}
.news-page-contents .news-wrap .news a .text .taxonomies {
  border: 0.5px solid #222;
  display: flex;
  width: 100px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  line-height: 1;
  font-size: 12px;
}
@media (max-width: 768px) {
  .news-page-contents .news-wrap .news a .text .taxonomies {
    font-size: 10px;
  }
  .news-page-contents .news-wrap .news a .title {
    font-size: 12px;
  }
  .news-page-contents .news-wrap .news a .text .date {
    font-size: 10px;
  }
}

.form-foot {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.form-foot .policy {
  line-height: 2;
}

.button-wrap .back {
  border-radius: 50px;
  border: 1px solid #222;
  color: #222;
  background: inherit;
}
.button-wrap .back:hover::after {
  opacity: 0;
}
.button-wrap .send {
  width: 225px;
}
.button-wrap .back {
  width: 225px;
}
.button-wrap .check {
  margin: 100px auto 0;
}

.button-wrap button {
  color: #fff;
  display: block;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 50px;
  background: linear-gradient(90deg, #4bbc37 0%, #91e42c 100%);
}
.button-wrap button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #91e42c 0%, #4bbc37 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.button-wrap button:hover::after {
  opacity: 1;
}
.button-wrap button span {
  position: relative;
  z-index: 3;
}

.page-contact-contents {
  padding: 80px 0;
  background: #f5f5f5;
}
.page-contact-contents .contact-wrap {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 1280px) {
  .page-contact-contents .contact-wrap {
    padding: 0 20px;
  }
}
.page-contact-contents .contact-wrap table {
  width: 100%;
}
.page-contact-contents .contact-wrap table th,
.page-contact-contents .contact-wrap table td {
  display: block;
}
.page-contact-contents .contact-wrap table th {
  margin-top: 50px;
  font-weight: 500;
}
.page-contact-contents .contact-wrap table th span {
  gap: 10px;
  border-radius: 50px;
  border-radius: 10px;
  background: #4bbc37;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  line-height: 0;
  height: 24px;
  display: inline-flex;
  align-items: center;
  width: 48px;
  justify-content: center;
}
.page-contact-contents .contact-wrap table td {
  margin-top: 20px;
}
.page-contact-contents .contact-wrap table td selsect {
  width: 500px;
  border-radius: 10px;
  border: 1px solid #999;
  background: #fff;
}
@media (max-width: 768px) {
  .page-contact-contents .contact-wrap table td selsect {
    width: 100%;
  }
}
.page-contact-contents .contact-wrap table td input[name="land"],
.page-contact-contents .contact-wrap table td input[name="landproprietary"],
.page-contact-contents .contact-wrap table td input[name="building"],
.page-contact-contents .contact-wrap table td input[name="buildnum"],
.page-contact-contents .contact-wrap table td input[name="buildyear"] {
  width: 100px;
}
.page-contact-contents .contact-wrap table td .unit {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-contact-contents .contact-wrap table td .raido-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.page-contact-contents .contact-wrap table td .othres {
  width: 100px !important;
}
.page-contact-contents .contact-wrap table td .othre-warap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-contact-contents .contact-wrap table td .err {
  color: #999;
  font-size: 12px;
  margin-top: 12px;
  font-weight: 500;
}
.page-contact-contents .contact-wrap table td .button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  gap: 20px;
}
@media (max-width: 1280px) {
  .page-contact-contents .contact-wrap table td .button-wrap {
    flex-wrap: wrap;
  }
}
.page-contact-contents .contact-wrap table fieldset {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .page-contact-contents .contact-wrap table fieldset {
    gap: 20px;
  }
}
.page-contact-contents .contact-wrap table fieldset.select {
  column-gap: 30px;
  row-gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 1280px) {
  .page-contact-contents .contact-wrap table fieldset {
    display: block;
  }
  .page-contact-contents .contact-wrap table fieldset > div {
    margin-top: 10px;
  }
}
.page-contact-contents .contact-wrap table input[type="text"] {
  border-radius: 10px;
  background: #fff;
  width: 100%;
  display: flex;
  height: 56px;
  padding: 20px;
  align-items: center;
  gap: 10px;
}
.page-contact-contents .contact-wrap table input[name="floor_text"] {
  width: 100px;
}
.page-contact-contents .contact-wrap table select {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fff;
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  width: 500px;
  color: #999;
}
@media (max-width: 768px) {
  .page-contact-contents .contact-wrap table select {
    width: 100%;
  }
}
.page-contact-contents .contact-wrap table .tel-wrap input {
  width: 100%;
  position: relative;
}
.page-contact-contents .contact-wrap table .post-wrap {
  display: flex;
  gap: 30px;
}
.page-contact-contents .contact-wrap table .post-wrap > div {
  position: relative;
}
.page-contact-contents
  .contact-wrap
  table
  .post-wrap
  > div:not(:last-child)::before {
  content: "-";
  position: absolute;
  display: inline-block;
  right: -20px;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 15px;
  margin: auto;
  color: #666;
  z-index: 1;
}
.page-contact-contents .contact-wrap table .post-wrap input {
  width: 100px !important;
}
.page-contact-contents .contact-wrap table .address {
  margin-top: 20px !important;
}
.page-contact-contents .contact-wrap table textarea {
  padding: 10px;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  background: #fff;
}

.err {
  color: #999;
  font-size: 12px;
  margin-top: 12px;
  font-weight: 500;
}

.policy a {
  border-bottom: 1px solid;
}

.contact-message {
  padding: 100px 20px;
  text-align: center;
  line-height: 2;
}
@media (max-width: 768px) {
  .contact-message p {
    font-size: 14px;
  }
}

.thankyou-wrap .compleate {
  text-align: center;
}

.thankyou-wrap .compleate p {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .thankyou-wrap .compleate p {
    font-size: 20px;
  }
}

.thankyou-wrap .send-mail {
  line-height: 2;
  margin: 50px 0;
}
@media (max-width: 768px) {
  .thankyou-wrap .send-mail {
    font-size: 14px;
    margin: 30px 0;
  }
}

.thankyou-wrap .caution {
  color: #999;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 24px */
}

.sp-nav-menu {
  position: fixed;
  top: 0px;
  z-index: 9;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}
.sp-nav-menu nav ul li {
  border-bottom: 1px solid #e5e5e5;
}
.sp-nav-menu nav ul li a {
  padding: 30px 40px;
  display: block;
}
.sp-nav-menu nav ul li.contact {
  padding: 30px 40px;
}
.sp-nav-menu nav ul li.contact a {
  width: 295px;
  margin: auto;
  text-align: center;
  color: #fff;
  display: block;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  background: linear-gradient(90deg, #4bbc37 0%, #91e42c 100%);
}
.sp-nav-menu nav ul li.contact a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #91e42c 0%, #4bbc37 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.sp-nav-menu nav ul li.contact a:hover::after {
  opacity: 1;
}
.sp-nav-menu nav ul li.contact a span {
  position: relative;
  z-index: 2;
}
.separate-character-title h1 {
  line-height: 1 !important;
  overflow: hidden;
}
.separate-character-title h1 span {
  position: relative;
}
.separate-character-title h1 span span {
  top: 0.7em;
  opacity: 0;
}
.privacy-wrap {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 150px 20px;
}
.privacy-wrap p {
  line-height: 2;
  font-size: 14px;
  color: #808080;
}
.privacy-wrap p span {
  color: #4bbc37;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
}
@media (max-width: 768px) {
  .privacy-wrap p span {
    font-size: 14px;
  }
  .privacy-wrap {
    padding: 80px 20px;
  }
}
.wp-pagenavi span {
  display: flex;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #4bbc37;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.wp-pagenavi {
  margin-top: 100px;
  display: flex;
  gap: 10px;
}
.wp-pagenavi a {
  line-height: 1;
  color: #4bbc37;
  display: flex;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 50px;
  border: 1px solid #4bbc37;
  opacity: 0.5;
  background: #fff;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .wp-pagenavi {
    justify-content: center;
    margin-top: 80px;
  }
}
.recruit .link-btn {
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  border: 1px solid #222;
  text-align: center;
  color: #222;
  width: 160px;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .recruit .link-btn {
    width: 225px;
  }
}
.recruit .link-btn:hover {
  color: #fff;
  border: 1px solid #22222200;
}

.recruit-page-contents.detail table {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .recruit-page-contents.detail table {
    margin-top: 50px;
  }
}
.recruit-page-contents.detail table th,
.recruit-page-contents.detail table td {
  padding: 50px 0;
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 768px) {
  .recruit-page-contents.detail table th,
  .recruit-page-contents.detail table td {
    display: block;
    border: none;
    padding: 0;
  }
}
.recruit-page-contents.detail table tr:last-child th,
.recruit-page-contents.detail table tr:last-child td {
  border-bottom: 1px solid #e5e5e5;
}
.recruit-page-contents.detail table th {
  font-weight: 500;
  padding-left: 140px;
  width: 340px;
}
@media (max-width: 768px) {
  .recruit-page-contents.detail table th {
    padding-left: 0;
    width: auto;
    padding: 0;
    padding-top: 50px;
    border-top: 1px solid #e5e5e5;
  }
}
.recruit-page-contents.detail table td {
  font-weight: 400;
  padding-right: 140px;
  line-height: 2;
}
.recruit-page-contents.detail table td a {
  color: #4bbc37;
  leading-trim: both;
  text-edge: cap;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 32px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (max-width: 768px) {
  .recruit-page-contents.detail table td {
    width: auto;
    padding-right: 0;
    padding-bottom: 50px;
    padding-top: 20px;
    font-size: 14px;
  }
}
.recruit-page-contents.detail table td span {
  color: #999;
  font-size: 12px;
}
.recruit-page-content {
  margin: auto;
  width: 100%;
  padding: 0 20px;
}
.recruit-page-content .title {
  font-size: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .recruit-page-content .title {
    font-size: 20px;
    text-align: center;
  }
}
.recruit-page-content .img {
  margin: 50px 0;
}
.recruit-page-content .img img {
  width: 100%;
}
.recruit-page-contents {
  margin: 100px 0;
}
.custom-file-upload label {
  display: inline-block;
  background: #e0e0e0;
  color: #888;
  border-radius: 12px;
  padding: 18px 32px;
  cursor: pointer;
  font-size: 18px;
  border: none;
  transition: background 0.2s;
}
.custom-file-upload input[type="file"] {
  display: none;
}
#file-name {
  display: block;
  margin-top: 10px;
  color: #333;
  font-size: 16px;
}
