@charset "UTF-8";

/* ==========================================================================
   ASCENDANT Inc. - corporate one page
   ========================================================================== */

/* --------------------------------------------------------------------------
   variables
   -------------------------------------------------------------------------- */
:root{
  --navy:#1b2a53;
  --navy-deep:#131f3d;
  --gold:#b99a55;
  --gold-light:#d8c48d;
  --ink:#2a2f3a;
  --gray:#6b7280;
  --line:#e3e6ec;
  --bg:#ffffff;
  --bg-soft:#f6f7f9;
}

/* --------------------------------------------------------------------------
   base
   -------------------------------------------------------------------------- */
*{box-sizing:border-box;}

body{
  margin:0;
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.9;
  font-size:15px;
  -webkit-font-smoothing:antialiased;
}

a{color:var(--navy);}

.wrap{max-width:1040px;margin:0 auto;padding:0 24px;}

/* --------------------------------------------------------------------------
   header
   -------------------------------------------------------------------------- */
.site-header{
  position:sticky;top:0;z-index:10;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;height:64px;}

.logo{
  font-family:"Noto Serif JP",serif;font-weight:600;letter-spacing:.12em;
  color:var(--navy);text-decoration:none;font-size:16px;line-height:1.3;
}
.logo small{
  display:block;font-family:"Noto Sans JP",sans-serif;font-size:9px;
  letter-spacing:.3em;color:var(--gold);font-weight:500;
}

.gnav{display:flex;gap:24px;font-size:13px;}
.gnav a{text-decoration:none;color:var(--gray);}
.gnav a:hover{color:var(--navy);}

/* --------------------------------------------------------------------------
   hero
   -------------------------------------------------------------------------- */
.hero{
  background:linear-gradient(135deg,var(--navy-deep) 0%,var(--navy) 60%,#26375f 100%);
  color:#fff;padding:96px 0 88px;position:relative;overflow:hidden;
}
.hero .en{font-size:11px;letter-spacing:.4em;color:var(--gold-light);margin:0 0 20px;}
.hero h1{
  font-family:"Noto Serif JP",serif;font-weight:600;
  font-size:clamp(24px,4.2vw,40px);line-height:1.6;margin:0 0 24px;letter-spacing:.04em;
}
.hero p{max-width:660px;margin:0;color:rgba(255,255,255,.82);font-size:15px;}
.hero .bar{
  width:280px;height:3px;margin:32px 0 0;
  background:linear-gradient(90deg,var(--gold) 0 60%,var(--navy-deep) 60% 100%);
}

/* --------------------------------------------------------------------------
   section common
   -------------------------------------------------------------------------- */
section{padding:80px 0;}
section.soft{background:var(--bg-soft);}

.sec-en{font-size:11px;letter-spacing:.34em;color:var(--gold);margin:0 0 6px;}

h2{
  font-family:"Noto Serif JP",serif;font-weight:600;letter-spacing:.08em;
  font-size:26px;margin:0 0 8px;color:var(--navy);
}
.h2-line{width:64px;height:2px;background:var(--gold);margin:0 0 36px;}

/* --------------------------------------------------------------------------
   services
   -------------------------------------------------------------------------- */
.services{list-style:none;padding:0;margin:0;display:grid;gap:10px;}
.services li{
  display:flex;gap:16px;align-items:center;
  background:#fff;border-left:3px solid var(--gold);
  padding:16px 20px;font-size:14px;
}
.services .num{font-size:11px;color:var(--gold);letter-spacing:.1em;min-width:22px;}

/* --------------------------------------------------------------------------
   company table
   -------------------------------------------------------------------------- */
table{width:100%;border-collapse:collapse;}
th,td{
  text-align:left;padding:16px 8px;border-bottom:1px solid var(--line);
  vertical-align:top;font-weight:400;
}
th{width:120px;color:var(--gray);font-size:13px;letter-spacing:.08em;white-space:nowrap;}
td{color:var(--navy);}

/* --------------------------------------------------------------------------
   ceo profile
   -------------------------------------------------------------------------- */
#profile{padding-bottom:96px;}

.profile{
  display:grid;
  grid-template-columns:minmax(0,380px) 1fr;
  gap:64px;align-items:start;
}

/* photo — 背後にゴールドの矩形をオフセットで重ねる */
.profile .photo{position:relative;}
.profile .photo::before{
  content:"";position:absolute;
  left:-20px;bottom:-20px;width:100%;height:100%;
  background:rgba(185,154,85,.14);
}
.profile .photo img{
  position:relative;z-index:1;
  display:block;width:100%;height:auto;
  aspect-ratio:3 / 4;
  object-fit:cover;object-position:center 12%;
}

.profile-body{padding-top:8px;}

.profile .meta{margin:0 0 32px;padding-bottom:28px;border-bottom:1px solid var(--line);}
.profile .meta dt{font-size:11px;letter-spacing:.3em;color:var(--gold);margin-bottom:12px;}
.profile .meta dd{margin:0;font-size:15px;}
.profile .meta dd.name{
  font-family:"Noto Serif JP",serif;font-size:26px;
  color:var(--navy);letter-spacing:.06em;line-height:1.5;margin-bottom:10px;
}
.profile .meta dd.name span{
  display:block;font-family:"Noto Sans JP",sans-serif;
  font-size:11px;letter-spacing:.24em;color:var(--gray);margin-bottom:6px;
}

.profile .career{font-size:14px;}
.profile .career h3{
  font-size:11px;letter-spacing:.3em;color:var(--gold);
  margin:0 0 10px;font-weight:500;
}
.profile .career p{margin:0;}

/* --------------------------------------------------------------------------
   contact
   -------------------------------------------------------------------------- */
.contact{background:var(--navy-deep);color:#fff;text-align:center;}
.contact h2{color:#fff;}
.contact .h2-line{margin:0 auto 36px;}
.contact .tel{
  font-family:"Noto Serif JP",serif;font-size:clamp(26px,5vw,38px);
  letter-spacing:.06em;margin:0 0 8px;
}
.contact .tel a{color:#fff;text-decoration:none;}
.contact .note{font-size:13px;color:rgba(255,255,255,.7);margin:0;}

/* --------------------------------------------------------------------------
   footer
   -------------------------------------------------------------------------- */
footer{padding:28px 0;font-size:12px;color:var(--gray);border-top:1px solid var(--line);}
footer .wrap{display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;}
footer .brand{letter-spacing:.3em;color:var(--navy);}

/* --------------------------------------------------------------------------
   responsive
   -------------------------------------------------------------------------- */
@media(max-width:720px){
  .gnav{display:none;}
  section{padding:56px 0;}
  th{width:96px;font-size:12px;}
  #profile{padding-bottom:64px;}
  .profile{grid-template-columns:1fr;gap:40px;}
  .profile .photo{max-width:320px;margin:0 auto 0 0;}
  .profile .photo::before{left:-12px;bottom:-12px;}
  .profile-body{padding-top:0;}
  .profile .meta dd.name{font-size:22px;}
}
