﻿@charset "UTF-8";
/**
 * apexcommunity css 1.0.0
 * Released on: 11,2025
 */
@import url('https://fonts.googleapis.com/css2?family=Ramabhadra&display=swap');

@keyframes linebuttonArrowAnim {
    0% {
        transform: translate(.6rem)
    }
    75% {
        transform: translate(0)
    }
    to {
        transform: translate(0)
    }
}
@keyframes linebuttonBackArrowAnim {
    0% {
        transform: translate(-.6rem)
    }
    75% {
        transform: translate(0)
    }
    to {
        transform: translate(0)
    }
}
@keyframes linebuttonDownArrowAnim {
    0% {
        transform: translateY(.6rem)
    }
    75% {
        transform: translate(0)
    }
    to {
        transform: translate(0)
    }
}
@keyframes linebuttonUpArrowAnim {
    0% {
        transform: translateY(-.6rem)
    }
    75% {
        transform: translate(0)
    }
    to {
        transform: translate(0)
    }
}

/*--------------------------------
flex
---------------------------------*/
.flex{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	flex-wrap: wrap; /* 折返し指定 */
}
.flex_list{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	flex-wrap: wrap; /* 折返し指定 */
}

/*--------------------------------
共通
---------------------------------*/
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
*, :after, :before {
    border-style: solid;
    border-width: 0;
    box-sizing: border-box
}
body, html {
  height: 100%;
  margin: 0;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif; /* Noto指定 */
}
main {
    display: block;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif; /* Noto指定 */
}
.main {
    background-color: #e3dcd3;
    padding-bottom: 10rem;
    position: relative;
    z-index: 1;
    padding-top: 10rem;
}

/*--------------------------------
header
---------------------------------*/
/* ヘッダー文字色を白に統一 */
.header,
.header * {
  color: #FFF;
}

/* リンクの通常色 */
.header__nav__list__item__link,
.header__nav__nested__list__item__link{
  color: #320000;
  text-decoration: none; /* 必要に応じて */
  transition: color 0.3s ease; /* ホバー時の色変化をスムーズに */
}
.headlink{
    color: #320000!important;
    font-weight: 600;
}
/* スクロール後のヘッダーリンク色 */
.header.scrolled .headlink {
    color: #fff !important;
    transition: color 0.3s ease; /* スムーズに色が変わる */
}
.header__nav__list__item__link:hover .hoverRoll__text span,
.header__nav__nested__list__item__link:hover .hoverRoll__text span {
  color: #fff000;
}
/* リンクホバー */
.headlink:hover {
  color: #00b090!important;
}

@media (max-width: 767px) {
.headlink{
    color: #fff!important;
    font-weight: 500;
}
.headlink:hover {
  color: #fff000!important;
}
}
/* モバイルハンバーガーやCloseボタンも白に */
.header__toggle span,
.header__toggle:before,
.header__toggle:after{
  background-color: #320000;
  color: #FFF!important;
}
.header__nav__close {
  color: #FFF;
}
.hoverRoll__text span+span {
    left: 0;
    position: absolute;
    top: calc(100% + 2px)
}
.hoverRoll.hover .hoverRoll__text span {
    animation: textRollOver .75s cubic-bezier(.19, 1, .22, 1) 0s 1 normal none
}

@keyframes textRollOver {
    0% {
        transform: translateY(0)
    }
    to {
        transform: translateY(calc(-100% - 2px))
    }
}
/*--------------------------------
header_area　
---------------------------------*/
main .header_area {
    background-color: #e3dcd3;
    width: 100%;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 0px;
}

main .header_area_title {
    width: 100%;
    margin: 0;
    font-size: 3.75rem;
    font-weight: 800;
    text-align: center;
}
main .header_area_sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    padding-bottom: 60px;
    font-size: 1.8rem;
    color: #333;
}

main .header_area_sub::before,
main .header_area_sub::after {
    content: "";
    flex: 0 0 clamp(60px, 10vw, 100px); /* ←ココが肝！ */
    height: 1px;
    background-color: #333;
}


