@charset "UTF-8";
/* BEM: Block__element--modifier（texion-chart の矢印は SVG 用に texion-chart-arrow 表記を維持） */
:root {
  --texion-black: #000000;
  --texion-gray-900: #0a0a0a;
  --texion-gray-800: #141414;
  --texion-text: #fff;
  --texion-muted: #a3a3a3;
  --texion-cyan: #22d3ee;
  --texion-magenta: #e879f9;
  --texion-gradient: linear-gradient(105deg, #22d3ee 0%, #a855f7 45%, #ec4899 100%);
  --texion-gradient-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(236, 72, 153, 0.12) 100%);
  --texion-font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --texion-font-en: "Montserrat", "Noto Sans JP", sans-serif;
  --texion-max: 1000px;
  --texion-gutter: clamp(1rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  background-color: var(--texion-gray-800);
  color: var(--texion-text);
  font-family: var(--texion-font-jp);
  font-size: 1.6rem;
  line-height: 2;
}

#about,
#technology,
#evidence,
#contact {
  scroll-margin-top: 5.5rem;
}
@media screen and (max-width: 960px) {
  #about,
  #technology,
  #evidence,
  #contact {
    scroll-margin-top: 6rem;
  }
}
@media screen and (max-width: 640px) {
  #about,
  #technology,
  #evidence,
  #contact {
    scroll-margin-top: 5rem;
  }
}

