@charset "UTF-8";
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
/* ヘッダー **************************************** */
header {
  /* header自体を固定しない（ロゴだけ固定） */
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  display: block;
  z-index: 999;
  /* #pc_hdr end ***************************************/
  /* #sp_hdr ***************************************/
}
header h1 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 337px;
  height: auto;
  transition: 0.3s;
  margin: 80px 80px;
}
@media screen and (max-width: 1200px) {
  header h1 {
    margin: 40px 24px;
  }
}
header h1 a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
header.scrolled h1 {
  margin: 20px 80px;
}
@media screen and (max-width: 1200px) {
  header.scrolled h1 {
    margin: 12px 24px;
  }
}

@media screen and (max-width: 960px) {
  #pc_hdr {
    display: none !important;
  }
}

#sp_hdr {
  width: 40px;
  height: 40px;
  background: #010101;
  position: fixed;
  right: 24px;
  top: 16px;
  z-index: 1000;
  border-radius: 50%;
  display: none;
  /* #sp_hdr end ***************************************/
}
@media screen and (max-width: 960px) {
  #sp_hdr {
    display: block;
  }
}
#sp_hdr #js-hamburger {
  position: absolute;
  left: 0%;
  top: 0px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1001;
  transition: 0.5s;
  border-radius: 50%;
}
#sp_hdr #js-hamburger span {
  position: absolute;
  width: 20px;
  height: 4px;
  right: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
  transition: all 0.5s;
  border-radius: 4px;
}
#sp_hdr #js-hamburger span:nth-child(1) {
  top: 12px;
}
#sp_hdr #js-hamburger span:nth-child(2) {
  top: 24px;
}
#sp_hdr .black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}
#sp_hdr.open #js-hamburger {
  background: #fff;
  transition: 0.5s;
}
#sp_hdr.open #js-hamburger span {
  background: #010101;
}
#sp_hdr.open #js-hamburger span:nth-child(1) {
  transform: rotate(-45deg);
  top: 18px;
}
#sp_hdr.open #js-hamburger span:nth-child(2) {
  transform: rotate(45deg);
  top: 18px;
}
#sp_hdr.open .sp-nav {
  right: 0;
}
#sp_hdr.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}
#sp_hdr .sp-nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  padding: 70px 40px 36px 40px;
  background: #101010;
}
@media screen and (max-width: 1024px) {
  #sp_hdr .sp-nav ul li {
    display: block !important;
  }
}
#sp_hdr .sp-nav ul li a {
  color: #fff;
  padding: 0;
}
#sp_hdr .sp-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 40px;
}
#sp_hdr .sp-nav ul li a {
  display: block;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 500;
  color: #fff;
  width: fit-content;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
}
#sp_hdr .sp-nav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #fff !important;
  position: absolute;
  left: 0;
  bottom: 4px;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  header #pc_hdr nav ul li.contact-btn a {
    padding: 0 16px;
  }
  header #pc_hdr nav ul li a {
    font-size: 14px;
  }
  header #sp_hdr .sp-nav .hum-logo {
    width: 160px;
  }
  header #sp_hdr .sp-nav ul {
    padding-left: 12px;
  }
  header #sp_hdr .sp-nav ul li a:nth-of-type(1) {
    font-size: 16px;
  }
  header #sp_hdr .sp-nav ul li a {
    font-size: 14px;
  }
}
#pc_hdr {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1400px) {
  #pc_hdr {
    width: fit-content;
  }
}
#pc_hdr nav {
  border-bottom: solid 1px #101010;
  padding: 26px 40px;
  width: 100%;
}
#pc_hdr nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  #pc_hdr nav ul {
    gap: 24px;
  }
}
#pc_hdr nav ul span {
  display: block;
  color: #00336d;
  transform: translate(0px, 4px);
}
#pc_hdr nav ul li a {
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
}

/* FVを過ぎたら上部固定に切替 */
#pc_hdr.is-fixed {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  top: 52px;
}
@media screen and (max-width: 1200px) {
  #pc_hdr.is-fixed {
    top: 0;
  }
}
header.under-header {
  position: fixed;
  left: 0;
  top: 0;
}
header.under-header h1 {
  position: relative;
  margin: 20px 80px;
}
@media screen and (max-width: 1200px) {
  header.under-header h1 {
    margin: 40px 24px;
  }
}
header.under-header #pc_hdr {
  position: absolute;
  right: 0;
  top: 0;
  bottom: unset;
  border: unset;
  width: fit-content;
}
header.under-header #pc_hdr nav {
  border: unset;
}

