@charset "utf-8";

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative; height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.hero__content { z-index: 1; padding: 0 20px; }
.hero__sub { font-size: 14px; letter-spacing: 0.3em; margin: 20px 0; }
.hero__title { 
    font-size: clamp(60px, 10vw, 100px);
    font-style:
    italic; line-height: 1;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.hero__text {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.hero__btns { display: flex; justify-content: center; gap: 30px; align-items: center; }
.btn-black { background: #000; color: #fff; padding: 18px 50px; font-size: 14px; letter-spacing: 0.1em; }
.btn-link { font-weight: bold; border-bottom: 1px solid var(--color-main); padding-bottom: 2px; }

/* =========================================
   Responsive (max-width: 1024px)
   ========================================= */
@media screen and (max-width: 1024px) {
  .header { height: 60px; }
  .header__inner { padding: 0 20px; }

  .nav-open {
    display: block; width: 24px; height: 20px; position: relative; z-index: 1100; cursor: pointer;
  }
  .nav-open span, .nav-open span:before, .nav-open span:after {
    content: ''; position: absolute; width: 100%; height: 1px; background: #000; transition: 0.3s;
  }
  .nav-open span { top: 10px; }
  .nav-open span:before { top: -8px; }
  .nav-open span:after { top: 8px; }

  .header__nav {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--color-white); flex-direction: column; justify-content: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav__list { flex-direction: column; text-align: center; gap: 40px; margin-bottom: 50px; }
  .nav__list a { font-size: 18px; }

  /* Open State */
  #nav-input:checked ~ .header__nav { right: 0; }
  #nav-input:checked ~ .nav-open span { background: transparent; }
  #nav-input:checked ~ .nav-open span:before { transform: rotate(45deg); top: 0; }
  #nav-input:checked ~ .nav-open span:after { transform: rotate(-45deg); top: 0; }
}

/* セクション全体の余白 */
.services {
  padding: 100px 20px;
  background-color: #ffffff;
}

/* PCでは横に3つ並べる設定 */
.services__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列に分ける */
  gap: 40px; /* カード同士の間隔 */
}

/* 各カードの設定 */
.service-card__img {
  margin-bottom: 30px;
  aspect-ratio: 4 / 5; /* 縦長の比率を維持 */
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を枠いっぱいに綺麗に収める */
}

.service-card__title {
  font-size: 24px;
  font-family: serif; /* セリフ体で上品に */
  font-style: italic;
  margin-bottom: 20px;
  font-weight: bold;
}

.service-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  text-align: justify; /* 両端を揃えて綺麗に見せる */
}

/* 📱 スマホ・タブレット（1024px以下）での見え方 */
@media screen and (max-width: 1024px) {
  .services {
    padding: 60px 20px;
  }
  
  .services__inner {
    grid-template-columns: 1fr; /* 縦1列にする */
    gap: 60px; /* 縦に並んだ時の間隔 */
  }

  .service-card__title {
    font-size: 22px;
  }
}

/* =========================================
   THE SPACE Section (Integrated Version)
   ========================================= */
.space {
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 120px 0;
  overflow: hidden; /* 画像のはみ出しを制御 */
}

.space__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 40px 0 60px; /* 右側の余白を削って画像を端へ寄せる */
}

/* --- 左側：テキストエリア --- */
.space__content {
  flex: 0 0 480px; /* テキスト幅をしっかり確保 */
  z-index: 5;
}

.space__sub-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.space__main-title {
  font-size: 72px; /* イメージ通りの巨大サイズ */
  font-family: serif;
  font-style: italic;
  font-weight: 900; /* 極太ウェイト */
  line-height: 1.05;
  margin-bottom: 55px;
  letter-spacing: -0.02em;
}

/* 特徴リスト */
.space__features {
  list-style: none;
  padding: 0;
}

.space__features li {
  margin-bottom: 35px;
  padding-left: 40px;
  position: relative;
}

/* シャープなダイヤマーク */
.space__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 1px solid #555;
  transform: rotate(45deg);
}

.space__features strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 0.05em;
}

.space__features p {
  font-size: 14px;
  color: #bbbbbb;
  line-height: 1.7;
}

/* --- 右側：画像エリア --- */
.space__image-wrapper {
  flex: 1.4; /* 画像を大きく広げる */
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.space__image {
  position: relative;
  width: 100%;
}

.space__image img {
  width: 115%; /* 画面右端へダイナミックにはみ出させる */
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9; /* 横長を維持 */
}

/* 白いボックス（40㎡）の完全再現 */
.space__info-box {
  position: absolute;
  bottom: -40px; 
  right: -80px; /* 画像の左側にグイッと食い込ませる */
  background-color: #ffffff;
  color: #000000;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
}

.space__area-num {
  font-size: 64px;
  font-family: serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.space__area-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-top: 15px;
}

/* --- 📱 スマホ・タブレット対応 --- */
@media screen and (max-width: 1024px) {
  .space {
    padding: 80px 0 100px;
  }
  .space__inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }
  .space__content {
    flex: none;
    width: 100%;
  }
  .space__main-title {
    font-size: 52px;
    margin-bottom: 40px;
  }
  .space__image-wrapper {
    width: 100%;
    flex: none;
  }
  .space__image img {
    width: 100%; /* スマホでははみ出させない */
  }
  .space__info-box {
    left: 10px;
    bottom: -30px;
    width: 130px;
    height: 130px;
  }
  .space__area-num {
    font-size: 42px;
  }
}



