@charset "UTF-8";
/*----- BASE STYLES -----*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}


img{
    max-width:100%;
    height:auto;
    vertical-align: bottom; /* 画像の下の隙間を防止 */
}


body{
margin:0;
background:black;
color:white;
font-family: Arial, sans-serif;
line-height:1.6;
font-size: 14px; /* ベースサイズ */
}


/* ヘッダー・ナビゲーションなどの共通section設定 */
section{
max-width:900px;
margin:auto;
padding:10px 3px;
text-align:center;
}


.button{
padding:18px 42px;
border:1px solid white;
text-decoration:none;
color:white;
transition:.4s;
letter-spacing:3px;
}


.button:hover{
background:white;
color:black;
}


a{
color: #fff;
font-family: Arial, sans-serif;
text-decoration: none;
transition: color 0.3s, opacity 0.3s;
}


a:hover{
color:#cccccc; 
opacity:.7;
}

h1, h2, h3 {
    font-weight: normal;
}


/* ================================================
   HEADER
   ================================================ */
.top-section {
max-width:900px;
margin:auto;
padding:3px;
text-align:center;
}

.header-logo img {
width: 45%; 
margin: 3px auto;
}

.catch {
font-size: 12px;
color: #ccc;
letter-spacing: 6px;
opacity: 0.8;
margin-bottom: 8px;
}


/* ================================================
   NAVIGATION
   ================================================ */
.nav-section {
    border-bottom: 1px solid #222;
    margin-bottom: 5px;
    padding: 3px 0;
}


.nav-section nav a {
margin: 0 4px;
font-size: 13px;
text-transform: lowercase;
letter-spacing: 1px;
}


/* ================================================
   MAIN INTRO
   ================================================ */
.intro {
margin-top: 60px;
margin-bottom: 120px;
min-height: 20vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.intro-lead {
margin-bottom: 30px;
font-size: 18px;
}


.intro-list {
display: flex;
flex-direction: column;
gap: 15px; 
text-align: left;
}


.intro-item {
align-item: center; 
gap: 12px;           
}


.intro-item img {
width: 20px; 
}



/* ================================================
   GALLERY CONTAINER
   ================================================ */
.gallery-container {
max-width: 900px;
margin: 0 auto;
padding: 5px;
flex-direction: column; /* 基本縦並び */
align-items: center;    /* センター揃え */
text-align: center;  
}


.gallery-section {
margin-bottom: 60px;
display: flex;
flex-direction: column; /* 基本縦並び */
align-items: left;    /* センター揃え */
text-align: left;  
}


p.location {
font-family: Arial, sans-serif;
font-size:28px;
font-weight:300;
margin-top:20px;
display: flex;
gap: 8px;
}

p.location img{
width:25px;
height:25px;
margin-top:10px;
margin-right:10px;
}


gallery-section h2 {
font-family: Arial, sans-serif;
font-size:25px;
font-weight:100;
text-align:left;
}




/* ================================================
   ROPPONGI TOP LAYOUT (2column) - PC
   ================================================ */
.roppongi-top-layout {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 60px;
    text-align: left; 
}

.roppongi-top-layout .featured-image.tall {
    flex: 0 0 330px;
    text-align: center;
}

.roppongi-top-layout .featured-image.tall img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.roppongi-intro-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
    color: #ddd;
    /* text-align: left; */ /* 親で指定済み */
    padding-top: 10px;
}

.roppongi-intro-text span {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
}


/* ================================================
   PHOTO GRID STYLES
   ================================================ */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.photo-item {
    background: #111;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #aaa;
    border: 1px solid #222;
}

/* 写真下のキャプションエリア（汎用クラスに変更） */
.photo-caption {
    margin-top: 10px;
    line-height: 1.4;
    display: block;
}

/* ★修正③：Neighborhoodのリンクを強制的に一行にするための特別クラス */
.neighborhood-links {
    display: inline-block;
    white-space: nowrap; /* 改行させない */
}
.neighborhood-links a {
    margin: 0 2px; /* リンク間の隙間 */
}

.photo-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}

/* 縦長の写真はここを指定すれば縦長になります */
.photo-item.tall img {
    max-height: 350px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}


/* ================================================
   LAYOUT SECTION (Floorplan)
   ================================================ */
.floorplan {
    text-align: center;
    grid-column: 1 / -1;
    background: #111;
    padding: 20px;
}

.floorplan img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* ================================================
   OUTLINE
   ================================================ */
.outline-section {
    text-align: left; 
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 40px;
}

/* 
.outline-content {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    text-align: left;     
}

.outline-text {
    width: 100%;
    max-width: 800px; /* 広がりすぎないように最大幅を設定 */
    font-size: 14px;
    line-height: 1.9;
    color: #ddd;
    margin: 0 auto;
}

.outline-text strong {
    color: #fff;
    font-weight: normal;
}

