﻿@charset "UTF-8";

/* =========================
   ROOT
========================= */
:root{
  --bg-r:255;
  --bg-g:255;
  --bg-b:255;

  --text-r:17;
  --text-g:17;
  --text-b:17;

  --muted-r:88;
  --muted-g:88;
  --muted-b:88;

  --soft-r:118;
  --soft-g:118;
  --soft-b:118;

  --panel-strong-r:255;
  --panel-strong-g:255;
  --panel-strong-b:255;
  --panel-strong-a:.82;

  --border-r:0;
  --border-g:0;
  --border-b:0;

  --shadow-r:0;
  --shadow-g:0;
  --shadow-b:0;

  --line-r:0;
  --line-g:0;
  --line-b:0;

  --container:1180px;
  --header-h:76px;

  --ease:cubic-bezier(.22,1,.36,1);
  --ease-soft:cubic-bezier(.19,1,.22,1);

  --orb-x:18%;
  --orb-y:78%;
}

@media (max-width:767px){
  :root{
    --header-h:68px;
  }
}

/* =========================
   RESET / BASE
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  background:#fff;
  overflow-x:hidden;
}

body{
  position:relative;
  overflow-x:hidden;
  background:transparent;
  color:rgb(var(--text-r),var(--text-g),var(--text-b));
  line-height:1.75;
  letter-spacing:.01em;
  text-align:left;
  -webkit-text-size-adjust:none;
}

body.menu-open{
  overflow:hidden;
}

img{
  display:block;
  height:auto;
	width: 100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

button{
  background:none;
  border:none;
  cursor:pointer;
}

ul,
ol{
  list-style:none;
}

main{
  width:100%;
  padding-top:var(--header-h);
  overflow:hidden;
}

section{
  position:relative;
  padding:120px 0;
  scroll-margin-top:96px;
}

@media (max-width:767px){
  section{
    padding:92px 0;
    scroll-margin-top:84px;
  }
}

/* =========================
   レインボカラー
========================= */
.color-grad{
  background:linear-gradient(
    90deg,
    #5b8cff,
    #8e6cff,
    #6fd3b5,
    #5b8cff
  );
  background-size:300% 300%;
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  animation:cgGradient 8s ease infinite;
}

@keyframes cgGradient{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}


/* =========================
   UTILITY
========================= */
.forPc{
  display:block;
}

.forMobile{
  display:none;
}

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

  .forMobile{
    display:block;
  }
}

/* =========================
   CONTAINER
========================= */
.container{
	padding: 0 5%;
    max-width: 1280px;
    margin: 0 auto;
}

/* =========================
   LINE UTILITY
========================= */
.wLine{
  display:flex;
  align-items:center;
}

.wLine::before,
.wLine::after{
  content:"";
  flex-grow:1;
  height:1px;
  background-color:#222;
}

.wLine::before{
  margin-right:1rem;
}

.wLine::after{
  margin-left:1rem;
}
/* leftLine */
.leftLine {
	line-height: 100%;
	display: flex;
	align-items: center;
}
.leftLine:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
	margin-left: 2%;
}

/* =========================
   SECTION HEADING
========================= */
.section-heading{
  max-width:900px;
  margin:0 auto 56px;
  text-align:center;
}

.section-label{
  display:inline-block;
  margin-bottom:12px;
  font-size:100%;
  font-weight:800;
  letter-spacing:.18em;
}

.section-heading h2{
  margin-bottom:18px;
  font-size:clamp(24px,4.6vw,50px);
  line-height:1.08;
  letter-spacing:-.04em;
}

.section-heading p{
  font-size:clamp(100%, 1.5vw, 112%);
  line-height:1.95;
}

@media (max-width:767px){
  .section-heading{
    margin-bottom:38px;
    text-align:left;
  }

  .section-heading h2{
    display:flex;
    align-items:center;
    line-height:1.4;
  }

  .section-heading h2::after{
    content:"";
    flex-grow:1;
    margin-left:2%;
    border-top:1px solid;
  }

  .section-heading p{
    font-size:14px;
    line-height:1.85;
	  width: 100%;
  }
}

.section-heading .face01-grid {
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width:767px){
	.section-heading .face01-grid.face-top {
		display: block;
	}
}
.section-heading .face01-grid p {
	text-align: left;
}
.face10 {
	width: 10%;
	margin-right: 15px;
}
.face20 {
	width: 38%;
	margin-right: 10px;
}
.hand10 {
	width: 10%;
	margin-right: 15px;
}
.body15 {
	width: 18%;
	margin-right: 15px;
}
@media (max-width:767px){
	.face10 {
		width: 22%;
		margin-right: 5%;
	}
	.face20 {
		width: 30%;
		margin-right: 0;
	}
	.hand10 {
		width: 18%;
		margin-right: 5%;
	}
	.body15 {
		width: 25%;
		margin-right: 5%;
	}
}

/* =========================
   BUTTON
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:178px;
  min-height:56px;
  padding:0 22px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  letter-spacing:.04em;
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    opacity .3s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:rgba(var(--text-r),var(--text-g),var(--text-b),.98);
  color:#fff;
  box-shadow:0 14px 34px rgba(var(--shadow-r),var(--shadow-g),var(--shadow-b),.14);
}

.btn-primary:hover{
  opacity:.92;
  box-shadow:0 20px 42px rgba(var(--shadow-r),var(--shadow-g),var(--shadow-b),.18);
}

.btn-secondary{
  background:rgba(255,255,255,.68);
  color:rgb(var(--text-r),var(--text-g),var(--text-b));
  border-color:rgba(0,0,0,.08);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.84);
  box-shadow:0 14px 30px rgba(var(--shadow-r),var(--shadow-g),var(--shadow-b),.08);
}

@media (max-width:767px){
  .btn{
    min-width:100%;
    min-height:52px;
  }
}

/* =========================
   CARD BASE
========================= */
.service-card,
.work-card,
.flow-card,
.about-card,
.area-card,
.cta-box{
  background:rgba(var(--panel-strong-r),var(--panel-strong-g),var(--panel-strong-b),var(--panel-strong-a));
  border:1px solid rgba(var(--border-r),var(--border-g),var(--border-b),.08);
  box-shadow:
    0 16px 40px rgba(var(--shadow-r),var(--shadow-g),var(--shadow-b),.06),
    0 1px 0 rgba(255,255,255,.5) inset;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

/* =========================
   FADE ANIMATION
========================= */
.fade-up{
  opacity:0;
  transform:translateY(24px);
  transition:
    opacity .8s ease,
    transform .8s var(--ease);
}

.fade-up.is-inview{
  opacity:1;
  transform:translateY(0);
}

.delay-1{
  transition-delay:.06s;
}

.delay-2{
  transition-delay:.12s;
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

  .fade-up{
    opacity:1;
    transform:none;
  }
}