@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;900&display=swap");
:root {
  --c-red: #c20029;
  --c-dark: #333333;
  --c-white: #ffffff;
  --c-bg: #f5f5f5;
  --c-bg2: #eeeeee;
  --c-text: #333333;
  --c-border: #e0e0e0;
  --f-jp: Noto Sans JP, Hiragino Kaku Gothic ProN, Hiragino Sans, sans-serif;
  --f-en: Inter, sans-serif;
  --max-w: 1160px;
  --pad: 40px;
  --hh: 72px; }

.bld {
  font-weight: bold; }

.min {
  font-size: .8em; }

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-all; }

html {
  font-size: 16px;
  scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333333;
  background: #ffffff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased; }

img {
  max-width: 100%;
  height: auto;
  display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s; }
  a:hover {
    opacity: .7; }

ul {
  list-style: none; }

button,
input,
select,
textarea {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif; }

.scroll-topview {
  padding-top: 3em;
  margin-top: -3em; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px; }

.sec {
  padding: 96px 0; }
  .sec--gray {
    background: #f5f5f5;
    position: relative;
    z-index: 0; }
    .sec--gray:before {
      content: "";
      background: url(../images/bg-dia.svg);
      background-repeat: repeat-x;
      background-position: top center;
      position: absolute;
      background-size: 125px;
      left: 0;
      top: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      mix-blend-mode: darken; }
  .sec--dark {
    background: #333333; }
  .sec.lv-sec {
    border-bottom: solid 1px #e6e6e6; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; }

.label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c20029;
  display: block;
  margin-bottom: 12px; }
  .label.label-ver02 {
    text-transform: none; }
  .label.label-yel {
    color: #dfb62e !important; }

.sec-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.75em; }

.has-ul {
  margin-bottom: 1.2em;
  position: relative; }
  .has-ul::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -0.5em;
    width: 20%;
    height: 3px;
    margin: auto;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, white 0%, #a8001f 100%); }

.sec-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #333333; }

.title-desc {
  padding-left: 20px;
  border-left: solid 10px #c20029;
  text-align: left;
  max-width: 1180px;
  margin: 0 auto; }
  .title-desc.title-desc-top {
    max-width: 830px;
    margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, gap 0.2s;
  min-width: 160px;
  white-space: nowrap;
  position: relative;
  overflow: hidden; }
  .btn .btn-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform .25s;
    flex-shrink: 0; }
  .btn:hover .btn-arrow {
    transform: translateX(3px); }
  .btn-primary {
    background: #c20029;
    color: #ffffff;
    border-color: #c20029; }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.12);
      transform: translateX(-101%);
      transition: transform .3s ease; }
    .btn-primary:hover {
      opacity: 1; }
      .btn-primary:hover::before {
        transform: translateX(0); }
  .btn-outline {
    background: transparent;
    color: #333333;
    border-color: #333333; }
    .btn-outline:hover {
      background: #333333;
      color: #ffffff;
      opacity: 1; }
  .btn-outline-w {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6); }
    .btn-outline-w:hover {
      background: #ffffff;
      color: #333333;
      border-color: #ffffff;
      opacity: 1; }
  .btn-white {
    background: #ffffff;
    color: #c20029;
    border-color: #ffffff; }
    .btn-white:hover {
      background: transparent;
      color: #ffffff;
      border-color: #ffffff;
      opacity: 1; }
  .btn-text {
    background: transparent;
    color: #333333;
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
    min-width: auto;
    letter-spacing: .04em;
    position: relative; }
    .btn-text::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: #c20029;
      transition: width .25s ease; }
    .btn-text:hover {
      color: #c20029;
      opacity: 1; }
      .btn-text:hover::after {
        width: 100%; }
    .btn-text .btn-arrow {
      color: #c20029; }

.link-btn {
  padding: .5em 1em;
  position: relative;
  display: block;
  background: #fff;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.5));
  width: 170px;
  font-size: 14px;
  font-weight: 500; }
  .link-btn:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background: #c20029;
    left: 0;
    top: 0;
    z-index: 1; }
  .link-btn .btn-arrow {
    transition: transform .25s;
    flex-shrink: 0;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    height: 1em; }
    .link-btn .btn-arrow svg {
      display: block; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.8);
  height: 72px; }

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 10px;
  max-width: none;
  padding: 0 20px; }

.header-logo img {
  height: 46px;
  width: auto;
  object-fit: contain; }

.header-nav {
  flex: 1;
  overflow: hidden; }
  .header-nav ul {
    display: flex;
    gap: 0; }
  .header-nav a {
    display: block;
    padding: 4px 6px;
    font-size: clamp(10px, 1vw, 14px);
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
    letter-spacing: .02em; }
    .header-nav a:hover {
      color: #c20029;
      opacity: 1; }
    .header-nav a.active {
      color: #c20029; }

.header-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0; }
  .header-cta .btn {
    padding: 8px 18px;
    font-size: 12px;
    min-width: auto; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto; }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333333;
    transition: all .25s; }

.site-footer {
  background: #333333;
  color: #ffffff;
  padding: 64px 0 32px; }

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  margin-bottom: 48px; }

.footer-brand p {
  font-size: 11px;
  color: #999;
  line-height: 1.7; }

.footer-logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px; }

.footer-sns {
  display: flex;
  gap: 10px;
  margin-top: 20px; }
  .footer-sns a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
    transition: all .2s; }
    .footer-sns a:hover {
      opacity: .8; }

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 0; }

