@charset "UTF-8";
:root{
  --black:#080808;
  --deep:#111111;
  --cream:#f4efe6;
  --paper:#fbf8f1;
  --gold:#b78b45;
  --gold2:#d4b06a;
  --text:#24211d;
  --muted:#6f675d;
  --line:rgba(183,139,69,.42);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Helvetica Neue","Hiragino Mincho ProN","Yu Mincho","Yu Gothic",serif;
  color:var(--text);
  background:var(--cream);
  line-height:1.9;
  letter-spacing:.03em;
}

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

img{
  max-width:100%;
  display:block;
}

/* =========================
HEADER
========================= */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  padding:24px 5vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:linear-gradient(to bottom,rgba(0,0,0,.62),rgba(0,0,0,0));
}

.logo img{
  height:48px;
  width:auto;
}

/* logo画像がない場合の仮テキスト */
.logo-text{
  color:var(--gold2);
  font-family:Georgia,"Times New Roman",serif;
  font-size:25px;
  letter-spacing:.15em;
  line-height:1;
}

.logo-text span{
  display:block;
  color:#fff;
  font-size:11px;
  letter-spacing:.18em;
  margin-top:6px;
}

.nav{
  display:flex;
  gap:34px;
  color:#fff;
  font-size:13px;
  letter-spacing:.12em;
}

.nav a{
  opacity:.92;
}

.nav a:hover{
  color:var(--gold2);
}

.menu-toggle{
  display:none;
  color:#fff;
  font-size:31px;
  cursor:pointer;
  z-index:200;
  line-height:1;
}

/* =========================
HERO
========================= */

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1.04fr .96fr;
  background:
    radial-gradient(circle at 78% 42%,rgba(255,255,255,.14),transparent 30%),
    linear-gradient(90deg,#030303 0%,#0c0c0c 48%,#252525 100%);
  color:#fff;
  overflow:hidden;
}

.hero-copy{
  padding:150px 0 86px 7vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  z-index:2;
}

.hero-photo{
  min-height:650px;
  background:
    linear-gradient(90deg,rgba(8,8,8,.05),rgba(8,8,8,.16)),
    url("../images/hero.jpg") center bottom/cover no-repeat;
}

.kicker{
  color:var(--gold2);
  font-size:17px;
  letter-spacing:.14em;
  margin-bottom:24px;
}

.hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(58px,8vw,112px);
  font-weight:400;
  letter-spacing:.11em;
  line-height:.95;
  margin-bottom:22px;
}

.sub-title{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(26px,3vw,36px);
  letter-spacing:.16em;
  margin-bottom:24px;
}

.keywords{
  color:var(--gold2);
  letter-spacing:.13em;
  margin-bottom:30px;
  font-family:Georgia,"Times New Roman",serif;
}

.lead{
  font-size:17px;
  line-height:2.25;
  max-width:560px;
  color:#f1eee9;
}

/* =========================
SERVICE
========================= */

.section{
  padding:88px 6vw;
}

.section-title{
  text-align:center;
  color:var(--gold);
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  letter-spacing:.18em;
  margin-bottom:8px;
  font-weight:400;
}

.section-sub{
  text-align:center;
  margin-bottom:54px;
  letter-spacing:.12em;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  max-width:1120px;
  margin:auto;
}

.service{
  text-align:center;
  padding:0 46px;
  border-right:1px solid var(--line);
}

.service:last-child{
  border-right:none;
}

.icon{
  color:var(--gold);
  font-size:42px;
  margin-bottom:18px;
  font-family:Georgia,"Times New Roman",serif;
}

.service h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  letter-spacing:.08em;
  margin-bottom:18px;
  font-weight:400;
  color:var(--gold);
}

.service p{
  font-size:15px;
  line-height:2.1;
}

/* =========================
ABOUT
========================= */

.about{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  background:#101010;
  color:#fff;
}

.about-img{
  background:
    linear-gradient(rgba(0,0,0,.08),rgba(0,0,0,.08)),
    url("../images/gym.jpg") center/cover no-repeat;
  min-height:360px;
}

.about-text{
  padding:74px 8vw;
}

.label{
  color:var(--gold2);
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:.18em;
  margin-bottom:16px;
}

.about h2{
  font-size:34px;
  font-weight:400;
  margin-bottom:28px;
  line-height:1.6;
}

.about p{
  color:#ddd;
  max-width:650px;
}