#pc_hdr_fixed {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
}
#pc_hdr_fixed nav {
  padding: 26px 40px;
  width: 100%;
}
#pc_hdr_fixed nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  #pc_hdr_fixed nav ul {
    gap: 24px;
  }
}
#pc_hdr_fixed nav ul span {
  display: block;
  color: #00336d;
  transform: translate(0px, 4px);
}
#pc_hdr_fixed nav ul li a {
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
}

#pc_hdr_fixed.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  #pc_hdr_fixed.is-show {
    display: none !important;
  }
}

/* 既存ヘッダー側に変な影響を出さないための保険 */
#pc_hdr {
  /* ここは元のCSSがあるなら不要。必要なら調整。 */
}

body * {
  color: #101010;
  letter-spacing: 0.04em;
  line-height: 1.2;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.en-font {
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.inner-1280 {
  padding: 0 80px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .inner-1280 {
    width: 100%;
    padding: 0 8%;
  }
}
@media screen and (max-width: 1200px) {
  .inner-1280 {
    padding: 0 24px;
  }
}

.inner-1140 {
  padding: 0 150px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .inner-1140 {
    width: 100%;
    padding: 0 12%;
  }
}
@media screen and (max-width: 1200px) {
  .inner-1140 {
    padding: 0 24px;
  }
}

.inner-900 {
  padding: 0 270px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .inner-900 {
    width: 100%;
    padding: 0 12%;
  }
}
@media screen and (max-width: 1200px) {
  .inner-900 {
    padding: 0 24px;
  }
}

.show-1200 {
  display: none;
}

@media screen and (max-width: 1200px) {
  .show-1200 {
    display: block;
  }
  .hide-1200 {
    display: none;
  }
}
.show-768 {
  display: none;
}

@media screen and (max-width: 768px) {
  .show-768 {
    display: block;
  }
  .hide-768 {
    display: none;
  }
}
#fv {
  width: 100%;
  height: 100vh;
}
#fv .fv-inner {
  display: flex;
  align-items: center;
  padding-left: 80px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  #fv .fv-inner {
    padding-left: 40px;
  }
}
#fv h2 {
  width: 640px;
  position: relative;
  z-index: 111;
}
@media screen and (max-width: 1200px) {
  #fv h2 {
    width: 560px;
  }
}
#fv h2 div {
  font-size: 44px;
  line-height: 2em;
  letter-spacing: 0.08em;
  font-weight: 700;
}
#fv h2 div span {
  color: #00336d;
  display: inline-block;
  font-size: inherit;
  margin: 0;
}
#fv h2 span {
  display: block;
  color: #b6b6b6;
  font-size: 16px;
  margin-top: 72px;
}
#fv picture {
  display: block;
  width: calc(100% - 640px);
  height: calc(100vh - 72px);
  aspect-ratio: 720/694;
  position: relative;
  z-index: 111;
}
@media screen and (max-width: 1200px) {
  #fv picture {
    width: calc(100% - 560px);
  }
}
#fv picture img {
  object-fit: cover;
  height: 100%;
}
#fv .fv-scroll-hint {
  position: absolute;
  z-index: 111;
  left: 80px;
  bottom: 0;
  margin: auto;
  width: auto;
}
@media screen and (max-width: 1200px) {
  #fv .fv-scroll-hint {
    left: 24px;
  }
}
#fv .fv-scroll-hint p {
  color: #101010;
  text-align: center;
  font-size: 16px;
  margin-bottom: 12px;
  writing-mode: vertical-rl;
}
#fv .fv-scroll-hint .bar {
  width: 1px;
  height: 60px;
  background: #000;
  position: relative;
  left: 8px;
}
#fv .fv-scroll-hint .bar span {
  display: block;
  width: 1px;
  height: 8px;
  margin: 0 auto;
  background: #fff;
  animation: floating-y 1s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(56px);
  }
}
.section-title h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 52px;
}
.section-title span.en-font {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00336d;
  letter-spacing: 0.08em;
}
.section-title span.en-font svg {
  width: 18px;
  height: auto;
  aspect-ratio: 1;
  fill: #00336d;
}