.footer-nav-col h4 {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 16px; }
.footer-nav-col a {
  display: block;
  font-size: 13px;
  color: #aaa;
  padding: 5px 0; }
  .footer-nav-col a:hover {
    color: #ffffff;
    opacity: 1; }

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px; }
  .footer-bottom p,
  .footer-bottom a {
    font-size: 11px;
    color: #777; }
  .footer-bottom a:hover {
    color: #aaa;
    opacity: 1; }

.breadcrumb {
  padding: calc(72px + 20px) 0 0; }
  .breadcrumb ol {
    display: flex;
    gap: 0;
    align-items: center;
    flex-wrap: wrap; }
  .breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 12px;
    color: #333333; }
    .breadcrumb li + li::before {
      content: '/';
      margin: 0 8px;
      color: #e0e0e0; }
  .breadcrumb a {
    color: #333333; }
    .breadcrumb a:hover {
      color: #333333;
      opacity: 1; }

.sec-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 20px; }

.ph {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }

.hero {
  padding-top: 72px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e0e0e0; }

.hero-split {
  position: relative;
  min-height: 820px;
  z-index: 1; }

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 80px 60px;
  position: relative;
  z-index: 2;
  width: 50%;
  min-height: 820px;
  /* 
  &:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(65vw, 70vw, 720px);
    height: 100%;
    background: url("../images/top-l.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    min-height: 820px;
    opacity: .8;
  } */ }
  .hero-content:after {
    content: "";
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: -1; }

.hero-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c20029;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px; }
  .hero-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: #c20029;
    flex-shrink: 0; }

.hero-title {
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 700;
  color: #333333;
  line-height: 1.28;
  letter-spacing: -.01em;
  margin-bottom: 28px;
  word-break: keep-all;
  overflow-wrap: anywhere; }
  .hero-title em {
    font-style: normal;
    color: #c20029; }

.hero-body {
  color: #333333;
  margin-bottom: 0;
  max-width: 460px;
  padding-top: 60px; }
  .hero-body:after {
    content: "";
    position: absolute;
    left: -20px;
    top: 20px;
    width: 100%;
    height: 50px;
    background: url(../images/w-edge.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain; }

.hero-tagline {
  margin: 1em 0 20px; }
  .hero-tagline span {
    display: block;
    background: #c20029;
    color: #fff;
    width: fit-content;
    padding: 5px;
    margin-bottom: 8px; }
    .hero-tagline span:last-child {
      margin-bottom: 0; }

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 20px; }
  .hero-cta .link-btn {
    padding: 1em; }

.hero-visual {
  background: #333333;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*  &:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: clamp(65vw, 80vw, 720px);
    height: 100%;
    background: url("../images/top-r.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    min-height: 820px;
    opacity: .8;
  } */ }
  .hero-visual:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background: url("../images/top-bg.svg");
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    min-height: 820px;
    opacity: .8; }

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
  display: block; }
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .hero-slide.is-active {
    opacity: 1; }

.hero-visual-card {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 2;
  background: #ffffff;
  border-top: 3px solid #c20029;
  padding: 20px 24px;
  min-width: 180px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18); }
  .hero-visual-card .vc-label {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #c20029;
    display: block;
    margin-bottom: 8px; }
  .hero-visual-card .vc-num {
    font-family: "Inter", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
    margin-bottom: 4px; }
  .hero-visual-card .vc-unit {
    font-size: 11px;
    color: #333333;
    line-height: 1.6; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0; }

.hero-stat {
  padding: 22px 32px;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  gap: 4px; }
  .hero-stat:last-child {
    border-right: none; }
  .hero-stat .s-num {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    line-height: 1; }
    .hero-stat .s-num span {
      font-size: 12px;
      font-weight: 500;
      color: #333333;
      margin-left: 2px; }
  .hero-stat .s-label {
    font-size: 11px;
    color: #333333;
    letter-spacing: .03em; }

.page-hero {
  padding-top: calc(72px + 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid #e0e0e0; }

.page-hero-head {
  text-align: center;
  max-width: 1160px;
  margin: 0 auto 56px; }
  .page-hero-head .label {
    display: block; }
  .page-hero-head .sec-title {
    font-size: clamp(28px, 4vw, 50px);
    word-break: keep-all; }
  .page-hero-head .sec-desc {
    max-width: 640px;
    margin: 0 auto; }

.page-hero-img {
  width: 100%;
  aspect-ratio: 16/6; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; }

.pain-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr; }
  .pain-card:nth-child(even) .pain-card-img {
    order: 1; }
  .pain-card:nth-child(even) .pain-card-body {
    order: -1; }
  .pain-card .tag {
    font-size: 12px;
    font-weight: 600;
    color: #c20029;
    letter-spacing: .06em;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase; }
  .pain-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 10px; }
  .pain-card p {
    font-size: 13px;
    line-height: 1.8;
    color: #333333; }

.pain-card-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block; }

.pain-card-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; }

.test-carousel {
  position: relative;
  overflow: hidden; }

.test-track {
  display: flex;
  gap: 24px;
  overflow-x: scroll;
  padding-bottom: 5px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth; }
  .test-track::-webkit-scrollbar {
    display: none; }
  .test-track .test-card {
    flex: 0 0 calc((100% - 72px) / 3.5);
    scroll-snap-align: start;
    background: #fff; }
  .test-track .test-card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.carousel-nav {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 20px; }

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0; }
  .carousel-btn:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff; }
  .carousel-btn:disabled {
    opacity: .3;
    cursor: default; }

.test-card:has(.more-all:hover) {
  box-shadow: 2px 2px 3px rgba(51, 51, 51, 0.192);
  transition: all .4s linear; }

.test-card {
  border: 1px solid #e0e0e0;
  position: relative;
  z-index: 0;
  transition: all .4s linear; }
  .test-card .more-all {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 1; }
  .test-card .more-all:hover ~ .test-card-body .more {
    transition: all .4s;
    color: #777; }
  .test-card-img {
    aspect-ratio: 16/9; }
  .test-card-body {
    padding: 24px; }
  .test-card .company {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px; }
    .test-card .company.comp-bg {
      font-size: 16px; }
  .test-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #333333; }
  .test-card .more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #333333;
    margin-top: 12px; }
    .test-card .more::after {
      content: '›';
      font-size: 16px; }

