/* =========================
RESET
========================= */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Noto Sans JP',sans-serif;
    background:#111;
    color:#fff;
    line-height:1.8;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    color:inherit;
    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1200px;
    margin:0 auto;

}

section{

    padding:120px 0;

}

/* =========================
COMMON
========================= */

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:#c7a46a;
    font-size:14px;
    letter-spacing:3px;

}

.section-title h2{

    margin-top:12px;
    font-size:42px;
    font-weight:700;

}

.btn{

    display:inline-block;
    padding:15px 40px;
    border:1px solid #c7a46a;
    transition:.35s;
    letter-spacing:1px;

}

.btn:hover{

    background:#c7a46a;
    color:#111;

}

.btn.gold{

    background:#c7a46a;
    color:#111;

}

.btn.gold:hover{

    background:transparent;
    color:#fff;

}

/* =========================
HEADER
========================= */

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:.35s;

}

header.scrolled{

    background:rgba(15,15,15,.96);
    backdrop-filter:blur(10px);

}

.header-inner{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;

}

.logo img{

    height:90px;
    width:auto;

}

nav ul{

    display:flex;
    gap:35px;

}

nav a{

    font-size:14px;
    letter-spacing:2px;
    position:relative;

}

nav a::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#c7a46a;
    transition:.35s;

}

nav a:hover::after{

    width:100%;

}

/* =========================
LANGUAGE
========================= */

.language-area{

    position:relative;

}

.language-btn{

    background:#c7a46a;
    color:#111;
    border:none;
    padding:10px 20px;
    cursor:pointer;
    border-radius:5px;
    font-weight:700;

}

.language-btn:hover{

    background:#d7b77a;

}

.language-menu{

    display:none;
    position:absolute;
    top:48px;
    right:0;
    width:230px;
    background:#222;
    border:1px solid #c7a46a;
    padding:15px;
    z-index:999;

}

.language-menu.show{

    display:block;

}

.language-menu hr{

    margin:15px 0;
    border:none;
    border-top:1px solid rgba(255,255,255,.15);

}

#lang-reset{

    display:block;
    text-align:center;
    color:#fff;

}

#lang-reset:hover{

    color:#c7a46a;

}

/* =========================
HERO
========================= */

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.55)),
    url("treemont-main.jpg") center/cover no-repeat;

}

.hero-overlay{

    width:100%;
    height:100%;
    display:flex;
    align-items:center;

}

.hero-content{

    max-width:720px;

}

.sub-title{

    color:#c7a46a;
    letter-spacing:4px;
    margin-bottom:20px;

}

.hero h1{

    font-size:72px;
    line-height:1.3;
    margin-bottom:30px;
    font-weight:700;

}

.hero-text{

    font-size:20px;
    color:#ddd;
    margin-bottom:45px;

}

.hero-btn{

    display:flex;
    gap:20px;
}

/* =========================
PROPERTY
========================= */

.property{

    background:#101214;

}

/* 上段（3件） */

