/* ============================================
   基本設定
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.home {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
    background-attachment: fixed;
}

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

ul {
    list-style: none;
}

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

/* ============================================
   ヘッダー
============================================ */
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
    padding: 5px 0;
    border-radius: 5px;
}

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
    margin: 0 20px 0 0;
}

.nav-list li a {
    color: white;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-list li a:hover {
    opacity: 0.8;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

.btn-contact {
    background: #29a9b8;
    border: 1px solid #29a9b8;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #fff;
    color: #29a9b8 !important;
}

.btn-contact svg path {
    transition: stroke 0.3s ease;
}

.btn-contact:hover svg path {
    stroke: #29a9b8;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(90, 155, 213, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 30px;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-list li a {
    display: block;
    padding: 20px 10px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    transition: padding-left 0.3s ease;
}

.mobile-nav-list li a:hover {
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.btn-contact-mobile {
    display: block;
    background: #29a9b8;
    color: white;
    padding: 16px;
    border: 1px solid #29a9b8;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-contact-mobile:hover {
    background: #fff;
    color: #29a9b8;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   フッター
============================================ */
.custom-footer {
    background: #2C2C2C;
    color: white;
    padding: 60px 0 0;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
}

.slider {
    position: relative;
    width: 100%;
    flex: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 155, 213, 0.4) 0%, rgba(78, 205, 196, 0.3) 100%);
}

/* ============================================
   ヒーローコンテンツ（キャッチコピー）
============================================ */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

.hero-main-title {
    max-width: 628px;
    width: 100%;
    aspect-ratio: 627.58 / 330.76;
    height: auto;
    object-fit: contain;
    animation: fadeInDown 1s ease-out;
    margin: 0 auto;
}

/* ============================================
   スライダーインジケーター
============================================ */
.slider-indicators {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    gap: 15px;
    z-index: 3;
    background: #fff;
    width: 100%;
    justify-content: center;
    padding: 20px 0;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #29a9b8;
    width: 35px;
    border-radius: 6px;
}

.indicator:hover {
    background: #29a9b8;
    opacity: 0.7;
}

/* ============================================
   アニメーション
============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ニュースセクション
============================================ */
.news-section {
    position: relative;
    z-index: 2;
    padding: 100px 0 50px;
    margin-top: -1px;
    overflow: hidden;
    margin-bottom: -100px;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* 左側：タイトルとボタン */
.news-left {
    flex-shrink: 0;
    width: 280px;
}

.section-title {
    margin-bottom: 40px;
    border-top: none !important;
}

.title-en {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
    margin-bottom: 8px;
}

.bold {
    color: #29a9b8;
}

.title-ja {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.btn-news-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #29a9b8;
    border: 1px solid #29a9b8;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.btn-news-more:hover {
    transform: translateY(-2px);
    background-color: #fff;
    color: #29a9b8;
    opacity: 1;
}

.btn-news-more svg path {
    transition: stroke 0.3s ease;
}

.btn-news-more:hover svg path {
    stroke: #29a9b8;
}

/* 右側：ニュースリスト */
.news-right {
    flex: 1;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    border-bottom: 1px solid #e0e0e0;
}

.news-link {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 28px 20px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.news-link:hover {
    background: rgba(78, 205, 196, 0.05);
    padding-left: 30px;
}

.news-link:hover .news-arrow {
    transform: translateX(5px);
}

.news-date {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    min-width: 100px;
}

.news-title {
    flex: 1;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
}

.news-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #29a9b8;
    font-weight: 700;
}

/* 背景装飾 */
/* 背景装飾 */
.news-bg-decoration {
    display: none;
}

/* ============================================
   ピックアップ物件セクション
============================================ */
.pickup-section {
    position: relative;
    z-index: 1;
    padding: 400px 0 550px;
    overflow: hidden;
    background-image: url(../../images/top/top-pickup-bg.webp);
    background-repeat: no-repeat;
    background-size: 103% 98%;
    background-position: top;
}

.pickup-section::after {
    content: "";
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 100%;
    /* 背景装飾：左上にtreat、中央にbg */
    background: url(../../images/top/pick-up_treat.png) no-repeat -7% top, url(../../images/top/pick-up_bg.png) no-repeat 0 11%;
    background-size: 300px, 100%;
    z-index: 1;
    pointer-events: none;
}

.pickup-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

/* セクションタイトル（中央） */
.pickup-header {
    text-align: center;
    margin-bottom: 0;
}

.section-title-center {
    display: inline-block;
    border-top: none !important;
}

.title-en-large {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 10px;
}

.title-accent {
    color: #29a9b8;
}

.title-ja-small {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.concept-item {
    display: flex
}

.pickup-slider-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* 物件コンテンツ */
.pickup-content {
    background: transparent;
    /* 背景削除 */
    border-radius: 0;
    /* 角丸削除 */
    padding: 0;
    /* パディング削除 */
    display: flex;
    gap: 60px;
    box-shadow: none;
    /* 影削除 */
    margin-bottom: 40px;
}

/* 左側：画像ギャラリー */
.pickup-gallery {
    flex: 1;
    max-width: 500px;
}

.pickup-main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pickup-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-thumbnail-list {
    display: flex;
    gap: 15px;
}

.pickup-thumbnail {
    flex: 1;
    height: 100px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 3px solid transparent;
}

.pickup-thumbnail.active {
    opacity: 1;
    border-color: #29a9b8;
}

.pickup-thumbnail:hover {
    opacity: 0.9;
}

.pickup-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 右側：物件情報 */
.pickup-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pickup-title {
    font-size: 35px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.pickup-description {
    font-size: 20px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pickup-price {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.pickup-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 20px;
}

.pickup-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f0f0f0;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.btn-pickup-detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #29a9b8;
    border: 1px solid #29a9b8;
    color: white;
    padding: 10px 40px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-pickup-detail:hover {
    background-color: #fff;
    color: #29a9b8;
    opacity: 1;
}

.btn-pickup-detail svg path {
    transition: stroke 0.3s ease;
}

.btn-pickup-detail:hover svg path {
    stroke: #29a9b8;
}

/* スライダーナビゲーション */
.concept-content {
    display: grid;
    grid-template-areas: "stack";
    align-items: center;
    width: 100%;
    /* 以前のflex関連削除 */
}

.pickup-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* 左寄せ */
    gap: 40px;
    margin-top: 40px;
}

.pickup-indicators {
    display: flex;
    gap: 12px;
}

.pickup-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pickup-indicator.active {
    opacity: 1;
    transform: scale(1.2);
    background: #29a9b8;
}

.pickup-arrows {
    display: flex;
    gap: 15px;
}

.pickup-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.pickup-arrow:hover {
    background: #555;
    transform: translateY(-2px);
}

.pickup-arrow svg {
    width: 20px;
    height: 20px;
}

/* タイトルスタイル調整 */
.title-en-large {
    font-size: 56px;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.text-red {
    color: #E53935;
}

.pickup-bg-decoration-top,
.pickup-bg-decoration-bottom {
    display: none;
}

/* ============================================
   土地情報セクション
============================================ */
.land-section {
    position: relative;
    padding: 0 0 120px;
    background: #ffffff;
    overflow: hidden;
    margin-top: -100px;
}

.land-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* セクションタイトル */
.land-header {
    margin-bottom: 60px;
}

/* 土地カードグリッド - 3列×2行 */
.land-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* 土地カード */
.land-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.land-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.land-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.land-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.land-card:hover .land-image img {
    transform: scale(1.05);
}

/* バッジ */
.land-badge {
    position: absolute;
    top: 15px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    border-radius: 4px;
    z-index: 1;
    letter-spacing: 0.05em;
}

.land-badge-new {
    left: 15px;
    background: #29a9b8;
}

.land-badge-price {
    right: 15px;
    background: #E74C3C;
}

/* 土地情報 */
.land-info {
    padding: 0;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.land-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.land-access {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.land-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.land-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.land-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #29a9b8;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.land-link:hover {
    gap: 12px;
}

.land-link svg {
    transition: transform 0.3s ease;
}

.land-link:hover svg {
    transform: translateX(4px);
}

/* 一覧ボタン */
.land-more {
    text-align: center;
}

.btn-land-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #29a9b8;
    border: 1px solid #29a9b8;
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-land-more:hover {
    background-color: #fff;
    color: #29a9b8;
    opacity: 1;
}

.btn-land-more svg path {
    transition: stroke 0.3s ease;
}

.btn-land-more:hover svg path {
    stroke: #29a9b8;
}

/* 背景装飾 - 右上の青い曲線 */
.land-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15) 0%, rgba(78, 205, 196, 0.05) 50%, transparent 70%);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}



/* ============================================
   コンセプトハウス紹介セクション
============================================ */

 /**
.concept-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom, #E8F5F7 0%, #D5EEF2 100%);
    overflow: hidden;
    border-radius: 100px 100px 0 0;
}

.concept-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.concept-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.concept-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.concept-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
} 


.concept-title-main {
  font-size: clamp(28px, 4vw, 36px);
  color: #2aa4b0;
  font-weight: bold;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}*/


/**
 * コンセプトハウス紹介セクション
 */

.concept-section {
  background: linear-gradient(180deg, #e8f4f8 0%, #fff 100%);
  padding: 60px 20px;
}

.concept-container {
  max-width: 1000px;
  margin: 0 auto;
}

.concept-header {
  text-align: center;
  margin-bottom: 40px;
}

.concept-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 0px;
    border: none !important;
}

.concept-title .title-accent {
    color: #29a9b8;
}

.concept-catchphrase {
  font-size: 25px;
  color: #333;
  margin: 0;
}

.concept-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.concept-body .concept-left {
  flex: 1 1 50%;
  text-align: center;
}

.concept-area-list {
  margin-bottom: 20px;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  display: inline;
  text-align: center;
}

.concept-area-list span {
  display: inline-block;
  margin: 0 20px 10px;
}

.concept-image {
  border-radius: 8px;
  overflow: hidden;
}

.concept-image img {
  width: 100%;
  height: auto;
  display: block;
}

.concept-right {
  flex: 1 1 45%;
  min-width: 280px;
}

.concept-text-block {
  margin-bottom: 16px;
}

.concept-text-block .label {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 8px;
}

.concept-text-block p {
  font-size: 15px;
  color: #333;
  line-height: 1.9;
  margin: 0;
}

.concept-tags {
  margin: 20px 0 24px;
}

.concept-tag {
  display: inline-block;
  background: #e8e8e8;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.btn-concept-detail {
  display: inline-block;
  background: #2aa4b0;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn-concept-detail:hover {
  opacity: 0.9;
}


/* コンテンツエリア */
/* コンテンツエリア */
.concept-content {
    flex: 1;
    /* display: flex;  Removed, handled by concept-item */
    /* gap: 45px;      Removed */
    height: 100%;
    position: relative;
    width: 100%;
}

.concept-item {
    grid-area: stack;
    display: flex;
    gap: 45px;
    align-items: stretch;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    /* display:noneだと高さが消えるためvisibilityに変更 */
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    background: transparent;
    /* 重なった時に透けないように */
    z-index: 1;
}

.concept-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* 左側：画像 */
.concept-image {
    flex: 1;
    max-width: 100%;
}

.concept-image img {
    width: 100%;
    height: 100%;
    /* 高さ100% */
    object-fit: cover;
    /* 画像の比率維持 */
    border-radius: 8px;
}

/* 右側：情報 */
.concept-info {
    flex: 1;
    max-width: 500px;
}

.concept-subtitle {
    font-size: 35px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Decoration removed */

.concept-description {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.concept-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.concept-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}



.btn-concept-detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #29a9b8;
    border: 1px solid #29a9b8;
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-concept-detail:hover {
    background-color: #fff;
    color: #29a9b8;
    opacity: 1;
}

.btn-concept-detail svg path {
    transition: stroke 0.3s ease;
}

.btn-concept-detail:hover svg path {
    stroke: #29a9b8;
}

/* インジケーター */
.concept-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.concept-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333333;
    /* Inactive color */
    cursor: pointer;
    transition: all 0.3s ease;
}

.concept-indicator.active {
    background: #29a9b8;
}

/* ============================================
   お問い合わせセクション
============================================ */
.contact-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../../images/common/common-contact.jpg');
    /* 画像変更 */
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    /* fixed解除（画像による） */
}

.contact-section::before {
    display: none;
    /* 白いオーバーレイ削除 */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.7);
    /* 透過70% */
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* 影薄く */
    text-decoration: none;
    position: relative;
}

.contact-main-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.contact-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    margin-bottom: 0;
    line-height: 1;
    /* アイコンの高さズレ防止 */
}

.contact-icon img {
    width: 52px;
    height: 52px;
    /* 正方形指定 */
    object-fit: contain;
    display: block;
}

.contact-info-group {
    text-align: left;
}

.contact-title {
    font-size: 60px;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    font-family: "Outfit", sans-serif;
    /* 英語フォント指定があれば */
    padding-bottom: 0;
}

.contact-text {
    font-size: 20px;
    color: #333;
    /* 文字色確認（以前は#444） */
    font-weight: 700;
    margin-left: 0;
    /* 必要に応じてアイコン分下げる？今回は指定なしなので左寄せ */
}

.contact-arrow {
    font-size: 24px;
    color: #333;
    display: flex;
    align-items: center;
}

/* ============================================
   フッター
============================================ */
.footer {
    background: #2C2C2C;
    color: white;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
}

.footer-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 371px;
    background-color: #fff;
}