.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  align-items: stretch; }

.grid-box-v3 {
  display: flex;
  justify-content: space-between; }

.video-grid-v3.grid-v3-left {
  width: calc(55% - 1em);
  background: #fff; }
.video-grid-v3.grid-v3-right {
  width: calc(45% - 1em); }
.video-grid-v3 .grid-item-v3 {
  position: relative; }
  .video-grid-v3 .grid-item-v3.v3-fl {
    display: flex;
    background: #fff; }
    .video-grid-v3 .grid-item-v3.v3-fl.v3-fl-top {
      margin-bottom: 1em; }
  .video-grid-v3 .grid-item-v3 .te {
    font-size: 15px;
    padding: 1em;
    width: 100%; }
  .video-grid-v3 .grid-item-v3 .video-card {
    height: 350px;
    width: 100%;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    padding-left: 33px;
    position: relative; }
    .video-grid-v3 .grid-item-v3 .video-card .grid-atag {
      width: 100%;
      display: block;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      padding-left: 33px;
      z-index: 10; }
    .video-grid-v3 .grid-item-v3 .video-card.video-card-fas:hover {
      filter: contrast(0.6); }
    .video-grid-v3 .grid-item-v3 .video-card.video-card-v3 {
      display: grid;
      grid-template-columns: 1fr;
      height: 210px;
      width: 100%;
      max-width: 370px; }
      .video-grid-v3 .grid-item-v3 .video-card.video-card-v3:hover .video-card-thumb img {
        transform: scale(1.04); }
    .video-grid-v3 .grid-item-v3 .video-card-thumb {
      flex: 1;
      min-height: 300px;
      position: absolute;
      overflow: hidden; }
      .video-grid-v3 .grid-item-v3 .video-card-thumb.thumb-3 img {
        height: 210px; }
      .video-grid-v3 .grid-item-v3 .video-card-thumb.card-thumb-left img {
        object-position: 60% 0%; }
      .video-grid-v3 .grid-item-v3 .video-card-thumb.card-thumb-left-botm img {
        object-position: 70% 0; }
      .video-grid-v3 .grid-item-v3 .video-card-thumb.card-thumb-rigth-botm img {
        object-position: 0% 0%; }
      .video-grid-v3 .grid-item-v3 .video-card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s; }
      .video-grid-v3 .grid-item-v3 .video-card-thumb .video-no {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: #c20029;
        color: #ffffff;
        font-size: 10px;
        font-weight: 600;
        padding: 3px 9px;
        letter-spacing: .06em; }
    .video-grid-v3 .grid-item-v3 .video-card-link {
      font-size: 13px;
      font-weight: 500;
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      padding: 1em 5px;
      background: #c20029;
      color: #fff;
      writing-mode: vertical-rl;
      z-index: 1; }
    .video-grid-v3 .grid-item-v3 .video-card h4 {
      font-size: 13px;
      font-weight: 700;
      line-height: 1.55;
      position: absolute;
      left: .7em;
      bottom: .6em;
      z-index: 2;
      filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3)); }
      .video-grid-v3 .grid-item-v3 .video-card h4.video-title {
        pointer-events: none;
        font-size: 1.5em;
        left: .7em;
        bottom: .7em; }
      .video-grid-v3 .grid-item-v3 .video-card h4 span {
        background: #fff;
        display: block;
        width: fit-content;
        padding: 5px;
        margin-bottom: 5px; }
        .video-grid-v3 .grid-item-v3 .video-card h4 span:last-child {
          margin-bottom: 0; }
    .video-grid-v3 .grid-item-v3 .video-card--featured .video-card-thumb {
      flex: unset;
      min-height: 280px;
      width: 100%;
      height: 100%; }
  .video-grid-v3 .grid-item-v3 .video-thumb-link {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 10; }
    .video-grid-v3 .grid-item-v3 .video-thumb-link:hover + .video-card-v3 .video-card-thumb {
      filter: brightness(0.8); }
      .video-grid-v3 .grid-item-v3 .video-thumb-link:hover + .video-card-v3 .video-card-thumb img {
        transform: scale(1.05); }
    .video-grid-v3 .grid-item-v3 .video-thumb-link:hover + .video-card-v3 {
      filter: contrast(0.7); }
    .video-grid-v3 .grid-item-v3 .video-thumb-link:hover + .video-card .video-card-thumb {
      filter: brightness(0.8); }
      .video-grid-v3 .grid-item-v3 .video-thumb-link:hover + .video-card .video-card-thumb img {
        transform: scale(1.05); }
    .video-grid-v3 .grid-item-v3 .video-thumb-link:hover + .video-card {
      filter: contrast(0.7); }
    .video-grid-v3 .grid-item-v3 .video-thumb-link:hover + .video-card .video-play-overlay {
      background: rgba(0, 0, 0, 0.4); }

