@charset "UTF-8";
.companyarea {
  padding: 100px 0 120px;
  background: rgb(244, 244, 244);
}

@media screen and (max-width: 768px) {
  .companyarea {
    padding: 60px 0 80px;
  }
}
.companyarea-noizu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.companyarea-wrap {
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .companyarea-wrap {
    padding: 0 20px;
  }
}
.companyarea-ttl {
  display: block;
  max-width: 500px;
  margin: 0 auto 100px;
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 4px 12px rgba(74, 213, 226, 0.15));
          filter: drop-shadow(0 4px 12px rgba(74, 213, 226, 0.15));
}

@media screen and (max-width: 768px) {
  .companyarea-ttl {
    max-width: 240px;
    margin-bottom: 70px;
  }
}
.companyarea-ttl-jump-in {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}

.companyarea-ttl-jump-in.jump-in {
  -webkit-animation: jumpIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          animation: jumpIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .companyarea-ttl-jump-in.jump-in {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1;
  }
}
.companyarea-table {
  background: #fff;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
}

@media screen and (max-width: 768px) {
  .companyarea-table {
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.05);
  }
}
.companyarea-table-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-bottom: 1px solid #e0e0e0;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  background: #fff;
}

.companyarea-table-block:first-child {
  border-top: none;
  border-radius: 12px 12px 0 0;
}

.companyarea-table-block:last-child {
  border-bottom: none;
  border-radius: 0 0 12px 12px;
}

@media screen and (max-width: 768px) {
  .companyarea-table-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .companyarea-table-block:first-child {
    border-radius: 8px 8px 0 0;
  }
  .companyarea-table-block:last-child {
    border-radius: 0 0 8px 8px;
  }
}
.companyarea-table-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(74, 213, 226, 0.08)), color-stop(50%, rgba(74, 213, 226, 0.12)), to(rgba(74, 213, 226, 0.08)));
  background: linear-gradient(90deg, rgba(74, 213, 226, 0.08) 0%, rgba(74, 213, 226, 0.12) 50%, rgba(74, 213, 226, 0.08) 100%);
  -webkit-transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.companyarea-table-block::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #4ad5e2;
  -webkit-transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.companyarea-table-block:hover {
  border-bottom-color: rgba(74, 213, 226, 0.3);
  -webkit-box-shadow: 0 2px 12px rgba(74, 213, 226, 0.08);
          box-shadow: 0 2px 12px rgba(74, 213, 226, 0.08);
}

.companyarea-table-block:hover::before {
  width: 100%;
}

.companyarea-table-block:hover::after {
  width: 4px;
}

.companyarea-table-block:hover .companyarea-table-block-lft {
  color: #4ad5e2;
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}