/* 左側：会社情報 */
.footer-left {
    flex: 1;
}

.footer-logo {
    margin-bottom: 24px;
    width: 100%;
    max-width: 238.67px;
}

.footer-logo img {
    width: 100%;
    aspect-ratio: 238.67 / 69.83;
    object-fit: contain;
}

.footer-company {
    margin-bottom: 30px;
}

.footer-company p {
    font-size: 14px;
    line-height: 1;
    color: #ccc;
}

.footer-map {
    border-radius: 8px;
    overflow: hidden;
}

/* 右側：メニュー */
.footer-right {
    flex: 1;
}

.footer-menu {
    display: flex;
    gap: 60px;
}

.footer-menu-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
    border-radius: 0;
}

.footer-menu-column h4 a {
    color: white;
    transition: color 0.3s ease;
}

.footer-menu-column h4 a:hover {
    color: #29a9b8;
}

.footer-menu-column ul {
    margin-bottom: 24px;
}

.footer-menu-column ul li {
    margin-bottom: 10px;
}

.footer-menu-column ul li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu-column ul li a:hover {
    color: #29a9b8;
}

/* コピーライト */
.footer-bottom {
    border-top: 1px solid #444;
    padding: 30px max(30px, calc((100% - 1200px) / 2 + 30px));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-privacy {
    margin-bottom: 0;
}

.footer-privacy a {
    color: #ccc;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-privacy a:hover {
    color: #29a9b8;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
}

/* ============================================
   レスポンシブ対応
============================================ */
@media screen and (max-width: 1275px) {
    .pickup-section::after {
        background: url(../../images/top/pick-up_treat.png) no-repeat -7% top, url(../../images/top/pick-up_bg.png) no-repeat 30% 11%;
        background-size: 300px, 110%;
    }
}

@media screen and (max-width: 1130px) {
    .pickup-section::after {
        background: url(../../images/top/pick-up_treat.png) no-repeat -15% top, url(../../images/top/pick-up_bg.png) no-repeat 50% 11%;
        background-size: 300px, 120%;
    }

    .contact-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 40px 30px;
    }

    .contact-title {
        font-size: 36px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 30px;
    }

    .footer-container::after {
        display: none;
    }
}