/* =========================
PROFILE
========================= */

.profile{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:var(--paper);
}

.profile-copy{
  padding:78px 8vw;
}

.profile-copy h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:32px;
  font-weight:400;
  letter-spacing:.07em;
  line-height:1.3;
}

.profile-copy .jp{
  font-size:19px;
  margin:8px 0 28px;
}

.profile-photo{
  background:
    linear-gradient(rgba(244,239,230,.05),rgba(244,239,230,.05)),
    url("../images/profile.jpg") center/cover no-repeat;
  min-height:460px;
}

/* =========================
WORKS
========================= */

.works{
  background:#101010;
  color:#fff;
  padding:54px 6vw;
}

.works-grid{
  max-width:1120px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}

.work{
  text-align:center;
  padding:14px 28px;
  border-right:1px solid var(--line);
}

.work:last-child{
  border-right:none;
}

.work-icon{
  color:var(--gold2);
  font-size:31px;
  margin-bottom:12px;
}

.work p{
  font-size:14px;
  line-height:1.8;
}

/* =========================
CONTACT
========================= */

.contact{
  position:relative;
  background:
    linear-gradient(rgba(0,0,0,.68),rgba(0,0,0,.72)),
    url("contact.jpg") center/cover no-repeat;
  color:#fff;
  text-align:center;
  padding:82px 5vw;
}

.contact .section-title{
  margin-bottom:10px;
}

.btn{
  display:inline-block;
  margin-top:26px;
  padding:14px 58px;
  border:1px solid var(--gold);
  color:var(--gold2);
  letter-spacing:.12em;
  background:rgba(183,139,69,.13);
}

.btn:hover{
  background:var(--gold);
  color:#fff;
}

/* =========================
FOOTER
========================= */

.footer{
  background:#050505;
  color:#aaa;
  padding:24px 5vw;
  font-size:12px;
  text-align:center;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

  .header{
    padding:20px 5vw;
  }

  .logo img{
    height:40px;
  }

  .logo-text{
    font-size:21px;
  }

  .nav{
    position:fixed;
    top:0;
    right:-100%;
    width:270px;
    height:100vh;
    background:#101010;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    padding-top:112px;
    gap:28px;
    transition:.3s;
    box-shadow:-12px 0 30px rgba(0,0,0,.35);
  }

  .nav.active{
    right:0;
  }

  .menu-toggle{
    display:block;
  }

  .hero{
    grid-template-columns:1fr;
  }

  .hero-photo{
    order:-1;
    min-height:420px;
  }

  .hero-copy{
    padding:48px 7vw 70px;
  }

  .hero h1{
    font-size:clamp(50px,15vw,82px);
  }

  .sub-title{
    font-size:24px;
  }

  .service-grid,
  .about,
  .profile,
  .works-grid{
    grid-template-columns:1fr;
  }

  .service{
    border-right:none;
    border-bottom:1px solid var(--line);
    padding:34px 20px;
  }

  .service:last-child{
    border-bottom:none;
  }

  .about-text,
  .profile-copy{
    padding:58px 7vw;
  }

  .profile-photo{
    min-height:420px;
  }

  .work{
    border-right:none;
    border-bottom:1px solid var(--line);
    padding:24px 20px;
  }

  .work:last-child{
    border-bottom:none;
  }
}
	
	.performance{
  background:#0d0d0d;
}

.perf-wrap{

  display:grid;

  grid-template-columns:
  .9fr 1.1fr;

  gap:70px;

  align-items:center;
}

.perf-photo{

  min-height:700px;

  background:
  url("../images/bodymake.jpg")
  center/cover no-repeat;
}

.perf-content{
  color:#fff;
}

.perf-text{

  color:#ccc;

  margin-bottom:40px;

  max-width:600px;
}

.perf-grid{

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:24px;
}

.perf-item{

  border:
  1px solid rgba(183,139,69,.25);

  padding:26px;
}

.perf-item h3{

  color:#d7b879;

  margin-bottom:14px;

  font-size:20px;

  font-weight:400;
}

.perf-item p{
  color:#ccc;
}

@media(max-width:900px){

  .perf-wrap,
  .perf-grid{

    grid-template-columns:1fr;
  }

  .perf-photo{
    min-height:420px;
  }

}
	
	.company{
  background:#0a0a0a;
  color:#fff;
}