.outline-text p {
    margin-bottom: 20px;
}


.outline-line {
    border: 0;
    border-top: 1px solid #333;
    margin: 30px 0;
    width: 100%;
}




/* ==============================================================================
   FOOTER
   ============================================================================== */
footer {
margin-top: 10px;
border-top: 1px solid #222;
text-align: center;
color: #888;
font-size: 12px;
}


.end-menu{
font-size:13px;
font-family: Arial, sans-serif;
color:#fff;
letter-spacing: 1px;
margin-top:5px;
}

.end-catch{
margin-top: 3px;
display: flex;
flex-direction: column;
align-items: center;
gap: 1px;
font-size:8px;
color:#fff;
}

.footer-bottom-row {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}

.footer-bottom-row img {
width: auto;
height: 10px;
}


/* ==============================================================================
   RESPONSIVE DESIGN (Mobile - Screen width 768px and under)
   ============================================================================== */
@media screen and (max-width: 768px) {

    body { font-size: 13px; }

    /* ヘッダー */
    .top-section { padding-top: 20px; }
    .header-logo img { max-width: 70%; }
    .catch { letter-spacing: 3px; font-size: 10px; }

    /* ナビゲーション */
    .nav-section { margin-bottom: 30px; padding: 10px 0; }
    .nav-section nav a { margin: 0 5px; font-size: 11px; }

    /* メイン */
    .gallery-container { padding: 10px; }
    .gallery-section { margin-bottom: 40px; }
    p.location { font-size: 16px; margin-bottom: 10px; }
    p.location img { width: 18px; height: 18px; }
    .gallery-section h2 { font-size: 16px; margin-bottom: 15px; letter-spacing: 1px; }

    /* Roppongiトップ (スマホで左右並び) */
    .roppongi-top-layout {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 40px;
        align-items: flex-start;
        text-align: left;
    }
    
    .roppongi-intro-text {
        flex: 1;
        font-size: 12px;
        line-height: 1.6;
        padding-top: 0;
    }

    .roppongi-top-layout .featured-image.tall {
        flex: 0 0 45%;
        width: 45%;
        margin: 0;
    }
    
    .roppongi-top-layout .featured-image.tall img {
        height: auto;
        max-height: 150px; /* スマホでの高さを制限 */
        object-fit: cover;
    }
    
    .roppongi-intro-text span { margin-top: 10px; font-size: 16px; }


    /* フォトグリッド */
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .photo-item {
        padding: 8px;
        font-size: 10px;
    }
    
    .photo-item img {
        height: auto !important;
        margin-bottom: 5px;
    }

    /* ★修正②：スマホでの縦長写真のサイズを少し大きくする */
    .photo-item.tall img {
        max-height: 200px; /* 前回120pxから200pxへ拡大 */
        width: auto;
    }

    /* Floorplan */
    .floorplan { padding: 10px; }

    /* Outline */
    .outline-section {
        margin-top: 30px;
        padding-top: 30px;
        text-align: center; /* 全体をセンターに */
    }
    .outline-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .outline-text {
        font-size: 13px;
        line-height: 1.8;
        text-align: center; /* テキストをセンターに */
    }

    footer { margin-top: 60px; padding: 30px 10px; }
    .end-catch { font-size: 10px; }
}




/* ==============================================================================
   TRALEVEN BLOG
   Topics / Blog Layout
   ============================================================================== */

/* ---------- Blog Header ---------- */

.blog-header {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 10px 10px;
    text-align: center;
    box-sizing: border-box;
}

.blog-header h1 {
    margin: 0 0 5px;
    font-size: 45px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.blog-header p {
    margin: 8px 0;
    font-size: 16px;
    color: #ccc;
}

.blog-header .blog-intro {
    max-width: 750px;
    margin: 8px auto 0;
    font-size: 16px;
    line-height: 1.9;
    color: #ccc;
}


/* ---------- Category Navigation ---------- */

.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto 25px;
    padding: 0 30px;
    box-sizing: border-box;
}

.blog-categories a {
    display: inline-block;
    padding: 8px 17px;
    border: 1px solid #ddd;
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    transition: 0.2s;
}

.blog-categories a:hover {
    background: #f5f5f5;
}


/* ---------- Blog List ---------- */

.blog-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px 50px;
    box-sizing: border-box;
}


/* ---------- Topic Card ---------- */

.topic-card {
    margin-bottom: 25px;
    padding: 35px 38px 38px;
    border-top: 1px solid #ddd;
    box-sizing: border-box;
}


.topic-card:last-child {
    border-bottom: 1px solid #ddd;
}


/* ---------- Topic Meta ---------- */

.topic-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}


.topic-category {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #ccc;
}


.topic-date {
    font-size: 12px;
    color: #ccc;
}


/* ---------- Topic Title ---------- */

.topic-card h2 {
    margin: 0 0 18px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.45;
}