.video-grid-box {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  align-items: stretch; }
  .video-grid-box.video-grid-box2 {
    grid-template-columns: 2fr 2fr; }
    .video-grid-box.video-grid-box2 .video-cont {
      max-width: 530px;
      margin: 0 auto; }
      .video-grid-box.video-grid-box2 .video-cont .video-textbox {
        justify-content: flex-start; }
        .video-grid-box.video-grid-box2 .video-cont .video-textbox .te-min {
          font-size: 14px;
          color: #c20029; }
        .video-grid-box.video-grid-box2 .video-cont .video-textbox .te-cap {
          margin-top: 1em;
          font-size: 15px;
          color: #666; }
  .video-grid-box .video-text-min {
    font-size: 14px;
    margin-top: 1em;
    position: relative;
    display: block;
    color: #c20029; }
    .video-grid-box .video-text-min::after {
      content: "›";
      position: absolute;
      top: 50%;
      right: 0;
      font-size: 26px;
      transform: translateY(-55%);
      transition: all .4s; }
  .video-grid-box .video-cont {
    display: flex;
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 0;
    transition: all .4s; }
    .video-grid-box .video-cont .traial-link {
      position: absolute;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 1; }
    .video-grid-box .video-cont .video-textbox {
      width: 50%;
      padding: 1em 1em 1em 1.5em;
      background: #fff;
      color: #333;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative; }
      .video-grid-box .video-cont .video-textbox p {
        font-size: 1.2em;
        font-weight: bold; }
      .video-grid-box .video-cont .video-textbox::after {
        content: "";
        position: absolute;
        width: .5em;
        height: 100%;
        top: 0;
        left: 0;
        background: #c20029; }
    .video-grid-box .video-cont .video-videobox {
      object-fit: cover;
      overflow: hidden;
      width: 50%;
      position: relative; }
      .video-grid-box .video-cont .video-videobox.cle-le img {
        object-position: center; }
      .video-grid-box .video-cont .video-videobox.cle-ri img {
        object-position: center; }
      .video-grid-box .video-cont .video-videobox img {
        object-fit: cover;
        object-position: center;
        transition: all .4s;
        height: 100%; }
  .video-grid-box .video-cont-md {
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .4s; }
    .video-grid-box .video-cont-md .traial-link {
      position: absolute;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 1; }
    .video-grid-box .video-cont-md .video-textbox {
      padding: 1em 1em 1em 1.5em;
      color: #333;
      background: #fff;
      position: relative; }
      .video-grid-box .video-cont-md .video-textbox p {
        font-size: 1em;
        font-weight: bold; }
      .video-grid-box .video-cont-md .video-textbox::after {
        content: "";
        position: absolute;
        width: .5em;
        height: 100%;
        top: 0;
        left: 0;
        background: #c20029; }
    .video-grid-box .video-cont-md .video-videobox {
      position: relative;
      object-fit: cover;
      overflow: hidden;
      max-height: 180px; }
      .video-grid-box .video-cont-md .video-videobox img {
        min-height: 200px;
        object-fit: cover;
        transition: all .4s; }
      .video-grid-box .video-cont-md .video-videobox.v-left img {
        object-position: 70%; }
      .video-grid-box .video-cont-md .video-videobox.v-rigth img {
        object-position: 20%; }
  .video-grid-box .video-cont:has(.traial-link:hover) {
    filter: brightness(0.7);
    transition: all .4s; }
  .video-grid-box .video-cont-md:has(.traial-link:hover) {
    filter: brightness(0.7);
    transition: all .4s; }
  .video-grid-box .traial-link:hover ~ .video-videobox img {
    transition: all .4s;
    transform: scale(1.03); }
  .video-grid-box .traial-link:hover + .video-textbox .video-text-min::after {
    right: -5px;
    transition: all .4s; }

.video-card {
  cursor: pointer;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #fff;
  padding-left: 33px;
  position: relative; }
  .video-card .video-v1-link {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 33px;
    top: 0;
    left: 0;
    z-index: 10; }
  .video-card-thumb {
    flex: 1;
    min-height: 160px;
    position: relative;
    overflow: hidden; }
    .video-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s; }
      .video-card-thumb img.posi-ri {
        object-position: 70%; }
      .video-card-thumb img.posi-le {
        object-position: 20%; }
    .video-card-thumb .video-no {
      position: absolute;
      bottom: 10px;
      left: 10px;
      background: #c20029;
      color: #ffffff;
      font-size: 10px;
      font-weight: 600;
      padding: 3px 9px;
      letter-spacing: .06em; }
  .video-card:hover {
    filter: contrast(0.6); }
    .video-card:hover .video-card-thumb img {
      transform: scale(1.04); }
  .video-card-link {
    font-size: 13px;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 1em 5px;
    background: #c20029;
    color: #fff;
    writing-mode: vertical-rl;
    z-index: 1; }
  .video-card h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    position: absolute;
    left: 1em;
    bottom: 1em;
    z-index: 2;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3)); }
    .video-card h4 span {
      background: #fff;
      display: block;
      width: fit-content;
      padding: 5px;
      margin-bottom: 5px; }
      .video-card h4 span:last-child {
        margin-bottom: 0; }
  .video-card--featured .video-card-thumb {
    flex: unset;
    min-height: 280px;
    width: 100%;
    height: 100%; }

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s; }
  .video-play-overlay.play-ri {
    align-items: end;
    justify-content: right;
    padding: 0 1em .5em 0; }
    .video-play-overlay.play-ri .icon-ri {
      box-shadow: 2px 2px 5px rgba(51, 51, 51, 0.438);
      width: 40px;
      height: 40px; }
  .video-card:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.4); }
  .video-play-overlay .play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center; }
    .video-play-overlay .play-icon::after {
      content: '';
      border-left: 16px solid #c20029;
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      margin-left: 4px; }

.service-flow {
  display: grid;
  grid-template-columns: 1fr 5% 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 30px; }

.service-flow-img img {
  width: 100%;
  height: auto;
  display: block; }

.service-flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 4px; }
  .service-flow-arrow p {
    font-size: 16px;
    font-weight: 600;
    color: #c20029;
    letter-spacing: .06em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    line-height: 1.4; }

.flow-arrow-h {
  width: 80%;
  height: auto; }

