@charset "UTF-8";
/*
Theme Name: Fractal
Author: Fractal
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");

html {
  scroll-behavior: smooth;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

:root {
  --montserrat: 'Montserrat', 'Noto Sans JP', sans-serif;
  --corp-green: #56BFBF;
  --corp-orange: #ED6E21;
  --bg-gray: #F3F6F7;
  --easing: cubic-bezier(.45, 0, 0, 1);
  --vwPC: calc(100vw / 1400);
  --vwSP: calc(100vw / 390);
}

body {
  color: #000;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}

main {
  overflow: hidden;
}

main>* {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.content-inner {
  width: 92.8572%;
  margin-inline: auto;
}

.js-animate[data-animate=fadeUp] {
  opacity: 0;
  translate: 0 20px;
  transition: all 1s var(--easing);
}

.js-animate[data-animate=fadeUp].js-animate--active {
  opacity: 1;
  translate: 0 0;
}

@keyframes infinitieScroll {
  0% {
    translate: 0 0;
  }

  100% {
    translate: -100% 0;
  }
}

/* common */
.sec-ttl-wrapper {
  margin-bottom: 70px;
  text-align: center;
}

.sec-ttl {
  font-size: 3.25rem;
  font-weight: 600;
  font-family: var(--montserrat);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.sec-subttl {
  color: var(--corp-green);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
}

.sec-btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: #000;
  border-radius: 10vh;
  border: 1px solid #fff;
  padding: 24px 80px 24px 44px;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07em;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.sec-btn:where(.overview__col+*) {
  margin-top: 2em;
}

.sec-btn:hover::before {
  scale: 1;
}

.sec-btn:hover::after {
  animation: bgArrowAnimate 0.6s;
}

.sec-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--corp-orange);
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
  scale: 0;
  transition: scale 0.3s var(--easing);
}

.sec-btn::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url(/wp-content/themes/Fractal/assets/img/index/ico_arrow_black.svg) no-repeat center left 50%/17px, #fff;
  position: absolute;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
}

@keyframes bgArrowAnimate {
  50% {
    background-position: center left calc(50% + 4px);
  }

  100% {
    background-position: center left 50%;
  }
}

/* header */
.header-hbg {
  display: none;
}

.header-hbg-btn {
  display: none;
}

.common-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
  padding-right: 50px;
  position: fixed;
  top: 0;
  z-index: 10;
}

.header-fixed {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  height: 100px;
}

.header__logo__link {
  display: flex;
  height: 100%;
  background: #fff;
  gap: 12px;
  align-items: center;
  padding-inline: 50px;
  border-bottom-right-radius: 30px;
}

.header__logo__link>* {
  transition: opacity 0.3s var(--easing);
}

.header__logo__link:hover>* {
  opacity: 0.5;
}

.header__logo-img {
  width: 55px;
}

.header__logo__txt {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--montserrat);
  line-height: 1;
  letter-spacing: 0.02em;
}

.header__nav {
  display: block;
  padding: 10px 10px 10px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid #fff;
  border-radius: 10vh;
}

.header__nav__list {
  display: flex;
  gap: 30px 40px;
  align-items: center;
}

.header__nav__list a {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
}

.header__nav__link {
  transition: color 0.3s var(--easing);
}

.header__nav__link:hover {
  color: var(--corp-orange);
}

.header__nav__btn {
  display: block;
  padding: 11px 19px;
  background: var(--corp-orange);
  color: #fff;
  border-radius: 10vh;
  border: 1px solid var(--corp-orange);
  transition: all 0.3s var(--easing);
}

.header__nav__btn:hover {
  background: #fff;
  color: var(--corp-orange);
}

/* mv */
.mv {
  aspect-ratio: 1400/828;
  padding: calc(320 * var(--vwPC)) 0 0 calc(80 * var(--vwPC));
  position: relative;
  background: #fff;
}

.mv [class*=ribbon] {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.ribbon01 {
  width: 100%;
  top: 0;
  left: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--easing);
}

.loaded .ribbon01 {
  clip-path: inset(0);
}

.ribbon02 {
  width: calc(492 * var(--vwPC));
  top: calc(405 * var(--vwPC));
  right: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.3s cubic-bezier(0.35, 0, 0.9, 0.4) 1.5s;
}

.loaded .ribbon02 {
  clip-path: inset(0);
}

.mv__inner {
  clip-path: inset(0 100% 0 0);
  animation: mvInnerAnimate 1.2s var(--easing) forwards;
}

@keyframes mvInnerAnimate {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0);
  }
}

.mv__en-txt {
  font-size: calc(16 * var(--vwPC));
  font-weight: 700;
  font-family: var(--montserrat);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: calc(30 * var(--vwPC));
}

.mv__ttl__img-wrapper {
  overflow: hidden;
}