.companyarea-table-block:hover .companyarea-table-block-rig {
  color: #333;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

@media screen and (max-width: 768px) {
  .companyarea-table-block:hover {
    -webkit-box-shadow: 0 2px 8px rgba(74, 213, 226, 0.1);
            box-shadow: 0 2px 8px rgba(74, 213, 226, 0.1);
  }
  .companyarea-table-block:hover .companyarea-table-block-lft,
  .companyarea-table-block:hover .companyarea-table-block-rig {
    -webkit-transform: none;
            transform: none;
  }
}
.companyarea-table-block01 {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.companyarea-table-block02 {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.companyarea-table-block03 {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.companyarea-table-block04 {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.companyarea-table-block05 {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.companyarea-table-block06 {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: fadeInUpCompany 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .companyarea-table-block01,
  .companyarea-table-block02,
  .companyarea-table-block03,
  .companyarea-table-block04,
  .companyarea-table-block05,
  .companyarea-table-block06 {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.companyarea-table-block-lft {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  padding: 28px 0 28px 32px;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(74, 213, 226, 0.03);
  position: relative;
  z-index: 2;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 1024px) {
  .companyarea-table-block-lft {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
            flex: 0 0 180px;
    padding: 24px 0 24px 24px;
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .companyarea-table-block-lft {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 20px 20px 12px;
    font-size: 12px;
    letter-spacing: 0.1em;
    background: rgba(74, 213, 226, 0.05);
  }
}
.companyarea-table-block-rig {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 28px 32px 28px 40px;
  font-size: 15px;
  color: #333;
  line-height: 1.9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 1024px) {
  .companyarea-table-block-rig {
    padding: 24px 24px 24px 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .companyarea-table-block-rig {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.8;
  }
}
.companyarea-table-block-rig a {
  color: #333;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
}

.companyarea-table-block-rig a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#4ad5e2), to(#6ee0eb));
  background: linear-gradient(90deg, #4ad5e2 0%, #6ee0eb 100%);
  -webkit-transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.companyarea-table-block-rig a:hover {
  color: #2ab8c5 !important;
  letter-spacing: 0.08em;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

.companyarea-table-block-rig a:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .companyarea-table-block-rig a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2px;
  }
  .companyarea-table-block-rig a::before {
    content: "📞";
    font-size: 16px;
    -webkit-filter: grayscale(100%) brightness(0.8);
            filter: grayscale(100%) brightness(0.8);
    -webkit-transition: -webkit-filter 0.3s ease;
    transition: -webkit-filter 0.3s ease;
    transition: filter 0.3s ease;
    transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  }
  .companyarea-table-block-rig a:hover {
    letter-spacing: 0.05em;
    -webkit-transform: none;
            transform: none;
  }
  .companyarea-table-block-rig a:hover::before {
    -webkit-filter: none;
            filter: none;
  }
}
.pcv {
  display: block;
}

@media screen and (max-width: 768px) {
  .pcv {
    display: none;
  }
}
.spv {
  display: none;
}

@media screen and (max-width: 768px) {
  .spv {
    display: block;
  }
}
@-webkit-keyframes jumpIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50px) scale(0.8);
            transform: translateX(-50%) translateY(-50px) scale(0.8);
  }
  50% {
    opacity: 0.8;
  }
  70% {
    -webkit-transform: translateX(-50%) translateY(8px) scale(1.05);
            transform: translateX(-50%) translateY(8px) scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) scale(1);
            transform: translateX(-50%) translateY(0) scale(1);
  }
}
@keyframes jumpIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50px) scale(0.8);
            transform: translateX(-50%) translateY(-50px) scale(0.8);
  }
  50% {
    opacity: 0.8;
  }
  70% {
    -webkit-transform: translateX(-50%) translateY(8px) scale(1.05);
            transform: translateX(-50%) translateY(8px) scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) scale(1);
            transform: translateX(-50%) translateY(0) scale(1);
  }
}
@-webkit-keyframes fadeInUpCompany {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUpCompany {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.anchor {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .anchor {
    scroll-margin-top: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
}
.companyarea-table-block:focus-within {
  outline: 3px solid rgba(74, 213, 226, 0.4);
  outline-offset: 2px;
  border-radius: 4px;
}

.companyarea-table-block a:focus {
  outline: 2px solid #4ad5e2;
  outline-offset: 4px;
  border-radius: 4px;
  background: rgba(74, 213, 226, 0.08);
  padding: 2px 6px;
  margin: -2px -6px;
}

.companyarea-table-block a:focus:not(:focus-visible) {
  outline: none;
  background: none;
}

.companyarea-table-block a:focus-visible {
  outline: 2px solid #4ad5e2;
  outline-offset: 4px;
}

::-moz-selection {
  background-color: rgba(74, 213, 226, 0.3);
  color: #333;
}

::selection {
  background-color: rgba(74, 213, 226, 0.3);
  color: #333;
}

::-moz-selection {
  background-color: rgba(74, 213, 226, 0.3);
  color: #333;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .companyarea-wrap {
    padding: 0 30px;
  }
}
@media screen and (max-width: 375px) {
  .companyarea-table-block-lft {
    padding: 16px 16px 10px;
    font-size: 11px;
  }
  .companyarea-table-block-rig {
    padding: 0 16px 16px;
    font-size: 13px;
  }
}