.read-more__btn {
  color: #b6b6b6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.read-more__btn div {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  position: relative;
  background: #b6b6b6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  position: relative;
  border: solid 1px #b6b6b6;
}
.read-more__btn div img {
  display: block;
  width: 9px;
  height: auto;
  transition: 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.read-more__btn div img.hover-default {
  opacity: 1;
  z-index: 1;
}
.read-more__btn div img.hover-active {
  opacity: 0;
  z-index: -1;
}
.read-more__btn:hover div {
  transition: 0.3s;
  background: #fff;
  border: solid 1px #b6b6b6;
}
.read-more__btn:hover div img.hover-default {
  opacity: 0;
  z-index: -1;
}
.read-more__btn:hover div img.hover-active {
  opacity: 1;
  z-index: 1;
}

#vision {
  padding: 160px 0 0 0;
  position: relative;
  overflow: hidden;
}
#vision h2 {
  width: 617px;
}
#vision p {
  font-size: 24px;
  line-height: 3.5;
}
#vision::before {
  content: "";
  background: url(../assets/image/top/vision-deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 51.2vw;
  height: auto;
  aspect-ratio: 738/493;
  display: block;
  position: absolute;
  right: -90px;
  top: 240px;
}

#service {
  padding: 200px 0 0 0;
  position: relative;
  /* 右側の“重ねるレーン” */
  /* stickyするのは中身だけ */
}
#service .section-title span.en-font {
  color: #b6b6b6;
}
#service .section-title span.en-font svg {
  fill: #b6b6b6;
}
#service .fix-text-wrap {
  position: absolute;
  top: 200px;
  right: 0;
  bottom: 0;
  width: 200px;
  pointer-events: none;
  z-index: 2;
}
#service .fix-text {
  writing-mode: vertical-rl;
  font-size: 160px;
  line-height: 1;
  position: sticky;
  top: 0;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  #service .fix-text {
    font-size: 120px;
  }
}
#service .inner-900 {
  padding-left: 150px;
}
@media screen and (max-width: 1400px) {
  #service .inner-900 {
    padding-left: 80px;
    width: calc(100% - 80px);
  }
}
#service .inner-900 > p {
  font-weight: 600;
  margin-bottom: 64px;
}
#service .inner-900 p {
  font-size: 16px;
  line-height: 3;
  font-weight: 500;
}
#service .inner-900 h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 2;
  min-height: 72px;
  margin-top: 24px;
  margin-bottom: 8px;
}
#service ul {
  display: flex;
  flex-wrap: wrap;
  gap: 72px 60px;
}
#service ul li {
  width: calc(50% - 30px);
}
#service ul li.other-service {
  display: flex;
  gap: 30px;
  width: 100%;
}
#service ul li.other-service h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: #00336d;
  width: 180px;
  height: auto;
  margin: 0;
  border-radius: 16px 0 0 16px;
}
#service ul li.other-service h3 svg {
  fill: #fff;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
}
#service ul li.other-service p {
  width: auto;
  flex: 1;
  line-height: 2.5;
}

#feature {
  background: url(../assets/image/top/feature-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  margin-top: 200px;
}
#feature .section-title span.en-font {
  color: #fff;
}
#feature .section-title span.en-font svg {
  fill: #fff;
}
#feature h2 {
  color: #fff;
}
#feature ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 56px;
}
#feature ul li:last-of-type {
  margin-bottom: 0;
}
#feature ul li span {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}
#feature ul li span::before {
  content: "";
  display: block;
  width: 28px;
  height: 19px;
  background: url(../assets/image/top/feature-deco.png);
  background-size: contain;
  background-repeat: no-repeat;
}
#feature ul li h3 {
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  color: #fff;
}
#feature ul li p {
  font-size: 16px;
  line-height: 2.5;
  color: #fff;
  font-weight: 500;
}

