/* --- Variables & Reset --- */
:root {
  /* Logo-based colors */
  --bg-body: #1f1d1d;
  --bg-card: #171614;

  --text-primary: #F3F3F1;
  --text-secondary: #8C8A86;

  --accent: #B86A34;

  /* optional future use */
  --accent-soft: rgba(184, 106, 52, 0.18);
  --accent-line: rgba(184, 106, 52, 0.35);
}



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

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
   font-family: "Playfair Display", serif;
  font-style: italic;
  letter-spacing: 0.02em;

  font-weight: 100;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* --- Utility --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

/* --- Typography --- */
.headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(to bottom, #fff, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.headline-sm {
  font-size: 2rem;
  font-weight: 600;
}

.sub-headline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 5px;
}

.description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.48);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px); /* ここだけ使用 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav__container {
  display: flex;
  justify-content :space-around;
  align-items: center;
  max-width: 1080px;
  margin:0 auto;

  padding: 20px;
  height: 100%;
  background: #1f1d1dca;
}


.nav__menu {
  display: flex;
  gap: 30px;
  list-style: none;
}
@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 60px;
    right: 0;
    width: 100%;
    height: 0;
    background: var(--bg-body);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 0.4s var(--easing);
    gap: 20px;
  }
  .nav__menu.is-active {
    height: calc(100vh - 60px);
  }
}
.nav__link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.nav__link:hover {
  color: var(--text-primary);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
}

/* --- Hero --- */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* JSでパララックス効果をかけるため、will-changeを設定 */
  will-change: transform;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.hero .scroll-indicator {
  position: absolute;
  bottom: 30px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

/* --- Scroll Reveal Animation --- */
/* JSで .is-visible がつくと表示される仕組み */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* --- Bento Grid --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  min-height: 360px;
  transition: transform 0.4s var(--easing), box-shadow 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.bento-card:hover {
  transform: translateY(-5px); /* スケールではなく移動のみに変更（負荷軽減） */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.bento-card:hover .bento-card__bg img {
  transform: scale(1.05);
  opacity: 0.6;
}
.bento-card:hover .link-arrow {
  color: var(--accent);
  padding-left: 5px;
}
.bento-card--large {
  grid-column: span 2;
  min-height: 500px;
}
@media (max-width: 768px) {
  .bento-card--large {
    grid-column: span 1;
  }
}
.bento-card--wide {
  grid-column: span 2;
  min-height: 200px;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 768px) {
  .bento-card--wide {
    grid-column: span 1;
  }
}
.bento-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.bento-card__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
  transition: transform 0.6s, opacity 0.6s;
}
.bento-card__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}
.bento-card__content {
  position: relative;
  z-index: 1;
  pointer-events: none; /* クリックは親のaタグが受け取る */
}
.bento-card__content-only {
  position: relative;
  z-index: 1;
}
.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.bento-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
}
.bento-card .category {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.bento-card .link-arrow {
  display: inline-block;
  font-size: 0.85rem;
  transition: 0.3s;
  text-align: center;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

/* --- Work Showcase --- */
.work-showcase {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.work-showcase:hover img {
  transform: scale(1.03);
}
.work-showcase__image {
  height: 500px;
  overflow: hidden;
}
.work-showcase__image img {
  transition: transform 0.6s var(--easing);
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.work-showcase__image .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  font-size: 0.75rem;
  border-radius: 4px;
}
.work-showcase__info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}
.work-showcase__info h3 {
  font-size: 1.5rem;
}
.work-showcase__info p {
  color: #ddd;
  font-size: 0.9rem;
}


/* =========================================================
   Contact / Access (ADD)
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:24px;
  align-items:stretch;
}
@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.contact-card,
.map-card{
  background: var(--bg-card);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow:hidden;
}

/* left card */
.contact-card{
  padding:28px;
  box-shadow:
    var(--shadow-deep),
    0 0 0 1px var(--accent-line) inset,
    0 0 60px var(--accent-soft) inset;
}

.contact-card__title{
  font-size:1.25rem;
  letter-spacing:-0.01em;
  margin-bottom:18px;
}

.info-list{ display:block; }
.info-row{
  display:grid;
  grid-template-columns: 100px 1fr;
  gap:14px;
  padding:14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.info-row:first-child{ border-top:none; padding-top:0; }
.info-row dt{
  color: rgba(255,255,255,0.70);
  font-size:0.85rem;
  letter-spacing:0.06em;
}
.info-row dd{
  color: rgba(255,255,255,0.92);
  font-size:0.95rem;
  line-height:1.8;
}

.info-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.contact-note{
  margin-top:18px;
  padding-top:16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-note p{
  color: var(--text-secondary);
  font-size:0.92rem;
  line-height:1.8;
}

/* disabled ghost buttons */
.btn-ghost.is-disabled{
  opacity:0.45;
  pointer-events:none;
  filter:saturate(0.9);
}

/* right card */
.map-card__head{
  padding:22px 22px 0;
}
.map-card__title{
  font-size:1.15rem;
  letter-spacing:-0.01em;
  margin-bottom:6px;
}
.map-card__sub{
  color: var(--text-secondary);
  font-size:0.9rem;
  line-height:1.7;
}

.map-embed{
  margin-top:14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #0b0b0b;
}
.map-embed iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
  filter: contrast(1.05) saturate(0.92) brightness(0.95);
}

.map-actions{
  padding:18px 22px 22px;
  display:flex;
  gap:12px;
  justify-content:flex-start;
  flex-wrap:wrap;
}
@media (max-width: 900px){
  .map-embed iframe{ height:360px; }
  .map-actions .btn-primary,
  .map-actions .btn-ghost{ width:100%; }
}



.footer {
  padding: 60px 0;
  border-top: 1px solid #222;
  text-align: center;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.footer .btn-primary {
  background: #fff;
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
}
.footer .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}
.footer .copyright {
  color: #555;
  font-size: 0.8rem;
}/*# sourceMappingURL=style.css.map */




/* ===== Logo Image Fix ===== */
.nav__logo img {
  width: auto;        /* ← 100%を無効化 */
  height: 58px;       /* ← 好みで 32〜42px */
  max-width: none;
  display: block;
}

.en{
 
  letter-spacing: 0.002em;

}


/* 高級メタリック・ダークオレンジ（タイトル用） */
.title-metal-orange{
  /* 文字自体をグラデで塗る */
  background: linear-gradient(
    180deg,
    #FFC48A 0%,
    #E28A2E 22%,
    #B35A10 52%,
    #F0A24A 76%,
    #7A3200 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* メタル感：コントラストと立体 */
  text-shadow:
    0 1px 0 rgba(255,255,255,.10),   /* 上の薄いハイライト */
    0 10px 22px rgba(0,0,0,.55),     /* 落ち影 */
    0 2px 2px rgba(0,0,0,.35);       /* 締まり */

  /* エッジを締めて“高級ロゴ感” */
  -webkit-text-stroke: 0.6px rgba(0,0,0,.35);

  letter-spacing: .02em;
}