@media screen and (max-width: 1040px) {
    .pickup-section::after {
        display: none;
    }

    .pickup-section {
        padding: 80px 0;
        background-image: none;
        background: #fff;
    }
}

@media screen and (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }

    .nav-list li a {
        font-size: 14px;
    }

    .hero-title {
        font-size: 42px;
    }

    .news-container {
        gap: 50px;
    }

    .news-left {
        width: 240px;
    }

    .pickup-content {
        gap: 40px;
        padding: 40px;
    }

    .pickup-gallery {
        max-width: 400px;
    }

    .pickup-main-image {
        height: 320px;
    }

    .land-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .land-image {
        height: 220px;
    }

    .concept-section {
        padding: 80px 0;
    }

    .concept-title {
        font-size: 38px;
    }

    .concept-slider {
        gap: 20px;
    }

    .concept-content {
        gap: 40px;
    }

    .concept-arrow {
        width: 50px;
        height: 50px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-cards {
        gap: 30px;
    }

    .concept-item {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        gap: 60px;
    }

    .footer-menu {
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .nav {
        display: none;
    }

    .btn-contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-icon-bottom svg {
        width: 90%;
    }

    .news-container {
        flex-direction: column;
        gap: 40px;
    }

    .news-left {
        width: 100%;
    }

    .news-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 15px;
    }

    .news-date {
        min-width: auto;
    }

    .news-arrow {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .news-link:hover .news-arrow {
        transform: translateY(-50%) translateX(5px);
    }

    .pickup-section {
        padding: 80px 0;
    }

    .pickup-content {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .pickup-gallery {
        max-width: 100%;
    }

    .pickup-main-image {
        height: 280px;
    }

    .pickup-thumbnail-list {
        gap: 10px;
    }

    .pickup-thumbnail {
        height: 80px;
    }

    .title-en-large {
        font-size: 42px;
    }

    .land-section {
        padding: 80px 0;
    }

    .land-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .land-image {
        height: 240px;
    }

    .concept-section {
        padding: 60px 0;
    }

    .concept-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .concept-arrow-prev {
        display: none;
    }

    .concept-arrow-next {
        display: none;
    }

    .concept-image {
        max-width: 100%;
    }

    .concept-info {
        max-width: 100%;
    }

    .concept-subtitle {
        font-size: 24px;
    }

    .concept-price {
        font-size: 28px;
    }


}

@media screen and (max-width: 480px) {

    .btn-contact {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero {
        margin-top: 70px;
    }

    .hero-title {
        font-size: 24px;
    }

    .news-section {
        padding: 60px 0;
    }

    .title-en {
        font-size: 36px;
    }

    .title-ja {
        font-size: 16px;
    }

    .btn-news-more {
        padding: 12px 24px;
        font-size: 14px;
    }

    .news-title {
        font-size: 15px;
    }

    .pickup-section {
        padding: 60px 0;
    }

    .title-en-large {
        font-size: 32px;
    }

    .title-ja-small {
        font-size: 16px;
    }

    .pickup-content {
        padding: 20px;
    }

    .pickup-title {
        font-size: 24px;
    }

    .pickup-description {
        font-size: 15px;
    }

    .pickup-price {
        font-size: 24px;
    }

    .pickup-main-image {
        height: 220px;
    }

    .pickup-thumbnail {
        height: 60px;
    }

    .btn-pickup-detail {
        padding: 14px 32px;
        font-size: 15px;
    }

    .pickup-arrow {
        width: 45px;
        height: 45px;
    }

    .land-section {
        padding: 60px 0;
    }

    .land-header {
        margin-bottom: 20px;
    }

    .land-grid {
        margin-bottom: 40px;
    }

    .land-image {
        height: 200px;
    }

    .land-info {
        padding: 20px;
    }

    .land-title {
        font-size: 18px;
    }

    .btn-land-more {
        padding: 14px 32px;
        font-size: 15px;
    }
}

/* ============================================
   土地情報セクション (Land Information)
============================================ */

/* 背景装飾削除 */
.land-bg-decoration {
    display: none;
}

.land-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* タイトルエリア */
.land-header {
    text-align: left;
    /* 左寄せ */
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    /* 薄い下線 */
    position: relative;
    overflow: visible;
    /* 丸い装飾がはみ出るため */
}

/* タイトルレイアウト（横並び） */
.section-title-land {
    display: flex;
    align-items: baseline;
    gap: 20px;
    border: none;
    margin: 0;
}

@media (max-width: 780px) {
    .section-title-land {
        flex-direction: column;
        gap: 0;
    }
}

.land-title-en {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1;
    letter-spacing: 0.02em;
}

.text-cyan {
    color: #29a9b8;
    /* デザインに合わせたシアン色 */
}

.land-title-ja {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* グリッドレイアウト */
.land-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3カラム */
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .land-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .land-grid {
        grid-template-columns: 1fr;
    }
}

/* 土地カード */
.land-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.land-card:hover {
    transform: translateY(-5px);
}

/* 画像エリア */
.land-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    /* 4:3比率 */
    background: #f0f0f0;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.land-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* バッジコンテナ */
.land-badges-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    gap: 7px;
    /* ユーザー希望の隙間 */
    align-items: flex-start;
}

/* バッジ共通 */
.land-badge {
    position: static;
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    line-height: 1;
    white-space: nowrap;
}

.land-badge-new {
    background: #29a9b8;
    /* シアン */
}

.land-badge-price {
    background: #FFFFFF;
    color: #C1272D;
    /* 赤色テキスト */
}


/* 情報エリア */
.land-info {
    padding: 0;
}

.land-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    /* 濃いグレー */
    margin-bottom: 8px;
    line-height: 1.4;
}

.land-title:hover {
    color: #29a9b8;
}

.land-access {
    font-size: 13px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 500;
}

.land-meta {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 10px;
    width: 100%;
}

/* タグ */
.land-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-right: auto;
}