.mv__ttl {
  width: calc(909 * var(--vwPC));
  position: relative;
  isolation: isolate;
  margin-bottom: calc(50 * var(--vwPC));
  overflow: hidden;
}

.mv__ttl__bg {
  width: auto;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: mvTtlBgAnimate 6s linear infinite alternate;
  z-index: 2;
  mix-blend-mode: screen;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@keyframes mvTtlBgAnimate {
  0% {
    translate: -50% 0;
  }

  100% {
    translate: 125% 0;
  }
}

.mv__highlight {
  background: linear-gradient(90deg, #000000 0%, #56BFBF 50%, #000 100%) repeat-x left/200% 100%;
  padding-inline: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: calc(28 * var(--vwPC));
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-bottom: calc(30 * var(--vwPC));
  animation: mvHighlightAnimate 6s linear infinite alternate;
}

@keyframes mvHighlightAnimate {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 150% 0;
  }
}

.mv__txt {
  font-size: calc(16 * var(--vwPC));
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.07em;
}

/* logo-slider */
.logo-slider__outer {
  overflow: hidden;
  background: #fff;
  position: relative;
  margin-bottom: 4.2857%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.logo-slider__wrapper {
  display: flex;
}

.logo-slider {
  display: flex;
  align-items: center;
  width: max-content;
  animation: infinitieScroll 20s linear infinite;
}

.logo-slider__items {
  flex-shrink: 0;
  /* ロゴ左右の余白（隣との間隔 = この値 × 2）。調整可 */
  margin-inline: calc(18 * var(--vwPC));
}

.logo-slider__img {
  display: block;
  width: auto;
  /* 全ロゴの高さを統一（幅は成り行き）。調整可 */
  height: calc(52 * var(--vwPC));
}

/* overview */
.overview {
  background: linear-gradient(to top, var(--corp-green) 0%, var(--corp-green) 212px, transparent 212px, transparent 100%);
}

.overview [class^=ribbon] {
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.overview__inner {
  background: #F3F6F7;
  border-radius: 56px;
  padding: calc(120 * var(--vwPC)) calc(80 * var(--vwPC)) 50px;
  position: relative;
}

.overview__inner>*:not([class^=ribbon]) {
  position: relative;
}

.ribbon04 {
  width: calc(492 * var(--vwPC));
  top: 0;
  right: calc((100vw - 100%) / -2);
}

.ribbon04__svg {
  display: block;
  width: 100%;
  height: auto;
}

.ribbon04__svg--sp {
  display: none;
}

.ribbon04__draw-path {
  will-change: stroke-dashoffset;
}

.overview__head {
  margin-bottom: calc(80 * var(--vwPC));
}

.overview__catch {
  font-size: calc(40 * var(--vwPC));
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.07em;
  margin-bottom: calc(50 * var(--vwPC));
}

.overview__txt {
  font-size: calc(17 * var(--vwPC));
  font-weight: 500;
  letter-spacing: 0.07em;
}

.overview__col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(50 * var(--vwPC));
}

.overview__result {
  background: #fff;
  border-radius: 20px;
  padding: 0 calc(30 * var(--vwPC)) calc(30 * var(--vwPC));
}

.overview__result:nth-child(2) {
  transition-delay: 0.2s;
}

.overview__result:nth-child(3) {
  transition-delay: 0.4s;
}

.overview__result__ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto calc(32 * var(--vwPC));
  background: var(--corp-orange);
  border-radius: 0 0 8px 8px;
  padding: calc(2 * var(--vwPC)) calc(10 * var(--vwPC));
  color: #fff;
  font-size: calc(16 * var(--vwPC));
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07em;
}

.overview__result__num {
  font-size: calc(37 * var(--vwPC));
  font-weight: 700;
  font-family: var(--montserrat);
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: calc(18 * var(--vwPC));
}

.overview__result__num span {
  font-size: calc(100 * var(--vwPC));
  line-height: 1;
  letter-spacing: 0.02em;
}

.overview__result__txt {
  font-size: calc(16 * var(--vwPC));
  line-height: 1.5;
  letter-spacing: 0.07em;
}

.ribbon03 {
  width: 100vw;
  max-width: none;
  top: calc(189 * var(--vwPC));
  left: calc(50% - 50vw);
}

.ribbon03 img {
  clip-path: inset(0 0 0 100%);
  will-change: clip-path;
  transition: clip-path 0.2s;
}

/* sec--support */
.sec--support {
  padding-block: 120px 180px;
  background: var(--corp-green);
}

.sec--support .sec-ttl-wrapper * {
  color: #fff;
}

.sec--support__txt {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.07em;
  max-width: 700px;
  margin: 0 auto 50px;
}

.sec--support__list {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 80px) / 3));
  gap: 8px 40px;
  margin-bottom: 50px;
  position: relative;
  background: var(--corp-green);
  overflow: hidden;
}