#recruit {
  background: url(../assets/image/top/recruit-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  padding: 100px 0;
/*   margin-top: 200px; */
}
@media screen and (max-width: 1200px) {
  #recruit {
    margin-top: 0px;
  }
}
#recruit .section-title span.en-font {
  color: #00336d;
}
#recruit .section-title span.en-font svg {
  fill: #00336d;
}
#recruit h2 {
  color: #101010;
  font-size: 40px;
  margin-bottom: 32px;
}
#recruit p {
  font-size: 16px;
  line-height: 2.5;
  margin-bottom: 32px;
}
#recruit .box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-items: stretch;
}
#recruit .box h3 {
  background: #fff;
  border-radius: 6px 0 0 6px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#recruit .box h3 span {
  display: flex;
  gap: 8px;
  color: #00336d;
  font-weight: bold;
  font-size: 16px;
}
#recruit .box h3 span svg {
  fill: #00336d;
  width: 16px;
}
#recruit .box div {
  width: calc(100% - 196px);
}
#recruit .box div h4 {
  background: #fff;
  color: #00336d;
  border-radius: 0 6px 6px 0;
  padding: 10px;
  display: inline-block;
  margin-bottom: 12px;
}
#recruit .box div p:last-of-type {
  margin: 0;
}

#news {
  padding: 160px 0 0 0;
  position: relative;
}
#news .section-title span svg {
  width: 18px;
}
#news ul li a {
  border-bottom: solid 1px #000000;
  padding: 40px 16px;
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  transition: 0.3s;
}
#news ul li a:hover {
  background: #fbfbfb;
  transition: 0.3s;
}
#news ul li a .news__data {
  display: flex;
  align-items: center;
  width: fit-content;
}
#news ul li a .news__data .date {
  font-size: 16px;
  font-weight: 600;
}
#news ul li a h3 {
  width: auto;
  flex: 1;
  font-size: 16px;
}

#company {
  padding: 200px 0 160px 0;
  position: relative;
  /* 右側の“重ねるレーン” */
  /* stickyするのは中身だけ */
}
#company .fix-text {
  writing-mode: vertical-rl;
  position: absolute;
  right: 10px;
  font-size: 160px;
}
@media screen and (max-width: 1400px) {
  #company .fix-text {
    font-size: 120px;
  }
}
@media screen and (max-width: 1200px) {
  #company .fix-text {
    opacity: 0.1;
    z-index: -1;
  }
}
#company .fix-text-wrap {
  position: absolute;
  top: 200px;
  right: 0;
  bottom: 0;
  width: 200px;
  pointer-events: none;
  z-index: 2;
}
#company .fix-text {
  writing-mode: vertical-rl;
  font-size: 160px;
  line-height: 1;
  position: sticky;
  top: 0;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  #company .fix-text {
    font-size: 120px;
  }
}
#company .section-title span {
  color: #b6b6b6;
}
#company .section-title span svg {
  fill: #b6b6b6;
}
#company .section-title h2 {
  margin-bottom: 12px;
}
#company .inner-900 {
  padding-left: 150px;
}
@media screen and (max-width: 1200px) {
  #company .inner-900 {
    padding-left: 24px;
  }
}
#company ul li {
  display: flex;
  padding: 32px 16px;
  border-bottom: solid 1px #000;
}
#company ul li h3 {
  font-size: 16px;
  line-height: 2.5;
  width: 200px;
}
#company ul li p {
  font-size: 16px;
  line-height: 2.5;
  width: calc(100% - 200px);
}

.contact-cta {
  position: relative;
}
.contact-cta a {
  display: block;
  width: 100%;
  height: auto;
  padding: 170px 80px;
  background: url("../assets/image/top/contact-bg.jpg");
  background-size: cover;
  background-position: bottom right;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .contact-cta a {
    padding: 120px 24px;
  }
}
.contact-cta a .section-title span {
  color: #fff;
}
.contact-cta a .section-title span svg {
  fill: #fff;
  width: 18px;
  height: 18px;
}
.contact-cta a .section-title h2 {
  color: #fff;
}
.contact-cta a .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-cta a .box .contact-btn {
  width: 200px;
  height: 44px;
  color: #fff;
  border: solid 1px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  transition: all 0.3s;
}
.contact-cta a::after {
  content: "";
  display: block;
  width: 500px;
  height: auto;
  aspect-ratio: 500/334;
  position: absolute;
  right: 80px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../assets/image/top/deco_logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s;
}
.contact-cta a:hover .contact-btn {
  background: #fff;
  color: #101010;
  transition: all 0.3s;
}
.contact-cta a:hover::after {
  opacity: 0.2;
  transform: scale(0.9);
  transition: all 0.3s;
}

