﻿@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;
}

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

/* ホバー色 */
.service_btn_a a:hover { background-color: #FFB8A8; }
.service_btn_b a:hover { background-color: #A8DDD3; }
.service_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向けに少し高さ調整 */
    }
}

/* --------------------------
   service_area
   -------------------------- */
main .service_area{
    width: 100vw;
    padding: 5rem 10rem;
}
.service_left{
    width: 25%;
}
.service_right{
    width: 75%;
}
.service_right ul{
    margin: 0 auto;
    padding: 0;
}
.service_left_title{
    font-size: 2.125rem;
    text-align: left;
    font-weight: 600;
}
.service_read{
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.service_txt{
    font-size: 1.2rem;
    text-align: justify;
    line-height: 2.6rem;
}

.service_right .point_bx{
    margin: 0 auto;
    padding: 0;
}

.service_right .point_bx li{
    width: 45%;
    margin-right: 5%;
}
.service_right .point_no{
    font-size: 1.125rem;
    margin: 0 auto;
    
}
.service_right .point_title{
    font-size: 2rem;
    margin: 0px auto 20px;
}
.service_right .point_photo{
    width: 100%;
    margin-bottom: 15px;
}
.service_right .point_photo img{
    width: 100%;
}
.service_right .point_txt{
    font-size: 1.125rem;
    margin: 5px auto 45px;
    text-align: justify;
}

main .service_line {
    width: 100vw;               /* 画面幅いっぱい */
    display: flex;
    flex-direction: column;
    align-items: center;         /* 中央揃え */
    justify-content: center;
    padding: 80px 0;             /* 上下の余白 */
    box-sizing: border-box;
}
main .service_sell_title{
    font-size: 2.5rem;
    line-height: 3rem;
    color: #fff;    
}

main .service_owner_photo{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    padding-bottom: 10px;
    max-width: 780px;
}
main .service_owner_photo img{
    width: 100%;
}
main .service_solution{
    font-size: 2rem;
    line-height: 3rem;
    text-align: center;
    font-weight: 700;
    padding-bottom: 60px;
}
main.point_buttun_bx{
    width: 100%;
}
/* =====================
   service_form_bx
===================== */
main .service_form_bx {
  width: 100%;
  padding: 10rem 10rem;
}


/* 画像側 */
main .service_form_photo {
  width: 48%;
  margin-right: 2%;
}
main .service_form_photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト側 */
main .service_form_txtbx {
  width: 48%;
  margin-left: 2%;
}

main .service_form_title {
    font-size: 1.5rem; /* 24px */
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 2rem;
    width: 100%;
}
main .service_title {
    font-size: 2rem; 
    line-height: 2.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    width: 100%;
}
main .service_manner{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    margin: 0px;
    padding-bottom: 3rem;
}
main .service_form_txt {
    font-size: 1.25rem; /* 18px */
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #333;
    text-align: justify;
}
main .form_buttun_bx{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 0px;
}
main .form_buttun_herfbx{
    width: 48%;
    padding-top: 10px;
    margin-right: 1%;
    margin-left: 1%;
    padding-bottom: 30px;
}
@media screen and (max-width: 1280px) {
main .service_left{
    width: 96%;
    margin-right: 2%;
    margin-left: 2%;
    padding-bottom: 30px;
}
main .service_right{
    width: 100%;
}
main .service_area{
    width: 100vw;
    padding: 5rem 5rem;
}
.service_right .point_bx li{
    width: 46%;
    margin-right: 2%;
    margin-left: 2%;
}
.service_read{
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
    margin-right: 2%;
    margin-left: 2%;
}
.service_txt{
    font-size: 1.2rem;
    text-align: justify;
    line-height: 2.6rem;
    margin-right: 2%;
    margin-left: 2%;
}

}

@media screen and (max-width: 880px) {
    
main .service_right .point_bx li{
    width: 96%;
    margin-right: 2%;
    margin-left: 2%;
    margin-bottom: 15px;
}
main .service_sell_title{
    font-size: 2rem;
    line-height: 2.5rem;
    color: #fff;    
}
main .form_buttun_herfbx{
    width: 98%;
    padding-top: 10px;
    margin-right: 1%;
    margin-left: 1%;
    padding-bottom: 0px;
}

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

.service_right .point_title{
    font-size: 1.5rem;
    margin: 0px auto 20px;
}
.service_left_title{
    font-size: 2rem;
    text-align: left;
    font-weight: 600;
}
main .service_line {
    padding: 60px 0;             /* 上下の余白 */
}
main .service_area{
    width: 100vw;
    padding: 3rem;
}
main .service_left{
    width: 96%;
    margin-right: 0%;
    margin-left: 0%;
    padding-bottom: 24px;
}
.service_read{
    font-size: 1.3rem;
    line-height: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    margin-right: 0%;
    margin-left: 0%;
    text-align: justify;
}
.service_txt{
    font-size: 1rem;
    text-align: justify;
    line-height: 2rem;
    margin-right: 0%;
    margin-left: 0%;
} 
main .service_sell_title{
    font-size: 1.5rem;
    line-height: 2rem;
    color: #fff;    
}
 main .service_solution{
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: justify;
    font-weight: 700;
    padding-bottom: 60px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}  
.service_right .point_no{
    font-size: 1rem;
    
}
}
@media screen and (max-width: 480px) {
 main .service_area{
    width: 100vw;
    padding: 2rem;
} 
.service_left_title{
    font-size: 1.8rem;
    text-align: left;
    font-weight: 600;
}
main .service_solution{
    font-size: 1.2rem;
    line-height: 1.8rem;
    text-align: justify;
    font-weight: 700;
    padding-bottom: 60px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
}

/* ===============================
   画面幅1080px以下（タブレット）
=============================== */
@media (max-width: 1080px) {
  main .service_form_bx {
    padding: 5rem 5rem;
  }
  main .contact_bx {
    flex-wrap: wrap;
  }
  main .service_form_photo,
  main .service_form_txtbx {
    width: 100%;
    margin: 0 0 3rem 0;
  }
  main .service_form_title {
    font-size: 1.4rem;
  }
  main .service_form_txt {
    font-size: 1.05rem;
  }
}

/* ===============================
   画面幅768px以下（スマホ）
=============================== */
@media (max-width: 768px) {
  main .service_form_bx {
    padding: 3rem 2rem;
  }
  main .service_form_title {
    font-size: 1.3rem; /* 約21px */
  }
  main .service_form_txt {
    font-size: 1rem; /* 約16px */
  }
  main .contact_bx{
    width: 95%;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
  }
}


/* --------------------------
   form_buttun
   -------------------------- */
a.form_buttun {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    color: #fff;
    border-radius: 45px;
    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.form_buttun span {
    position: relative;
    z-index: 2;
}

/* ホバー背景 */
a.form_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.form_buttun:hover:before {
    transform: translateX(0%);
}

/* 右矢印 */
a.form_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.form_buttun:hover span,
a.form_buttun:hover::after {
    color: #fff;   /* 黒に変更 */
}

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


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


/* ========================================
   FAQセクション（レスポンシブ対応 完全版）
   ======================================== */

/* FAQ全体の余白と中央寄せ */
.faq {
  padding:  5rem 2rem;
}

.faq__inner {
  max-width: 100%;
  margin: 0 auto;
}

/* 各アイテム */
.faq__item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

/* 質問ボタン */
.faq__question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.8rem;  /* 基本フォント */
  text-align: left;
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  color: #00B090;
  font-weight: 600;
}

.faq__question:hover {
  color: #00866D;
}

/* 質問右端にプラス／マイナス記号をつける */
.faq__question::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

/* 開いたときのマイナス表示 */
.faq__item.active .faq__question::after {
  content: "−";
  transform: rotate(180deg);
}

/* 回答部分：スムーズに開閉 */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  background: #fff;
  padding: 0 1.5rem;
}

.faq__item.active .faq__answer {
  opacity: 1;
  padding-bottom: 1.5rem;
}

/* 文章 */
.faq__answer p {
  font-size: 1.2rem;
  line-height: 3rem;
  color: #444;
  margin-top: 1rem;
  text-align: justify;
}

/* ========================================
   ▼ レスポンシブ対応：880px以下（タブレット）
   ======================================== */
@media (max-width: 880px) {
  .faq {
    padding: 4rem 1.5rem;
  }

  .faq__question {
    font-size: 1.6rem; /* 少し小さめに */
    padding: 1.2rem 1rem;
  }

  .faq__question::after {
    right: 1rem;
    font-size: 1.8rem;
  }

  .faq__answer {
    padding: 0 1rem;
  }

  .faq__answer p {
    font-size: 1.1rem;
    line-height: 2.6rem;
  }
}

#faq .contact_tel{
    width: 100%;
    padding: 0rem 3rem 1rem 1rem;
}
#faq .contact_tel{
    margin: 0px;
    padding: 0px;
    font-size: 20px;
    font-weight: 600;
}
#faq .contact_tel a:link,
#faq .contact_tel a:hover,
#faq .contact_tel a:visited
#faq .contact_tel a:active {
    color: #000;           /* 通常のリンク色（未訪問） */
    text-decoration: none; /* 下線なし */
    font: 800 40px/100% 'Ramabhadra', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}
/* ========================================
   ▼ レスポンシブ対応：420px以下（スマホ）
   ======================================== */
@media (max-width: 420px) {
  .faq {
    padding: 2rem 0rem;
  }

  .faq__question {
    font-size: 1.4rem; /* スマホで読みやすく */
    padding: 1rem 0.8rem;
  }

  .faq__question::after {
    right: 0.8rem;
    font-size: 1.6rem;
  }

  .faq__answer {
    padding: 0 0.8rem;
  }

  .faq__answer p {
    font-size: 1rem;
    line-height: 2.4rem;
  }
    #faq .contact_tel a:link,
#faq .contact_tel a:hover,
#faq .contact_tel a:visited
#faq .contact_tel a:active {
    color: #000;           /* 通常のリンク色（未訪問） */
    text-decoration: none; /* 下線なし */
    font: 800 25px/100% 'Ramabhadra', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}
}