.land-tag {
    background: #F5F5F0;
    /* ベージュっぽい背景 */
    color: #555;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* 詳しく見るリンク */
.land-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.land-link:hover {
    color: #29a9b8;
}

.land-link:hover .land-arrow {
    transform: translateX(3px);
}

.land-arrow {
    color: #29a9b8;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
}

.land-header,
.land-header::after,
.land-header::before {
    border-bottom: none !important;
    text-decoration: none !important;
    display: block;
    /* Ensure it behaves correctly */
}

/* Remove unwanted borders (cleaned duplicate) */
.site-footer-title,
.sub-section-title,
h3:where(:not(.wp-block-post-title)) {
    border-bottom: none !important;
}

.site-footer-title::after,
.sub-section-title::after,
h3:where(:not(.wp-block-post-title))::after,
.site-footer-title::before,
.sub-section-title::before,
h3:where(:not(.wp-block-post-title))::before {
    display: none !important;
    content: none !important;
    border: none !important;
}

/* ============================================
   サブページヘッダーのスタイル（トップページ以外）
   ============================================ */
body:not(.home) .custom-header {
    background-color: transparent;
    transition: all 0.3s ease;
}

/* ロゴの色変更（初期状態はシアン） */
body:not(.home) .logo a {
    position: relative;
    overflow: hidden;
    display: flex;
    /* flex維持 */
}


/* メニューテキストの色（初期状態は濃いグレー） */
body:not(.home) .nav-list li a {
    color: #333333;
}

/* ハンバーガーメニューの色 */
body:not(.home) .hamburger span {
    background-color: #333333;
}

/* スクロール時：トップページと同じスタイルにする（背景青、文字白、ロゴ白） */
.custom-header.header-scrolled {
    background-color: rgba(41, 169, 184, 0.95) !important;
    /* #29a9b8 at 95% opacity */
    background-image: none !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* サブページ：スクロール時は背景白、文字黒 */
body:not(.home) .custom-header.header-scrolled {
    background-color: #fff !important;
}

body:not(.home) .custom-header.header-scrolled .nav-list li a {
    color: #333 !important;
}

body:not(.home) .custom-header.header-scrolled .hamburger span {
    background-color: #333 !important;
}

.custom-header.header-scrolled .nav-list li a {
    color: #fff !important;
}

/* スクロール時のロゴ（白に戻す） */
/*
body:not(.home) .custom-header.header-scrolled .logo img {
    transform: none;
    filter: none;
    transition: all 0.3s ease;
}
*/

.custom-header.header-scrolled .hamburger span {
    background-color: #fff;
}

/* ============================================
   その他微修正
   ============================================ */
.intro-main-image {
    border: none !important;
}

/* ============================================
   共通ページヒーロー（固定ページ・投稿ヘッダー）
   template-parts/page-hero.php 用
   company.css の会社概要ヘッダーに準拠
============================================ */
.page-hero {
    background: #fff;
    padding: 51px 0 80px;
    margin-top: 99px;
}

.page-hero-container {
    max-width: 1325px;
    margin: 0 auto;
    padding: 0 40px 0 74px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-end;
}

.page-hero-content {
    flex: 1;
}

.page-hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 4px;
    white-space: nowrap;
    color: #333;
}

.page-hero-subtitle {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
}

.page-hero-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 共通ページヒーロー - レスポンシブ */
@media (max-width: 768px) {
    .page-hero {
        padding: 50px 0;
    }

    .page-hero-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 40px;
    }

    .page-hero-content {
        text-align: center;
    }

    .page-hero-title {
        font-size: 48px;
        white-space: normal;
        text-align: center;
    }

    .page-hero-title.page-hero-title--consul {
        font-size: 40px;
    }

    .page-hero-subtitle {
        text-align: center;
    }

    .page-hero-image {
        width: 100%;
    }
}

/* ============================================
   固定ページ・投稿ページ コンテンツ記述部分
   背景白は出力エリアのみ。ヘッダー・出力エリアの後ろの背景は触らない。
   PC 768px / SP フル
============================================ */
.archive-main .archive-container {
    width: 100%;
    max-width: 100%;
    background: #fff;
}

.archive-main .page-content.entry-content {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 769px) {
    .archive-main .archive-container {
        max-width: 768px;
        margin-left: auto;
        margin-right: auto;
    }
}