@media screen and (max-width: 1200px) {
  #fv h2 div {
    font-size: 36px;
  }
  #recruit h2 {
    font-size: 32px;
  }
  .contact-cta a::after {
    width: 33%;
  }
  #vision h2 {
    width: 520px;
  }
  #service .fix-text-wrap {
    opacity: 0.1;
    width: 160px;
    z-index: -1;
  }
  #service .inner-900 {
    width: 100%;
    padding: 0 24px;
  }
}
@media screen and (max-width: 960px) {
  header h1 {
    width: 240px;
    margin: 20px 24px;
  }
  header.scrolled h1 {
    margin: 20px 24px;
  }
  header.under-header h1 {
    margin: 20px 24px;
  }
  #fv {
    padding: 160px 0 0 0;
  }
  #fv .fv-inner {
    padding-left: 24px;
  }
  #fv h2 div {
    font-size: 24px;
    line-height: 1.8em;
  }
  #fv h2 span {
    font-size: 14px;
    margin-top: 12px;
  }
  #fv .fv-inner {
    height: 100%;
    flex-wrap: unset;
  }
  #fv h2 {
    width: 100%;
    height: 140px;
    margin-bottom: 16px;
  }
  #fv picture {
    width: 100%;
    height: calc(100% - 200px);
  }
  #fv .fv-inner {
    height: 100%;
    align-items: flex-start;
    flex-direction: column;
  }
  #fv .fv-scroll-hint {
    left: 0;
    right: 0;
    margin: auto;
  }
  #fv .fv-scroll-hint .bar {
    left: 0;
    right: 0;
    margin: auto;
    height: 24px;
  }
  #fv .fv-scroll-hint p {
    font-size: 10px;
    writing-mode: unset;
    margin-bottom: 4px;
  }
  #vision {
    padding: 100px 0 0 0;
    overflow: unset;
  }
  #vision h2 {
    width: 100%;
    max-width: 400px;
    margin-bottom: 24px;
  }
  #vision::before {
    right: 0;
    width: 320px;
  }
  #vision p {
    font-size: 16px;
    line-height: 2;
  }
  #vision p .show-1200 {
    display: none;
  }
  #service {
    padding: 100px 0 0 0;
  }
  #service .inner-900 p {
    font-size: 16px;
    line-height: 2;
  }
  .section-title h2 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  #service .inner-900 h3 {
    font-size: 16px;
  }
  #service .inner-900 p {
    font-size: 14px;
    line-height: 2;
  }
  #service ul {
    gap: 32px;
  }
  #service ul li {
    width: 100%;
  }
  #service ul li.other-service {
    flex-wrap: wrap;
  }
  #service ul li.other-service h3 {
    width: 100%;
    min-height: 44px;
  }
  #feature {
    padding: 100px 0;
    margin-top: 100px;
  }
  #feature ul li {
    display: block;
  }
  #feature ul li span {
    margin-bottom: 12px;
  }
  #feature ul li h3 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  #feature ul li p {
    font-size: 14px;
    line-height: 2.5;
  }
  #recruit h2 {
    font-size: 20px;
  }
  #recruit p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  #recruit .box {
    display: block;
  }
  #recruit .box h3 {
    border-radius: 6px 6px 0 0;
    width: 100%;
    padding: 16px;
    margin-bottom: 24px;
  }
  #recruit .box div {
    width: 100%;
  }
  #news {
    padding: 100px 0 0 0;
  }
  #news ul li a {
    flex-wrap: wrap;
    padding: 12px;
    gap: 16px;
  }
  #news ul li a .news__data .date {
    font-size: 12px;
  }
  #news ul li a h3 {
    flex: unset;
    width: 100%;
    line-height: 1.5;
  }
  #company {
    padding: 100px 0;
  }
  #company ul li {
    padding: 12px;
    flex-wrap: wrap;
  }
  #company ul li h3 {
    font-size: 14px;
    width: 100%;
  }
  #company ul li p {
    width: 100%;
    font-size: 14px;
  }
  .contact-cta a {
    padding: 40px 24px;
  }
  .section-title h2 {
    font-size: 14px;
    line-height: 2;
  }
  .contact-cta a::after {
    width: 80%;
    opacity: 0.1;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (min-width: 1699px) {
  #company .company-content-r {
    width: 64%;
  }
  .contact-cta a {
    max-width: unset;
  }
}
@media screen and (max-width: 640px) {
  #vision::before,
  #service .fix-text-wrap,
  #company .fix-text-wrap {
    display: none;
  }
}
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
footer {
  width: 100%;
}
footer .inner-1240 {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 140px 150px 150px 80px;
}
@media screen and (max-width: 1200px) {
  footer .inner-1240 {
    padding: 80px 24px;
  }
}
footer .inner-1240 .ftr-logo {
  display: block;
  width: 250px;
  height: auto;
}
footer .inner-1240 ul {
  display: flex;
  gap: 60px 40px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 540px;
}
footer .inner-1240 ul li {
  width: fit-content;
}
footer .inner-1240 ul li a {
  display: block;
  font-size: 16px;
  line-height: 1;
  width: auto;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
}
footer .inner-1240 small {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  footer .inner-1240 {
    width: 100%;
    padding: 70px 4% 70px 4%;
  }
  footer .inner-1240 ul {
    gap: 28px;
  }
}
@media screen and (max-width: 900px) {
  footer .inner-1240 {
    display: block;
  }
  footer .inner-1240 .ftr-logo {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner-1240 ul {
    gap: 24px;
  }
  footer .inner-1240 .ftr-logo {
    margin-bottom: 24px;
    width: 160px;
  }
  footer .inner-1240 ul li a:nth-of-type(1) {
    font-size: 14px;
  }
  footer .inner-1240 ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  footer .inner-1240 ul {
    gap: 18px;
    flex-direction: column;
  }
}
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
.under-fv {
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .under-fv {
    margin-top: 120px;
  }
}
.under-fv .inner-1280 {
  padding: 120px 80px;
}
@media screen and (max-width: 1024px) {
  .under-fv .inner-1280 {
    padding: 120px 24px;
  }
}
.under-fv .section-title span {
  margin-bottom: 0px;
}
.under-fv::after {
  content: "";
  display: block;
  width: 500px;
  height: auto;
  aspect-ratio: 500/334;
  position: absolute;
  right: 80px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../assets/image/top/deco_logo_b.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s;
}
@media screen and (max-width: 960px) {
  .under-fv::after {
    right: 24px;
    width: 240px;
    opacity: 0.1;
  }
}

#news-all {
  padding: 140px 0 70px 0;
  position: relative;
}
#news-all::before {
  content: "";
  display: block;
  width: 780px;
  height: 662px;
  position: absolute;
  left: -40px;
  top: -30px;
  background: url("../assets/image/top/deco_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
#news-all ul {
  border-top: solid 1px #f0f0f0;
}
#news-all ul li a {
  border-bottom: solid 1px #f0f0f0;
  padding: 40px 0;
  display: flex;
  align-items: center;
  gap: 100px;
  position: relative;
}
#news-all ul li a .news__data {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 200px;
}
#news-all ul li a .news__data .date {
  font-size: 16px;
  font-weight: 600;
  margin-right: 30px;
}
#news-all ul li a .news__data .cate {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #60c2ce;
  border-radius: 20px;
  padding: 6px 10px;
}
#news-all ul li a h3 {
  width: calc(100% - 200px);
  font-size: 18px;
  line-height: 1.5em;
  padding-right: 120px;
}
#news-all ul li a::before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: 38px;
  top: 0;
  bottom: 0;
  margin: auto;
  border: solid 1px #fff;
  transition: 0.3s;
}
#news-all ul li a::after {
  content: "";
  display: block;
  background: url(../assets/image/common/arrow_btm_b.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 10px;
  height: 16px;
  position: absolute;
  right: 60px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#news-all ul li a:hover::before {
  border: solid 1px #60c2ce;
  transition: 0.3s;
  background: #60c2ce;
}
#news-all ul li a:hover::after {
  background: url(../assets/image/common/arrow_btm_w2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
#news-all .pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 160px;
}
#news-all .pager .prev__btn img {
  transform: rotate(180deg);
}
#news-all .pager ul {
  display: flex;
  justify-content: center;
  border: unset;
  gap: 12px;
}
#news-all .pager ul li a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: unset;
  padding: 0;
  transition: 0.3s;
}
#news-all .pager ul li a:hover {
  background: #60c2ce;
  color: #fff;
  transition: 0.3s;
}
#news-all .pager ul li a::before {
  display: none;
}
#news-all .pager ul li a::after {
  display: none;
}
#news-all .pager ul li.active a {
  background: #60c2ce;
  color: #fff;
}