.topic-card p {
    max-width: 720px;
    margin: 0 0 25px;
    color: #ccc;
    font-size: 15px;
    line-height: 1.9;
}



/*  ---------- 記事ページ（detail view） ----------  */
.topics {
  text-align: left;       /* ★強制左寄せ */
}

.article-body {
  text-align: left;       /* ★本文も左寄せ */
  line-height: 1.9;
  color: #ccc;
}




/* ---------- Read More ---------- */

.read-more {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.04em;
    border-bottom: 1px solid #999;
    padding-bottom: 3px;
}


.read-more:hover {
    border-bottom-color: #333;
}


/* ---------- Coming Soon ---------- */

.coming-soon {
    display: inline-block;
    color: #999;
    font-size: 12px;
    letter-spacing: 0.08em;
}


/* ---------- Blog Closing ---------- */

.blog-closing {
    max-width: 800px;
    margin: 20px auto 30px;
    padding: 70px 30px;
    border-top: 1px solid #ddd;
    text-align: center;
    box-sizing: border-box;
}


.blog-closing h2 {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 400;
}


.blog-closing p {
    margin: 0 auto;
    max-width: 600px;
    color: #777;
    font-size: 15px;
    line-height: 1.9;
}


.blog-brand {
    margin-top: 45px;
    font-size: 25px;
    letter-spacing: 0.15em;
}


.blog-brand span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #999;
}


/* ==================================================
   BLOG MOBILE
   ================================================== */

@media screen and (max-width: 768px) {
    .blog-header {
        padding: 55px 20px 35px;
    }

    .blog-header h1 {
        font-size: 30px;
    }

    .blog-header p {
        font-size: 16px;
    }

    .blog-categories {
        padding: 0 20px;
        margin-bottom: 45px;
    }

    .blog-list {
        padding: 0 20px 60px;
    }

    .topic-card {
        padding: 28px 5px 32px;
        margin-bottom: 30px;
    }

    .topic-card h2 {
        font-size: 23px;
    }

    .topic-meta {
        display: block;
    }

    .topic-date {
        display: block;
        margin-top: 6px;
    }

    .blog-closing {
        padding: 50px 20px;
        margin-bottom: 60px;
    }

    .blog-closing h2 {
        font-size: 23px;
    }
}


/* ==================================================
   SMALL MOBILE
   ================================================== */

@media screen and (max-width: 480px) {
    .blog-header h1 {
        font-size: 26px;
    }

    .blog-categories {
        gap: 8px;
    }

    .blog-categories a {
        font-size: 12px;
        padding: 7px 12px;
    }

    .topic-card h2 {
        font-size: 21px;
    }
}


/* ==============================================================================
   BLOG 2-COLUMN & SIDE-MENU STYLING
   ============================================================================== */

/* 全体の2カラムコンテナ */
.blog-layout-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  text-align: left;
}

/* 左側のサイドメニュー全体 */
.blog-sidebar {
  width: 260px;
  flex-shrink: 0;
  border-right: 1px solid #333;
  padding-right: 30px;
  overflow-wrap: break-word;
}

/* サイドメニューのブロック */
.sidebar-block {
  margin-bottom: 40px;
}

.sidebar-block h3 {
  font-size: 15px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 8px;
  border-bottom: 1px solid #444;
  padding-bottom: 6px;
  font-weight: normal;
}

.sidebar-subtitle {
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* 年・月・記事リストのスタイル */
.sidebar-menu-group h4 {
  font-size: 14px;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 4px;
  font-weight: normal;
}

.sidebar-month {
  display: block;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.blog-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar ul li {
  margin-bottom: 8px;
}

.blog-sidebar ul li a {
  color: #888;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.2s;
}

.blog-sidebar ul li a:hover {
  color: #fff;
}

/* カテゴリーリストのスタイル */
.category-list li a {
  display: block;
  padding: 3px 0;
}

/* 右側のメインコンテンツエリア */
.blog-main-content {
  flex-grow: 1;
  max-width: 780px;      /* ★記事幅を固定 */
  text-align: left;      /* ★センタリング解除 */
}

.blog-header-inline {
  margin-bottom: 40px;
}

.blog-header-inline h1 {
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
}

.blog-header-inline p {
  color: #aaa;
  font-size: 14px;
}

.blog-intro {
  margin-top: 10px;
  color: #888;
}

/* スマホ表示時のレイアウト（縦並びに切り替え＆順番入れ替え） */
@media (max-width: 768px) {
  .blog-layout-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  /* 記事コンテンツを上に（order 1） */
  .blog-main-content {
    order: 1;
  }
  
  /* サイドメニューを下に（order 2） */
  .blog-sidebar {
    order: 2;
    width: 100%;
    border-right: none;
    border-top: 1px solid #333; /* 上線に変更 */
    padding-right: 0;
    padding-top: 30px; /* 上余白を追加 */
  }
}