:root{
  --navy:#242b59;
  --navy2:#161b33;
  --ink:#0c1020;
  --gray:#8a8f9c;
  --black: #1f2a44;

  --bg:#fbfbfd;
  --bgAlt:#f3f4f8;
  --card:#ffffff;

  --text:#0c1020;
  --muted:#5a6275;
  --line: rgba(36,43,89,.14);

  --shadow: 0 14px 34px rgba(12,16,32,.08);
  --radius: 16px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Meiryo", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}
a{ color:inherit; text-decoration:none; }
.container{ width: min(100% - 40px, var(--max)); margin-inline:auto; }

html, body{
  overflow-x: hidden;
}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(251,251,253,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 10px 0;
}
/* ロゴの外枠 */
.brand{
  width: 80px;          /* ← 枠サイズ（好みで調整） */
  height: 80px;
  padding: 0;           /* ← 余白を完全に消す */
  border-radius: 14px;
  overflow: hidden;     /* ← はみ出し防止 */
  background: #fff;     /* 白背景でロゴを活かす */
  border: 1px solid rgba(36,43,89,.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ロゴ画像 */
.brand__logo{
  width: 100%;
  height: 100%;
  object-fit: contain;  /* ← 枠いっぱいにフィット */
  display: block;
}


.nav{
  display:flex;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}
.nav a{
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .02em;
}
.nav a:hover{ color: var(--navy); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,0);
  cursor:pointer;
  box-shadow: var(--shadow);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.03); color: #fff;}
.btn:active{ transform: translateY(0px); filter: brightness(.98); color: #fff; }

.btn--ghost{
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(36,43,89,.25);
  box-shadow: none;
}
.btn--small{ padding: 10px 14px; font-size: .92rem; color: #fff; }

.btn--line{
  background: linear-gradient(135deg, #0dbd4a, #079e3b);
  color: #fff;
}
.btn--disabled{
  background: #d3d7e2;
  color: #5a6275;
  box-shadow: none;
  cursor: not-allowed;
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding: 56px 0 30px;
  background:
    radial-gradient(900px 320px at 12% 10%, rgba(36,43,89,.11), transparent 60%),
    radial-gradient(820px 360px at 86% 18%, rgba(138,143,156,.15), transparent 60%);
}
.hero__bg{
  position:absolute;
  inset:-1px;
  background: linear-gradient(180deg, rgba(251,251,253,.72), rgba(251,251,253,0) 55%);
  pointer-events:none;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.eyebrow{
  margin:0 0 10px;
  color: rgba(90,98,117,.9);
  font-weight: 900;
  letter-spacing: .14em;
  font-size: .78rem;
}
.hero__title{
  margin:0;
  font-size: clamp(2.05rem, 4vw, 2.85rem);
  letter-spacing: .02em;
  color: var(--black);
}

.hero__subtitle{
  margin: 8px 0 14px;
  color: var(--muted);
  font-weight: 850;
}
.hero__copy{
  border-left: 2px solid rgba(36,43,89,.22);
  padding-left: 14px;
  margin: 10px 0 16px;
}
.hero__tagline{
  margin: 0;
  font-weight: 950;
  color: var(--navy);
  font-size: 1.06rem;
}
.hero__tagline--sub{
  margin-top: 6px;
  color: rgba(22,27,51,.92);
  font-weight: 850;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.hint{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

/* Hero Card */
.heroCard{
  border: 1px solid rgba(36,43,89,.16);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  padding: 18px;
}
.heroCard__kicker{
  color: rgba(90,98,117,.95);
  font-weight: 950;
  letter-spacing: .12em;
  font-size: .72rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.heroCard__row{
  display:grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(12,16,32,.06);
}
.heroCard__row:first-of-type{ border-top:0; padding-top: 0; }
.heroCard__key{
  color: rgba(90,98,117,.95);
  font-weight: 950;
}
.heroCard__val{
  font-weight: 800;
  color: var(--ink);
}
.heroCard__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Sections */
.section{
  padding: 56px 0;
  border-top: 1px solid rgba(12,16,32,.06);
}
.section--alt{ background: var(--bgAlt); }
.section__head{ margin-bottom: 22px; }
.section__title{
  margin:0 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.0rem);
  letter-spacing: .02em;
}
.section__desc{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
  font-weight: 650;
}

/* Philosophy */
.quoteGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.quoteCard{
  border: 1px solid rgba(36,43,89,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 26px rgba(12,16,32,.05);
  padding: 18px;
}
.quoteCard__label{
  margin:0 0 10px;
  color: rgba(90,98,117,.95);
  font-weight: 950;
  letter-spacing: .10em;
  font-size: .78rem;
  text-transform: uppercase;
}
.quoteCard__quote{
  margin:0;
  font-size: 1.1rem;
  font-weight: 950;
  color: var(--navy);
  line-height: 1.55;
}

.copyBand{
  margin-top: 16px;
  border: 1px solid rgba(36,43,89,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  padding: 16px 18px;
}
.copyBand__label{
  margin:0 0 10px;
  color: rgba(90,98,117,.95);
  font-weight: 950;
  letter-spacing: .10em;
  font-size: .78rem;
  text-transform: uppercase;
}
.copyBand__lines p{
  margin: 6px 0 0;
  font-weight: 900;
  color: rgba(22,27,51,.92);
}

/* Table */
.table{
  border: 1px solid rgba(36,43,89,.14);
  border-radius: var(--radius);
  overflow:hidden;
  background: #fff;
  box-shadow: 0 10px 26px rgba(12,16,32,.05);
}
.row{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid rgba(12,16,32,.06);
}
.row:first-child{ border-top:0; }
.key{
  color: rgba(90,98,117,.95);
  font-weight: 950;
}
.val{
  color: var(--ink);
  font-weight: 800;
}
.link{
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Panels / Contact */
.panel{
  border: 1px solid rgba(36,43,89,.14);
  background: rgba(255,255,255,.84);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(12,16,32,.05);
}
.panel--center{
  text-align:center;
  display:grid;
  gap: 12px;
  justify-items:center;
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}
.qr{
  margin-top: 10px;
  border-radius: 16px;
  border: 1px solid rgba(12,16,32,.08);
  background: #fff;
  padding: 12px;
  display:grid;
  place-items:center;
}
.qr img{
  width: min(240px, 100%);
  height:auto;
  display:block;
}
.contact__actions{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mailbox{
  border: 1px solid rgba(12,16,32,.08);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}
.mailbox__row{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items:center;
}
.mailbox__label{ color: rgba(90,98,117,.95); font-weight: 950; }
.mailbox__value{ font-weight: 950; }

.muted{ color: rgba(90,98,117,.95); font-weight: 650; }
.small{ font-size: .9rem; }
.note{ margin-top: 10px; }

/* Footer */
.footer{
  padding: 22px 0;
  border-top: 1px solid rgba(12,16,32,.08);
  background: rgba(255,255,255,.75);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__left{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__logo{ height: 34px; width:auto; }
.footer__brand{
  margin:0;
  font-weight: 950;
  color: var(--navy);
}
.footer__meta{
  margin: 4px 0 0;
  color: rgba(90,98,117,.95);
  font-weight: 650;
  font-size: .92rem;
}
.footer__copy{
  margin:0;
  color: rgba(90,98,117,.95);
  font-weight: 750;
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .quoteGrid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
}
/* ===== Chic Philosophy Section (Design Boost) ===== */
.philosophy{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243,244,248,.85), rgba(243,244,248,.92)),
    radial-gradient(900px 420px at 20% 10%, rgba(36,43,89,.10), transparent 60%),
    radial-gradient(860px 380px at 85% 25%, rgba(138,143,156,.16), transparent 60%);
}

/* 斜めの“面”でデザイン性を出す */
.philosophy::before{
  content:"";
  position:absolute;
  inset:-40px -40px auto -40px;
  height: 220px;
  background: linear-gradient(135deg, rgba(36,43,89,.10), rgba(36,43,89,0));
  transform: rotate(-2.5deg);
  pointer-events:none;
}
.philosophy::after{
  content:"";
  position:absolute;
  inset:auto -60px -80px -60px;
  height: 220px;
  background: linear-gradient(135deg, rgba(22,27,51,.10), rgba(22,27,51,0));
  transform: rotate(2.2deg);
  pointer-events:none;
}

/* 見出し周り */
.ph__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.ph__title{
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: .02em;
}
.ph__desc{
  margin:0;
  color: rgba(90,98,117,.95);
  font-weight: 650;
}

/* 右上の“ラベル”で雰囲気を作る */
.ph__badge{
  border: 1px solid rgba(36,43,89,.18);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 12px;
  text-align:right;
  box-shadow: 0 10px 26px rgba(12,16,32,.06);
  min-width: 140px;
}
.ph__badgeTitle{
  font-weight: 950;
  letter-spacing: .16em;
  color: rgba(22,27,51,.92);
  font-size: .8rem;
}
.ph__badgeSub{
  margin-top: 2px;
  font-weight: 900;
  letter-spacing: .22em;
  color: rgba(90,98,117,.95);
  font-size: .72rem;
}

/* 2枚カード：タイポグラフィと余白で勝つ */
.ph__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.phCard{
  position: relative;
  border: 1px solid rgba(36,43,89,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
  padding: 22px 20px 20px;
  box-shadow: 0 16px 36px rgba(12,16,32,.07);
  overflow:hidden;
}

/* “引用符”のデザインで一気に映える */
.phCard::before{
  content:"“";
  position:absolute;
  top: -8px;
  right: 14px;
  font-size: 88px;
  line-height: 1;
  color: rgba(36,43,89,.12);
  font-weight: 950;
}
.phCard::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width: 6px;
  height:100%;
  background: linear-gradient(180deg, rgba(36,43,89,.65), rgba(36,43,89,0));
}

.phCard__label{
  margin:0 0 10px;
  font-weight: 950;
  letter-spacing: .12em;
  font-size: .78rem;
  color: rgba(90,98,117,.95);
  text-transform: uppercase;
}
.phCard__quote{
  margin:0;
  font-weight: 950;
  color: rgba(22,27,51,.94);
  font-size: 1.18rem;
  line-height: 1.6;
  letter-spacing: .01em;
}

/* キャッチコピー：横長バナーで“絵”を作る */
.phBanner{
  margin-top: 16px;
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(36,43,89,.16);
  background:
    linear-gradient(135deg, rgba(36,43,89,.92), rgba(22,27,51,.92));
  color: #fff;
  padding: 18px 20px;
  box-shadow: 0 18px 42px rgba(12,16,32,.12);
  overflow:hidden;
}

/* 斜線パターン（参考画像の“帯”っぽさ） */
.phBanner::before{
  content:"";
  position:absolute;
  inset:0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.10),
    rgba(255,255,255,.10) 2px,
    rgba(255,255,255,0) 2px,
    rgba(255,255,255,0) 10px
  );
  opacity: .5;
  pointer-events:none;
}
.phBanner__label{
  margin:0 0 10px;
  font-weight: 950;
  letter-spacing: .18em;
  font-size: .74rem;
  opacity: .9;
}
.phBanner__lines{
  position: relative;
  display:grid;
  gap: 8px;
}
.phBanner__lines p{
  margin:0;
  font-weight: 950;
  font-size: 1.08rem;
}

/* Responsive */
@media (max-width: 980px){
  .ph__head{ align-items:flex-start; }
  .ph__grid{ grid-template-columns: 1fr; }
}
/* ===== Brand Block ===== */
.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand__logoWrap{
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(36,43,89,.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand__logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand__text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name{
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--navy);
}

.brand__sub{
  margin-top: 4px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .28em;
  color: rgba(90,98,117,.85);
}

@media (max-width: 768px){
  .brand__logoWrap{
    width: 56px;
    height: 56px;
  }
  .brand__name{
    font-size: 1.25rem;
    letter-spacing: .18em;
  }
}