.news-single .single-main {
  padding: 130px 0 70px 0;
}
.news-single .single-main .single-title {
  border-bottom: solid 1px #f0f0f0;
  padding-bottom: 12px;
  margin-bottom: 70px;
}
.news-single .single-main .single-title h2 {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 36px;
}
.news-single .single-main .single-title .news__data {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 200px;
}
.news-single .single-main .single-title .news__data .date {
  font-size: 16px;
  font-weight: 600;
  margin-right: 30px;
}
.news-single .single-main .single-title .news__data .cate {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #60c2ce;
  border-radius: 20px;
  padding: 6px 10px;
}
.news-single .single-main h3 {
  font-size: 20px;
  padding-left: 24px;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
}
.news-single .single-main h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #60c2ce;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.news-single .single-main p {
  font-size: 18px;
  line-height: 2em;
  margin-bottom: 56px;
}
.news-single .single-main h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
}
.news-single .single-main .clomun-2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 80px;
}
.news-single .single-main .clomun-2 div {
  width: calc(50% - 40px);
}
.news-single .single-main .clomun-2 figure {
  width: calc(50% - 40px);
}
.news-single .single-main .clomun-2 figure img {
  width: 100%;
  height: auto;
}
.news-single .single-main .prev-all__btn {
  justify-content: center;
}
.news-single .single-main .prev-all__btn div {
  transform: rotate(180deg);
}