.property-grid-top{

    width:90%;
    max-width:1400px;
    margin:0 auto 40px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

/* 下段（2件） */

.property-grid-bottom{

    width:65%;
    max-width:900px;
    margin:0 auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

.property-card{

    background:#171717;
    border:1px solid rgba(199,164,106,.18);
    overflow:hidden;
    transition:.4s ease;

}

.property-card:hover{

    transform:translateY(-8px);
    border-color:#c7a46a;
    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.property-image{

    overflow:hidden;

}

.property-image img{

    width:100%;
    height:300px;
    object-fit:cover;
    transition:.8s;

}

.property-card:hover .property-image img{

    transform:scale(1.08);

}

.property-body{

    padding:28px;

}

.property-number{

    color:#c7a46a;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:10px;

}

.property-name{

    font-size:26px;
    font-weight:700;
    margin-bottom:12px;

}

.property-address{

    color:#d0d0d0;
    font-size:15px;
    line-height:1.8;

}

/* =========================
ABOUT
========================= */

.about{

    background:#181818;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.about-text span{

    color:#c7a46a;
    letter-spacing:3px;
    font-size:14px;

}

.about-text h2{

    font-size:42px;
    line-height:1.5;
    margin:20px 0 30px;

}

.about-text p{

    color:#d6d6d6;
    margin-bottom:25px;

}

.about-image{

    overflow:hidden;
    border-radius:6px;

}

.about-image img{

    width:100%;
    transition:.8s;

}

.about-image:hover img{

    transform:scale(1.05);

}

/* =========================
STRENGTH
========================= */

.strength{

    background:#111;

}

.strength-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.strength-item{

    background:#181818;
    padding:45px 30px;
    text-align:center;
    border:1px solid rgba(199,164,106,.15);
    transition:.35s;

}

.strength-item:hover{

    transform:translateY(-8px);
    border-color:#c7a46a;
    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.strength-icon{

    width:70px;
    height:70px;
    margin:0 auto 25px;

    border:1px solid #c7a46a;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#c7a46a;

    font-size:22px;
    font-weight:bold;

}

.strength-item h3{

    font-size:22px;
    margin-bottom:18px;

}

.strength-item p{

    color:#cfcfcf;
    font-size:15px;
    line-height:1.9;

}

/* =========================
COMPANY
========================= */

.company{

    background:#181818;

}

.company-box{

    width:90%;
    max-width:1000px;
    margin:0 auto;

}

.company table{

    width:100%;
    border-collapse:collapse;
    background:#202020;

}

.company th{

    width:220px;
    padding:22px;
    background:#1a1a1a;
    color:#c7a46a;
    text-align:left;
    border-bottom:1px solid #333;
    font-weight:500;

}

.company td{

    padding:22px;
    border-bottom:1px solid #333;
    line-height:2;

}

.mail-note{

    color:#c7a46a;
    font-size:14px;

}

.map-link{

    color:#c7a46a;
    font-weight:600;
    transition:.3s;

}

.map-link:hover{

    opacity:.75;

}

/* =========================
CONTACT
========================= */

.contact{

    background:#101214;
    text-align:center;

}

.contact-text{

    max-width:760px;
    margin:0 auto 45px;
    color:#d5d5d5;
    line-height:2;
    font-size:17px;

}

/* =========================
FOOTER
========================= */

footer{

    background:#0b0b0b;
    padding:70px 0 30px;

}

.footer-inner{

    display:flex;
    justify-content:space-between;
    gap:80px;

}

.footer-company{

    flex:1;

}

.footer-company h3{

    font-size:24px;
    color:#c7a46a;
    margin-bottom:25px;

}

.footer-company p{

    color:#bdbdbd;
    line-height:2;
    margin-bottom:18px;

}

.footer-contact{

    text-align:right;

}

.footer-contact p{

    color:#bdbdbd;
    line-height:2;
    margin-bottom:35px;

}

.copyright{

    text-align:center;
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#777;
    font-size:14px;

}

/* =========================
FADE UP
========================= */

.fade-up{

    opacity:0;
    transform:translateY(50px);
    transition:1s;

}

.fade-up.show{

    opacity:1;
    transform:translateY(0);

}

/* =========================
TABLET
========================= */

@media (max-width:1024px){

.header-inner{

    flex-direction:column;
    gap:20px;

}

nav ul{

    gap:20px;
    flex-wrap:wrap;
    justify-content:center;

}

.hero h1{

    font-size:54px;

}

.hero-text{

    font-size:18px;

}

.property-grid-top{

    width:100%;
    grid-template-columns:repeat(2,1fr);

}

.property-grid-bottom{

    width:100%;
    grid-template-columns:repeat(2,1fr);

}

.about-grid{

    grid-template-columns:1fr;
    gap:50px;

}

.strength-grid{

    grid-template-columns:repeat(2,1fr);

}

.footer-inner{

    flex-direction:column;
    text-align:center;

}

.footer-contact{

    text-align:center;

}

.company th{

    width:180px;

}

}

/* =========================
MOBILE
========================= */

@media (max-width:768px){

section{
    padding:70px 0;
}

/* ---------- HEADER ---------- */

header{

    position:relative;
    background:#111;

}

header.scrolled{

    background:#111;

}

.header-inner{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;

    padding:20px 0;

}

.logo img{

    height:60px;

}

nav{

    width:100%;

}

nav ul{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;

}

nav a{

    font-size:13px;
    letter-spacing:1px;

}

/* ---------- LANGUAGE ---------- */

.language-area{

    margin-top:8px;

}

.language-btn{

    width:180px;

}

.language-menu{

    left:50%;
    right:auto;
    transform:translateX(-50%);
    width:240px;

}

/* ---------- HERO ---------- */

.hero{

    height:auto;
    min-height:calc(100vh - 170px);

    display:flex;
    align-items:center;

    text-align:center;

}

.hero-overlay{

    align-items:center;
    justify-content:center;

}

.hero-content{

    width:90%;
    margin:0 auto;

}

.hero h1{

    font-size:38px;
    line-height:1.4;
    margin-bottom:20px;

}

.hero-text{

    font-size:16px;

}

.hero-btn{

    display:flex;
    flex-direction:column;
    gap:15px;
    align-items:center;

}

/* ---------- PROPERTY ---------- */

.property-grid-top,
.property-grid-bottom{

    width:100%;
    grid-template-columns:1fr;
    gap:30px;

}

.property-image img{

    height:240px;

}

/* ---------- ABOUT ---------- */

.about-grid{

    grid-template-columns:1fr;
    gap:40px;

}

.about-text{

    text-align:center;

}

.about-text h2{

    font-size:30px;

}

/* ---------- STRENGTH ---------- */

.strength-grid{

    grid-template-columns:1fr;

}

/* ---------- COMPANY ---------- */

.company table,
.company tbody,
.company tr,
.company th,
.company td{

    display:block;
    width:100%;

}

.company th{

    border-bottom:none;
    padding-bottom:6px;

}

.company td{

    padding-top:0;
    margin-bottom:20px;

}

/* ---------- CONTACT ---------- */

.contact-text{

    font-size:16px;

}

/* ---------- FOOTER ---------- */

.footer-inner{

    flex-direction:column;
    gap:35px;
    text-align:center;

}

.footer-contact{

    text-align:center;

}

}

/* =========================
SMALL MOBILE
========================= */

@media (max-width:480px){

.logo img{

    height:52px;

}

.hero h1{

    font-size:30px;

}

.hero-text{

    font-size:15px;

}

.section-title h2{

    font-size:28px;

}

.property-name{

    font-size:22px;

}

.about-text h2{

    font-size:26px;

}

.btn{

    width:100%;
    text-align:center;

}

.footer-company h3{

    font-size:20px;

}

}

/* =========================
GOOGLE TRANSLATE
========================= */

.goog-te-banner-frame.skiptranslate{

    display:none !important;

}

body{

    top:0 !important;

}

.goog-logo-link{

    display:none !important;

}

.goog-te-gadget{

    color:transparent !important;
    font-size:0 !important;

}

.goog-te-gadget span{

    display:none !important;

}

.goog-te-combo{

    width:100%;
    padding:8px;
    border:1px solid #c7a46a;
    background:#222;
    color:#fff;
    font-size:14px;

}

/* =========================
END
========================= */