@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
:root {
  --bk: #111;
  --wh: #fff;
  --text-color-dark: #222;
}

@font-face {
  font-family: "Unbounded";
  /*要素に指定するときに使うフォント名*/
  src: url("../fonts/unbounded.woff2") format("woff2"), url("../fonts/unbounded.woff") format("woff");
  font-display: swap;
}
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* ====================================================
HTML
==================================================== */
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  color: var(--text-color-dark);
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  background: #fff;
}

.inner {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.inner.--1500 {
  max-width: 1500px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #222;
}

/* ====================================================
SWIPER
==================================================== */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ====================================================
LOADING
==================================================== */
/* ====================================================
Animation
==================================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.zoom-in.active {
  animation: zoom-in 1s ease-out forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(9%);
    opacity: 1;
  }
}
.bounce-in.active {
  animation: bounceIn 1.5s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    transform: translateY(-10%);
    opacity: 1;
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeup.visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-heading span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.yureru-s {
  animation: yureru-s 2s infinite;
}

@keyframes puluShake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  1% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  2% {
    transform: translate(-2px, 2px) rotate(-1deg);
  }
  3% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  4% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  /* 残りの時間は停止 */
}
.text-wave,
.interview__ttl-title,
.about__ttl-title-s {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.text-wave .char,
.interview__ttl-title .char,
.about__ttl-title-s .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.text-wave .char.is-visible,
.interview__ttl-title .char.is-visible,
.about__ttl-title-s .char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 回転アニメーション */
.rolle-effect {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.rolle-effect:hover {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}

.rotate-text {
  display: inline-block;
}

.rotate-text:hover {
  animation: rotate 0.5s forwards;
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
/* 回転アニメーション 2D */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 回転アニメーション 3D */
@keyframes spin3D {
  0% {
    transform: rotate3d(1, 0, 0, 0deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 360deg);
  }
}
.text-hover {
  display: inline-block;
  cursor: pointer;
  perspective: 400px;
  /* 3D回転をきれいに見せるため（任意） */
}
.text-hover .char {
  display: inline-block;
  transform-origin: center center;
  /* 回転の中心を文字の中央に */
  /* backface-visibility: hidden; // 裏面非表示（任意） */
  /* アニメーション関連のプロパティはJSで設定 */
}

/* テキストウェーブ */
@keyframes slideTextWave {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* リンクhover 下線アニメーション */
.link--view-more {
  display: block;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 200px;
  position: relative;
  z-index: 0;
}
.link--view-more::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--wh);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: transform 0.4s ease 0.2s, background-color 0.4s ease;
  transform-origin: 0 50%;
  transform: scaleX(1);
}
.link--view-more::after {
  background: var(--wh);
}
.link--view-more::after, .link--view-more:hover::before {
  transition: transform 0.4s ease, background-color 0.4s ease;
  transform-origin: 100% 50%;
  transform: scaleX(0);
}
.link--view-more:hover::after {
  transition: transform 0.4s ease 0.2s, background-color 0.4s ease;
  transform-origin: 0 50%;
  transform: scaleX(1);
}

/* リンクhover 下線アニメーション2 */
.link-item {
  display: inline-block;
  position: relative;
}
.link-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--wh);
  transition: width 0.3s ease;
}
.link-item:hover::after {
  width: 100%;
}

