@charset "UTF-8";
/* ========== 色 ========== */
/* ========== フォントサイズ ========== */
/* ========== フォント ========== */
/* Box sizing rules */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.4s ease;
}

/* ScrollTriggerのpin用スペーサーは絶対transitionさせない */
.pin-spacer,
.pin-spacer * {
  transition: none !important;
}

/* markerもズレるので無効化（任意） */
.gsap-marker-start,
.gsap-marker-end,
.gsap-marker-scroller-start,
.gsap-marker-scroller-end {
  transition: none !important;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* A elements that don't have a class get default styles */
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ====================================================
  BASE CSS – Reusable Utility & Foundation Styles
  Author: ChatGPT
==================================================== */
/* -----------------------------
  Font sizing & root setup
----------------------------- */
html {
  height: 100%;
  font-size: 16px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

/* -----------------------------
  Base styles
----------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  scroll-behavior: auto;
}

/* Reset for common elements */
a {
  text-decoration: none;
  color: #1a1a1a;
}

li {
  list-style: none;
}

/* -----------------------------
  Image styling
----------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* -----------------------------
  Parallax helper
----------------------------- */
.pallax-box {
  position: relative;
  overflow: hidden;
}

.pallax-target {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.pallax-img {
  --pallax-scale: 1.2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--pallax-scale));
  transform-origin: center center;
  will-change: transform;
  display: block;
}

/* -----------------------------
  Stack pin helper
----------------------------- */
.stack-stack {
  position: relative;
  isolation: isolate;
}

.stack-pin {
  position: relative;
  z-index: var(--stack-order, 1);
}

.stack-overlap {
  position: relative;
  z-index: var(--stack-order, 2);
  margin-top: var(--stack-overlap, -3.35rem);
}

.js-overlap-parallax {
  --overlap-parallax-offset: calc(var(--stack-overlap, -3.35rem) * -1);
  transform: translate3d(0, var(--overlap-parallax-offset), 0);
  transition: none;
  will-change: transform;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.925rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
.link-more > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  aspect-ratio: 1/1;
  overflow: visible;
  position: relative;
  flex: 0 0 auto;
  transform: scale(1);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.link-more img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.link-more:hover > span, .link-more:focus-visible > span {
  transform: scale(1.25);
}

@media screen and (min-width: 769px) {
  .link-more {
    gap: 0.75rem;
    font-size: 1.125rem;
  }
  .link-more > span {
    width: 2rem;
  }
}
picture {
  display: contents;
}

/* -----------------------------
  Animation classes
----------------------------- */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation: fade-in 1s ease forwards;
  animation-delay: 2s;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation: fade-out 0.5s ease forwards;
}

.fadeup.is-animated {
  animation: fadeup 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.zoomIn.is-animated {
  animation: zoomIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fuwafuwa {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.left-to-right::after {
  transform: scaleX(0);
}
.left-to-right.is-animated::after {
  animation: leftToRight 5s ease forwards;
  transform-origin: left;
}

@keyframes leftToRight {
  0% {
    transform-origin: left;
    opacity: 0;
    transform: scaleX(0) translateY(-50%) translatex(-5%);
  }
  30% {
    transform: scaleX(1) translateY(-50%) translateX(0);
  }
  100% {
    transform: scaleX(1) translateY(-50%) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.left-to-right2::after {
  transform: scaleX(0);
}
.left-to-right2.is-animated::after {
  animation: leftToRight2 5s ease forwards;
  transform-origin: left;
}

@keyframes leftToRight2 {
  0% {
    transform-origin: left;
    opacity: 0;
    transform: scaleX(0) translatex(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.move-arrow {
  animation: move-arrow 3s ease infinite;
}

@keyframes move-arrow {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  40% {
    transform: scaleY(1);
    transform-origin: top;
  }
  70% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.textanimetion.is-animated {
  animation: textAnimation 3s ease forwards;
}

.textanimetion-delay1s.is-animated {
  animation: textAnimation 2s 0.5s ease forwards;
}

@keyframes textAnimation {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
/* 角度用のカスタムプロパティ定義 */
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
/* 最初は非アニメ状態（何も見えない） */
.circle-chart__progress-wrap {
  --angle: 0deg;
  mask-image: conic-gradient(from -10deg, #000 0deg var(--angle), transparent var(--angle) 360deg);
  -webkit-mask-image: conic-gradient(from -10deg, #000 0deg var(--angle), transparent var(--angle) 360deg);
}

/* .is-animated が付いたときにアニメ開始 */
.circle-chart.is-animated .circle-chart__progress-wrap {
  animation: chart-fill 2s ease forwards;
}

/* 0deg → 324deg (＝9割) まで描く */
@keyframes chart-fill {
  to {
    --angle: 360deg;
  }
}
/* -----------------------------
  Layout container
----------------------------- */
.l-inner {
  padding: 0 24px;
}

/* -----------------------------
  Prevent tel link on desktop
----------------------------- */
@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none !important;
    text-decoration: none;
    color: inherit;
  }
}
/*
レスポンシブ
*/
.sp__only,
.sp-only {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp__only,
  .sp-only {
    display: none;
  }
}

.pc__only,
.pc-only {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc__only,
  .pc-only {
    display: block;
  }
}

.line {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.line::after {
  position: absolute;
  content: "";
  background-image: url(../img/⑥理由解説部分/①偏差値ごとに勉強法を変えていないから/線-黄色.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 11rem;
  z-index: -1;
}

.is-incoming {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 50;
  pointer-events: none;
  will-change: transform, opacity;
}

.section-eyebrow {
  position: absolute;
  display: block;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: 0.0125em;
  color: #4ec9b0;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  z-index: -1;
  transition: opacity 0.35s ease;
}

.section-eyebrow.is-visible {
  opacity: 0.2;
}

.section-eyebrow__char {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
  transition-delay: calc(var(--char-index) * 0.04s);
}

.section-eyebrow.is-visible .section-eyebrow__char {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .section-eyebrow__char {
    transition: none;
    transform: translateY(0);
    opacity: 1;
  }
}
.header {
  --header-surface: transparent;
  --header-link-color: #ffffff;
  --header-trigger-bg: #ffffff;
  --header-trigger-line: #1a1a1a;
  --header-trigger-border: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  background-color: var(--header-surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 0.35s ease;
}
.header.is-light {
  --header-surface: rgba(255, 255, 255, 0.8);
  --header-link-color: #1a1a1a;
  --header-trigger-bg: #ffffff;
  --header-trigger-line: #1a1a1a;
  --header-trigger-border: rgba(26, 26, 26, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.5rem;
  gap: 1.5rem;
}
.header__icon {
  flex: 0 0 auto;
}
.header__icon-link {
  display: block;
  width: 9.375rem;
}
.header__icon-image {
  display: block;
  width: 100%;
  height: auto;
}
.header__nav {
  display: none;
  margin-left: auto;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header__link {
  display: inline-flex;
  align-items: center;
  color: var(--header-link-color);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.header__link--animated {
  overflow: hidden;
}
.header__link-label {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  height: 1em;
  overflow: hidden;
}
.header__link-copy {
  grid-area: stack;
  display: inline-flex;
  align-items: center;
}
.header__link-char {
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  transition-delay: calc(var(--char-index) * 0.03s);
}
.header__link-char--space {
  width: 0.3em;
}
.header__link-copy--base .header__link-char {
  transform: translateY(0);
  opacity: 1;
}
.header__link-copy--hover .header__link-char {
  transform: translateY(115%);
  opacity: 0;
}
.header__link--contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 1.25rem;
  background-color: #4ec9b0;
  color: #ffffff;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.header__link--contact:hover, .header__link--contact:focus-visible {
  color: #ffffff;
  background-color: #4ec9b0;
  border-color: #4ec9b0;
}
.header__trigger {
  position: relative;
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--header-trigger-border);
  border-radius: 50%;
  background-color: var(--header-trigger-bg);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.header__trigger-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 2px;
  background-color: var(--header-trigger-line);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: top 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
.header__trigger-line:nth-child(1) {
  top: calc(50% - 0.3125rem);
}
.header__trigger-line:nth-child(2) {
  top: calc(50% + 0.3125rem);
}
@media screen and (min-width: 798px) {
  .header__nav {
    display: flex;
    align-items: center;
  }
  .header__trigger {
    display: none;
  }
  .header__link--animated:hover .header__link-copy--base .header__link-char, .header__link--animated:focus-visible .header__link-copy--base .header__link-char {
    transform: translateY(-115%);
    opacity: 0;
  }
  .header__link--animated:hover .header__link-copy--hover .header__link-char, .header__link--animated:focus-visible .header__link-copy--hover .header__link-char {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-drawer {
  position: fixed;
  top: 100px;
  bottom: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 100px);
  min-height: calc(100svh - 100px);
  min-height: calc(100dvh - 100px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background-color: #1a1a1a;
  color: #ffffff;
}
.header-drawer[hidden] {
  display: none !important;
}
.header-drawer__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.8rem 3.7rem calc(3rem + env(safe-area-inset-bottom));
}
.header-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 2.2em;
}
.header-drawer__link {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.header-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 2.5rem;
}
.header-drawer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.header-drawer__button--contact {
  background-color: #4ec9b0;
  color: #ffffff;
}
.header-drawer__button--document {
  background-color: #ffffff;
  color: #1a1a1a;
}
.header-drawer__social {
  margin-top: 2.6rem;
}
.header-drawer__list-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 9.61rem;
  height: 2.5031rem;
  padding: 0;
}
.header-drawer__icon {
  flex: 0 0 auto;
  height: 100%;
}
.header-drawer__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header-drawer__icon-link:hover {
  opacity: 0.8;
}
.header-drawer__icon-link img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  position: relative;
}
.header-drawer__icon-link img.instagram {
  width: 2.3031rem;
  left: 0.2rem;
}
.header-drawer__icon-link img.tiktok {
  height: 40px;
  left: 0.4rem;
}
.header-drawer__icon-link img.youtube {
  width: 50px;
}
.header-drawer__law {
  margin-top: 2.5rem;
  gap: 1.3rem;
}
.header-drawer__law-privacy, .header-drawer__law-personal {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
}
@media screen and (min-width: 798px) {
  .header-drawer {
    display: none !important;
  }
}

body.is-menu-open {
  overflow: hidden;
  background-color: #1a1a1a;
}
body.is-menu-open .header {
  --header-surface: #1a1a1a;
  --header-link-color: #ffffff;
  --header-trigger-bg: transparent;
  --header-trigger-line: #ffffff;
  --header-trigger-border: #ffffff;
  background-color: #1a1a1a;
}
body.is-menu-open .header__trigger-line:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
body.is-menu-open .header__trigger-line:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .header__link-char {
    transition: none;
  }
}
@media screen and (min-width: 769px) {
  .header {
    --header-surface: transparent;
    --header-link-color: #ffffff;
    --header-trigger-bg: #ffffff;
    --header-trigger-line: #1a1a1a;
    --header-trigger-border: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 120px;
    background-color: var(--header-surface);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.35s ease;
  }
  .header.is-light {
    --header-surface: rgba(255, 255, 255, 0.8);
    --header-link-color: #1a1a1a;
    --header-trigger-bg: #ffffff;
    --header-trigger-line: #1a1a1a;
    --header-trigger-border: rgba(26, 26, 26, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 2rem;
    gap: 1.5rem;
  }
  .header__icon {
    flex: 0 0 auto;
  }
  .header__icon-link {
    width: 11.75rem;
  }
  .header__icon-image {
    display: block;
    width: 100%;
    height: auto;
  }
  .header__nav {
    display: none;
    margin-left: auto;
  }
  .header__list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  .header__link {
    display: inline-flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    line-height: 1;
  }
  .header__link--animated {
    overflow: hidden;
  }
  .header__link-label {
    position: relative;
    display: grid;
    grid-template-areas: "stack";
    height: 1em;
    overflow: hidden;
  }
  .header__link-copy {
    grid-area: stack;
    display: inline-flex;
    align-items: center;
  }
  .header__link-char {
    display: inline-block;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
    transition-delay: calc(var(--char-index) * 0.03s);
  }
  .header__link-char--space {
    width: 0.3em;
  }
  .header__link-copy--base .header__link-char {
    transform: translateY(0);
    opacity: 1;
  }
  .header__link-copy--hover .header__link-char {
    transform: translateY(115%);
    opacity: 0;
  }
  .header__link--contact {
    font-size: 0.875rem;
    padding: 0.75rem 15px;
  }
  .header__link--contact:hover, .header__link--contact:focus-visible {
    color: #4ec9b0;
    background-color: #ffffff;
    border-color: #4ec9b0;
  }
  .header__trigger {
    position: relative;
    flex: 0 0 auto;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid var(--header-trigger-border);
    border-radius: 50%;
    background-color: var(--header-trigger-bg);
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  .header__trigger-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5rem;
    height: 2px;
    background-color: var(--header-trigger-line);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: top 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  }
  .header__trigger-line:nth-child(1) {
    top: calc(50% - 0.3125rem);
  }
  .header__trigger-line:nth-child(2) {
    top: calc(50% + 0.3125rem);
  }
}
@media screen and (min-width: 769px) and (min-width: 798px) {
  .header__nav {
    display: flex;
    align-items: center;
  }
  .header__trigger {
    display: none;
  }
  .header__link--animated:hover .header__link-copy--base .header__link-char, .header__link--animated:focus-visible .header__link-copy--base .header__link-char {
    transform: translateY(-115%);
    opacity: 0;
  }
  .header__link--animated:hover .header__link-copy--hover .header__link-char, .header__link--animated:focus-visible .header__link-copy--hover .header__link-char {
    transform: translateY(0);
    opacity: 1;
  }
}
.footer {
  background-color: #1a1a1a;
  padding: 5rem 0;
}
.footer * {
  color: #ffffff;
}
.footer__inner {
  padding: 0 1.5rem;
}
.footer__flexbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.35rem;
  margin-bottom: 3.55rem;
}
.footer__title {
  font-size: 30.62px;
  font-weight: 700;
  line-height: 1.2;
}
.footer__list-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 9.11rem;
  height: 2.5031rem;
  padding-left: 0.2rem;
}
.footer__icon {
  flex: 0 0 auto;
  height: 100%;
}
.footer__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.footer__icon-link:hover {
  opacity: 0.6;
}
.footer__icon-link img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}
.footer__icon-link img.instagram {
  height: 79%;
}
.footer__icon-link img.tiktok {
  height: 90%;
  position: relative;
  right: -0.3rem;
}
.footer__icon-link img.youtube {
  height: 95%;
}
.footer__list-wrapper {
  display: flex;
  align-items: flex-start;
  column-gap: 3.25rem;
  margin-bottom: 5.475rem;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.footer__link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  line-height: 1;
}
.footer__link--animated {
  overflow: hidden;
}
.footer__link-label {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  height: 1em;
  overflow: hidden;
}
.footer__link-copy {
  grid-area: stack;
  display: inline-flex;
  align-items: center;
}
.footer__link-char {
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
  transition-delay: calc(var(--char-index) * 0.03s);
}
.footer__link-char--space {
  width: 0.3em;
}
.footer__link-copy--base .footer__link-char {
  transform: translateY(0);
  opacity: 1;
}
.footer__link-copy--hover .footer__link-char {
  transform: translateY(115%);
  opacity: 0;
}
.footer__law {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.7rem;
  text-align: left;
}
.footer__law-privacy, .footer__law-personal {
  display: inline-block;
  position: relative;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}
.footer__law-privacy::after, .footer__law-personal::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer__law-privacy:hover::after, .footer__law-privacy:focus-visible::after, .footer__law-personal:hover::after, .footer__law-personal:focus-visible::after {
  transform: scaleX(1);
}
.footer__copyright {
  margin-top: 3.95rem;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

@media screen and (min-width: 769px) {
  .footer {
    padding: 0;
  }
  .footer__inner {
    min-height: 31rem;
    padding: 7.5rem 7.3125rem 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .footer__flexbox {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "head list" "law list";
    row-gap: 4.15rem;
    align-items: start;
  }
  .footer__head {
    grid-area: head;
    gap: 2.7rem;
    margin-bottom: 0;
  }
  .footer__title {
    font-size: 1.91375rem;
    line-height: 1;
  }
  .footer__list-icon {
    width: auto;
    height: auto;
    padding-left: 0.45rem;
    justify-content: flex-start;
    gap: 1.45rem;
  }
  .footer__icon-link img.instagram {
    width: 3.06375rem;
    height: 3.06375rem;
  }
  .footer__icon-link img.tiktok {
    width: 3.41125rem;
    height: 3.625rem;
    right: 0;
    top: 0.1rem;
  }
  .footer__icon-link img.youtube {
    width: 3.375rem;
    height: 3.625rem;
    scale: 1.3;
  }
  .footer__list-wrapper {
    grid-area: list;
    justify-self: end;
    column-gap: 3.25rem;
    margin-bottom: 0;
    top: -0.2rem;
    position: relative;
  }
  .footer__list {
    gap: 2.2rem;
  }
  .footer__link {
    font-size: 1rem;
    line-height: 1;
  }
  .footer__law {
    grid-area: law;
    gap: 1.7rem;
  }
  .footer__law-privacy, .footer__law-personal {
    font-size: 1rem;
  }
  .footer__copyright {
    margin-top: 3.1rem;
    width: auto;
    align-self: flex-end;
    padding-top: 0.75rem;
    font-size: 0.875rem;
    text-align: right;
  }
}
@media (hover: hover) {
  .footer__link--animated:hover .footer__link-copy--base .footer__link-char,
  .footer__link--animated:focus-visible .footer__link-copy--base .footer__link-char {
    transform: translateY(-115%);
    opacity: 0;
  }
  .footer__link--animated:hover .footer__link-copy--hover .footer__link-char,
  .footer__link--animated:focus-visible .footer__link-copy--hover .footer__link-char {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer__link-char {
    transition: none;
  }
}
.fv {
  overflow: hidden;
}
.fv__inner {
  height: 100vh;
  height: 100svh;
  position: relative;
}
.fv__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  aspect-ratio: 393/657;
}
@media screen and (min-width: 650px) {
  .fv__background {
    aspect-ratio: none;
  }
}
.fv__background video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media screen and (min-width: 650px) {
  .fv__background video {
    aspect-ratio: auto;
  }
}
.fv__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.fv__content-under {
  background-color: #4ec9b0;
  margin-top: -1px;
  padding-top: 200px;
  padding-bottom: 200px;
}
.fv__content-under.target-clip {
  clip-path: circle(0% at 50% 50%);
}
.fv__title {
  font-size: 2rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transform: translateX(1vw);
}
.fv__text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 2.783;
  margin-top: 2rem;
}
.fv__image {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  display: block;
  transition: none;
  transform-origin: center center;
  will-change: transform;
}
.fv__image.pallax-target {
  position: relative;
}
.fv__image.pallax-img {
  height: auto;
  object-fit: initial;
}
.fv__image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.fv__image-box:nth-child(2) {
  width: 40vw;
  left: 23.7vw;
  margin-top: 4.4rem;
}
.fv__image-box:nth-child(3) {
  width: 49.2vw;
  right: 19.25vw;
  margin-top: 3.01rem;
}
.fv__image-box:nth-child(4) {
  width: 35.6vw;
  left: 20.4vw;
  margin-top: 9.55rem;
}
.fv__image-background {
  position: absolute;
  z-index: -1;
  right: -43.1vw;
  top: 2.78rem;
  width: 153.5%;
  height: 100%;
  max-width: 700px;
}

@media screen and (min-width: 769px) {
  .fv {
    overflow: hidden;
  }
  .fv__inner {
    height: 100vh;
    height: 100svh;
    position: relative;
  }
  .fv__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    aspect-ratio: 393/657;
  }
}
@media screen and (min-width: 769px) and (min-width: 650px) {
  .fv__background {
    aspect-ratio: none;
  }
}
@media screen and (min-width: 769px) {
  .fv__background video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}
@media screen and (min-width: 769px) and (min-width: 650px) {
  .fv__background video {
    aspect-ratio: auto;
  }
}
@media screen and (min-width: 769px) {
  .fv__content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .fv__content-under {
    background-color: #4ec9b0;
    margin-top: -1px;
    padding-top: 185px;
    padding-bottom: 200px;
  }
  .fv__content-under.target-clip {
    clip-path: circle(0% at 50% 50%);
  }
  .fv__title {
    font-size: 4rem;
    letter-spacing: 0;
    position: relative;
    bottom: -0.4rem;
    transform: none;
  }
  .fv__title > .pc-only {
    display: inline-block;
  }
  .fv__text {
    font-size: 1rem;
    margin-top: 1.8rem;
  }
  .fv__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    display: block;
    transition: none;
    transform-origin: center center;
    will-change: transform;
  }
  .fv__image.pallax-target {
    position: relative;
  }
  .fv__image.pallax-img {
    height: auto;
    object-fit: initial;
  }
  .fv__image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-top: -10.6rem;
  }
  .fv__image-box:nth-child(2) {
    width: 19.66vw;
    left: 32vw;
    margin-top: 0;
  }
  .fv__image-box:nth-child(3) {
    width: 24.31vw;
    right: 27.45vw;
    margin-top: -13.89rem;
  }
  .fv__image-box:nth-child(4) {
    width: 17.64vw;
    left: 3.6vw;
    margin-top: 3.55rem;
  }
  .fv__image-background {
    right: 1.1vw;
    top: 0.88rem;
    width: fit-content;
    transform: scale(1.05);
  }
}
.about {
  background-color: #ffffff;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.about__image {
  position: relative;
  width: 64%;
  isolation: isolate;
}
.about__eyebrow {
  right: 0;
  top: 0;
  transform: translate(63%, 8%);
  writing-mode: vertical-rl;
  font-size: 4.5rem;
}
.about__title {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.1rem;
}
.about__title-sub {
  font-weight: 700;
}
.about__category {
  font-size: 0.75rem;
  border: 1px solid #1a1a1a;
  border-radius: 30px;
  width: fit-content;
  padding: 8px 12px;
  line-height: 1;
  text-wrap: nowrap;
  font-family: "Inter", sans-serif;
}
.about__category--pr {
  font-family: "Noto Sans JP", sans-serif;
}
.about__category-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.7rem;
  gap: 0.5rem 0.25rem;
}
.about__text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 2;
}
.about__text + .about__text {
  margin-top: 1.75rem;
}
.about__text-wrapper {
  margin-top: 1.875rem;
}
.about__text-box {
  margin-top: 1.875rem;
  padding-right: 1%;
}
.about__btn {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}
.about__btn-link {
  display: block;
  width: 56px;
  aspect-ratio: 1/1;
  background-color: #4ec9b0;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
.about__btn-link:hover {
  opacity: 0.6;
}
.about__btn-link.youtube {
  background-image: url(../img/img/icon/youtube/digital/03-white/yt-icon-white-digital.png);
  background-image: image-set(url(../img/img/icon/youtube/digital/03-white/yt-icon-white-digital.webp) type("image/webp"), url(../img/img/icon/youtube/digital/03-white/yt-icon-white-digital.png) type("image/png"));
  background-size: 90%;
}
.about__btn-link.instagram {
  background-image: url(../img/img/icon/instagraam/02-white-glyph/instagram-glyph-white.png);
  background-image: image-set(url(../img/img/icon/instagraam/02-white-glyph/instagram-glyph-white.webp) type("image/webp"), url(../img/img/icon/instagraam/02-white-glyph/instagram-glyph-white.png) type("image/png"));
  background-size: 59%;
}
.about__btn-link.tiktok {
  background-image: url(../img/img/icon/tiktok.png);
  background-image: image-set(url(../img/img/icon/tiktok.webp) type("image/webp"), url(../img/img/icon/tiktok.png) type("image/png"));
  background-size: 69%;
}

.about.stack-overlap {
  --stack-overlap: -3.2rem;
  --overlap-parallax-distance: 30vh;
  --overlap-parallax-stop: 0;
}

@media screen and (min-width: 769px) {
  .about {
    z-index: 1;
  }
  .about__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
  .about__image {
    width: 55%;
    padding-top: 2rem;
    padding-left: max(6.2vw, (100vw - 90rem) / 2 + 5.58rem);
  }
  .about__eyebrow {
    transform: translate(5%, 11%);
    font-size: 234px;
  }
  .about__title {
    font-size: 2.75rem;
  }
  .about__title-sub {
    font-size: 1.25rem;
  }
  .about__category {
    font-size: 0.875rem;
    padding: 12px 16px;
  }
  .about__category-box {
    margin-top: 1.8rem;
    gap: 0.5rem 0.5rem;
  }
  .about__text {
    font-weight: 500;
    font-size: 1rem;
    line-height: 2.2;
  }
  .about__text + .about__text {
    margin-top: 2.15rem;
  }
  .about__text-wrapper {
    width: 50%;
    margin-top: 3.575rem;
    position: relative;
    padding-left: 1%;
  }
  .about__text-box {
    margin-top: 1.875rem;
    padding-right: 1%;
  }
  .about__btn {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
  }
  .about__btn-link {
    display: block;
    width: 56px;
    aspect-ratio: 1/1;
    background-color: #4ec9b0;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .about__btn-link:hover {
    opacity: 0.6;
  }
  .about__btn-link.youtube {
    background-image: url(../img/img/icon/youtube/digital/03-white/yt-icon-white-digital.png);
    background-image: image-set(url(../img/img/icon/youtube/digital/03-white/yt-icon-white-digital.webp) type("image/webp"), url(../img/img/icon/youtube/digital/03-white/yt-icon-white-digital.png) type("image/png"));
    background-size: 90%;
  }
  .about__btn-link.instagram {
    background-image: url(../img/img/icon/instagraam/02-white-glyph/instagram-glyph-white.png);
    background-image: image-set(url(../img/img/icon/instagraam/02-white-glyph/instagram-glyph-white.webp) type("image/webp"), url(../img/img/icon/instagraam/02-white-glyph/instagram-glyph-white.png) type("image/png"));
    background-size: 59%;
  }
  .about__btn-link.tiktok {
    background-image: url(../img/img/icon/tiktok.png);
    background-image: image-set(url(../img/img/icon/tiktok.webp) type("image/webp"), url(../img/img/icon/tiktok.png) type("image/png"));
    background-size: 69%;
  }
  .about.stack-overlap {
    --stack-overlap: 0rem;
  }
}
.service {
  --service-sticky-top: 100px;
  --service-layout-gap: clamp(3rem, 7vw, 7.5rem);
  padding: 5rem 0 7.65rem;
  background-color: #fbfbfb;
  position: relative;
}
.service__inner {
  margin-top: 5.15rem;
}
.service__text-wrapper {
  position: relative;
}
.service__title {
  font-size: 2.25rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.service__eyebrow {
  left: 0;
  top: -100%;
  font-size: 4.5rem;
  color: #1a1a1a;
}
.service__list {
  display: flex;
  flex-direction: column;
  margin-top: 1.125rem;
  width: 74.9%;
  max-width: 24rem;
}
.service__item {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  border-bottom: 1px solid #919191;
}
.service__item-link {
  display: block;
  padding: 0.99rem 3.5rem 0.99rem 0;
  position: relative;
  color: #1a1a1a;
  transition: color 0.3s ease, font-weight 0.3s ease;
}
.service__item-link:hover, .service__item-link:focus-visible, .service__item-link.is-active {
  color: #4ec9b0;
  font-weight: 700;
}
.service__item-link:focus-visible {
  outline: none;
}
.service__item-link::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.65rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #4ec9b0;
  background-image: url(../img/img/vector.png);
  background-image: image-set(url(../img/img/vector.webp) type("image/webp"), url(../img/img/vector.png) type("image/png"));
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service__item-link:hover::after, .service__item-link:focus-visible::after, .service__item-link.is-active::after {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 0 0.45rem rgba(78, 201, 176, 0.2);
}
.service__content {
  padding-top: 3.25rem;
  border-bottom: 1px solid #969696;
  scroll-margin-top: var(--service-sticky-top);
}
.service__content-wrapper {
  margin-top: 2.8rem;
}
.service__content-image {
  display: block;
  width: 100%;
  height: auto;
}
.service__content-text {
  padding-top: 1.65rem;
  padding-bottom: 3rem;
}
.service__content-title {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.service__content-disc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 1rem;
}
.service__content-list {
  display: flex;
  flex-direction: column;
  gap: 0.925rem;
  margin-top: 2.25rem;
}
.service__content-item {
  padding-left: 1.6rem;
  position: relative;
  text-wrap: nowrap;
}
.service__content-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.375rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #4ec9b0;
}

@media screen and (min-width: 769px) {
  .service {
    --service-sticky-top: 220px;
    padding: 12.4rem 0 12.5rem;
  }
  .service__inner {
    display: flex;
    align-items: start;
    justify-content: center;
    margin: 0;
    padding: 0 0 0 8.1vw;
  }
  .service__text-wrapper {
    position: sticky;
    top: var(--service-sticky-top);
    margin-top: 2.77rem;
    align-self: start;
  }
  .service__title {
    font-size: 2.5rem;
  }
  .service__eyebrow {
    font-size: 5rem;
    letter-spacing: 0.0225em;
    top: -94%;
  }
  .service__list {
    margin-top: 5.35rem;
  }
  .service__item {
    font-size: 1.5rem;
    padding-left: 0.1vw;
    border: none;
  }
  .service__item-link {
    text-wrap: nowrap;
    padding: 0;
  }
  .service__item-link::after {
    display: none;
  }
  .service__item + .service__item {
    margin-top: 2.3rem;
  }
  .service__content {
    display: flex;
    flex-direction: row-reverse;
    align-items: start;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 2.93rem;
  }
  .service__content-wrapper {
    margin-top: 0;
    margin-left: 10.7vw;
    margin-right: 2.15vw;
  }
  .service__content-image {
    width: 48.2%;
    justify-self: end;
  }
  .service__content-text {
    padding-top: 2.15rem;
    padding-bottom: 0;
  }
  .service__content-text.marketing {
    padding-top: 1.875rem;
  }
  .service__content-title {
    font-size: 2.5rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .service__content-title.marketing {
    font-family: "Inter", sans-serif;
  }
  .service__content-disc {
    max-width: 83%;
    font-size: 1rem;
    line-height: 2.2;
    margin-top: 1.4rem;
  }
  .service__content-disc.marketing {
    line-height: 2.38;
    margin-top: 1.3rem;
  }
  .service__content-list {
    gap: 1.2rem;
    margin-top: 4.65rem;
  }
  .service__content-item {
    font-size: 1.25rem;
    padding-left: 2rem;
  }
  .service__content::after {
    top: 54%;
    width: 0.475rem;
  }
}
.works {
  padding-top: 10.2rem;
  position: relative;
  z-index: 2;
  isolation: isolate;
  background-color: #fbfbfb;
}
.works__inner {
  width: 100%;
}
.works__title {
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.works__eyebrow {
  z-index: 0;
  left: 50%;
  top: -91%;
  transform: translateX(-50%);
  font-size: 5rem;
}
.works__logo {
  display: block;
  flex: 0 0 auto;
  width: max(100vw, 62rem);
  max-width: none;
}
.works__logo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.25rem;
  width: 100%;
}
.works__logo-marquee {
  width: 100%;
  overflow: hidden;
}
.works__logo-srider {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  animation: scroll-left 18s linear infinite;
}
.works__logo-srider.right {
  animation: scroll-right 18s linear infinite;
}
.works__container {
  padding: 6.25rem 0;
  color: #ffffff;
}
.works__container.company {
  padding: 4.8rem 0 6.2rem;
  background-color: #2c3f50;
}
.works__container.branding {
  padding: 5.1rem 0 5.5rem;
  background-color: #435769;
}
.works__container.event {
  padding-bottom: 6.5rem;
  background-color: #677f94;
}
.works__container.influencer {
  background-color: #e5ecf3;
  color: #000000;
  padding: 5.9rem 24px 6.35rem;
}
.works__content-wrapper {
  margin-top: 8.75rem;
  position: relative;
  isolation: isolate;
}
.works__content-wrapper > .works__container {
  position: relative;
  overflow: hidden;
}
.works__content-wrapper > .works__container:not(:last-child) {
  position: sticky;
  top: var(--works-panel-sticky-top, 0px);
}
.works__content-wrapper > .works__container:nth-child(1) {
  z-index: 10;
}
.works__content-wrapper > .works__container:nth-child(2) {
  z-index: 20;
}
.works__content-wrapper > .works__container:nth-child(3) {
  z-index: 30;
}
.works__content-wrapper > .works__container:nth-child(4) {
  z-index: 40;
}
.works__content-flexbox {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
.works__content-flexbox.branding {
  margin-top: 1.8rem;
}
.works__content-flexbox.event {
  margin: 1.7rem 0 16.75rem;
}
.works__content-flexbox.influencer {
  margin-top: 1.75rem;
}
.works__content-title {
  font-size: 2rem;
  font-weight: 700;
  padding-left: 24px;
  line-height: 1.2;
}
.works__content-title.influencer {
  padding-left: 0;
}
.works__content-card {
  margin-bottom: 1.8rem;
}
.works__content-card.influencer + .works__content-card {
  margin-top: 2.15rem;
  margin-bottom: 0;
}
.works__content-link {
  aspect-ratio: 1.78/1;
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.works__content-link.influencer {
  justify-content: flex-start;
  width: 82.2%;
  aspect-ratio: 284/506;
}
.works__content-link > picture {
  display: block;
  width: 100%;
  height: 100%;
}
.works__content-link > img,
.works__content-link > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  transform: translateX(var(--works-image-offset-x, 0rem)) scale(1);
  transform-origin: center center;
  filter: brightness(1);
  will-change: transform, filter;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
.works__content-link:hover > img, .works__content-link:hover > picture > img, .works__content-link:focus-visible > img, .works__content-link:focus-visible > picture > img {
  transform: translateX(var(--works-image-offset-x, 0rem)) scale(1.1);
  filter: brightness(0.8);
}
.works__content-link--more {
  padding: 0 24px;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  color: #ffffff;
}
.works__content-link--more-pc {
  display: none;
}
.works__content-link--more--desktop {
  display: none;
}
.works__content-link--more.influencer {
  color: #000000;
  margin-top: 1.75rem;
  padding: 0;
}
.works__content-disc {
  padding: 0 24px;
  font-size: 0.875rem;
  margin-top: 0.7rem;
  line-height: 1.2;
}
.works__content-disc.branding {
  font-size: 0.75rem;
  margin-bottom: 0.15rem;
}
.works__content-disc.influencer {
  font-weight: 700;
  padding-left: 0;
}
.works__content-text {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.875rem;
  border: solid 1px #ffffff;
  border-radius: 0.4rem;
  padding: 1.9rem 1.5rem;
  line-height: 2;
}
.works__content-text + .works__content-text {
  margin-top: 0.5rem;
}
.works__content-text-box {
  margin-top: 1.9rem;
}
.works__content-text-title {
  color: #000000;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}

@keyframes scroll-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes scroll-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .works__logo-srider {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (min-width: 769px) {
  .works__logo-wrapper {
    margin: 4.6rem auto 0;
    width: 81.75vw;
    gap: 2rem;
  }
  .works__logo-marquee {
    display: flex;
    justify-content: center;
    overflow: visible;
  }
  .works__logo-marquee:nth-child(1) {
    width: 83.25%;
    margin: 0 auto;
  }
  .works__logo-marquee:nth-child(2) {
    width: 78.25%;
    margin: 0 auto;
  }
  .works__logo-marquee:nth-child(3) {
    width: 100%;
  }
  .works__logo-srider {
    width: 100%;
    justify-content: center;
    animation: none;
    transform: translate3d(0, 0, 0);
  }
  .works__logo-srider.right {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
  .works__logo-srider > picture {
    display: block;
    width: 100%;
  }
  .works__logo-srider > picture + picture {
    display: none;
  }
  .works__logo {
    width: 100%;
  }
  .works__container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .works__container.company {
    padding: 7.7625rem 2rem 7.9rem;
  }
  .works__container.branding {
    padding: 7.8625rem 2rem 7.9rem;
  }
  .works__container.event {
    padding: 7.8625rem 2rem 7.95rem;
  }
  .works__container.influencer {
    padding: 7.3rem 2rem 7.5rem;
  }
  .works__content-wrapper {
    margin-top: 7.3rem;
  }
  .works__content-wrapper > .works__container {
    border-radius: 0;
  }
  .works__content-flexbox {
    order: 3;
    flex: 0 0 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.25rem;
    margin-top: 5.35rem;
    position: relative;
  }
  .works__content-flexbox.branding, .works__content-flexbox.event, .works__content-flexbox.influencer {
    margin-top: 5.15rem;
  }
  .works__content-flexbox.event {
    margin-bottom: 0;
  }
  .works__content-flexbox.influencer {
    flex-direction: column;
    gap: 5.55rem;
    margin-top: 5.175rem;
  }
  .works__content-title {
    flex: 0 0 auto;
    padding-left: 0;
    font-size: 2.5rem;
  }
  .works__content-title.influencer {
    font-family: "Inter", sans-serif;
  }
  .works .works__container.branding > .works__content-title,
  .works .works__container.event > .works__content-title {
    font-family: "Inter", sans-serif;
  }
  .works__content-card {
    flex: 1 1 calc((100% - 2.25rem) / 2);
    margin-bottom: 0;
  }
  .works__content-card.influencer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3.75rem;
    padding-inline: 6.43%;
  }
  .works__content-card.influencer + .works__content-card {
    margin-top: 0;
  }
  .works .works__container.event .works__content-card {
    flex: 0 0 calc((100% - 2.25rem) / 2);
  }
  .works__content-media {
    flex: 0 0 21.9375rem;
    width: 21.9375rem;
  }
  .works__content-image--offset-x {
    --works-image-offset-x: 0.1875rem;
  }
  .works__content-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
  }
  .works__content-link {
    width: 100%;
  }
  .works__content-link.influencer {
    width: 21.9375rem;
    aspect-ratio: 351/618;
  }
  .works__content-link--more {
    order: 2;
    align-self: flex-start;
    width: auto;
    padding: 0;
  }
  .works__content-link--more--desktop {
    display: inline-flex;
  }
  .works .works__content-link--more-pc {
    display: inline-flex;
    position: absolute;
    top: -3.8rem;
    right: 2%;
    z-index: 1;
    width: auto;
    padding: 0;
  }
  .works .works__container.company > .works__content-link--more,
  .works .works__container.branding > .works__content-link--more,
  .works .works__container.event > .works__content-link--more {
    display: none;
  }
  .works .works__container.influencer > .works__content-link--more {
    display: none;
  }
  .works .works__content-card.influencer .works__content-link--more {
    order: -1;
    align-self: flex-end;
    margin-top: 0;
    margin-bottom: 0.95rem;
    padding: 0;
    transform: translate(45.1%, -3.8rem);
  }
  .works .works__content-card.influencer .works__content-link--more--desktop {
    margin-bottom: 2.1rem;
  }
  .works__content-disc {
    padding: 0;
    margin-top: 1.65rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
  }
  .works__content-disc.branding {
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  .works__content-disc.influencer {
    margin-top: 1.75rem;
    font-weight: 700;
    line-height: 1;
  }
  .works__content-text {
    padding: 2.45rem 1.9rem;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2.2;
  }
  .works__content-text + .works__content-text {
    margin-top: 0;
  }
  .works__content-text-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0;
  }
  .works__content-text-title {
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
  }
  .works__content-text-title--animal-result {
    margin-bottom: 0.9rem;
  }
}
.news {
  --news-tab-padding-block: 0.625rem;
  --news-tab-padding-inline: 10px;
  --news-tab-padding-inline-active: 1.25rem;
  --news-tab-active-space-left: 10px;
  --news-tab-active-space-right: 10px;
  --news-section-radius: 0.7rem;
  padding: 7.85rem 0 5rem;
  background-color: transparent;
  position: relative;
  isolation: isolate;
  border-radius: var(--news-section-radius);
}
.news::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-color: #fbfbfb;
}
.news__inner {
  position: relative;
  z-index: 1;
}
.news__heading, .news__panel-inner {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.news__title {
  font-size: 2.25rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.news__eyebrow {
  left: 0;
  top: -95%;
  font-size: 4.5rem;
}
.news__tabs {
  margin-top: 2.125rem;
}
.news__tab-input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.news__tab-scroll {
  overflow-x: auto;
  padding-bottom: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: #b7b7b7 #e5e5e5;
}
.news__tab-scroll::-webkit-scrollbar {
  height: 0.25rem;
}
.news__tab-scroll::-webkit-scrollbar-track {
  background-color: #e5e5e5;
}
.news__tab-scroll::-webkit-scrollbar-thumb {
  background-color: #b7b7b7;
  border-radius: 999px;
}
.news__tab-list {
  display: flex;
  width: max-content;
  padding: 0 1.5rem;
}
.news__tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--news-tab-padding-block) var(--news-tab-padding-inline);
  border-radius: 1.875rem;
  color: #b7b7b7;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, padding 0.3s ease;
}
.news__tab-panels {
  margin-top: 2.5rem;
}
.news__tab-panel {
  display: none;
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.news__item-link {
  display: grid;
  grid-template-columns: 6.375rem minmax(0, 1fr);
  gap: 1.05rem;
}
.news__item-image {
  aspect-ratio: 1/1;
  background-color: #f5f5f5;
  overflow: hidden;
  border-radius: 8px;
}
.news__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__item-content {
  min-width: 0;
}
.news__item-meta {
  display: flex;
  align-items: center;
  gap: 0;
}
.news__item-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.325rem 0.7rem;
  border: 1px solid #1a1a1a;
  border-radius: 1.875rem;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.news__item-category + .news__item-category {
  margin-left: 4px;
}
.news__item-date {
  margin-left: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  color: #1a1a1a;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.news__item-title {
  display: flex;
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.news__item-text {
  display: none;
}
.news__more {
  margin-top: 3.75rem;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  color: #2c3f50;
}

.news.stack-overlap {
  --stack-overlap: -0.2rem;
  --overlap-parallax-distance: 12vh;
  --overlap-parallax-stop: 0;
}

#news-tab-all:checked ~ .news__tab-scroll .news__tab-button--all,
#news-tab-notice:checked ~ .news__tab-scroll .news__tab-button--notice,
#news-tab-event:checked ~ .news__tab-scroll .news__tab-button--event,
#news-tab-sns:checked ~ .news__tab-scroll .news__tab-button--sns,
#news-tab-media:checked ~ .news__tab-scroll .news__tab-button--media {
  padding-inline: var(--news-tab-padding-inline-active);
  margin-left: var(--news-tab-active-space-left);
  margin-right: var(--news-tab-active-space-right);
  background-color: #4ec9b0;
  color: #ffffff;
}

#news-tab-all:checked ~ .news__tab-scroll .news__tab-button--all {
  margin-left: 0;
}

#news-tab-media:checked ~ .news__tab-scroll .news__tab-button--media {
  margin-right: 0;
}

#news-tab-all:focus-visible ~ .news__tab-scroll .news__tab-button--all,
#news-tab-notice:focus-visible ~ .news__tab-scroll .news__tab-button--notice,
#news-tab-event:focus-visible ~ .news__tab-scroll .news__tab-button--event,
#news-tab-sns:focus-visible ~ .news__tab-scroll .news__tab-button--sns,
#news-tab-media:focus-visible ~ .news__tab-scroll .news__tab-button--media {
  outline: 2px solid #4ec9b0;
  outline-offset: 3px;
}

#news-tab-all:checked ~ .news__tab-panels .news__tab-panel--all,
#news-tab-notice:checked ~ .news__tab-panels .news__tab-panel--notice,
#news-tab-event:checked ~ .news__tab-panels .news__tab-panel--event,
#news-tab-sns:checked ~ .news__tab-panels .news__tab-panel--sns,
#news-tab-media:checked ~ .news__tab-panels .news__tab-panel--media {
  display: block;
}

@media screen and (min-width: 769px) {
  .news {
    --news-section-radius: 1.875rem;
    padding: 10.9rem 8.125vw 7.45rem;
    border-radius: var(--news-section-radius);
  }
  .news__heading, .news__panel-inner {
    padding-right: 0;
    padding-left: 0;
  }
  .news__title {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    line-height: 1;
  }
  .news__eyebrow {
    top: -3.5rem;
    font-size: 5rem;
    line-height: 1;
  }
  .news__tabs {
    margin-top: 5rem;
  }
  .news__tab-scroll {
    overflow: visible;
    padding-bottom: 0;
    scrollbar-width: none;
  }
  .news__tab-scroll::-webkit-scrollbar {
    display: none;
  }
  .news__tab-list {
    align-items: center;
    gap: 2rem;
    padding: 0;
  }
  .news__tab-button {
    padding: 0;
    min-height: 2.5rem;
    color: #1a1a1a;
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
  }
  .news__tab-panels {
    margin-top: 1.4rem;
    border-top: 1px solid #1a1a1a;
  }
  .news__tab-panel {
    margin-top: 0;
  }
  .news__panel-inner {
    padding-top: 3.75rem;
  }
  .news__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1.6875rem;
    row-gap: 2.5rem;
  }
  .news__item-link {
    display: block;
  }
  .news__item-image {
    aspect-ratio: 384/265;
  }
  .news__item-content {
    margin-top: 1.3rem;
  }
  .news__item-meta {
    flex-wrap: wrap;
    row-gap: 0.4rem;
    column-gap: 0;
  }
  .news__item-category {
    padding: 0.45rem 0.75rem;
    border-radius: 1.875rem;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
  }
  .news__item-category + .news__item-category {
    margin-left: 0.25rem;
  }
  .news__item-date {
    margin-left: 0.5rem;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .news__item-title {
    display: block;
    margin-top: 0.875rem;
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    line-break: strict;
  }
  .news__item-text {
    display: block;
    margin-top: 0.625rem;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 2.2;
    line-break: strict;
    color: #1a1a1a;
  }
  .news__item[data-news-id=news-2024-04-27-01] .news__item-text {
    width: calc(100% + 0.25rem);
    max-width: none;
  }
  .news__more {
    margin-top: 5.05rem;
    color: #1a1a1a;
  }
  .news__more > span {
    width: 2.5rem;
  }
  #news-tab-all:checked ~ .news__tab-scroll .news__tab-button--all,
  #news-tab-notice:checked ~ .news__tab-scroll .news__tab-button--notice,
  #news-tab-event:checked ~ .news__tab-scroll .news__tab-button--event,
  #news-tab-sns:checked ~ .news__tab-scroll .news__tab-button--sns,
  #news-tab-media:checked ~ .news__tab-scroll .news__tab-button--media {
    padding: 0.625rem 1.25rem;
    margin-left: 0;
    margin-right: 0;
    background-color: #4ec9b0;
    color: #ffffff;
    font-weight: 700;
  }
  .news.stack-overlap {
    --stack-overlap: 0rem;
  }
}
.voice {
  position: relative;
  z-index: 0;
  padding: 5rem 0 7.5rem;
  overflow: visible;
  background-color: #435769;
}
.voice__inner, .voice__stage {
  position: relative;
}
.voice__text-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.voice__text-pin {
  position: relative;
  width: 100%;
  height: 100%;
}
.voice__text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  color: #f5f5f5;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center center;
  will-change: transform, font-size;
}
.voice__image {
  display: block;
  flex: 0 0 auto;
  width: 14.75rem;
  max-width: none;
}
.voice__image-wrapper {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  --voice-text-layer-top-adjust: -2.4rem;
  --voice-text-layer-bottom-adjust: 0rem;
  gap: 3.25rem;
}
.voice__image-marquee {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.voice__image-srider {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  animation: voice-scroll-left 28s linear infinite;
}
.voice__image-srider.right {
  animation-name: voice-scroll-right;
}
.voice__text-layer {
  top: calc(var(--voice-text-layer-top-base, 0rem) + var(--voice-text-layer-top-adjust));
  right: 0;
  bottom: calc(var(--voice-text-layer-bottom-base, 0rem) + var(--voice-text-layer-bottom-adjust));
  left: 0;
  background-color: var(--voice-text-layer-bg);
  overflow: visible;
}
.voice__text-pin {
  position: sticky;
  top: var(--voice-text-pin-top, 50vh);
  height: 0;
}
.voice__text {
  top: 0;
  width: 100%;
  max-width: none;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
  .voice {
    margin-top: 0;
    padding: 16rem 0 6.45rem;
    overflow: visible;
  }
  .voice__image {
    width: auto;
    height: 15.8125rem;
  }
  .voice__image-srider {
    gap: 2.5em;
  }
  .voice__image-wrapper {
    --voice-text-layer-top-adjust: -10rem;
    --voice-text-layer-bottom-adjust: 0rem;
    gap: 5.75rem;
  }
  .voice__image-marquee {
    display: flex;
    align-items: flex-end;
    height: 21.875rem;
  }
  .voice__image-marquee--bottom {
    align-items: flex-start;
  }
  .voice__text {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
  }
}
@keyframes voice-scroll-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes voice-scroll-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .voice__image-srider {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
}
.cta {
  color: #ffffff;
}
.cta__list {
  display: flex;
  flex-direction: column;
}
.cta__card {
  --cta-card-gradient: linear-gradient(90deg, rgba(78, 201, 176, 0.85) 0%, rgba(146, 201, 78, 0.85) 100%);
  --cta-arrow-translate-y: -50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 205.8px;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
}
.cta__card::before, .cta__card::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
  pointer-events: none;
}
.cta__card::before {
  background: var(--cta-card-gradient);
  opacity: 0.72;
}
.cta__card::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 100%), var(--cta-card-gradient);
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta__card:hover::after, .cta__card:focus-visible::after {
  transform: translate3d(0, 0, 0);
}
.cta__card:hover .cta__card-image, .cta__card:focus-visible .cta__card-image {
  transform: scale(1.04);
}
.cta__card:hover .cta__card-arrow, .cta__card:focus-visible .cta__card-arrow {
  transform: translate3d(0, var(--cta-arrow-translate-y), 0) scale(1.04);
}
.cta__card:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
.cta__card--contact {
  --cta-card-gradient: linear-gradient(90deg, rgba(78, 201, 176, 0.85) 0%, rgba(146, 201, 78, 0.85) 100%);
}
.cta__card--document {
  --cta-card-gradient: linear-gradient(90deg, rgba(78, 127, 201, 0.85) 0%, rgba(187, 78, 201, 0.85) 100%);
}
.cta__card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta__card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: inherit;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__card-copy {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}
.cta__card-copy::before {
  position: absolute;
  left: 50%;
  top: 50%;
  content: attr(data-label);
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -58%);
  white-space: nowrap;
  pointer-events: none;
}
.cta__card-title {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  bottom: -0.9375rem;
}
.cta__card-arrow {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.8125rem;
  aspect-ratio: 1;
  transform: translate3d(0, var(--cta-arrow-translate-y), 0) scale(1);
  transition: transform 0.4s ease;
}
.cta__card-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (min-width: 769px) {
  .cta {
    padding: 0;
  }
  .cta__inner {
    padding-inline: 0;
  }
  .cta__list {
    gap: 0;
  }
  .cta__card {
    height: 29.625rem;
    min-height: 29.625rem;
  }
  .cta__card-content {
    padding: 0 2rem;
    align-items: center;
    justify-content: center;
  }
  .cta__card-copy {
    width: 100%;
    text-align: center;
  }
  .cta__card-copy::before {
    left: 50%;
    top: 50%;
    font-size: 5.11625rem;
    line-height: 1;
    letter-spacing: 0;
    transform: translate(-50%, -61%);
  }
  .cta__card-title {
    bottom: -1.6rem;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.5rem;
    line-height: 1;
  }
  .cta__card-arrow {
    --cta-arrow-translate-y: -50%;
    top: 50%;
    right: 8.1vw;
    width: 11.625rem;
    aspect-ratio: 1/1;
  }
  .cta__card-arrow img {
    width: 100%;
    height: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