.flow-arrow-v {
  display: none;
  width: 24px;
  height: 40px; }

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid #e0e0e0; }
  .service-item:first-child {
    padding-top: 0; }
  .service-item:last-child {
    border-bottom: none;
    padding-bottom: 0; }
  .service-item.rev .s-img {
    order: -1; }
  .service-item h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px; }
  .service-item p {
    font-size: 15px;
    line-height: 1.9;
    color: #333333;
    margin-bottom: 16px; }
  .service-item ul {
    padding-left: 0;
    margin-bottom: 16px; }
    .service-item ul li {
      font-size: 14px;
      color: #333333;
      line-height: 1.9;
      display: flex;
      gap: 8px; }
      .service-item ul li::before {
        content: '・';
        color: #c20029;
        flex-shrink: 0; }
  .service-item .btn-text {
    margin-top: 8px; }
  .service-item .ph {
    background: none; }

.s-content {
  text-align: left; }
  .s-content h2 {
    padding-left: 40px;
    position: relative;
    margin-bottom: 8px; }
    .s-content h2:before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 30px;
      height: 100%;
      background: url(../images/logo/ico-logo.svg);
      background-size: contain;
      background-position: center top;
      background-repeat: no-repeat; }
  .s-content-card {
    padding: 0 1em;
    border: 1px solid var(--c-border);
    width: 100%;
    margin-bottom: 1em;
    display: flex;
    align-items: center; }
    .s-content-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.5; }
    .s-content-card strong {
      font-size: 1.5em;
      font-weight: 900; }
    .s-content-card-l {
      max-width: 360px; }
    .s-content-card-r {
      width: calc(100% - 360px - 2em);
      padding: 20px 1em; }

.service-num {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c20029;
  display: block;
  margin-bottom: 6px; }

.s-img {
  aspect-ratio: 4/3; }

.team-item {
  padding: 72px 0;
  border-bottom: 1px solid #e0e0e0; }
  .team-item:first-child {
    padding-top: 0; }
  .team-item:last-child {
    border-bottom: none;
    padding-bottom: 0; }
  .team-item h2 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    margin-bottom: 24px; }
  .team-item p {
    font-size: 15px;
    line-height: 1.95;
    color: #333333;
    margin-bottom: 16px; }
  .team-item .team-head {
    color: #606060;
    font-weight: bold; }

.team-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 40px; }

.team-role {
  font-size: 12px;
  color: #c20029;
  display: block;
  margin-bottom: 6px; }

.team-prof-ac {
  background: #f5f5f5;
  padding: 1em 40px;
  display: none; }

.team-prof-item {
  margin-bottom: 40px;
  color: #333333; }
  .team-prof-item h4 {
    margin-bottom: .5em;
    padding-bottom: .5em;
    border-bottom: solid 1px #e6e6e6;
    color: #606060;
    font-weight: bold; }
  .team-prof-item .team-year {
    display: grid;
    grid-template-columns: 5em 1fr;
    margin-bottom: 5px; }
  .team-prof-item .team-list li {
    padding-left: 1em;
    position: relative; }
    .team-prof-item .team-list li::before {
      content: "・";
      position: absolute;
      left: 0;
      top: 0; }

.team-ac-btn {
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  color: #808080;
  cursor: pointer; }
  .team-ac-btn.btn-contras {
    color: #414141; }
  .team-ac-btn .ac-text {
    margin-right: .5em; }
  .team-ac-btn:hover {
    opacity: .8; }
  .team-ac-btn img {
    width: 1em;
    transition-duration: .3s; }
  .team-ac-btn.ac-active img {
    transform: rotate(180deg); }

.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; }

.growth-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow .3s, transform .3s; }
  .growth-item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px); }
    .growth-item:hover::before {
      transform: scaleX(1); }
  .growth-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #c20029;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease; }
  .growth-item .num {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #c20029;
    display: block;
    margin-bottom: 10px; }
  .growth-item h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 14px; }
  .growth-item p {
    font-size: 14px;
    line-height: 1.85;
    color: #333333; }

.growth-icon {
  width: 52px;
  height: 52px;
  background: #fdf0f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 24px;
  flex-shrink: 0; }
  .growth-icon svg {
    width: 24px;
    height: 24px; }

.cta-sec {
  background: #c20029;
  padding: 40px 0; }

.cta-thm {
  position: relative;
  z-index: 0; }
  .cta-thm img {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: center top; }

.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  align-items: center;
  max-width: 1620px; }

.sec-title-wrap .sec-title {
  color: #ffffff;
  font-size: 48px;
  margin-top: -1em; }
  .sec-title-wrap .sec-title span {
    display: block;
    margin-bottom: 5px;
    background: #fff;
    width: fit-content;
    color: #333;
    padding: 5px; }

.cta-left p {
  font-size: 14px;
  color: #fff; }
.cta-left .cta-flex {
  display: grid;
  grid-template-columns: 1fr 1fr; }
  .cta-left .cta-flex .cta-btns {
    display: flex;
    align-items: center; }
    .cta-left .cta-flex .cta-btns .link-btn {
      margin: 0 8px;
      padding: 1em; }

.cta-box {
  padding-top: 1em; }
  .cta-box .cmp-label {
    display: block;
    color: #c20029;
    margin-bottom: .5em; }
  .cta-box p {
    color: #333;
    margin-bottom: .5em; }

.cta-box-inner {
  background: #fff;
  display: flex;
  align-items: center;
  padding: 1em; }

.cta-box-img {
  max-width: 120px;
  margin-right: 1em;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5)); }

.tabs {
  display: flex;
  border-bottom: 1.5px solid #e0e0e0;
  margin-bottom: 48px;
  gap: 0; }

.tab-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; }