/* =========================================
   GALLERY Section
   ========================================= */
.gallery-section {
  padding: 100px 0;
  background-color: #ffffff;
  width: 100%;
}

/* 画像を横一列に並べるコンテナ */
.gallery-container {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px; /* 画像同士の隙間を10pxに */
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

/* 4つの画像を均等な幅にする */
.gallery-item {
  flex: 1;
  min-width: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* 正方形で統一 */
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

/* タイトル部分 */
.gallery-content {
  text-align: center;
}

.gallery-sub-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #888;
  margin-bottom: 20px;
}

.gallery-main-title {
  font-size: 72px; /* THE SPACEと合わせたサイズ感 */
  font-family: serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1.1;
  color: #1a1a1a;
}

/* 📱 スマホ対応 */
@media screen and (max-width: 1024px) {
  .gallery-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* 2x2のタイル */
    gap: 10px;
  }
  
  .gallery-main-title {
    font-size: 52px;
  }
}

/* 偶数番目（2枚目と4枚目）だけを下方向にずらす */
.gallery-item:nth-child(even) {
  transform: translateY(40px); /* 40pxほど下に移動 */
}

/* ギャラリー全体の親要素に、ずらした分のはみ出しを許可する設定 */
.gallery-section {
  padding: 100px 0 140px; /* 下側の余白を少し増やして、画像が切れないようにする */
}

/* スマホでは横幅が狭くなるので、ずらしを解除するか調整するのがおすすめ */
@media screen and (max-width: 1024px) {
  .gallery-item:nth-child(even) {
    transform: translateY(20px); /* スマホでは20pxくらいに抑える */
  }
}

/* =========================================
   COMMON STYLE & TYPOGRAPHY
   ========================================= */
.section-title {
  font-family: "Georgia", serif;
  font-size: 42px;
  font-style: italic;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #333;
}

.text-center {
  text-align: center;
  margin-top: 150px;
  margin-bottom: 60px;
}

/* =========================================
   PRICING (Full Width Design)
   ========================================= */
.pricing-container {
  display: flex;
  width: 100%; /* 画面一杯に広げる */
  max-width: 100%;
  margin: 0 auto 180px auto;
  border: none; /* 外枠の線を消してスッキリさせる */
}

.plan-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0;
  text-align: center;
}

.plan-card.highlight {
  background: #111;
  color: #fff;
}

.price-box {
  width: 100%;
  padding: 40px 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  border: none; /* 余計な線を削除 */
}

.price {
  font-size: 100px; /* 存在感を出すためにさらにアップ */
  font-style: italic;
  font-weight: bold;
  line-height: 1;
}

.currency { font-size: 32px; margin-right: 10px; }
.unit { font-size: 18px; margin-left: 15px; }

.time-condition {
  font-size: 14px;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
  color: #888;
}

.features {
  list-style: none;
  padding: 0;
  font-size: 14px;
  line-height: 2.5;
  text-align: left;
}

.features li::before {
  content: "◇";
  margin-right: 12px;
  color: #888;
}

/* =========================================
   ACCESS (Large Map)
   ========================================= */
.access-section {
  padding: 180px 20px;
  background-color: #f9f9f9;
}

.access-container {
  max-width: 1200px; 
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center; /* 地図と情報の高さを中央で揃える */
}

.access-visual {
  flex: 1.8; /* 地図の比率をさらに大きく */
}

.map-placeholder {
  width: 100%;
  height: 600px; /* 高さを固定して大きく表示 */
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}

.access-info {
  flex: 1;
}

.label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 8px;
}

.info-group {
  margin-bottom: 30px;
}

.info-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 8px;
}

.info-text {
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .access-container { gap: 40px; }
  .price { font-size: 80px; }
  .map-placeholder { height: 450px; }
}

@media (max-width: 768px) {
  .pricing-container { flex-direction: column; }
  .access-container { flex-direction: column; }
  .price { font-size: 72px; }
  .map-placeholder { height: 350px; }
}

/* スタジオ詳細へのリンクエリア（中央寄せ） */
.services__footer {
    text-align: center;
    margin-top: 60px;
    padding: 0 20px;
}

.services__footer-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-more {
    display: inline-block;
    padding: 16px 50px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #000;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .btn-more {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}