.sec--support__video {
  width: 120%;
  height: auto;
  aspect-ratio: 16/9;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  filter: invert(1) blur(16px);
  mix-blend-mode: screen;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: filter 1.5s var(--easing) 0.5s;
  opacity: 0.4;
}

.sec--support__video.js-animate--active {
  filter: invert(1) blur(0);
}

.sec--support__card {
  display: block;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 30px 30px 0;
  transition: background-color 0.3s var(--easing);
}

.sec--support__card:hover {
  background: rgb(255, 255, 255);
}

.sec--support__card:hover .sec--support__card__btn img {
  animation: arrowAnimate 0.6s;
}

.sec--support__card__inner {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.sec--support__card__head {
  margin-bottom: 25px;
}

.sec--support__card__ico {
  width: 70px;
  margin: 0 auto 20px;
}

.sec--support__card__ttl {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--montserrat);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (min-width:1260px) {
  .sec--support__card__ttl br {
    display: none;
  }
}

.sec--support__card__ttl span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-top: 5px;
}

.sec--support__card__ttl span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--corp-orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 2px;
}

.sec--support__card__dtl {
  display: grid;
  grid-template-rows: auto 1fr;
}

.sec--support__card__txt {
  font-size: 0.875rem;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.sec--support__card__btn {
  display: grid;
  place-content: center;
  align-self: end;
  width: 44px;
  height: 44px;
  background: var(--corp-orange);
  border-radius: 15px 0 15px 0;
  margin: 0 -30px 0 auto;
}

.sec--support__card__btn img {
  width: 22px;
}

@keyframes arrowAnimate {
  50% {
    translate: 5px;
  }

  100% {
    translate: 0;
  }
}

.sec--support__img-wrapper {
  grid-area: 2/1/3/4;
  width: 69.8468%;
  margin-inline: auto;
}

/* sec--value */
.sec--value {
  padding-block: 120px;
  border-radius: 56px 56px 0 0;
  background: #fff;
  margin-top: -60px;
}

.sec--value__list {
  display: grid;
  gap: 30px 70px;
}

.sec--value__items {
  transition: background-size 1s var(--easing);
}

.sec--value__items:nth-child(odd) {
  background: linear-gradient(to left, var(--bg-gray) 0%, var(--bg-gray) 100%) no-repeat right/0% 100%;
}

.sec--value__items:nth-child(odd) .sec--value__items__inner {
  border-radius: 30px 0 0 30px;
  margin-left: 120px;
  clip-path: inset(0 0 0 100%);
}

.sec--value__items:nth-child(even) {
  background: linear-gradient(to left, var(--bg-gray) 0%, var(--bg-gray) 100%) no-repeat left/0% 100%;
}

.sec--value__items:nth-child(even) .sec--value__items__inner {
  border-radius: 0 30px 30px 0;
  margin-right: 120px;
  clip-path: inset(0 100% 0 0);
}

.sec--value__items.js-animate--active {
  background-size: 50% 100%;
}

.sec--value__items.js-animate--active .sec--value__items__inner {
  clip-path: inset(0 0 0 0);
}

.sec--value__items__inner {
  display: grid;
  grid-template-columns: 47.414% 1fr;
  gap: 30px 50px;
  background: var(--bg-gray);
  padding: 50px 50px 50px 70px;
  transition: 1s var(--easing);
}

.sec--value__items__ttl-wrapper {
  margin-bottom: 40px;
}

.sec--value__items__num {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  background: var(--corp-orange);
  padding: 3px 10px;
  color: #fff;
  font-weight: 700;
  font-family: var(--montserrat);
  line-height: 1;
  letter-spacing: 0.07em;
  border-radius: 2px;
}

.sec--value__items__ttl {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.07em;
}

.sec--value__items__txt {
  font-size: 0.9375rem;
  letter-spacing: 0.07em;
}

.sec--value__items__img {
  border-radius: 15px;
}

/* sec--case */
.sec--case {
  padding-block: 120px;
  background: var(--corp-green);
  border-radius: 56px 56px 0 0;
}

.sec--case .sec-ttl-wrapper * {
  color: #fff;
}

.sec--case .sec-subttl {
  opacity: 0.5;
}

.sec--case__list {
  display: grid;
  gap: 30px 50px;
  margin-bottom: 70px;
}

.sec--case__items {
  padding: 0 70px 70px;
  background: #45ADAD;
  border-radius: 25px;
}

.sec--case__items__ttl-wrapper {
  margin-bottom: 40px;
}

.sec--case__industry {
  width: -moz-fit-content;
  width: fit-content;
  background: var(--corp-orange);
  padding: 2px 8px;
  border-radius: 0 0 8px 8px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin-bottom: 40px;
}

.sec--case__items__ttl {
  color: #fff;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07em;
  padding-bottom: 25px;
  border-bottom: 1px solid #6BBBBB;
}

.sec--case__items__col {
  display: grid;

  gap: 30px 50px;
}

.sec--case__items__txt {
  color: #fff;
  font-size: 0.9375rem;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.sec--case__items__voice {
  display: grid;
  gap: 10px;
  position: relative;
  background: #fff;
  padding: 24px 40px 20px 80px;
  border-radius: 15px;
  margin-left: 50px;
}

.sec--case__items__voice__person {
  order: 2;
}

.sec--case__items__voice__img {
  position: absolute;
  width: 100px;
  top: 0;
  left: -50px;
}

.sec--case__items__voice__name {
  color: #8EC8C8;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.07em;
}

.sec--case__items__voice__txt {
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0.07em;
}

.sec--case__items__img-wrapper {
  position: relative;
}

.sec--case__items__img--graph-mask {
  width: 66.0378%;
  max-width: none;
  position: absolute;
  top: 14.8615%;
  left: 24.3397%;
}

.sec--case__items__img--graph-mask.js-animate--active img {
  clip-path: inset(0 0 0 0);
}

.sec--case__items__img--graph {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.5s var(--easing);
}

/* sec--members */
.sec--members {
  background: linear-gradient(to bottom, var(--corp-green) 0%, var(--corp-green) 250px, var(--bg-gray) 250px, var(--bg-gray) 100%);
}

.sec--members__inner {
  background: #fff;
  border-radius: 30px;
  padding-block: 100px;
}

.sec--members__list {
  display: grid;
  width: 76.3077%;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 80px;
  margin: 0 auto 70px;
}

.sec--members__items__profile {
  margin-bottom: 16px;
}

.sec--members__img {
  margin-bottom: 10px;
}

.sec--members__name {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.07em;
}

.sec--members__name span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  font-family: var(--montserrat);
  line-height: 1;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.sec--members__position {
  width: -moz-fit-content;
  width: fit-content;
  background: var(--corp-green);
  padding: 1px 8px;
  border-radius: 2px;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  font-family: var(--montserrat);
  line-height: 1.5;
  letter-spacing: 0.06em;
}

/* sec--testimonials */
.sec--testimonials {
  background: var(--bg-gray);
  padding-block: 120px 60px;
}

.sec--testimonials__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 50px;
  width: 85.7143%;
}

.sec--testimonials__items:nth-child(even) {
  margin-top: 50px;
}

.sec--testimonials__items:nth-child(even) .sec--testimonials__items__inner {
  border-radius: 15px 0 15px 15px;
}

.sec--testimonials__items:nth-child(even) .sec--testimonials__items__inner::before {
  scale: -1 1;
  left: auto;
  right: -20px;
}

.sec--testimonials__items__inner {
  display: grid;
  gap: 20px;
  background: #fff;
  padding: 30px 40px;
  border-radius: 0 15px 15px 15px;
  position: relative;
}

.sec--testimonials__items__inner::before {
  content: "";
  display: block;
  width: 21px;
  height: 28px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  position: absolute;
  top: 0;
  left: -20px;
}

.sec--testimonials__name {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 2;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--montserrat);
  line-height: 1.6;
  letter-spacing: 0.07em;
}