/* 背景画像エリア */
main .header_area_photo {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    /* 元のアスペクト比（2880:750 ≒ 3.84:1） */
    aspect-ratio: 2880 / 750;

    background-image: url(../images/head_photo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;

    /* 高さ制限 */
    max-height: 650px;
    height: auto; /* 比率優先で高さを算出 */
}
main .bg_black{
    background-color: #000;
}
main .bg_gray{
    background-color: #f0f0f0;
}
main .bg_white{
    background-color: #FFFFFF;
}
main .bg_apex{
    background-color: #e3dcd3;
}
main .bg_sell{
    background-color: #C06B56; 
}
main .bg_rental{
    background-color: #B890AD; 
}
main .bg_resident{
    background-color: #00B090; 
}
main .bg_rental_s{
    background-color: #237DB1; 
}
main .bg_realnetpro{
    background-color: #F19100; 
}
main .sell_txt{
    color: #C06B56; 
}
main .rental_txt{
    color: #B890AD; 
}
main .rental_s_txt{
    color: #237DB1; 
}
section{ 
    margin: 0pt;
}
main .contact_bx{
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
/* ==============================
   1280px以下のとき
   同比率で自動縮小
============================== */
@media (max-width: 1280px) {
  main .header_area_photo {
    width: 100%;
    aspect-ratio: 2880 / 750; /* 比率維持 */
    height: auto; /* 縦サイズは自動算出 */
    /* 高さ制限 */
    min-height: 150px;
  }
}
@media (max-width: 1080px) {
main .header_area_title {
    width: 100%;
    margin: 0;
    font-size: 3.25rem;
    font-weight: 800;
    text-align: center;
} 
}
@media (max-width: 420px) {
main .header_area {
    padding-top: 20px;
}
main .header_area_title {
    font-size: 2.5rem;
} 
main .header_area_sub {
    padding-bottom: 40px;
    font-size: 1.2rem;
}
}
/*--------------------------------
 nav
---------------------------------*/
/* 管理物件セクション全体 */
/* nav全体 */
main .header_area nav {
    width: 100vw;
    background-color: #FFFFFF;
    padding: 45px 0 45px;
    text-align: center;
    margin: 0;
}

/* olをフレックスで横並びに */
main .header_area ol.nav_bg {
    display: flex;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    max-width: 1280px;
    gap: 10px; /* PC時のボタン間隔 */
}


/* liを横幅均等に */
main .header_area ol.nav_bg li {
    flex: 1;
    font-size: 1.25rem;
    text-align: center;
    font-weight: 400;
}

/* aタグをブロック化して横いっぱいに */
main .header_area ol.nav_bg li a {
    display: block;
    padding: 20px 0;
    text-align: center;
    text-decoration: none;
    color: #000;
    border-radius: 40px; /* PC用角丸 */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* ボタンごとの背景色 */
.company_btn_a a { background-color: #FFDCD3; }
.company_btn_b a { background-color: #D3EEE7; }
.company_btn_c a { background-color: #FFEEBA; }

/* ホバー色 */
.company_btn_a a:hover { background-color: #FFB8A8; }
.company_btn_b a:hover { background-color: #A8DDD3; }
.company_btn_c a:hover { background-color: #FFE180; }

/* ホバーで少し拡大 */
main .header_area ol.nav_bg li a:hover {
    transform: scale(1.03);
}
/* --------------------------
   スマホ用（767px以下）
   -------------------------- */
@media (max-width: 767px) {
    main .header_area nav {
    padding: 0px;
}

    main .header_area ol.nav_bg {
        gap: 0; /* 隙間なし */
    }

    main .header_area ol.nav_bg li a {
        border-radius: 0; /* 角丸なし */
        padding: 15px 0; /* SP向けに少し高さ調整 */
    }
}
/* =========================
   基本スタイル（共通）
   ========================= */
main .information_area {
  width: 100vw;
  padding: 5rem 10rem;
}

main .information_bx {
  width: 100%;
  max-width: 1280px;
  padding: 5rem;
  border-radius: 1rem;
  margin-left: auto;
  margin-right: auto;
}

main .information_title {
  width: 100%;
  text-align: justify;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2rem;
  margin-top: 4rem;
}

/* 最初のタイトルだけ余白なし */
main .information_title:first-child {
  margin-top: 0;
}

main .information_txt {
  width: 100%;
  text-align: justify;
  font-size: 1.2rem;
  line-height: 2.5rem;
}

main .privacy_bx {
  background-color: #ECE7EC;
  padding: 2rem;
  margin-top: 0;
}

/* --------------------------
   service_list（番号付きリスト）
-------------------------- */
.service_list {
  width: 100%;
  text-align: justify;
  counter-reset: service-counter;
}

.service_list ol {
  margin-left: 2rem;
  padding: 0;
  list-style: none;
}

.service_list ol > li {
  counter-increment: service-counter;
  position: relative;
  font-size: 1.2rem;
  line-height: 2.5rem;
  margin-bottom: 0.5rem;
  padding-left: 2rem;
}

.service_list ol > li::before {
  content: counter(service-counter) ". ";
  position: absolute;
  left: 0;
}

/* --------------------------
   privacy_contact（問い合わせ窓口右揃え）
-------------------------- */
.privacy_contact {
  width: 100%;
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.2rem;  /* information_txt と同じ行間 */
  margin-top: 2rem;
  box-sizing: border-box;
  white-space: pre-wrap;
}

/* =========================
   レスポンシブ調整
   ========================= */

/* 1280px 以下 */
@media (max-width: 1280px) {
  main .information_area {
    padding: 4rem 5rem;
  }
  main .information_bx {
    padding: 4rem;
  }
  main .information_title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  main .information_txt {
    font-size: 1.1rem;
    line-height: 2.4rem;
  }
  .privacy_contact {
    font-size: 1.1rem;
  line-height: 1.2rem;  
  }
}

/* 680px 以下（スマホに近い） */
@media (max-width: 680px) {
  main .information_area {
    padding: 3rem 2rem;
  }
  main .information_bx {
    padding: 3rem;
  }
  main .information_title {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  main .information_txt {
    font-size: 1rem;
    line-height: 2.2rem;
  }
  .privacy_contact {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
main .privacy_bx {
  background-color: #ECE7EC;
  padding: 1rem;
  margin-top: 0;
}
.service_list ol {
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 0;
  list-style: none;
}
}

/* 420px 以下（さらに小さいスマホ向け） */
@media (max-width: 420px) {
  main .information_area {
    padding: 2rem 1rem;
  }
  main .information_bx {
    padding: 2rem;
  }
  main .information_title {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  main .information_txt {
    font-size: 0.9rem;
    line-height: 2rem;
  }
  .privacy_contact {
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}