@media (max-width: 640px) {
  .tab-panel {
    grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .tab-panel {
    grid-template-columns: 1fr; } }
.tab-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  color: #333333;
  position: relative;
  transition: color .2s;
  white-space: nowrap; }
  .tab-btn.is-active {
    color: #333333; }
    .tab-btn.is-active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 2px;
      background: #c20029; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; }

.news-card {
  background: #ffffff; }
  .news-card-img {
    aspect-ratio: 16/10;
    overflow: hidden; }
    .news-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s; }
  .news-card:hover .news-card-img img {
    transform: scale(1.04); }
  .news-card-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px; }
  .news-card h3 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 8px; }
  .news-card p {
    font-size: 13px;
    color: #333333;
    line-height: 1.7; }
  .news-card-body {
    padding: 20px 20px 24px; }

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  letter-spacing: .05em; }
  .badge-uncategorized {
    border: 1px solid #333333;
    color: #333333; }
  .badge-press {
    background: #333333;
    color: #ffffff; }
  .badge-event {
    border: 1px solid #c20029;
    color: #ffffff;
    background: #c20029; }
  .badge-news {
    border: 1px solid #333333;
    color: #333333; }

.card-date {
  font-size: 12px;
  color: #333333; }

.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  border: 1.5px solid #333333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  transition: all .2s;
  margin: 48px auto 0; }
  .load-more:hover {
    background: #333333;
    color: #ffffff; }
  .load-more::after {
    content: '→'; }

.article-wrap {
  max-width: 760px;
  margin: 0 auto; }

.article-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0; }
  .article-header .meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px; }
  .article-header h1 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px; }

.article-main-img {
  aspect-ratio: 16/9;
  margin-bottom: 0; }

.article-body {
  font-size: 16px;
  line-height: 2; }
  .article-body p {
    margin-bottom: 28px; }
  .article-body h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0; }
  .article-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 36px 0 16px; }
  .article-body ul {
    padding-left: 20px;
    margin-bottom: 28px; }
    .article-body ul li {
      list-style: disc;
      font-size: 15px;
      line-height: 1.9;
      margin-bottom: 8px; }

.article-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #c20029;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 48px;
  transition: background .2s; }
  .article-cta-link:hover {
    background: #8f001e;
    opacity: 1; }

.article-sidebar {
  position: sticky;
  top: calc(var(--hh) + 24px);
  align-self: start; }

.sidebar-cta {
  border: 1px solid var(--c-border);
  padding: 28px 24px; }

.sidebar-cta h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px; }

.sidebar-cta p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px; }

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start; }

@media (max-width: 860px) {
  .article-layout {
    grid-template-columns: 1fr; }

  .article-sidebar {
    position: static; } }
.form-wrap {
  max-width: 680px;
  margin: 0 auto; }

.form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0; }
  .form-row:first-child {
    padding-top: 0; }

.js-error-message {
  margin-top: 8px;
  color: #d00;
  font-size: 14px;
  font-weight: 500; }

.is-error {
  border-color: #d00 !important;
  background-color: #fff5f5; }

.confirm-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border: solid 1px #e6e6e6;
  border-bottom: 0; }
  .confirm-list:last-of-type {
    border-bottom: solid 1px #e6e6e6; }
  .confirm-list dt {
    background: #f0f0f0;
    padding: 5px;
    display: flex;
    align-items: center; }
  .confirm-list dd {
    padding: 5px;
    display: flex;
    align-items: center; }

.form-thanks {
  text-align: center; }
  .form-thanks h2 {
    margin-bottom: 40px; }
  .form-thanks .thanks-text {
    margin: 1em auto; }

.form-label {
  font-size: 14px;
  font-weight: 500;
  padding-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px; }

.required {
  font-size: 9px;
  font-weight: 600;
  background: #c20029;
  color: #ffffff;
  padding: 2px 5px;
  letter-spacing: .04em;
  flex-shrink: 0;
  margin-top: 2px; }

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  font-size: 15px;
  color: #333333;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none; }
  .form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: #333333; }

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.8; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer; }

.form-note {
  font-size: 13px;
  color: #333333;
  line-height: 1.8;
  padding: 24px;
  background: #f5f5f5;
  margin-bottom: 32px; }
  .form-note a {
    color: #333333;
    text-decoration: underline; }

.form-submit {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column; }
  .form-submit .btn {
    max-width: 200px;
    margin: auto; }
  .form-submit .wpcf7-spinner {
    margin: 1em auto 0; }
  .form-submit .btn {
    min-width: 200px;
    margin: 8px auto; }

.contact-hero {
  padding-top: calc(var(--hh) + 80px);
  padding-bottom: 80px;
  background: var(--c-dark);
  text-align: center; }

.contact-hero .label {
  color: #c20029; }

.contact-hero .sec-title {
  color: var(--c-white); }

.contact-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.9;
  margin-top: 12px; }

.contact-body {
  padding: 80px 0; }

.cf-turnstile-placeholder {
  border: 1px solid var(--c-border);
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  min-width: 300px; }

.cf-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f5a623;
  display: flex;
  align-items: center;
  justify-content: center; }

.cf-check::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: 700; }

.cf-text {
  font-size: 13px;
  color: var(--c-text); }

.cf-logo {
  margin-left: auto;
  font-size: 10px;
  color: #aaa; }

#member-voice {
  margin: 0 auto; }
  #member-voice .member-thm {
    width: 100%;
    margin-bottom: 20px; }
    #member-voice .member-thm img {
      margin: 0 auto; }
  #member-voice .member-title {
    text-align: center;
    margin-bottom: 120px; }
  #member-voice .member-voice-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    gap: 40px;
    margin: 40px auto;
    border-bottom: solid 1px #f7f7f7;
    padding-bottom: 40px; }
    #member-voice .member-voice-item h3 {
      margin-bottom: 8px; }
    #member-voice .member-voice-item .person-icon {
      max-width: 100px; }

.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease; }
  .fi.visible {
    opacity: 1;
    transform: translateY(0); }
  .fi-d1 {
    transition-delay: .1s; }
  .fi-d2 {
    transition-delay: .2s; }
  .fi-d3 {
    transition-delay: .3s; }
  .fi-d4 {
    transition-delay: .4s; }