.sec--testimonials__name span {
  display: block;
  border: 1px solid var(--corp-orange);
  border-radius: 10vh;
  padding-inline: 7px;
  color: var(--corp-orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}

/* contact-slider */
.contact-slider {
  display: flex;
  overflow: hidden;
  background: var(--bg-gray);
  padding-bottom: 56px;
  margin-bottom: -80px;
}

.contact-slider__items {
  width: calc(4562 * var(--vwPC));
  flex-shrink: 0;
  animation: infinitieScroll 50s linear infinite;
}

/* sec--contact */
.sec--contact {
  background: var(--corp-green);
  padding-block: 100px 120px;
  position: relative;
  color: #fff;
  border-radius: 56px 56px 0 0;
}

.sec--contact__inner {
  display: grid;
  grid-template-columns: 45.8716% 1fr;
  gap: 60px;
  align-items: end;
  width: 77.8572%;
}

.sec--contact__ttl-wrapper {
  margin-bottom: 60px;
  line-height: 1;
}

.sec--contact__ttl {
  font-size: 3.25rem;
  font-weight: 600;
  font-family: var(--montserrat);
  line-height: inherit;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.sec--contact__subttl {
  color: #B5E4E4;
  font-weight: 700;
  line-height: inherit;
  letter-spacing: 0.07em;
}

.sec--contact__txt {
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

.sec--contact__list {
  display: grid;
  gap: 6px;
  padding-block: 20px;
  border-block: 1px solid #6DC2C2;
  margin-bottom: 20px;
}

.sec--contact__list>div {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: center;
}

.sec--contact__list__txt {
  font-weight: 500;
  font-family: var(--montserrat);
  letter-spacing: 0.07em;
}

.sec--contact__place {
  margin-bottom: 60px;
}

.sec--contact__place__ttl {
  color: #93D6D6;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.sec--contact__place__txt {
  letter-spacing: 0.07em;
}

.sec--contact__map {
  display: block;
  border: none;
  width: 100%;
  height: auto;
  aspect-ratio: 500/240;
  border-radius: 15px;
}

.sec--contact__form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  color: #000;
}

.sec--contact__form input,
.sec--contact__form textarea {
  display: block;
  width: 100%;
  font-size: 0.9375rem;
  line-height: inherit;
  letter-spacing: 0.07em;
  padding: 12px 15px;
  background: #E7EDEF;
  border: none;
  border-radius: 4px;
}

.sec--contact__form input::-moz-placeholder,
.sec--contact__form textarea::-moz-placeholder {
  color: #C5C7C8;
}

.sec--contact__form input::placeholder,
.sec--contact__form textarea::placeholder {
  color: #C5C7C8;
}

.sec--contact__form input:focus,
.sec--contact__form textarea:focus {
  outline: 2px solid var(--corp-green);
}

.sec--contact__form textarea {
  min-height: 150px;
  resize: vertical;
}

.sec--contact__form__inner {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.sec--contact__form__ttl {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.sec--contact__form__note {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.sec--contact__form__note a {
  color: var(--corp-green);
  font-weight: 700;
  padding-bottom: 3px;
  background: linear-gradient(to right, var(--corp-green) 0%, var(--corp-green) 100%) no-repeat bottom center/100% 1px;
  transition: all 0.3s var(--easing);
}

.sec--contact__form__note a:hover {
  background-size: 0 1px;
}

.sec--contact__form__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  background: #000;
  border-radius: 10vh;
  padding: 12px 59px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.sec--contact__form__btn:hover::before {
  scale: 1;
}

.sec--contact__form__btn::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--corp-orange);
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: -1;
  scale: 0;
  transition: scale 0.3s var(--easing);
}

/* footer */
.common-footer {
  color: #fff;
  background: #001414;
  padding: 70px 80px;
}

.common-footer a {
  transition: opacity 0.3s var(--easing);
}

.common-footer a:hover {
  opacity: 0.5;
}

.footer__col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__head {
  padding-bottom: 29px;
  margin-bottom: 40px;
  border-bottom: 1px solid #464747;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo-img {
  width: 55px;
}

.footer__logo-txt {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--montserrat);
  line-height: 1.22;
  letter-spacing: 0.02em;
}

.footer__head__nav__list {
  display: flex;
  align-items: end;
  gap: 20px;
  line-height: 1;
}

.footer__head__nav__list__items {
  line-height: 1.5;
  font-size: 0.75rem;
}

.footer__head__nav__list__items:first-child {
  margin-right: 26px;
}

.footer__foot__nav__list {
  display: flex;
  justify-content: center;
}

.footer__foot__nav__list__items {
  padding-inline: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.footer__foot__nav__list__items+.footer__foot__nav__list__items {
  border-left: 1px solid #464747;
}

.footer__foot__nav__list__items:first-child {
  padding-left: 0;
}

.footer__foot__nav__list__items:last-child {
  padding-right: 0;
}

.footer__copyright {
  color: #7B7B7B;
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--montserrat);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

.to-top {
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--montserrat);
  letter-spacing: 0.07em;
  writing-mode: sideways-lr;
  position: fixed;
  bottom: 20px;
  right: 0;
  background: #000;
  padding-inline: 14px;
  border-radius: 8px 0 0 8px;
  translate: 100% 0;
  transition: translate 0.4s var(--easing);
}

.to-top.is-visible {
  translate: 0 0;
}

.to-top::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 16px;
  background: url(/wp-content/themes/Fractal/assets/img/index/ico_arrow_white.svg) no-repeat center left 50%/16px;
  rotate: -90deg;
  translate: 4px;
  margin-bottom: 6px;
}

.to-top:hover::after {
  animation: bgArrowAnimate 0.6s;
}

@media screen and (max-width: 1024px) {
  .common-header {
    padding-right: 30px;
  }

  .header__logo__link {
    padding-inline: 30px;
    border-bottom-right-radius: 15px;
  }

  .header__logo__link>* {
    transition: opacity 0.3s var(--easing);
  }

  .header__logo__link:active>* {
    opacity: 0.5;
  }

  .header__nav__list {
    gap: 30px 20px;
  }

  .header__nav__list a {
    font-size: 0.875rem;
  }

  /* sec--members */
  .sec--members__list {
    width: 90%;
    gap: 30px 40px;
  }

  /* footer */
  .footer__foot {
    flex-direction: column;
    gap: 40px;
  }
}

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

  .sp {
    display: block;
  }

  /* debug用 */
  html {
    overflow: hidden;
    overflow-y: scroll;
  }

  .content-inner {
    width: 92.308%;
  }

  /* common */
  .sec-ttl-wrapper {
    margin-bottom: 40px;
  }

  .sec-ttl {
    font-size: 2.125rem;
    margin-bottom: 15px;
  }

  .sec-subttl {
    font-size: 0.9375rem;
  }

  .sec-btn {
    padding: 23px 66px 23px 34px;
    font-size: 0.9375rem;
  }

  .sec-btn:where(.overview__col+*) {
    margin-top: 1em;
  }

  .sec-btn::after {
    width: 32px;
    height: 32px;
    background-size: 15px;
  }

  .sec-btn:hover::before {
    scale: 0;
  }

  .sec-btn:active::before {
    scale: 1;
  }

  .sec-btn:active::after {
    animation: bgArrowAnimate 0.6s;
  }

  /* header */
  .common-header {
    height: 72px;
    backdrop-filter: none;
    background: transparent;
    padding-inline: 15px;
    transition: backdrop-filter 0.3s var(--easing), background 0.3s var(--easing);
  }

  .common-header.-scroll {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .header__logo__link {
    background: transparent;
    padding: 0;
    border-radius: 0;
    gap: 9px;
  }

  .header__logo-img {
    width: 38px;
  }

  .header__logo__txt {
    font-size: 1.5rem;
  }

  .header-fixed {
    position: relative;
    z-index: 1;
  }

  .header-fixed .header__nav {
    display: none;
  }

  .header__hbg-btn {
    display: grid;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--corp-orange);
    border: none;
    padding: 0;
    cursor: pointer;
    gap: 9px;
    place-content: center;
  }

  .header__hbg-btn.active .header__hbg-btn__line:first-child {
    rotate: 30deg;
    translate: 0 5px;
  }

  .header__hbg-btn.active .header__hbg-btn__line:last-child {
    rotate: -30deg;
    translate: 0 -5px;
  }

  .header__hbg-btn__line {
    display: block;
    width: 28px;
    height: 1px;
    background: #fff;
    transition: rotate 0.3s var(--easing), translate 0.3s var(--easing);
  }

  .header-hbg {
    display: block;
    width: 100%;
    height: 100vh;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: calc(134 * var(--vwSP));
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s var(--easing), opacity 0.3s var(--easing);
  }

  .header-hbg.show {
    visibility: visible;
    opacity: 1;
  }

  .header__nav {
    width: 74.358975%;
    margin-inline: auto;
    padding: 0;
    border: 0;
  }

  .header__nav__list {
    display: grid;
  }

  .header__nav__list a {
    font-size: 1rem;
  }

  .header__nav__link:active {
    color: var(--corp-orange);
  }

  .header__nav__btn {
    width: 100%;
    padding: 18px 0 18px 89px;
    border: none;
  }

  .header__nav__btn::before {
    background: #000;
  }

  .header__nav__btn:hover,
  .header__nav__btn:active {
    background: var(--corp-orange);
    color: #fff;
  }

  /* mv */
  .mv {
    aspect-ratio: 390/654;
    padding: calc(152 * var(--vwSP)) 0 0;
  }

  .ribbon02 {
    width: calc(154 * var(--vwSP));
    top: calc(594 * var(--vwSP));
  }

  .mv__inner {
    width: 92.308%;
    margin-inline: auto;
  }

  .mv__en-txt {
    font-size: calc(10 * var(--vwSP));
    margin-bottom: calc(30 * var(--vwSP));
  }

  .mv__ttl {
    width: calc(340 * var(--vwSP));
    margin-bottom: calc(30 * var(--vwSP));
  }

  .mv__ttl__bg {
    height: 40%;
  }

  .mv__highlight {
    font-size: calc(16 * var(--vwSP));
    margin-bottom: calc(30 * var(--vwSP));
    animation: mvHighlightAnimate 6s linear infinite alternate;
  }

  .mv__txt {
    font-size: calc(15 * var(--vwSP));
  }

  /* logo-slider */
  .logo-slider__outer {
    margin-bottom: calc(60 * var(--vwSP));
  }

  .logo-slider__items {
    /* SPのロゴ左右の余白（隣との間隔 = この値 × 2）。調整可 */
    margin-inline: calc(12 * var(--vwSP));
  }

  .logo-slider__img {
    /* SPの高さ。調整可 */
    height: calc(36 * var(--vwSP));
  }

  /* overview */
  .overview__inner {
    border-radius: 20px;
    padding: calc(50 * var(--vwSP)) calc(20 * var(--vwSP)) calc(40 * var(--vwSP));
  }

  .ribbon04 {
    width: calc(154 * var(--vwSP));
  }

  .ribbon04__svg--pc {
    display: none;
  }

  .ribbon04__svg--sp {
    display: block;
  }

  .overview__head {
    width: 100%;
    margin-bottom: calc(50 * var(--vwSP));
  }

  .overview__catch {
    font-size: calc(24 * var(--vwSP));
    margin-bottom: calc(40 * var(--vwSP));
  }

  .overview__txt {
    font-size: calc(14 * var(--vwSP));
  }

  .overview__col {
    grid-template-columns: 1fr;
    gap: calc(30 * var(--vwSP));
  }

  .overview__result {
    border-radius: 15px;
    padding: 0 calc(20 * var(--vwSP)) calc(30 * var(--vwSP));
  }

  .overview__result:nth-child(n+2) {
    transition-delay: 0s;
  }

  .overview__result__ttl {
    font-size: calc(16 * var(--vwSP));
    padding: calc(2 * var(--vwSP)) calc(10 * var(--vwSP));
    margin: 0 auto calc(18 * var(--vwSP));
  }

  .overview__result__num {
    font-size: calc(22 * var(--vwSP));
    margin-bottom: calc(18 * var(--vwSP));
  }

  .overview__result__num span {
    font-size: calc(66 * var(--vwSP));
  }

  .overview__result__txt {
    font-size: calc(13 * var(--vwSP));
  }

  .ribbon03 {
    top: calc(370 * var(--vwSP));
  }

  /* sec--support */
  .sec--support {
    padding-block: 80px 120px;
  }

  .sec--support__inner {
    position: relative;
  }

  .sec--support__video {
    width: 225%;
    top: calc(80 * var(--vwSP));
    translate: -50% 0;
    z-index: 0;
  }

  .sec--support__txt {
    width: 92.308%;
    font-size: 0.875rem;
    margin-bottom: 40px;
  }

  .sec--support__list {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
    background: none;
  }

  .sec--support__card {
    padding: 15px 15px 0;
  }

  .sec--support__card:hover {
    background: rgba(255, 255, 255, 0.8);
  }

  .sec--support__card:active {
    background: rgb(255, 255, 255);
  }

  .sec--support__card:active .sec--support__card__btn img {
    animation: arrowAnimate 0.6s;
  }

  .sec--support__card__head {
    margin-bottom: 15px;
  }

  .sec--support__card__ico {
    width: 42px;
    margin-bottom: 15px;
  }

  .sec--support__card__ttl {
    font-size: 1.125rem;
  }

  .sec--support__card__ttl span {
    font-size: 0.75rem;
  }

  .sec--support__card__txt {
    font-size: 0.75rem;
    margin-bottom: -6px;
  }

  .sec--support__card__btn {
    width: 36px;
    height: 36px;
    margin: 0 -15px 0 auto;
  }

  .sec--support__card__btn img {
    width: 18px;
  }

  .sec--support__img-wrapper {
    grid-area: 1/1/2/2;
    width: 100%;
  }

  /* sec--value */
  .sec--value {
    padding-block: 80px;
    border-radius: 40px 40px 0 0;
  }

  .sec--value__items:nth-child(odd) .sec--value__items__inner {
    margin-left: 30px;
  }

  .sec--value__items:nth-child(even) .sec--value__items__inner {
    margin-right: 30px;
  }

  .sec--value__items__inner {
    grid-template-columns: 1fr;
    padding: 20px 25px 25px;
  }

  .sec--value__items__ttl-wrapper {
    margin-bottom: 20px;
  }

  .sec--value__items__num {
    font-size: 0.75rem;
  }

  .sec--value__items__ttl {
    font-size: 1.25rem;
  }

  .sec--value__items__txt {
    font-size: 0.8125rem;
  }

  /* sec--case */
  .sec--case {
    padding-block: 80px;
    border-radius: 40px 40px 0 0;
  }

  .sec--case__list {
    margin-bottom: 40px;
  }

  .sec--case__items {
    padding: 0 20px 20px;
  }

  .sec--case__industry {
    font-size: 0.8125rem;
    margin-bottom: 20px;
  }

  .sec--case__items__ttl {
    font-size: 1.25rem;
    padding-bottom: 15px;
  }

  .sec--case__items__col {
    grid-template-columns: 1fr;
  }

  .sec--case__items__txt {
    font-size: 0.8125rem;
    margin-bottom: 30px;
  }

  .sec--case__items__voice {
    padding: 20px 20px 15px 45px;
    border-radius: 15px;
    margin-left: 30px;
  }

  .sec--case__items__voice__img {
    width: 60px;
    left: -30px;
  }

  .sec--case__items__voice__name {
    font-size: 0.6875rem;
  }

  .sec--case__items__voice__txt {
    font-size: 0.8125rem;
  }

  /* sec--members */
  .sec--members {
    background: linear-gradient(to bottom, var(--corp-green) 0%, var(--corp-green) 150px, var(--bg-gray) 150px, var(--bg-gray) 100%);
  }

  .sec--members .sec-btn {
    padding-inline: 28px 67px;
  }

  .sec--members__inner {
    background: #fff;
    border-radius: 30px;
    padding: 80px 20px 60px;
  }

  .sec--members__list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .sec--members__items__profile {
    margin-bottom: 12px;
  }

  .sec--members__name {
    font-size: 1rem;
  }

  .sec--members__name span {
    font-size: 0.625rem;
  }

  .sec--members__position {
    font-size: 0.5625rem;
    letter-spacing: 0.03em;
  }

  /* sec--testimonials */
  .sec--testimonials {
    padding-block: 80px 55px;
  }

  .sec--testimonials__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 84.615385%;
  }

  .sec--testimonials__items:nth-child(even) {
    margin: 0;
  }

  .sec--testimonials__items:nth-child(even) .sec--testimonials__items__inner::before {
    right: -15px;
  }

  .sec--testimonials__items__inner {
    gap: 15px;
    padding: 20px;
  }

  .sec--testimonials__items__inner::before {
    width: 15px;
    height: 20px;
    left: -15px;
  }

  .sec--testimonials__name {
    font-size: 0.75rem;
  }

  .sec--testimonials__name span {
    font-size: 0.625rem;
  }

  .sec--testimonials__txt {
    font-size: 0.875rem;
  }

  /* contact-slider */
  .contact-slider {
    padding-bottom: 40px;
    margin-bottom: -55px;
  }

  .contact-slider__items {
    width: calc(2349 * var(--vwSP));
  }

  /* sec--contact */
  .sec--contact {
    padding-block: 80px;
    border-radius: 40px 40px 0 0;
  }

  .sec--contact__inner {
    grid-template-columns: 1fr;
    width: 89.74359%;
  }

  .sec--contact__ttl-wrapper {
    margin-bottom: 30px;
  }

  .sec--contact__ttl {
    font-size: 2.125rem;
    margin-bottom: 15px;
  }

  .sec--contact__subttl {
    font-size: 0.9375rem;
  }

  .sec--contact__txt {
    font-size: 0.875rem;
    margin-bottom: 30px;
  }

  .sec--contact__list {
    border-top: none;
  }

  .sec--contact__list>div {
    grid-template-columns: 16px 1fr;
    gap: 10px;
  }

  .sec--contact__list__txt {
    font-size: 0.875rem;
  }

  .sec--contact__place {
    margin-bottom: 30px;
  }

  .sec--contact__place__ttl {
    font-size: 0.875rem;
    margin-bottom: 6px;
  }

  .sec--contact__place__txt {
    font-size: 0.875rem;
  }

  .sec--contact__map {
    aspect-ratio: 350/240;
  }

  .sec--contact__form {
    border-radius: 15px;
    padding: 30px 20px;
  }

  .sec--contact__form input,
  .sec--contact__form textarea {
    padding: 12px 10px;
  }

  .sec--contact__form textarea {
    min-height: 150px;
    resize: vertical;
  }

  .sec--contact__form__note a:active {
    background-size: 0 1px;
  }

  .sec--contact__form__btn:active::before {
    scale: 1;
  }

  /* footer */
  .common-footer {
    padding: 40px 20px 36px;
  }

  .common-footer a:active {
    opacity: 0.5;
  }

  .footer__inner {
    width: 100%;
  }

  .footer__col {
    display: block;
  }

  .footer__head {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-bottom: 30px;
    border: 0;
  }

  .footer__logo {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .footer__logo-img {
    width: 38px;
  }

  .footer__logo-txt {
    font-size: 1.5rem;
  }

  .footer__head__nav__list:has(.footer__head__nav__list__items.pc) .footer__head__nav__list__items {
    font-size: 0.6875rem;
  }

  .footer__head__nav__list:has(.footer__head__nav__list__items.pc) .footer__head__nav__list__items:first-child {
    margin-right: 0;
  }

  .footer__foot__nav {
    margin-bottom: 50px;
  }

  .footer__foot__nav__list__items {
    padding-inline: 15px;
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  .footer__head__nav.sp {
    margin-bottom: 50px;
  }

  .footer__head__nav.sp .footer__head__nav__list {
    justify-content: center;
  }

  .footer__head__nav.sp .footer__head__nav__list__items:first-child {
    margin-right: 0;
  }

  .footer__copyright {
    font-size: 0.625rem;
  }

  .to-top {
    font-size: 0.625rem;
  }

  .to-top::after {
    margin-right: -4px;
  }
}