﻿@charset "UTF-8";
/**
 * apexcommunity css 1.1.1
 * 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_news{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	flex-wrap: wrap; /* 折返し指定 */
}
.flex_news_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 .bg_news_red{
    background-color: #C06B56; 
}
main .news_red{
    color: #C06B56;
    font-weight: 700;
}
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 .news_area {
  width: 100vw;
  padding: 5rem 10rem;
}

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

main .news_title {
  width: 100%;
  text-align: justify;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2rem;
  margin-top: 4rem;
}
main .index__news__list__link{
    border-bottom: 1px solid #000;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 3rem;
    position: relative;
}
main .index__news__list__link__date{
  font-size: 1rem;
}
main .index__news__list__link__title{
    width: 100%;
    font-size: 1.5rem;
    line-height: 2rem;
    padding-bottom: 2rem;
    font-weight: 700;
    text-align: justify;
    border-bottom: 1px dotted #000;
}
main .index__news__list__link:first-child {
    border-top: 1px solid #000;
}
main .news_left{
    width: 15%;
    text-align: center;
}
main .news_right{
    width: 85%;
    text-align: justify;
}
main .news_none{
    display: none;    
}
main .no-link {
    color: #323743!important;   
    cursor: default;
}
main .news_txt_bx{
    padding-top: 1.5rem;
}
main .news_txt_bx p{
    padding: 0px;
    margin: 0px;
}
main .news_txt{
    font-size: 1.2rem;
    line-height: 2rem;
}
main .news_buttun_bx{
    padding-top: 1.5rem;
}


.index__news__list__link:first-child .index__news__list__link__tags {
    top: 2.5rem
}
.index__news__list__link__tags {
    color: rgba(26, 26, 26, .5);
    display: flex;
    flex-flow: row wrap;
    font-size: max(1.1rem, 12px);
    letter-spacing: 0;
    line-height: 1.1666666667em;
    position: absolute;
    right: 0rem;
    top: 5rem;
    width: 11rem
}
.index__news__list__link__tags__tag {
    display: inline-block
}


main .news_cap{
    width: 100%;
        
    }
@media (max-width: 1280px) {
main .news_area {
  width: 100vw;
  padding: 3rem;
}  

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


/* --------------------------
   news_buttun
   -------------------------- */
a.news_buttun {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    color: #fff;
    border-radius: 5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
    font: 600 20px 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif; /* Noto指定 */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ボタン内テキスト */
 a.news_buttun span {
    position: relative;
    z-index: 2;
}

/* ホバー背景 */
a.news_buttun:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #957A58;   /* 黄色背景 */
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1;
}

a.news_buttun:hover:before {
    transform: translateX(0%);
}

/* 右矢印 */
a.news_buttun::after {
    content: '›';
    position: absolute;
    right: 25px;
    top: 45%;
    transform: translateY(-50%);
    color: #fff;   /* 初期は白 */
    font-size: 40px;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* ホバー時の文字色・矢印色 */
a.news_buttun:hover span,
a.news_buttun:hover::after {
    color: #fff;   /* 黒に変更 */
}

a.news_buttun:hover::after {
    transform: translateY(-50%) translateX(4px);
}


@media screen and (max-width: 1350px) {
    a.news_buttun {
        padding: 20px 10px;
        font-size: 18px;
    }
}
@media screen and (max-width: 1200px) {
    a.news_buttun {
        padding: 15px 10px;
        font-size: 16px;
    }
}
/* スマホ対応 */
@media screen and (max-width: 767px) {
a.news_buttun {
        font-size: 14px;
    }
a.news_buttun::after {
        font-size: 14px;
        right: 10px;
    }
    
}/* スマホ対応 */
@media screen and (max-width: 420px) {
a.news_buttun {
    padding: 10px 10px;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
    }
a.news_buttun::after {
        font-size: 14px;
    }
main .service_line {
    padding: 40px 0;             /* 上下の余白 */
}
}
@media screen and (max-width: 350px) {
    a.news_buttun {
    font-size: 12px;
    }
}



/* =========================
   タブレット・スマホ（768px以下）
   ========================= */
@media (max-width: 768px) {
  main .news_area {
    padding: 2rem 2rem;
  }

    
main .index__news__list__link__date{
    width: 100%;
    background-color: #F0F0F0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    }
  main .index__news__list__link {
    width: 90%;
    flex-flow: column nowrap;
    padding: 0rem 0px 1.5rem;
    margin-right: auto;
    margin-left: auto;
  }

  main .news_left {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }

  main .news_right {
    width: 100%;
  }
  main .index__news__list__link__title {
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .index__news__list__link__tags {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1rem;
  }

  main .news_txt {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
.realnetpro_bx{
    width: 100%;
    max-width: 620px;
    margin: 25px auto;
    padding-top: 60px;
}
.realnetpro_bx img{
    width: 100%;
}

.realnetpro_bx img:hover {
    transform: scale(1.03);
  opacity: 0.8;
}
@media (max-width: 768px) {
.realnetpro_bx{
    width: 90%;
    margin: 15px auto;
    padding-top: 60px;
}
 }