.text-center {
  text-align: center; }
  .text-center .sec-desc {
    margin: 0 auto; }

.mt-8 {
  margin-top: 8px; }

.mt-12 {
  margin-top: 12px; }

.mt-16 {
  margin-top: 16px; }

.mt-20 {
  margin-top: 20px; }

.mt-32 {
  margin-top: 32px; }

.mt-40 {
  margin-top: 40px; }

.mt-48 {
  margin-top: 48px; }

.mt-64 {
  margin-top: 64px; }

.mb-8 {
  margin-bottom: 8px; }

.mb-12 {
  margin-bottom: 12px; }

.mb-16 {
  margin-bottom: 16px; }

.mb-24 {
  margin-bottom: 24px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-48 {
  margin-bottom: 48px; }

.lity-content video {
  width: 90%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  display: block; }

@media (max-width: 1040px) {
  :root {
    --pad: 28px; }

  .service-item {
    gap: 48px; }

  .team-item {
    grid-template-columns: 220px 1fr;
    gap: 48px; }

  .grid-box-v3 {
    flex-direction: column; }
    .grid-box-v3 .video-grid-v3 {
      width: 100%;
      margin-bottom: 1em; }
      .grid-box-v3 .video-grid-v3 .grid-item-v3 .video-card-thumb.card-thumb-left-botm img {
        object-position: 40% 50%; }
      .grid-box-v3 .video-grid-v3 .grid-item-v3 .video-card-thumb.card-thumb-rigth-botm img {
        object-position: 0% 60%; }
      .grid-box-v3 .video-grid-v3 .video-card {
        height: 230px; }
        .grid-box-v3 .video-grid-v3 .video-card.video-card-v3 {
          height: 230px;
          max-width: 100%;
          padding-left: 33px; }
        .grid-box-v3 .video-grid-v3 .video-card h4 {
          font-size: 15px; }
          .grid-box-v3 .video-grid-v3 .video-card h4.video-title {
            font-size: 15px; }
          .grid-box-v3 .video-grid-v3 .video-card h4.video-title-ri {
            font-size: 15px;
            left: .7em;
            bottom: .7em; }
      .grid-box-v3 .video-grid-v3 .grid-item-v3 .video-thumb-link {
        position: static; }
      .grid-box-v3 .video-grid-v3 .grid-item-v3 .video-card-thumb {
        min-height: 230px;
        position: relative; }
        .grid-box-v3 .video-grid-v3 .grid-item-v3 .video-card-thumb img {
          height: 100%; }
      .grid-box-v3 .video-grid-v3 .grid-item-v3 .video-card-link span {
        opacity: 1; }
      .grid-box-v3 .video-grid-v3 .grid-item-v3.v3-fl {
        flex-direction: column; }
      .grid-box-v3 .video-grid-v3 .grid-item-v3 .te .te-btom-link {
        display: none; }

  .video-play-overlay.play-ri {
    align-items: center;
    justify-content: center;
    padding-bottom: 2.5em; }
  video-cont .video-play-overlay .play-icon.icon-min {
    width: 48px;
    height: 48px; }

  .video-grid-box {
    display: grid;
    flex-direction: column;
    grid-template-columns: 2fr 2fr; }
    .video-grid-box.video-grid-box2 .video-cont {
      max-width: 100%; }
    .video-grid-box .video-cont {
      max-width: 100%;
      flex-direction: column-reverse;
      margin-bottom: 1em; }
      .video-grid-box .video-cont .video-textbox {
        width: 100%; }
        .video-grid-box .video-cont .video-textbox p {
          font-size: 1em; }
      .video-grid-box .video-cont .video-videobox {
        width: 100%;
        position: relative;
        height: 100%; }
        .video-grid-box .video-cont .video-videobox img {
          object-position: center;
          min-height: auto; }
    .video-grid-box .video-cont-md {
      flex-direction: column-reverse;
      margin-bottom: 1em; }
      .video-grid-box .video-cont-md .video-videobox {
        max-height: 100%; }
        .video-grid-box .video-cont-md .video-videobox img {
          min-height: 100%; } }
@media (max-width: 900px) {
  :root {
    --pad: 20px; }

  .page-hero {
    padding-top: 64px;
    padding-bottom: 0; }

  .title-desc {
    padding-left: 10px;
    border-left: solid 5px #c20029; }

  .sec {
    padding: 64px 0; }
    .sec.scroll-topview {
      padding: calc(64px + 3em) 0 64px;
      margin-top: -3em; }

  .header-cta .btn-outline {
    display: none; }

  .grid-2,
  .grid-3,
  .grid-4,
  .test-grid,
  .video-grid,
  .service-item,
  .cta-inner,
  .team-item,
  .team-flex {
    grid-template-columns: 1fr;
    gap: 32px; }

  .test-track .test-card {
    flex: 0 0 calc((100% - 24px) / 1.2); }

  .cta-box-inner {
    grid-template-columns: 1fr; }

  .cta-box-img {
    display: flex;
    justify-content: center; }
    .cta-box-img img {
      width: 100px; }

  .video-card--featured .video-card-thumb {
    min-height: 200px;
    height: 240px; }

  .service-item.rev .s-img {
    order: 0; }

  .growth-grid {
    grid-template-columns: 1fr 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px; }

  .footer-nav {
    grid-template-columns: 1fr 1fr; }

  .hero-split {
    grid-template-columns: 1fr; }

  .hero-content {
    padding: 56px var(--pad) 48px;
    width: 65vw; }
    .hero-content:after {
      width: 65vw;
      background: url("../images/top-l.svg");
      background-position: right center;
      background-repeat: no-repeat;
      background-size: cover;
      opacity: .8; }

  .hero-visual {
    min-height: 100px; }
    .hero-visual::after {
      background: url("../images/top-r.svg");
      background-position: left center;
      background-repeat: no-repeat;
      background-size: cover;
      width: clamp(55vw, 100vw, 720px); }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr); }

  .hero-stat {
    padding: 16px 20px; }

  .hero-cta {
    margin-top: 0; }

  .video-card h4 {
    left: 2.5em;
    bottom: .5em; }
    .video-card h4 span {
      font-size: 12px; }

  .s-content-card {
    flex-direction: column;
    padding: 0; }
    .s-content-card-r {
      width: calc(100% - 2em);
      padding: 1em;
      margin-top: 1em; } }