/* A Modern CSS Reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  font-weight: 400;
}

a,
button {
  cursor: revert;
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: normal;
  text-align: left;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* ====================================================
Module
==================================================== */
/* ====================================================
Header
==================================================== */
.header {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: flex-start;
  padding: 5rem 6.5rem;
  gap: 9rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 4rem 3.5rem;
    gap: 7rem;
  }
}
@media screen and (max-width: 834px) {
  .header {
    padding: 3rem 4rem;
    gap: 5rem;
  }
}
@media screen and (max-width: 640px) {
  .header {
    padding: 2rem 3rem;
    gap: 4rem;
  }
}
.header.hide {
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.header .logo {
  width: 100%;
  max-width: 72px;
  max-height: 66px;
  display: inline-block;
  opacity: 1;
  transition-delay: 0.1s;
}
@media screen and (max-width: 834px) {
  .header .logo {
    max-width: 50px;
    max-height: 50px;
  }
}
.header .logo.hide {
  opacity: 0;
  display: none;
}
.header .logo-color {
  width: 100%;
  max-width: 72px;
  height: auto;
  opacity: 1;
  transition-delay: 0.1s;
}
.header .logo-color.hide {
  opacity: 0;
  display: none;
}
.header-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 1200px) {
  .header-nav-inner {
    gap: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .header-nav-inner {
    gap: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .header-nav-inner {
    gap: 2rem;
  }
}
.header-nav-list-item a {
  font-size: 15px;
  font-family: "Albert Sans", sans-serif;
  line-height: 2;
  color: #222;
}
@media screen and (max-width: 834px) {
  .header-nav {
    visibility: hidden;
  }
}
.header .link--view-more::after {
  background: #222;
}
.header.white .header-nav-list-item a {
  color: var(--wh);
}
.header.white .logo {
  fill: var(--wh);
}
.header.white .link--view-more::after {
  background: var(--wh);
}

/* ====================================================
Footer
==================================================== */
.footer {
  background-color: #2e2e2e;
  color: var(--wh);
  padding-bottom: 9rem;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  transition: position 0.3s ease-out;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding-bottom: 7rem;
  }
}
@media screen and (max-width: 834px) {
  .footer {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 640px) {
  .footer {
    padding-bottom: 3rem;
  }
}
.footer-nav {
  padding-bottom: 10rem;
  margin-bottom: 7rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .footer-nav {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .footer-nav {
    padding-bottom: 5rem;
    margin-bottom: 3rem;
  }
}
.footer-nav .inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .footer-nav .inner {
    flex-direction: column;
  }
}
.footer-nav-inner {
  width: 100%;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 640px) {
  .footer-nav-inner {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}
.footer-nav-list {
  font-size: 16px;
  font-family: "Albert Sans", sans-serif;
  line-height: 2;
}
.footer-nav-list-item {
  margin-bottom: 3rem;
  line-height: 1;
}
.footer-nav-sublist {
  font-size: 14px;
  font-family: "IBM Plex Sans JP", sans-serif;
  margin-top: 2rem;
  line-height: 3;
  color: #a4a4a4;
}
.footer-nav-sublist a {
  color: #a4a4a4;
}
.footer-nav-sublist-item {
  margin-top: 3rem;
}
.footer-nav-sublist-item .link--view-more::after {
  background: #a4a4a4;
}
.footer-address .inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .footer-address .inner {
    flex-direction: column;
  }
}
.footer-address-inner.--address {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .footer-address-inner:not(.--address) {
    margin-top: -8rem;
  }
}
.footer-address-text {
  font-size: 14px;
  font-weight: 300;
}
.footer-address-text.--jp {
  font-weight: 300;
}
.footer-address-text.--en {
  color: #a4a4a4;
  font-family: "Albert Sans", sans-serif;
  margin-top: 3rem;
  font-weight: 300;
}
.footer-logo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.footer-logo .logo {
  width: 100%;
  max-width: 72px;
}
.footer .copyright {
  color: #a4a4a4;
  font-family: "Albert Sans", sans-serif;
  font-size: 12px;
  text-align: center;
  margin-top: 2rem;
}
.footer .page-top {
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 880px);
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  white-space: nowrap;
  position: relative;
}
.footer .page-top::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--wh);
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.footer .page-top:hover::before {
  width: 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .footer .page-top {
    max-width: 100%;
    justify-content: flex-end;
  }
}
.footer.active {
  z-index: 1000;
  background-color: #000;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 5rem;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer.active.show {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  transform: translateY(0);
  justify-content: flex-start;
}
.footer.active.show .line-stretch::after {
  content: none;
}
.footer.active .footer-nav {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.footer.active .footer-nav-inner {
  grid-template-columns: repeat(2, minmax(auto, 250px));
  max-width: 100%;
}
.footer.active .footer-nav-list:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}
.footer.active .footer-nav-list:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
}
.footer.active .footer-nav-list:nth-of-type(3) {
  grid-column: 2;
  grid-row: 1;
}
.footer.active .footer-nav-list:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}
.footer.active .footer-nav-list {
  font-size: 18px;
  font-family: "Albert Sans", sans-serif;
  line-height: 2.5;
  color: var(--wh);
}
.footer.active .footer-nav-list-item {
  margin-bottom: 4rem;
}
.footer.active .footer-nav-sublist {
  font-size: 16px;
  font-family: "IBM Plex Sans JP", sans-serif;
  margin-top: 1rem;
  line-height: 2.5;
  color: #a4a4a4;
}
.footer.active .footer-nav-sublist a {
  color: #a4a4a4;
}
.footer.active .footer-nav-sublist-item {
  margin-top: 1.5rem;
}
.footer.active .footer-nav-sublist-item .link--view-more::after {
  background: #a4a4a4;
}
.footer.active .footer-address-text {
  font-size: 16px;
}
.footer.active .breadcrumb,
.footer.active .page-top,
.footer.active .footer-logo,
.footer.active .copyright {
  display: none;
}