.company-head{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:50px;
  align-items:end;
  margin-bottom:44px;
}

.company-head p{
  color:#cfc7bc;
  line-height:2;
}

.company-card{
  border:1px solid rgba(183,139,69,.45);
  background:
    linear-gradient(135deg,rgba(183,139,69,.12),rgba(255,255,255,.02));
}

.company-row{
  display:grid;
  grid-template-columns:260px 1fr;
  border-bottom:1px solid rgba(183,139,69,.25);
  min-height:72px;
}

.company-row:last-child{
  border-bottom:none;
}

.company-row span{
  color:#d7b879;
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:.14em;
  padding:22px 28px;
  border-right:1px solid rgba(183,139,69,.25);
}

.company-row p{
  color:#eee;
  padding:22px 30px;
}

@media(max-width:900px){
  .company-head,
  .company-row{
    grid-template-columns:1fr;
  }

  .company-row span{
    border-right:none;
    padding-bottom:4px;
  }

  .company-row p{
    padding-top:4px;
  }
}
	.perf-single{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}

.credential-list{
  border:1px solid rgba(183,139,69,.35);
  background:rgba(255,255,255,.03);
}

.credential-row{
  display:grid;
  grid-template-columns:180px 1fr;
  border-bottom:1px solid rgba(183,139,69,.25);
}

.credential-row:last-child{
  border-bottom:none;
}

.credential-row span{
  color:#d7b879;
  padding:20px 24px;
  border-right:1px solid rgba(183,139,69,.25);
  letter-spacing:.12em;
}

.credential-row p{
  color:#eee;
  padding:20px 26px;
}

.company .label{
  margin-bottom:10px;
}

.company-card{
  border:1px solid rgba(183,139,69,.45);
  background:linear-gradient(135deg,rgba(183,139,69,.10),rgba(255,255,255,.02));
}

.company-row{
  display:grid;
  grid-template-columns:180px 1fr;
  border-bottom:1px solid rgba(183,139,69,.25);
}

.company-row:last-child{
  border-bottom:none;
}

.company-row span{
  color:#d7b879;
  padding:20px 24px;
  border-right:1px solid rgba(183,139,69,.25);
  letter-spacing:.12em;
}

.company-row p{
  color:#eee;
  padding:20px 26px;
}

@media(max-width:900px){
  .perf-single,
  .credential-row,
  .company-row{
    grid-template-columns:1fr;
  }

  .credential-row span,
  .company-row span{
    border-right:none;
    padding-bottom:4px;
  }

  .credential-row p,
  .company-row p{
    padding-top:4px;
  }
}
/* =========================
RESULTS
========================= */

.results{

  background:
  linear-gradient(
    180deg,
    #f7f2ea 0%,
    #efe6d8 100%
  );

  color:#222;
}

.results-lead{

  max-width:760px;

  margin-bottom:50px;

  color:#666;

  line-height:2.1;
}

.results-grid{

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:28px;
}

.result-card{

  position:relative;

  border:
  1px solid rgba(183,139,69,.22);

  background:
  linear-gradient(
    135deg,
    rgba(255,255,255,.95),
    rgba(250,245,236,.88)
  );

  padding:42px;

  transition:.35s;

  overflow:hidden;

  box-shadow:
  0 10px 30px rgba(0,0,0,.05);

  backdrop-filter:blur(6px);
}

.result-card:hover{

  border-color:
  rgba(183,139,69,.55);

  transform:
  translateY(-4px);

  box-shadow:
  0 18px 40px rgba(0,0,0,.10);
}

.result-num{

  position:relative;

  color:
  rgba(183,139,69,.42);

  font-family:
  Georgia,
  serif;

  font-size:86px;

  line-height:.9;

  letter-spacing:-.02em;

  margin-bottom:10px;

  font-weight:400;
}

.result-card h3{

  position:relative;

  z-index:2;

  color:#9f6f2d;

  font-size:30px;

  font-weight:400;

  margin-top:-18px;

  margin-bottom:22px;

  letter-spacing:.03em;
}

.result-card p{

  position:relative;

  z-index:2;

  color:#555;

  line-height:2;

  font-size:15px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

  .results-grid{

    grid-template-columns:1fr;
  }

  .result-card{

    padding:34px;
  }

  .result-num{

    font-size:64px;
  }

  .result-card h3{

    font-size:24px;

    margin-top:-8px;
  }

}