@media (max-width: 640px) {
  .video-play-overlay.play-ri {
    padding-bottom: 5.5em; }

  .wrap {
    padding: 0 20px; }

  .sec-title {
    font-size: clamp(24px, 3.5vw, 42px); }

  .page-hero-head .sec-title {
    word-break: initial; }

  .video-grid-box {
    display: flex; }

  .pain-grid {
    grid-template-columns: 1fr; }

  .pain-card {
    grid-template-columns: 1fr; }
    .pain-card-img {
      min-height: 200px;
      height: 200px; }
    .pain-card:nth-child(even) .pain-card-img {
      order: 0; }
    .pain-card:nth-child(even) .pain-card-body {
      order: 0; }

  .service-flow {
    grid-template-columns: 1fr;
    gap: 16px; }

  .service-flow-arrow {
    flex-direction: row;
    gap: 16px;
    padding: 4px 0; }
    .service-flow-arrow p {
      writing-mode: horizontal-tb;
      font-size: 12px; }

  .flow-arrow-h {
    display: none; }

  .flow-arrow-v {
    display: block; }

  .news-grid {
    grid-template-columns: 1fr 1fr; }

  .growth-grid {
    grid-template-columns: 1fr; }

  .form-row {
    grid-template-columns: 1fr; }

  .hero-title {
    font-size: 30px;
    margin-bottom: 0;
    line-height: 1.2em; }

  .hero-visual {
    position: relative;
    left: initial;
    top: initial;
    height: calc(60vh - 50px);
    height: calc(35dvh - 50px); }
    .hero-visual:after {
      background: url("../images/top-bg.svg");
      background-position: right bottom;
      background-repeat: no-repeat;
      background-size: cover;
      min-height: initial;
      width: 100%; }

  .hero-split {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    min-height: 650px; }

  .hero-content {
    width: 100%;
    padding: 20px 20px;
    justify-content: flex-start;
    font-size: 14px;
    min-height: 520px; }
    .hero-content::after {
      width: 100%; }

  .grid-box-v3 .video-grid-v3 .video-card--featured {
    min-height: stretch; }
  .grid-box-v3 .video-grid-v3 .video-card-thumb.card-thumb-left img {
    object-position: center; }

  /* CTA */
  .cta-inner {
    padding: 0 20px; }

  .cta-sec {
    padding: 40px 0; }

  .cta-thm img {
    height: 240px; }

  .sec-title-wrap .sec-title {
    margin-top: -1em;
    font-size: clamp(24px, 10vw, 32px); }

  .cta-left .cta-flex {
    grid-template-columns: 1fr;
    margin-top: 1em; }
    .cta-left .cta-flex .cta-btns {
      flex-direction: column;
      align-items: flex-start; }
      .cta-left .cta-flex .cta-btns .link-btn {
        margin: 1em 0;
        width: 100%; }
        .cta-left .cta-flex .cta-btns .link-btn.bm-0 {
          margin-bottom: 0em; }

  .cta-box-inner {
    flex-direction: column; }
    .cta-box-inner .cta-box-img {
      margin: 0 auto 1em; }

  #member-voice .member-title {
    margin-bottom: 60px; }
  #member-voice .member-voice-item {
    grid-template-columns: 1fr;
    display: block; }
    #member-voice .member-voice-item .person-icon {
      max-width: 80px;
      margin: 1em auto;
      width: 100%;
      display: none; } }
@media (max-width: 768px) {
  .hero-content:after {
    width: 60vw; } }
@media (max-width: 480px) {
  .hero {
    padding-top: 50px; }

  .site-header {
    height: 50px; }

  .header-cta .btn {
    padding: 5px 18px; }

  .header-logo img {
    height: 40px; }

  .news-grid {
    grid-template-columns: 1fr; }

  .hero-body {
    line-height: 1.4em; }

  .hero-visual:before {
    width: 55%; }

  .hero-tagline {
    margin: .7em 0; }
    .hero-tagline .bld {
      white-space: nowrap;
      line-height: 1.5em; }
      .hero-tagline .bld span {
        margin-bottom: 3px; }

  .confirm-list {
    grid-template-columns: 1fr;
    gap: 0; }

  .tab-btn {
    padding: 12px 1em;
    font-size: 12px; } }
@media (max-width: 375px) {
  .hero-visual:before {
    width: 45%; } }
@media (min-width: 1520px) {
  .hero-split {
    min-height: 900px; }

  .hero-content {
    min-height: 900px; }

  .hero-visual:after {
    min-height: 900px; } }
@media (max-width: 1230px) {
  .header-nav {
    display: none; }

  .hamburger {
    display: flex; } }
@media (max-width: 399px) {
  .form-submit {
    padding-left: 0; } }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #ffffff;
  padding: 80px 28px 40px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto; }
  .mobile-nav.is-open {
    transform: translateX(0); }
  .mobile-nav a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 14px;
    border-bottom: 1px solid #e0e0e0; }
    .mobile-nav a.btn-outline {
      border-bottom: solid 1px #333333; }
    .mobile-nav a.mobi-hov:hover {
      color: #c20029; }
  .mobile-nav .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333333; }
  .mobile-nav .nav-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px; }
    .mobile-nav .nav-cta .btn {
      width: 100%;
      justify-content: center; }

/*# sourceMappingURL=style.css.map */