/* ====================================================
ハンバーガーメニュー
==================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 30px;
  background-color: #333;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}
@media screen and (max-width: 834px) {
  .hamburger {
    display: flex;
  }
}
.hamburger:hover {
  background-color: #555;
}
.hamburger-line {
  width: 16px;
  height: 2px;
  background-color: #fff;
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.hamburger.active .hamburger-line:nth-child(1) {
  width: 23px;
  height: 1px;
  transform: rotate(30deg) translate(2px, 2px);
}
.hamburger.active .hamburger-line:nth-child(2) {
  width: 23px;
  height: 1px;
  transform: rotate(330deg) translate(2px, -2px);
}

/* ====================================================
common
==================================================== */
body.active {
  overflow: hidden;
}

.sr-only {
  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;
}

/* ====================================================
breadcrumb
==================================================== */
.breadcrumb {
  color: var(--wh);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1;
  padding-top: 3rem;
}
.breadcrumb .inner {
  padding-bottom: 3rem;
  margin-bottom: 15rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .breadcrumb .inner {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 834px) {
  .breadcrumb .inner {
    padding-bottom: 2rem;
    margin-bottom: 5rem;
  }
}
.breadcrumb-list {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.breadcrumb-list-item {
  display: flex;
  align-items: center;
}
.breadcrumb-list-item .separator {
  display: inline-block;
  margin-right: 8px;
  font-size: 12px;
}

/* ====================================================
contact banner
==================================================== */
.contact-banner {
  background-color: #222;
  color: var(--wh);
  padding: 5rem 0;
  height: 548px;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .contact-banner {
    padding: 4rem 0;
    height: 480px;
  }
}
@media screen and (max-width: 834px) {
  .contact-banner {
    padding: 3rem 0;
    height: 400px;
  }
}
@media screen and (max-width: 640px) {
  .contact-banner {
    padding: 2rem 0;
    height: 300px;
  }
}
@media screen and (max-width: 376px) {
  .contact-banner {
    height: 250px;
  }
}
.contact-banner .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s ease-in-out;
  background-image: url("../img/svg/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-banner-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .contact-banner-inner {
    flex-direction: column;
    align-items: center;
  }
}
.contact-banner-link span.arrow-forward {
  margin-left: auto;
}
.contact-banner-link span.arrow-forward::before {
  color: #222222;
}
.contact-banner-link span.arrow-forward .material-icons::before {
  background-color: var(--wh);
}
.contact-banner-link span.arrow-forward .material-icons::after {
  color: #222222;
}
.contact-banner-link .arrow-forward-text::before {
  background-color: var(--wh);
}
.contact-banner-title {
  font-size: 80px;
  font-family: "Unbounded", sans-serif;
  width: 50%;
  white-space: nowrap;
}
@media screen and (max-width: 990px) {
  .contact-banner-title {
    font-size: 11vw;
  }
}
@media screen and (max-width: 834px) {
  .contact-banner-title {
    width: 100%;
  }
}
.contact-banner-link {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .contact-banner-link {
    width: 100%;
  }
}

/* ====================================================
LINK BUTTON
==================================================== */
.arrow-forward {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  position: relative;
  height: 11.7rem;
  padding: 0 11rem 0 0;
  white-space: nowrap;
}
.arrow-forward::before {
  content: attr(data-text);
  font-size: 16px;
  font-family: "Albert Sans", sans-serif;
  position: absolute;
  top: 50%;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  z-index: 2;
}
.arrow-forward-text {
  font-size: 16px;
  font-family: "Albert Sans", sans-serif;
  line-height: 1.3;
  position: relative;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  z-index: 3;
}
.arrow-forward-text::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.arrow-forward-icon.material-icons {
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  color: var(--wh);
}
.arrow-forward-icon.material-icons::before {
  content: "";
  display: flex;
  width: 70px;
  height: 70px;
  background-color: #333;
  border-radius: 100vmax;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .arrow-forward-icon.material-icons::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 640px) {
  .arrow-forward-icon.material-icons::before {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 376px) {
  .arrow-forward-icon.material-icons::before {
    width: 30px;
    height: 30px;
  }
}
.arrow-forward-icon.material-icons::after {
  content: "\e5c8";
  color: var(--wh);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.arrow-forward:hover::before, .arrow-forward.hover::before {
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.arrow-forward:hover .arrow-forward-text, .arrow-forward.hover .arrow-forward-text {
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  overflow: hidden;
  max-width: 65%;
  white-space: nowrap;
}
.arrow-forward:hover .arrow-forward-text::before, .arrow-forward.hover .arrow-forward-text::before {
  width: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.arrow-forward:hover .arrow-forward-icon.material-icons::before, .arrow-forward.hover .arrow-forward-icon.material-icons::before {
  width: 105px;
  height: 105px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
@media screen and (max-width: 834px) {
  .arrow-forward:hover .arrow-forward-icon.material-icons::before, .arrow-forward.hover .arrow-forward-icon.material-icons::before {
    width: 85px;
    height: 85px;
  }
}
@media screen and (max-width: 640px) {
  .arrow-forward:hover .arrow-forward-icon.material-icons::before, .arrow-forward.hover .arrow-forward-icon.material-icons::before {
    width: 65px;
    height: 65px;
  }
}
@media screen and (max-width: 376px) {
  .arrow-forward:hover .arrow-forward-icon.material-icons::before, .arrow-forward.hover .arrow-forward-icon.material-icons::before {
    width: 45px;
    height: 45px;
  }
}

/* ====================================================
LINE STRETCH
==================================================== */
.line-stretch {
  position: relative;
}
.line-stretch::after {
  content: "";
  display: block;
  background-color: #e1e1e1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  width: var(--line-width, 0);
  transition: var(--line-transition, width 1s ease);
}

/* ====================================================
TEXT GRADIENT
==================================================== */
.fc-grad {
  display: inline-block;
  background: linear-gradient(90deg, #003893 0%, #54c2f0 25%, #003893 50%, #54c2f0 100%);
  background-size: 400% 100%;
  background-position: left;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.fc-grad.show {
  animation: gradation 2s linear infinite;
  color: #222;
  transition: color 0.3s ease-in-out 3s;
}

@keyframes gradation {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes gradationCycle {
  /* 0-2秒: グラデーションアニメーション */
  0% {
    background-position: 0 0;
  }
  16.67% {
    background-position: 100% 0;
  }
  33.33% {
    background-position: 0 0;
  }
  /* 2-6秒: 静止状態 */
  33.34%, 100% {
    background-position: 0 0;
  }
}/*# sourceMappingURL=common.css.map */