@charset "UTF-8";


:root {
--ink: #161616;
--ink-soft: #555;
--accent: #E0491F;
--accent-soft: rgba(224, 73, 31, .07);
--line: #e5e2dd;
--en: 'Manrope', sans-serif;
--jp: 'Noto Sans JP', sans-serif;
--ox: 0;
--oy: 0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--jp);
color: var(--ink);
background: #fff;
line-height: 1.9;
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
body.body--loading {
overflow: hidden;
}
body.body--menu-open {
overflow: hidden;
}
img {
max-width: 100%;
display: block;
}
a {
color: inherit;
text-decoration: none;
}
ul {
list-style: none;
}
.u-break-sp {
display: none;
}
@media (max-width: 960px) {
.u-break-sp {
display: inline;
}
}
.u-reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.u-reveal.u-reveal--in {
opacity: 1;
transform: none;
}
@media (prefers-reduced-motion: reduce) {
.u-reveal {
opacity: 1;
transform: none;
transition: none;
}
}
.u-text--accent {
color: var(--accent);
}
.u-text--highlight {
background: linear-gradient(transparent 62%, var(--accent-soft) 0);
padding: 0 0.06em;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
}
@keyframes watermark-breathe {
0%, 100% {
-webkit-text-stroke-width: 1px;
opacity: 0.55;
}
50% {
-webkit-text-stroke-width: 1.8px;
opacity: 1;
}
}
.loader {
position: fixed;
inset: 0;
z-index: 300;
background: var(--ink);
display: flex;
align-items: center;
justify-content: center;
transform: translateY(0);
transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.25s;
}
.loader::before {
content: "";
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 11vh;
background: var(--ink);
border-radius: 0 0 50% 50%/0 0 100% 100%;
transition: height 0.7s cubic-bezier(0.76, 0, 0.24, 1) 0.45s;
}
.loader.loader--done {
transform: translateY(calc(-100% - 11vh));
pointer-events: none;
}
.loader.loader--done::before {
height: 0;
}
.loader.loader--done .loader__content {
opacity: 0;
transform: translateY(-14px);
}
.loader__content {
display: flex;
flex-direction: column;
align-items: center;
gap: 26px;
transition: opacity 0.35s ease, transform 0.35s ease;
}
.loader__mark {
display: block;
width: 46px;
height: 46px;
overflow: hidden;
position: relative;
animation: loader-pulse 1.6s ease-in-out infinite;
}
.loader__mark img {
display: block;
height: 100%;
width: auto;
max-width: none;
filter: brightness(10);
}
.loader__count {
font-family: var(--en);
font-weight: 800;
font-size: 15px;
letter-spacing: 0.18em;
color: rgba(255, 255, 255, 0.85);
}
.loader__bar {
display: block;
width: 180px;
height: 2px;
background: rgba(255, 255, 255, 0.18);
position: relative;
overflow: hidden;
}
.loader__bar::after {
content: "";
position: absolute;
inset: 0;
background: var(--accent);
transform: scaleX(var(--progress, 0));
transform-origin: left;
}
@keyframes loader-pulse {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.55;
transform: scale(0.92);
}
}
@media (prefers-reduced-motion: reduce) {
.loader {
display: none;
}
} #page-content.pjax-fade {
transition: opacity .4s ease, transform .5s cubic-bezier(.22, 1, .36, 1);
}
#page-content.pjax-fade.pjax-fade--out {
opacity: 0;
transform: translateY(14px);
}
@media (prefers-reduced-motion: reduce) {
#page-content.pjax-fade {
transition: none;
}
}
.lens {
position: fixed;
left: 0;
top: 0;
width: 170px;
height: 170px;
border-radius: 50%;
pointer-events: none;
z-index: 90;
backdrop-filter: blur(2.5px) saturate(150%);
-webkit-backdrop-filter: blur(2.5px) saturate(150%);
backdrop-filter: blur(2.5px) saturate(150%) brightness(1.04);
-webkit-backdrop-filter: blur(2.5px) saturate(150%) brightness(1.04);
background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0) 62%), radial-gradient(circle at 72% 78%, rgba(224, 73, 31, 0.1), transparent 55%);
border: 1px solid rgba(255, 255, 255, 0.7);
box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.38), inset -10px -12px 26px rgba(22, 22, 22, 0.05), 0 20px 44px rgba(22, 22, 22, 0.1);
opacity: 0;
transition: opacity 0.5s ease, background 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
body.body--lens-on .lens {
opacity: 1;
}
body.body--lens-off .lens {
opacity: 0 !important;
}
.lens.lens--ring {
background: transparent;
backdrop-filter: none;
-webkit-backdrop-filter: none;
border: 2px solid rgba(224, 73, 31, 0.6);
box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.75), 0 10px 26px rgba(22, 22, 22, 0.12);
}
@media (pointer: coarse) {
.lens {
display: none;
}
}
@media (prefers-reduced-motion: reduce) {
.lens {
display: none;
}
}
.blob {
position: absolute;
pointer-events: none;
z-index: 2;
backdrop-filter: blur(3px) saturate(140%);
-webkit-backdrop-filter: blur(3px) saturate(140%);
background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(224, 73, 31, 0.05));
border: 1px solid rgba(255, 255, 255, 0.55);
box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.4), 0 26px 60px rgba(22, 22, 22, 0.07);
animation: blob-morph 13s ease-in-out infinite alternate, blob-float 17s ease-in-out infinite alternate;
}
.blob--1 {
width: 300px;
height: 300px;
right: 5vw;
top: 14vh;
border-radius: 58% 42% 55% 45%/48% 55% 45% 52%;
}
.blob--2 {
width: 160px;
height: 160px;
right: 27vw;
bottom: 22vh;
border-radius: 45% 55% 48% 52%/55% 45% 58% 42%;
animation-delay: -6s;
animation-duration: 10s, 14s;
}
@media (max-width: 960px) {
.blob--1 {
width: 180px;
height: 180px;
right: -30px;
}
.blob--2 {
width: 100px;
height: 100px;
right: 60vw;
bottom: 12vh;
}
}
@media (prefers-reduced-motion: reduce) {
.blob {
display: none;
}
}
@keyframes blob-morph {
0% {
border-radius: 58% 42% 55% 45%/48% 55% 45% 52%;
}
50% {
border-radius: 44% 56% 41% 59%/56% 42% 60% 40%;
}
100% {
border-radius: 52% 48% 61% 39%/44% 59% 41% 57%;
}
}
@keyframes blob-float {
from {
transform: translate3d(0, -14px, 0) rotate(-2deg);
}
to {
transform: translate3d(0, 18px, 0) rotate(3deg);
}
}
header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 220;
background: rgba(255, 255, 255, 0.72);
backdrop-filter: blur(14px) saturate(160%);
-webkit-backdrop-filter: blur(14px) saturate(160%);
}
.header__inner {
max-width: 1360px;
margin: 0 auto;
padding: 0 40px;
height: 80px;
display: flex;
align-items: center;
gap: 40px;
border-bottom: 1px solid var(--line);
}
@media (max-width: 960px) {
.header__inner {
padding: 0 16px;
}
}
.header__logo img {
height: 26px;
width: auto;
}
.header__nav {
margin-left: auto;
display: flex;
gap: 34px;
align-items: center;
}
.header__nav a {
font-family: var(--en);
font-weight: 600;
font-size: 13px;
letter-spacing: 0.08em;
position: relative;
padding: 4px 0;
transition: color 0.25s;
}
.header__nav a:hover {
color: var(--accent);
}
.header__nav a.is-current {
color: var(--accent);
}
@media (max-width: 960px) {
.header__nav {
display: none;
}
}
.header__nav-char {
display: inline-block;
}
.header__nav a:hover .header__nav-char {
animation: nav-char-bounce 0.5s cubic-bezier(0.3, 1.8, 0.4, 1) both;
animation-delay: calc(var(--char-i) * 0.03s);
}
@media (prefers-reduced-motion: reduce) {
.header__nav a:hover .header__nav-char {
animation: none;
}
}
@keyframes nav-char-bounce {
0% {
transform: translateY(0);
}
25% {
transform: translateY(2px) scaleY(0.92);
}
55% {
transform: translateY(-7px);
}
100% {
transform: translateY(0);
}
}
.header__nav .header__nav-link--contact {
position: relative;
overflow: hidden;
background: var(--accent);
color: #fff;
padding: 14px 38px;
border-radius: 999px;
font-weight: 800;
letter-spacing: 0.12em;
margin-left: 10px;
box-shadow: 0 6px 18px rgba(224, 73, 31, 0.32);
transition: transform 0.45s cubic-bezier(0.3, 1.8, 0.4, 1), box-shadow 0.3s, background 0.25s;
animation: contact-pulse 3s ease-in-out infinite;
}
.header__nav .header__nav-link--contact::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 40%;
background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
transform: translateX(-150%) skewX(-18deg);
pointer-events: none;
}
.header__nav .header__nav-link--contact:hover {
background: #c93c14;
color: #fff;
transform: translateY(-3px) scale(1.05);
box-shadow: 0 12px 30px rgba(224, 73, 31, 0.45);
animation: none;
}
.header__nav .header__nav-link--contact:hover::before {
animation: contact-shine 0.7s ease;
}
.header__nav .header__nav-link--contact:active {
transform: translateY(-1px) scale(0.97);
}
@media (prefers-reduced-motion: reduce) {
.header__nav .header__nav-link--contact {
animation: none;
transition: background 0.25s;
}
.header__nav .header__nav-link--contact::before {
display: none;
}
}
@keyframes contact-pulse {
0%, 100% {
box-shadow: 0 6px 18px rgba(224, 73, 31, 0.32);
}
50% {
box-shadow: 0 6px 28px rgba(224, 73, 31, 0.55);
}
}
@keyframes contact-shine {
from {
transform: translateX(-150%) skewX(-18deg);
}
to {
transform: translateX(380%) skewX(-18deg);
}
}
.header__burger {
display: none;
margin-left: auto;
width: 48px;
height: 48px;
background: none;
border: none;
cursor: pointer;
position: relative;
z-index: 210;
}
.header__burger span {
position: absolute;
left: 11px;
width: 26px;
height: 2px;
background: var(--ink);
transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s;
}
.header__burger span:nth-child(1) {
top: 19px;
}
.header__burger span:nth-child(2) {
top: 28px;
}
body.body--menu-open .header__burger span:nth-child(1) {
transform: translateY(4.5px) rotate(45deg);
}
body.body--menu-open .header__burger span:nth-child(2) {
transform: translateY(-4.5px) rotate(-45deg);
}
@media (max-width: 960px) {
.header__burger {
display: block;
}
}
.sp-menu {
position: fixed;
inset: 0;
z-index: 200;
background: rgba(255, 255, 255, 0.86);
backdrop-filter: blur(18px) saturate(150%);
-webkit-backdrop-filter: blur(18px) saturate(150%);
display: flex;
flex-direction: column;
padding: 96px 16px 40px;
visibility: hidden;
opacity: 0;
transition: opacity 0.35s ease, visibility 0s linear 0.35s;
overflow: hidden;
}
body.body--menu-open .sp-menu {
visibility: visible;
opacity: 1;
transition: opacity 0.35s ease;
}
.sp-menu::after {
content: "CELLEC";
position: absolute;
right: -4vw;
bottom: 0;
font-family: var(--en);
font-weight: 800;
font-size: 38vw;
line-height: 1;
color: transparent;
-webkit-text-stroke: 1px var(--line);
pointer-events: none;
user-select: none;
animation: watermark-breathe 7s ease-in-out infinite;
animation-delay: -5s;
}
@media (prefers-reduced-motion: reduce) {
.sp-menu::after {
animation: none;
}
}
.sp-menu li {
border-bottom: 1px solid var(--line);
overflow: hidden;
}
.sp-menu li a {
display: flex;
align-items: baseline;
gap: 18px;
padding: 20px 4px;
transform: translateY(110%);
transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sp-menu li:nth-child(1) a {
transition-delay: 0.08s;
}
.sp-menu li:nth-child(2) a {
transition-delay: 0.14s;
}
.sp-menu li:nth-child(3) a {
transition-delay: 0.2s;
}
.sp-menu li:nth-child(4) a {
transition-delay: 0.26s;
}
.sp-menu li:nth-child(5) a {
transition-delay: 0.32s;
}
.sp-menu li:nth-child(6) a {
transition-delay: 0.38s;
}
body.body--menu-open .sp-menu li a {
transform: none;
}
.sp-menu__idx {
font-family: var(--en);
font-weight: 800;
font-size: 12px;
color: var(--accent);
letter-spacing: 0.1em;
}
.sp-menu__en {
font-family: var(--en);
font-weight: 800;
font-size: clamp(22px, 7vw, 30px);
letter-spacing: 0.01em;
line-height: 1.2;
}
.sp-menu__jp {
margin-left: auto;
font-size: 11px;
font-weight: 700;
color: var(--ink-soft);
white-space: nowrap;
}
.sp-menu li.sp-menu__item--contact {
border-bottom: none;
margin-top: 28px;
}
.sp-menu li.sp-menu__item--contact a {
justify-content: center;
padding: 22px 26px;
background: var(--accent);
color: #fff;
border-radius: 999px;
box-shadow: 0 8px 22px rgba(224, 73, 31, 0.32);
animation: sp-contact-pulse 3s ease-in-out infinite;
}
.sp-menu__item--contact .sp-menu__en {
color: #fff;
}
.sp-menu__cta-arrow {
font-family: var(--en);
font-weight: 800;
}
body.body--menu-open .sp-menu li.sp-menu__item--contact a:active {
transform: scale(0.96) !important;
background: #c93c14;
}
@keyframes sp-contact-pulse {
0%, 100% {
box-shadow: 0 8px 22px rgba(224, 73, 31, 0.32);
}
50% {
box-shadow: 0 8px 30px rgba(224, 73, 31, 0.5);
}
}
@media (prefers-reduced-motion: reduce) {
.sp-menu li.sp-menu__item--contact a {
animation: none;
}
}
.logo-mark {
display: inline-block;
position: relative;
overflow: hidden;
flex-shrink: 0;
}
.logo-mark img {
display: block;
height: 100%;
width: auto;
max-width: none;
}
.logo-mark--head {
width: 20px;
height: 20px;
align-self: center;
}
.logo-mark--sub {
width: 24px;
height: 24px;
}
.logo-mark--cta {
display: block;
width: 36px;
height: 36px;
margin: 0 auto 24px;
}
.logo-mark--bg {
position: absolute;
right: -4%;
top: 4%;
width: min(44vw, 540px);
height: min(44vw, 540px);
opacity: 0.05;
transform: rotate(-8deg);
pointer-events: none;
will-change: transform, opacity;
}
.hero {
min-height: 94vh;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
padding: 120px 40px 56px;
overflow: hidden;
}
.hero::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(to right, var(--line) 1px, transparent 1px) 0 0/25% 100%;
opacity: 0.5;
pointer-events: none;
}
@media (max-width: 960px) {
.hero {
padding: 110px 16px 40px;
min-height: auto;
}
}
.hero__watermark {
position: absolute;
right: -1vw;
bottom: 2vh;
font-family: var(--en);
font-weight: 800;
font-size: 17vw;
line-height: 1;
color: transparent;
-webkit-text-stroke: 1px #ddd;
letter-spacing: -0.02em;
pointer-events: none;
user-select: none;
will-change: transform;
animation: watermark-breathe 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
.hero__watermark {
animation: none;
}
}
@media (max-width: 960px) {
.hero__watermark {
font-size: 34vw;
bottom: 8vh;
}
}
.hero__inner {
max-width: 1360px;
margin: 0 auto;
width: 100%;
position: relative;
perspective: 1100px;
z-index: 3;
}
.hero__title {
font-size: clamp(52px, 8.6vw, 128px);
font-weight: 900;
line-height: 1.28;
letter-spacing: 0.01em;
will-change: transform;
transform-style: preserve-3d;
}
@media (max-width: 960px) {
.hero__title {
font-size: clamp(34px, 10vw, 52px);
}
}
.hero__title-line {
display: block;
overflow: hidden;
}
.hero__title-line > span {
display: inline-block;
transform: translateY(112%);
}
body.body--loaded .hero__title-line > span {
animation: hero-line-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
body.body--loaded .hero__title-line:nth-child(2) > span {
animation-delay: 0.32s;
}
@keyframes hero-line-up {
to {
transform: translateY(0);
}
}
.hero__title-char {
display: inline-block;
will-change: transform;
}
.hero__ghost {
color: transparent;
-webkit-text-stroke: 2px var(--ink);
position: relative;
}
.hero__ghost::after {
content: "";
position: absolute;
left: -2%;
top: 52%;
width: 104%;
height: 7px;
background: var(--accent);
transform: scaleX(0);
transform-origin: left;
}
body.body--loaded .hero__ghost::after {
animation: hero-strike 0.5s cubic-bezier(0.6, 0, 0.2, 1) 1.05s forwards;
}
@keyframes hero-strike {
to {
transform: scaleX(1);
}
}
.hero__marker {
position: relative;
display: inline-block;
z-index: 1;
}
.hero__marker::before {
content: "";
position: absolute;
left: -1%;
bottom: 8%;
width: 102%;
height: 34%;
background: var(--accent);
opacity: 0.22;
transform: scaleX(0);
transform-origin: left;
z-index: -1;
}
body.body--loaded .hero__marker::before {
animation: hero-marker 0.6s cubic-bezier(0.6, 0, 0.2, 1) 1.4s forwards;
}
@keyframes hero-marker {
to {
transform: scaleX(1);
}
}
.hero__sub {
margin-top: 44px;
display: flex;
align-items: center;
gap: 18px;
opacity: 0;
}
.hero__sub p {
font-size: 15px;
color: var(--ink-soft);
font-weight: 500;
}
.hero__sub strong {
color: var(--ink);
}
body.body--loaded .hero__sub {
animation: hero-fade 0.8s ease 1.7s forwards;
}
@keyframes hero-fade {
to {
opacity: 1;
}
}
@media (prefers-reduced-motion: reduce) {
.hero__title-line > span {
transform: none;
animation: none !important;
}
.hero__ghost::after {
transform: scaleX(1);
animation: none !important;
}
.hero__marker::before {
transform: scaleX(1);
animation: none !important;
}
.hero__sub {
opacity: 1;
animation: none !important;
}
}
.ticker {
position: absolute;
left: 0;
right: 0;
bottom: 0;
border-top: 1px solid var(--line);
background: #fff;
overflow: hidden;
height: 56px;
display: flex;
align-items: center;
z-index: 4;
}
@media (max-width: 960px) {
.ticker {
position: relative;
margin-top: 60px;
}
}
.ticker__label {
flex-shrink: 0;
font-family: var(--en);
font-weight: 800;
font-size: 12px;
letter-spacing: 0.18em;
color: var(--accent);
padding: 0 28px;
border-right: 1px solid var(--line);
position: relative;
z-index: 1;
background: #fff;
align-self: stretch;
display: flex;
align-items: center;
}
.ticker__track {
display: flex;
gap: 64px;
white-space: nowrap;
animation: ticker-scroll 45s linear infinite;
padding-left: 32px;
}
.ticker__track span {
font-size: 13px;
color: var(--ink-soft);
}
.ticker__track b {
font-family: var(--en);
font-weight: 600;
color: var(--ink);
margin-right: 14px;
}
@keyframes ticker-scroll {
to {
transform: translateX(-50%);
}
}
section {
padding: 140px 40px;
}
@media (max-width: 960px) {
section {
padding: 84px 16px;
}
}
.sec__inner {
max-width: 1180px;
margin: 0 auto;
}
.sec__head {
display: flex;
align-items: baseline;
gap: 26px;
margin-bottom: 64px;
border-bottom: 2px solid var(--ink);
padding-bottom: 22px;
}
@media (max-width: 960px) {
.sec__head {
flex-wrap: wrap;
gap: 12px;
}
}
.sec__idx {
font-family: var(--en);
font-weight: 800;
font-size: 15px;
color: var(--accent);
letter-spacing: 0.1em;
}
.sec__en {
font-family: var(--en);
font-weight: 800;
font-size: clamp(34px, 4vw, 54px);
letter-spacing: 0.01em;
line-height: 1;
display: inline-block;
will-change: transform;
}
.sec__jp {
font-size: 14px;
font-weight: 700;
color: var(--ink-soft);
margin-left: auto;
}
@media (max-width: 960px) {
.sec__jp {
margin-left: 0;
width: 100%;
}
}
.sec__foot {
margin-top: 50px;
text-align: right;
}
.about__copy h2 {
font-size: clamp(30px, 3.6vw, 48px);
font-weight: 900;
line-height: 1.6;
letter-spacing: 0.02em;
max-width: 900px;
}
.about__body {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 70px;
margin-top: 60px;
align-items: start;
}
.about__body p {
color: var(--ink-soft);
font-size: 15px;
}
@media (max-width: 960px) {
.about__body {
grid-template-columns: 1fr;
gap: 30px;
}
}
.stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
border-top: 1px solid var(--line);
}
@media (max-width: 960px) {
.stats {
grid-template-columns: 1fr;
}
}
.stats__item {
padding: 28px 8px 20px;
border-top: 3px solid transparent;
margin-top: -1px;
}
.stats__item:hover {
border-top-color: var(--accent);
}
.stats .stats__num {
font-family: var(--en);
font-weight: 800;
font-size: 76px;
color: var(--ink);
line-height: 1;
letter-spacing: -0.02em;
}
.stats .stats__num small {
font-family: var(--jp);
font-size: 24px;
font-weight: 900;
margin-left: 2px;
}
.stats .stats__caption {
font-size: 13px;
color: var(--ink-soft);
margin-top: 12px;
line-height: 1.6;
}
.services {
border-top: 1px solid var(--line);
background: #fbfaf8;
}
.svc {
display: grid;
grid-template-columns: 200px 1fr 90px;
gap: 50px;
align-items: center;
padding: 56px 10px;
border-bottom: 1px solid var(--line);
position: relative;
transition: background 0.3s;
}
.svc:first-of-type {
border-top: 1px solid var(--line);
}
.svc:hover {
background: #fff;
}
.svc h3 {
font-size: 26px;
font-weight: 900;
margin-bottom: 14px;
letter-spacing: 0.02em;
}
.svc h3 span {
font-family: var(--en);
font-size: 12px;
font-weight: 800;
letter-spacing: 0.2em;
color: var(--accent);
margin-left: 18px;
}
.svc p {
color: var(--ink-soft);
font-size: 15px;
max-width: 720px;
}
@media (max-width: 960px) {
.svc {
grid-template-columns: 1fr;
gap: 18px;
padding: 40px 4px;
}
}
.svc__no {
font-family: var(--en);
font-weight: 800;
font-size: 88px;
line-height: 1;
color: transparent;
-webkit-text-stroke: 1.5px var(--ink);
transition: all 0.3s;
}
.svc:hover .svc__no {
color: var(--accent);
-webkit-text-stroke: 1.5px var(--accent);
}
.svc__arrow {
font-size: 30px;
color: var(--line);
transition: all 0.3s;
text-align: right;
}
.svc:hover .svc__arrow {
color: var(--accent);
transform: translateX(8px);
}
@media (max-width: 960px) {
.svc__arrow {
display: none;
}
}
.cards {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 34px;
}
@media (max-width: 960px) {
.cards {
grid-template-columns: 1fr;
gap: 40px;
}
}
.card {
display: block;
}
.card h4 {
font-size: 15px;
font-weight: 700;
line-height: 1.7;
margin-top: 18px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.card__thumb {
aspect-ratio: 1200/630;
border: 1px solid var(--line);
position: relative;
padding: 22px 24px;
display: flex;
flex-direction: column;
justify-content: space-between;
background: #fff;
overflow: hidden;
}
.card__thumb::after {
content: "";
position: absolute;
right: 0;
top: 0;
border-style: solid;
border-width: 0 34px 34px 0;
border-color: transparent var(--accent) transparent transparent;
opacity: 0.9;
}
.card__thumb-category {
font-family: var(--en);
font-weight: 800;
font-size: 10px;
letter-spacing: 0.2em;
color: var(--accent);
}
.card__thumb-title {
font-size: 15px;
font-weight: 900;
line-height: 1.6;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.card__thumb-logo {
font-family: var(--en);
font-weight: 800;
font-size: 10px;
letter-spacing: 0.14em;
color: #c4c0b8;
}
.card__meta {
font-family: var(--en);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.12em;
color: var(--ink-soft);
margin-top: 10px;
}
.card__image {
aspect-ratio: 1200/630;
border: 1px solid var(--line);
overflow: hidden;
position: relative;
background: #fff;
}
.card__image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.works {
border-top: 1px solid var(--line);
}
.info {
border-top: 1px solid var(--line);
padding: 100px 40px;
}
.info .sec__en {
font-size: clamp(28px, 3vw, 40px);
}
.info .sec__idx {
display: block;
margin-bottom: 10px;
}
@media (max-width: 960px) {
.info {
padding: 84px 16px;
}
}
.info__grid {
display: grid;
grid-template-columns: 280px 1fr;
gap: 60px;
align-items: start;
}
@media (max-width: 960px) {
.info__grid {
grid-template-columns: 1fr;
gap: 30px;
}
}
.info__list li {
border-bottom: 1px solid var(--line);
}
.info__list li:first-child {
border-top: 1px solid var(--line);
}
.info__list a {
display: flex;
gap: 36px;
align-items: baseline;
padding: 20px 6px;
transition: background 0.3s;
}
.info__list a:hover {
background: var(--accent-soft);
}
.info__date {
font-family: var(--en);
font-weight: 600;
font-size: 13px;
letter-spacing: 0.1em;
color: var(--ink-soft);
flex-shrink: 0;
}
.info__text {
font-size: 14px;
font-weight: 500;
}
.btn-more {
display: inline-flex;
align-items: center;
gap: 1px;
font-family: var(--en);
font-weight: 800;
font-size: 13px;
border-bottom: 2px solid var(--ink);
padding: 4px 2px 6px;
transition: border-color 0.3s, border-bottom-width 0.3s;
}
.btn-more::after {
content: "→";
display: inline-block;
margin-left: 9px;
transition: transform 0.4s cubic-bezier(0.3, 1.8, 0.4, 1);
}
.btn-more:hover {
border-color: var(--accent);
border-bottom-width: 3px;
}
.btn-more:hover::after {
transform: translateX(8px);
}
.btn-more--back::after {
content: "←";
order: -1;
margin-left: 0;
margin-right: 9px;
}
.btn-more--back:hover::after {
transform: translateX(-8px);
}
.btn-more__char {
display: inline-block;
}
.btn-more:hover .btn-more__char {
color: var(--accent);
animation: btn-more-bounce 0.55s cubic-bezier(0.3, 1.8, 0.4, 1) both;
}
@keyframes btn-more-bounce {
0% {
transform: translateY(0);
}
30% {
transform: translateY(3px) scaleY(0.9);
}
60% {
transform: translateY(-8px);
}
100% {
transform: translateY(0);
}
}
@media (prefers-reduced-motion: reduce) {
.btn-more,
.btn-more::after {
transition: none;
}
.btn-more:hover .btn-more__char {
animation: none;
}
}
.tilt {
transform-style: preserve-3d;
will-change: transform;
transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s;
box-shadow: calc(var(--ox) * -14px) calc(10px + var(--oy) * 10px) 28px rgba(22, 22, 22, 0.1);
}
.tilt .tilt__glare {
position: absolute;
inset: 0;
pointer-events: none;
z-index: 2;
opacity: 0;
transition: opacity 0.35s;
background: radial-gradient(260px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.5), transparent 60%);
}
.tilt:hover .tilt__glare {
opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
.tilt {
transition: none;
box-shadow: none;
}
.tilt .tilt__glare {
display: none;
}
}
.to-top {
position: fixed;
right: 28px;
bottom: 28px;
width: 60px;
height: 60px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.65);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
backdrop-filter: blur(10px) saturate(160%);
-webkit-backdrop-filter: blur(10px) saturate(160%);
background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(224, 73, 31, 0.08));
box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.5), 0 14px 32px rgba(22, 22, 22, 0.14);
opacity: 0;
visibility: hidden;
transform: translateY(14px) scale(0.9);
z-index: 80;
transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.4s;
}
.to-top.to-top--visible {
opacity: 1;
visibility: visible;
transform: none;
transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.to-top:active {
transform: scale(0.92) !important;
}
.to-top:hover .to-top__arrow {
transform: translateY(-4px);
}
@media (max-width: 960px) {
.to-top {
right: 16px;
bottom: 16px;
width: 50px;
height: 50px;
}
}
@media (prefers-reduced-motion: reduce) {
.to-top {
transition: opacity 0.2s !important;
}
}
.to-top__ring {
position: absolute;
inset: 0;
width: 60px;
height: 60px;
transform: rotate(-90deg);
pointer-events: none;
z-index: 1;
}
@media (max-width: 960px) {
.to-top__ring {
width: 50px;
height: 50px;
}
}
.to-top__ring-bg {
fill: none;
stroke: rgba(22, 22, 22, 0.12);
stroke-width: 2;
}
.to-top__ring-progress {
fill: none;
stroke: var(--accent);
stroke-width: 2;
stroke-linecap: round;
stroke-dasharray: 157;
stroke-dashoffset: 157;
}
.to-top__arrow {
position: relative;
z-index: 1;
font-family: var(--en);
font-weight: 800;
font-size: 17px;
line-height: 1;
color: var(--ink);
transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 960px) {
.to-top__arrow {
font-size: 14px;
}
}
@media (prefers-reduced-motion: reduce) {
.to-top__arrow {
transition: opacity 0.2s !important;
}
}
.cta {
position: relative;
text-align: center;
padding: 150px 40px;
border-top: 1px solid var(--line);
overflow: hidden;
}
@media (max-width: 960px) {
.cta {
padding: 90px 16px;
}
}
.cta__watermark {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-family: var(--en);
font-weight: 800;
font-size: 16vw;
line-height: 1;
color: transparent;
-webkit-text-stroke: 1px var(--line);
pointer-events: none;
user-select: none;
white-space: nowrap;
animation: watermark-breathe 7s ease-in-out infinite;
animation-delay: -3s;
}
@media (prefers-reduced-motion: reduce) {
.cta__watermark {
animation: none;
}
}
.cta__inner {
position: relative;
}
.cta__lead {
font-size: clamp(20px, 2.4vw, 30px);
font-weight: 900;
margin-bottom: 46px;
line-height: 2;
}
.cta__button {
display: inline-flex;
align-items: center;
gap: 14px;
font-family: var(--en);
font-weight: 800;
font-size: 15px;
letter-spacing: 0.14em;
background: var(--ink);
color: #fff;
border-radius: 999px;
padding: 22px 64px;
transition: background 0.3s;
}
.cta__button::after {
content: "→";
}
.cta__button:hover {
background: var(--accent);
}
.cta__tel {
margin-top: 32px;
font-size: 13px;
color: var(--ink-soft);
}
.cta__tel b {
font-family: var(--en);
font-size: 18px;
color: var(--ink);
letter-spacing: 0.06em;
margin-left: 10px;
}
footer {
background: #161616;
color: #ddd;
padding: 70px 40px 40px;
}
@media (max-width: 960px) {
footer {
padding: 56px 16px 32px;
}
}
.footer__inner {
max-width: 1180px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 40px;
flex-wrap: wrap;
}
.footer__logo img {
height: 24px;
width: auto;
filter: brightness(10);
}
.footer__address {
font-size: 13px;
color: #999;
margin-top: 18px;
line-height: 2;
}
.footer__nav {
display: flex;
gap: 28px;
}
.footer__nav a {
font-family: var(--en);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.1em;
color: #bbb;
}
.footer__nav a:hover {
color: #fff;
}
.footer__copyright {
max-width: 1180px;
margin: 50px auto 0;
padding-top: 24px;
border-top: 1px solid #2c2c2c;
font-family: var(--en);
font-size: 11px;
color: #777;
letter-spacing: 0.1em;
}.hcb_wrap.hcb_wrap{display:block;margin-bottom:2em;margin-top:2em;padding:0;position:relative;z-index:0}.hcb_wrap.hcb_wrap pre{-webkit-overflow-scrolling:touch;border-radius:0;box-sizing:border-box;display:block;font-family:var(--hcb-font-family,"Menlo","Consolas","Hiragino Kaku Gothic ProN","Hiragino Sans","Meiryo",sans-serif);font-size:var(--hcb-font-size,14px);letter-spacing:.1px;line-height:1;margin:0;overflow:auto;padding:1.75em 1.5em;position:static}.hcb_wrap.hcb_wrap code,.hcb_wrap.hcb_wrap pre{word-wrap:normal;background:var(--hcb-color--bg,#f7f6f6);border:none;color:var(--hcb-color--text,#1f1e1e);-webkit-hyphens:none;hyphens:none;-o-tab-size:4;tab-size:4;text-align:left;text-shadow:0 1px var(--hcb-color--text-shadow,#fff);white-space:pre;word-break:normal;word-spacing:normal}.hcb_wrap.hcb_wrap code,.hcb_wrap.hcb_wrap span{box-sizing:border-box;font-family:inherit;font-size:inherit;line-height:1.5;margin:0;padding:0}.hcb_wrap .line-highlight{background:var(--hcb-color--highlight,hsla(24,20%,49%,.1));font-size:inherit;left:0;line-height:inherit;margin-top:1.75em;padding:0;pointer-events:none;position:absolute;right:0;white-space:pre}.hcb_wrap .line-highlight:before,.hcb_wrap .line-highlight[data-end]:after{background-color:var(--hcb-color--highlight-bg,#b1aead);border-radius:0;box-sizing:border-box;color:var(--hcb-color--highlight-text,#f5f2f0);content:attr(data-start);font-size:12px;font-weight:700;left:0;line-height:inherit;min-width:1.5em;padding:1px 2px;position:absolute;text-align:center;text-shadow:none;top:0;vertical-align:middle}.hcb_wrap .line-highlight[data-end]:after{bottom:0;content:attr(data-end);top:auto}.hcb_wrap .line-numbers .line-highlight:after,.hcb_wrap .line-numbers .line-highlight:before{content:none}.hcb_wrap pre.line-numbers{counter-reset:linenumber;padding-left:3.75em;position:static}.hcb_wrap pre.line-numbers>code{position:relative;white-space:inherit}.hcb_wrap .line-numbers .line-numbers-rows{border-right:1px solid var(--hcb-color--line-numbers,#999);font-size:inherit;left:-3.75em;letter-spacing:-1px;pointer-events:none;position:absolute;top:-2px;-webkit-user-select:none;user-select:none;width:3em}.hcb_wrap .line-numbers-rows>span{counter-increment:linenumber;display:block;pointer-events:none}.hcb_wrap .line-numbers-rows>span:before{color:var(--hcb-color--line-numbers,#999);content:counter(linenumber);display:block;padding-right:.8em;text-align:right}.hcb_wrap pre:before{background-color:var(--hcb-color--lang--bg,#dedede);box-sizing:border-box;color:var(--hcb-color--lang--text,#1f1e1e);content:attr(data-lang);font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:20px;min-width:4em;padding:0 10px;position:absolute;right:0;text-align:center;top:0;z-index:1}.hcb_wrap .hcb-clipboard+pre:before{right:26px}.hcb_wrap pre[data-file]:before{background-image:var(--hcb-file-icon);background-position:center left 8px;background-repeat:no-repeat;background-size:auto 10px;content:attr(data-file);padding:0 8px 0 20px}.hcb_wrap pre[data-show-lang="0"]:not([data-file]):before{content:none}.hcb_wrap .hcb-clipboard{background-color:hsla(0,0%,100%,.8);background-image:url(//cellec.jp/wp-content/plugins/highlighting-code-block/assets/img/clipborad.svg);background-position:50%;background-repeat:no-repeat;background-size:16px auto;border:none;border-radius:1px;box-sizing:border-box;height:20px;padding:0;position:absolute;right:0;text-align:center;top:0;width:20px;z-index:1}.hcb_wrap .hcb-clipboard.-done{background-image:url(//cellec.jp/wp-content/plugins/highlighting-code-block/assets/img/copied.svg)}.hcb_wrap .hcb-clipboard.-done:before{bottom:100%;content:"Copied!";font-family:Arial,Helvetica,sans-serif;font-size:14px;line-height:1.5;position:absolute;right:0}.hcb_wrap pre::-webkit-scrollbar{height:6px}.hcb_wrap pre::-webkit-scrollbar-track{background:var(--hcb-color--scrollbar-track,hsla(0,0%,59%,.1));border:none}.hcb_wrap pre::-webkit-scrollbar-thumb{background:var(--hcb-color--scrollbar-thumb,hsla(0,0%,59%,.25));border-radius:3px}:not(pre)>code.prism{border-radius:.3em;padding:.1em;white-space:normal}body{--hcb-color--text:#1f1e1e;--hcb-color--text-shadow:#fff;--hcb-color--bg:#f7f6f6;--hcb-color--lang--text:#1f1e1e;--hcb-color--lang--bg:#dedede;--hcb-color--line-numbers:#999;--hcb-color--highlight:hsla(24,20%,49%,.1);--hcb-color--highlight-text:#f5f2f0;--hcb-color--highlight-bg:#b1aead;--hcb-file-icon:url(//cellec.jp/wp-content/plugins/highlighting-code-block/assets/img/file-icon-light.svg);--hcb-color--scrollbar-track:rgba(0,0,0,.05);--hcb-color--scrollbar-thumb:#0000001a}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#5f5f5f}.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.class-name,.token.inserted,.token.selector,.token.string{color:#407b08}.language-css .token.string,.style .token.string,.token.entity,.token.url{color:#9a6e3a}.token.atrule,.token.attr-value,.token.function{color:#07a}.token.keyword,.token.operator{color:#c72c4c}.token.important,.token.keyword.this,.token.regex,.token.variable{color:#f18106}.token.bold{font-weight:700}.token.builtin,.token.italic,.token.keyword.def{font-style:italic}.token.entity{cursor:help}.token.delimiter.important{color:#183d86;font-weight:400}@media screen and (max-width:599px){.hcb_wrap.hcb_wrap pre{font-size:var(--hcb-font-size--mobile,13px)}}