/* ----- Block: texion-header ----- */
.texion-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 2.4rem 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.texion-header__inner {
  max-width: var(--texion-max);
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .texion-header__inner {
    width: 85%;
  }
}
@media screen and (max-width: 640px) {
  .texion-header__inner {
    width: 90%;
  }
}
.texion-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 960px) {
  .texion-header__inner {
    width: 90%;
  }
}
.texion-header__brand {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.texion-header__brand:hover {
  opacity: 0.8;
  text-decoration: none;
}
.texion-header__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  list-style: none;
}
.texion-header__link {
  color: #fff;
  font-family: var(--texion-font-en);
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  display: block;
  position: relative;
}
.texion-header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--texion-gradient);
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.texion-header__link:hover {
  color: #fff;
  text-decoration: none;
}
.texion-header__link:hover::after {
  width: 100%;
  left: 0;
}
.texion-header__link--cta {
  color: #fff;
  background: var(--texion-gradient);
  min-width: 11rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.texion-header__link--cta:hover {
  opacity: 0.8;
}
.texion-header__toggle {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.8rem;
  margin: -0.8rem -0.8rem -0.8rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  z-index: 210;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.texion-header__toggle-box {
  position: relative;
  display: block;
  width: 2.6rem;
  height: 2rem;
}
.texion-header__toggle-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: #fff;
  border-radius: 1px;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transition: transform 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.texion-header__toggle-bar:nth-child(1) {
  -webkit-transform: translateY(-0.55rem);
          transform: translateY(-0.55rem);
}
.texion-header__toggle-bar:nth-child(2) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.texion-header__toggle-bar:nth-child(3) {
  -webkit-transform: translateY(0.55rem);
          transform: translateY(0.55rem);
}
.texion-header__overlay {
  display: none;
}
@media screen and (max-width: 960px) {
  .texion-header {
    /* backdrop-filter があると fixed 子の包含ブロックがヘッダーに閉じ、ドロワーが帯状になり中身が見えなくなる */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, 0.78);
  }
  .texion-header__toggle {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .texion-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 205;
    width: min(32rem, 100vw);
    max-width: 100%;
    padding: 9.6rem var(--texion-gutter) 3rem;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    -webkit-box-shadow: -8px 0 32px rgba(0, 0, 0, 0.45);
            box-shadow: -8px 0 32px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    -webkit-transition: visibility 0s linear 0.35s, -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition: visibility 0s linear 0.35s, -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.35s;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.35s, -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
    pointer-events: none;
  }
  .texion-header__inner {
    position: relative;
    z-index: 0;
  }
  .texion-header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
  }
  .texion-header__link {
    padding: 1.6rem 0;
    font-size: 1.8rem;
  }
  .texion-header__link::after {
    display: none;
  }
  .texion-header__link--cta {
    margin-top: 1.6rem;
    width: 100%;
  }
  .texion-header__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 204;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media screen and (max-width: 960px) and (max-width: 640px) {
  .texion-header {
    padding: 1.6rem 0;
  }
  .texion-header__nav {
    padding: 7rem 5%;
    width: 100%;
    max-width: 100%;
  }
  .texion-header__link {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 960px) {
  body.texion-nav-open {
    overflow: hidden;
    -ms-touch-action: none;
        touch-action: none;
  }
  body.texion-nav-open .texion-header__inner {
    z-index: 210;
  }
  body.texion-nav-open .texion-header__nav {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    -webkit-transition-delay: 0s, 0s;
            transition-delay: 0s, 0s;
  }
  body.texion-nav-open .texion-header__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.texion-nav-open .texion-header__toggle-bar:nth-child(1) {
    -webkit-transform: translateY(0) rotate(45deg);
            transform: translateY(0) rotate(45deg);
  }
  body.texion-nav-open .texion-header__toggle-bar:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateY(0) scaleX(0);
            transform: translateY(0) scaleX(0);
  }
  body.texion-nav-open .texion-header__toggle-bar:nth-child(3) {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.texion-nav-open .texion-header__nav,
  .texion-header__nav {
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
  .texion-header__toggle-bar {
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
  }
}
/* ----- Block: texion-hero ----- */
.texion-hero {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 600px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background-image: url(../img/mv-bg.jpg);
  background-size: cover;
  gap: 9.5238095238vh;
  padding-top: 80px;
}
.texion-hero__catch {
  max-width: var(--texion-max);
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .texion-hero__catch {
    width: 85%;
  }
}
@media screen and (max-width: 640px) {
  .texion-hero__catch {
    width: 90%;
  }
}
.texion-hero__catch img {
  max-width: 504px;
  width: 50%;
  height: auto;
}
@media screen and (max-width: 640px) {
  .texion-hero__catch img {
    width: 90%;
  }
}
.texion-hero__heading {
  width: 100%;
}
.texion-hero__heading img {
  width: 100%;
  height: clamp(200px, 20vw, 340px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  .texion-hero {
    gap: min(10vh, 5rem);
    min-height: 100vh;
    min-height: 100svh;
  }
}
@media screen and (max-width: 960px) and (max-height: 600px) {
  .texion-hero__catch img {
    height: 100px;
  }
}
@media screen and (max-width: 960px) {
  .texion-hero__heading img {
    height: min(28vw, 280px);
  }
}
@media screen and (max-width: 960px) and (max-height: 600px) {
  .texion-hero__heading img {
    height: 150px;
  }
}
@media screen and (max-width: 640px) {
  .texion-hero {
    gap: 3.2rem;
  }
  .texion-hero__heading img {
    height: min(30vw, 110px);
  }
}

.texion-overlay {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(90%, #141414));
  background: -webkit-linear-gradient(top, transparent 0%, #141414 90%);
  background: linear-gradient(180deg, transparent 0%, #141414 90%);
  height: 100vh;
  position: relative;
}

/* ----- Block: texion-about ----- */
.texion-about {
  padding: 7rem 0;
  position: relative;
  background: var(--texion-gray-800);
}
.texion-about__inner {
  max-width: var(--texion-max);
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .texion-about__inner {
    width: 85%;
  }
}
@media screen and (max-width: 640px) {
  .texion-about__inner {
    width: 90%;
  }
}
.texion-about__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8rem;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.texion-about__vtitle img {
  width: 80px;
  height: auto;
}
.texion-about__lead {
  margin-bottom: 3rem;
}
.texion-about__lead img {
  max-width: 483px;
  width: 100%;
  height: auto;
}
.texion-about__text {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .texion-about {
    padding: 5rem 0;
  }
  .texion-about__inner {
    gap: 4rem;
  }
  .texion-about__vtitle img {
    width: 70px;
  }
  .texion-about__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .texion-about {
    padding: 4rem 0;
  }
  .texion-about__inner {
    gap: 2rem;
  }
  .texion-about__vtitle img {
    width: 50px;
  }
  .texion-about__text {
    font-size: 1.4rem;
  }
}

/* ----- Block: texion-technology ----- */
.texion-technology {
  background: var(--texion-black);
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .texion-technology__visual {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.texion-technology__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 30.9895833333%;
  height: 100%;
  z-index: 1;
}
.texion-technology__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.texion-technology__image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36.974789916%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(86%, #000));
  background: -webkit-linear-gradient(left, transparent 0%, #000 86%);
  background: linear-gradient(90deg, transparent 0%, #000 86%);
}
.texion-technology__video {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 45.5208333333vw;
  aspect-ratio: 1360/822;
}
.texion-technology__video video {
  -webkit-transform: translateX(15%);
          transform: translateX(15%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.texion-technology__inner {
  position: relative;
  z-index: 1;
  max-width: var(--texion-max);
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .texion-technology__inner {
    width: 85%;
  }
}
@media screen and (max-width: 640px) {
  .texion-technology__inner {
    width: 90%;
  }
}
.texion-technology__title {
  margin-bottom: 3rem;
}
.texion-technology__title img {
  max-width: 415px;
  width: 100%;
  height: auto;
}
.texion-technology__text {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .texion-technology {
    padding: 5rem 0;
  }
  .texion-technology__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .texion-technology {
    padding: 0 0 20rem;
  }
  .texion-technology__image {
    position: relative;
    width: 100%;
    height: 60vw;
  }
  .texion-technology__image::after {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    height: 36.974789916%;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(86%, #000));
    background: -webkit-linear-gradient(top, transparent 0%, #000 86%);
    background: linear-gradient(180deg, transparent 0%, #000 86%);
  }
  .texion-technology__video {
    top: unset;
    bottom: -30vw;
    left: 0;
    right: unset;
    margin: 0;
    height: 100vw;
  }
  .texion-technology__video video {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
  .texion-technology__title img {
    max-width: 80%;
  }
  .texion-technology__text {
    font-size: 1.4rem;
  }
}

/* ----- Block: texion-evidence ----- */
.texion-evidence {
  position: relative;
  background: var(--texion-gray-800);
  padding: 7rem 0;
}
.texion-evidence__inner {
  max-width: var(--texion-max);
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .texion-evidence__inner {
    width: 85%;
  }
}
@media screen and (max-width: 640px) {
  .texion-evidence__inner {
    width: 90%;
  }
}
.texion-evidence__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8rem;
  padding-bottom: 3rem;
}
.texion-evidence__vtitle {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.texion-evidence__vtitle img {
  width: 80px;
  height: auto;
}
.texion-evidence__main {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.texion-evidence__head {
  margin-bottom: 4rem;
}
.texion-evidence__text {
  font-size: 1.8rem;
  font-weight: 700;
}
.texion-evidence__chart {
  margin: 0 0 4rem;
  overflow: hidden;
  position: relative;
}
.texion-evidence__chart img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 960px) {
  .texion-evidence {
    padding: 5rem 0;
  }
  .texion-evidence__inner {
    gap: 2.4rem;
  }
  .texion-evidence__vtitle img {
    width: 70px;
  }
  .texion-evidence__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .texion-evidence {
    padding: 4rem 0;
  }
  .texion-evidence__head img {
    width: 100%;
    height: auto;
  }
  .texion-evidence__vtitle img {
    width: 60px;
  }
  .texion-evidence__text {
    font-size: 1.4rem;
  }
  .texion-evidence__chart {
    margin-bottom: 3rem;
  }
}

/* ----- Block: texion-chart（SVG 内クラス: texion-chart-arrow 等） ----- */
.texion-chart {
  display: block;
  width: 100%;
  height: auto;
}
.texion-chart-arrow {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  opacity: 1;
}
.texion-chart-arrowhead {
  opacity: 1;
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
}

/* ----- Block: texion-promo ----- */
.texion-promo {
  margin-top: 6rem;
  text-align: center;
}
.texion-promo img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .texion-promo {
    margin-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .texion-promo {
    margin: 0 auto;
    width: 90%;
  }
}

/* ----- Block: texion-split ----- */
.texion-split {
  background: var(--texion-black);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.texion-split__inner {
  max-width: var(--texion-max);
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .texion-split__inner {
    width: 85%;
  }
}
@media screen and (max-width: 640px) {
  .texion-split__inner {
    width: 90%;
  }
}
.texion-split__inner {
  display: grid;
}
.texion-split__content {
  max-width: 70%;
}
.texion-split__title {
  margin-bottom: 3rem;
}
.texion-split__title img {
  max-width: 100%;
  height: auto;
}
.texion-split__text {
  font-size: 1.8rem;
  font-weight: 700;
}
.texion-split__note {
  font-size: 1.4rem;
  font-weight: 400;
  padding-top: 3rem;
}
.texion-split__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}
.texion-split__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.texion-split--stable .texion-split__inner {
  justify-items: end;
}
.texion-split--stable .texion-split__media {
  left: 0;
  right: unset;
}
.texion-split--stable .texion-split__media::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 89.5833333333%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(75%, #000));
  background: -webkit-linear-gradient(left, transparent 0%, #000 75%);
  background: linear-gradient(90deg, transparent 0%, #000 75%);
}
@media screen and (max-width: 960px) {
  .texion-split {
    padding: 5rem 0;
  }
  .texion-split__text {
    font-size: 1.6rem;
  }
  .texion-split__note {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 640px) {
  .texion-split {
    padding: 60vw 0 4rem;
  }
  .texion-split__media {
    width: 100%;
    height: auto;
  }
  .texion-split__media::before {
    display: none;
  }
  .texion-split__title img {
    max-width: 60%;
  }
  .texion-split__content {
    max-width: 100%;
  }
  .texion-split__text {
    font-size: 1.4rem;
  }
  .texion-split__note {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 640px) {
  .texion-split--stable {
    padding: 70vw 0 4rem;
  }
  .texion-split--stable .texion-split__media {
    height: 60vw;
  }
  .texion-split--stable .texion-split__media img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
  }
}

/* ----- Block: texion-contact ----- */
.texion-contact {
  position: relative;
  background: var(--texion-gray-800);
  padding: 7rem 0;
}
.texion-contact__inner {
  max-width: var(--texion-max);
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .texion-contact__inner {
    width: 85%;
  }
}
@media screen and (max-width: 640px) {
  .texion-contact__inner {
    width: 90%;
  }
}
.texion-contact__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8rem;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.texion-contact__vtitle img {
  width: 78px;
  height: auto;
}
.texion-contact__heading {
  margin: 0 0 3rem;
}
.texion-contact__heading img {
  max-width: 100%;
  height: auto;
}
.texion-contact__text {
  margin: 0 0 3rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.texion-contact__btn {
  background: var(--texion-gradient);
  width: 20rem;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, filter 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
}
.texion-contact__btn:hover {
  opacity: 0.8;
  -webkit-filter: brightness(1.08);
          filter: brightness(1.08);
}
@media screen and (max-width: 960px) {
  .texion-contact {
    padding: 5rem 0;
  }
  .texion-contact__inner {
    gap: 4rem;
  }
  .texion-contact__vtitle img {
    width: 60px;
  }
  .texion-contact__text {
    font-size: 1.6rem;
  }
  .texion-contact__btn {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .texion-contact {
    padding: 4rem 0;
  }
  .texion-contact__inner {
    gap: 2rem;
  }
  .texion-contact__vtitle img {
    width: 50px;
  }
  .texion-contact__text {
    font-size: 1.4rem;
  }
  .texion-contact__btn {
    font-size: 1.4rem;
  }
}

/* ----- Block: texion-footer ----- */
.texion-footer {
  background: var(--texion-gray-800);
}
.texion-footer__brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 4.5rem;
}
.texion-footer__brand img {
  max-width: 100%;
  height: auto;
}
.texion-footer__copy {
  background: var(--texion-black);
  font-size: 1.2rem;
  font-family: var(--texion-font-en);
  text-align: center;
  font-weight: 500;
  padding: 3rem 0;
}
@media screen and (max-width: 960px) {
  .texion-footer__brand {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .texion-footer__brand img {
    width: 100px;
  }
  .texion-footer__copy {
    font-size: 1.1rem;
    padding: 2rem 0;
  }
}

/* ----- Block: texion-reveal（transition は常時） ----- */
.texion-reveal {
  -webkit-transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transition-delay: var(--texion-reveal-delay, 0ms);
          transition-delay: var(--texion-reveal-delay, 0ms);
}

/* ----- body.texion-js: グラフ矢印 + scroll reveal ----- */
body.texion-js .texion-evidence__chart.texion-reveal:not(.texion-reveal--inview) .texion-chart-arrowhead {
  opacity: 0;
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
}
body.texion-js .texion-evidence__chart.texion-reveal:not(.texion-reveal--inview) .texion-chart-arrow {
  stroke-dashoffset: 1;
  opacity: 0;
}
body.texion-js .texion-evidence__chart.texion-reveal--inview .texion-chart-arrowhead {
  -webkit-animation-name: texion-chart-arrowhead-draw;
          animation-name: texion-chart-arrowhead-draw;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
}
body.texion-js .texion-evidence__chart.texion-reveal--inview .texion-chart-arrow {
  -webkit-animation-name: texion-chart-arrow-draw;
          animation-name: texion-chart-arrow-draw;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
          animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
body.texion-js .texion-reveal:not(.texion-reveal--inview) {
  opacity: 0;
}
body.texion-js .texion-reveal--up:not(.texion-reveal--inview) {
  -webkit-transform: translate3d(0, 2.25rem, 0);
          transform: translate3d(0, 2.25rem, 0);
}
body.texion-js .texion-reveal--left:not(.texion-reveal--inview) {
  -webkit-transform: translate3d(-2rem, 0, 0);
          transform: translate3d(-2rem, 0, 0);
}
body.texion-js .texion-reveal--right:not(.texion-reveal--inview) {
  -webkit-transform: translate3d(2rem, 0, 0);
          transform: translate3d(2rem, 0, 0);
}
body.texion-js .texion-reveal--fade:not(.texion-reveal--inview) {
  -webkit-transform: translate3d(0, 0.75rem, 0) scale(0.98);
          transform: translate3d(0, 0.75rem, 0) scale(0.98);
}
body.texion-js .texion-reveal--inview {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}

@-webkit-keyframes texion-chart-arrowhead-draw {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes texion-chart-arrowhead-draw {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes texion-chart-arrow-draw {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@keyframes texion-chart-arrow-draw {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .texion-chart-arrow {
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
  .texion-chart-arrowhead {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
  body.texion-js .texion-reveal:not(.texion-reveal--inview) {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .texion-reveal {
    -webkit-transition: none;
    transition: none;
  }
}/*# sourceMappingURL=texion.css.map */