@media screen and (max-width: 1024px) {
  #news-all {
    padding: 70px 0 70px 0;
  }
  #news-all ul li a h3 {
    font-size: 16px;
    padding-right: 100px;
  }
  #news-all .pager {
    padding-top: 70px;
  }
  .news-single .single-main {
    padding: 70px 0 70px 0;
  }
  .news-single .single-main .clomun-2 {
    margin-bottom: 40px;
    gap: 40px;
  }
  .news-single .single-main .clomun-2 div {
    width: calc(50% - 20px);
  }
  .news-single .single-main .clomun-2 figure {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  #news-all ul li a .news__data {
    margin-bottom: 16px;
  }
  #news-all ul li a .news__data .date {
    margin-right: 0;
  }
  #news-all ul li a {
    padding: 24px 0;
    display: block;
  }
  #news-all::before {
    width: 340px;
    height: 340px;
    left: 0px;
    top: 0px;
  }
  #news-all ul li a::before {
    width: 40px;
    height: 40px;
    right: -5px;
  }
  #news-all ul li a::after {
    right: 10px;
  }
  #news-all ul li a h3 {
    padding-right: 40px;
    width: 100%;
  }
  #news-all .pager ul {
    gap: 4px;
  }
  #news-all .pager ul li a {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
  .news-single .single-main .single-title h2 {
    font-size: 18px;
    padding-bottom: 24px;
  }
  .news-single .single-main .single-title .news__data {
    gap: 12px;
  }
  .news-single .single-main h3 {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .news-single .single-main p {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .news-single .single-main h4 {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .news-single .single-main .clomun-2 {
    margin-bottom: 32px;
    display: block;
  }
  .news-single .single-main .clomun-2 div {
    width: 100%;
  }
  .news-single .single-main .clomun-2 figure {
    width: 100%;
    margin: 24px 0;
  }
}
@media screen and (min-width: 1699px) {
  .under-fv .inner-1320 {
    max-width: unset;
    width: 90%;
  }
}
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
.under-fv .inner-1320 {
  background: #60c4d0;
}

.privacy-main {
  padding: 140px 0;
}
.privacy-main h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}
.privacy-main p {
  font-size: 16px;
  line-height: 2em;
  margin-bottom: 32px;
}

@media screen and (max-width: 1024px) {
  .privacy-main h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .privacy-main p {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .privacy-main {
    padding: 70px 0;
  }
  .privacy-main h3 {
    font-size: 16px;
  }
  .privacy-main p {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
/* ************************************************ */
/* ************************************************ */
/* ************************************************ */
.contact-main {
  padding: 70px 0;
}
.contact-main .comment {
  font-size: 18px;
  font-weight: bold;
  max-width: 950px;
  margin: 0 auto;
}
.contact-main .form-main {
  padding: 70px 0;
  border-radius: 40px;
}
.contact-main .form-main form {
  max-width: 950px;
  margin: 0 auto;
}
.contact-main .form-main .form-content {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 72px;
}
.contact-main .form-main .form-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
  width: 188px;
}
@media screen and (max-width: 768px) {
  .contact-main .form-main .form-content h3 {
    width: 280px;
  }
}
.contact-main .form-main .form-content h3 .must {
  padding: 4px 2px;
  font-size: 10px;
  color: #fff;
  background: #00336d;
  border-radius: 2px;
  display: inline-block;
}
.contact-main .form-main .form-content > p {
  width: calc(100% - 288px);
}
@media screen and (max-width: 768px) {
  .contact-main .form-main .form-content > p {
    width: 100%;
    font-size: 14px;
  }
}
.contact-main .form-main .form-content .wpcf7-radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-main .form-main .form-content .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.contact-main .form-main .form-content .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-main .form-main .form-content input[type=radio] {
  width: 24px;
  height: 24px;
}
.contact-main .form-main .form-content input[type=text],
.contact-main .form-main .form-content input[type=tel],
.contact-main .form-main .form-content input[type=email],
.contact-main .form-main .form-content textarea {
  border: solid 1px #cccccc;
  padding: 1em;
  font-size: 16px;
  line-height: 1.5em;
  width: 100%;
  border-radius: 8px;
  background: #fff;
}
.contact-main .form-main input::placeholder,
.contact-main .form-main textarea::placeholder {
  color: #b6b6b6;
  opacity: 1;
  font-weight: 500;
}
.contact-main .form-main .form-content-textarea {
  align-items: flex-start;
}
.contact-main .form-main .form-content-textarea h3 {
  margin-top: 1em;
}
.contact-main .form-main .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.contact-main .form-main .privacy-link {
  font-size: 16px;
  display: inline-block;
  width: auto;
  height: auto;
  border-bottom: solid 1px #000;
  position: relative;
}
.contact-main .form-main .submit-content {
  background: #00336d;
  width: 200px;
  height: 44px;
  margin: 72px auto 0 auto;
  border-radius: 4px;
}
.contact-main .form-main .submit-content > p {
  width: 100%;
  height: 100%;
}
.contact-main .form-main .submit-content input {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  text-align: center;
}
.contact-main .form-main .wpcf7-spinner {
  position: absolute;
  z-index: -99;
}
.contact-main .wpcf7-response-output {
  display: none;
}
.contact-main .wpcf7-not-valid-tip {
  margin-top: 1em;
}

.page-id-39 .contact-cta {
  display: none !important;
}

.thanks-main {
  margin-top: 100px;
  margin-bottom: 60px;
}
.thanks-main h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .thanks-main h2 {
    text-align: left;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  .thanks-main h2 br {
    display: none;
  }
}
.thanks-main p {
  font-size: 16px;
  text-align: center;
  line-height: 2.5;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .thanks-main p {
    text-align: left;
    line-height: 2;
    margin-bottom: 40px;
  }
}
.thanks-main a {
  display: block;
  width: 200px;
  height: auto;
  padding: 12px;
  color: #fff;
  background: #00336d;
  text-align: center;
  margin: 0 auto;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .contact-main .comment {
    font-size: 14px;
  }
  .contact-main .form-main .form-content h3 {
    font-size: 16px;
  }
  .contact-main .form-main .form-content h3 .must {
    font-size: 14px;
  }
  .contact-main .form-main .form-content {
    display: block;
    margin-bottom: 32px;
  }
  .contact-main .form-main .form-content h3 {
    margin-bottom: 12px;
  }
  .contact-main .form-main .privacy-link {
    font-size: 14px;
  }
  .contact-main .form-main .submit-content {
    margin-top: 32px;
    width: 280px;
  }
  .contact-main .form-main .submit-content input {
    line-height: 1.5em;
    padding: 12px;
    font-size: 14px;
  }
  .thanks-main {
    margin-top: 40px;
    padding-top: 0px;
    margin-bottom: 80px;
  }
  .thanks-main p {
    font-size: 16px;
  }
