﻿@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_before-after{
    background-color: #DF88BB; 
}
main .bg_renovation{
    background-color: #A76AA2; 
}
main .before-after_txt{
    color: #DF88BB; 
}
main .renovation_txt{
    color: #A76AA2; 
}
section{ 
    margin: 0pt;
}
main .contact_bx{
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
/*--------------------------------
 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;
}


/* --------------------------
   スマホ用（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向けに少し高さ調整 */
    }
}

/* --------------------------
   topix_area
   -------------------------- */
main .topix_area{
    width: 100vw;
    padding: 0rem;
}
main .topix_area2{
    width: 100vw;
    padding: 5rem;
}
.topix_left_title{
    font-size: 2.125rem;
    text-align: left;
    font-weight: 600;
}
.topix_txt{
    font-size: 1.2rem;
    text-align: justify;
    line-height: 2.6rem;
}

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

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

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

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

.works_title {
    font-size: 2.75rem;  
    text-align: center;
}

.works_title_bx .highlight {
    background-image: linear-gradient(0deg, #ffffff 0.5em, transparent 0.5em);
    width: 5em;
    margin-left: auto;
    margin-right: auto;
}

.works_title_bx .highlight2 {
    background-image: linear-gradient(0deg, #ffffff 0.5em, transparent 0.5em);
    width: 16em;
    margin-left: auto;
    margin-right: auto;
}
main .works_photo{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-bottom: 60px;
}
main .works_photo img{
    width: 100%;
}
main .works_info{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 2px 1rem 2px;
    text-align: center;
    margin-top: 15px;
}
main .works_info_txt{
    font-size: 2rem;
    text-align: center;
    font-weight: 600;    
}
/* ==============================
   1280px以下のとき
   同比率で自動縮小
============================== */
@media (max-width: 1280px) {
.works_photo{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    padding: 4rem;
    margin-bottom: 30px;
}

}
@media (max-width: 1080px) {
.works_photo{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    padding: 3rem;
    margin-bottom: 0px;
}
main .works_info_txt{
    font-size: 2rem;
    text-align: center;
    font-weight: 600;    
}
main .works_info_txt{
    font-size: 1.6em;
    text-align: center;
    font-weight: 600;    
}
main .works_info{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 2px 1rem 2px;
    text-align: center;
}
main .works_title {
    font-size: 2rem;  
    text-align: center;
}
.works_title_bx .highlight2 {
    width: 80%;
}
}
@media (max-width: 680px) {
main .works_info_txt{
    font-size: 1.4rem;
    text-align: justify;
    font-weight: 600;
}
main .topix_title{
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    text-align: justify;
}
    .works_title_bx{
    padding: 3rem 3rem 1rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
main .before-after_title{
    font-size: 2.2rem;
    line-height: 2rem;
}
main .works_photo{
    padding-top: 0rem;
    padding-right: 2rem;
    padding-left: 2rem;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    margin-bottom: 0px;
}
main .works_info{
    margin-top: 5px;
}
}
@media (max-width: 420px) {

main .before-after_title{
    font-size: 2rem;
}
main .works_info_txt{
    font-size: 1.3rem;
    text-align: justify;
    font-weight: 600;
}

main .works_info_txt{
    font-size: 1rem;
    font-weight: 600;    
}
main .topix_title{
    font-size: 1.4rem;
    line-height: 2.4rem;
}
}
/* ==============================
   foot_banner_bx
============================== */
main .foot_banner_bx{
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    margin-bottom: 100px;
}
main .foot_banner_left{
    width: 50%;
    padding: 4rem;
}
main .foot_banner_right{
    width: 50%;
}
main .foot_banner_right img{
    width: 100%;
}
main .foot_banner_title{
    font-size: 2rem;
    text-align: center;
    color: #fff;
    font-weight: 700;
}
main .foot_banner_txt{
    font-size: 1.3rem;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}


/* --------------------------
   renovation
   -------------------------- */
main .renovation_photo {
  width: 48%;
  margin-right: 2%;
}
main .renovation_photo img {
  width: 100%;
  height: auto;
  display: block;
}

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

main .renovation_title {
    font-size: 1.5rem; /* 24px */
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 2rem;
    width: 100%;
}
main .reform_txt {
    font-size: 1.25rem; /* 18px */
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #333;
    text-align: justify;
}
main .renovation_read{
    font-size: 1.6rem; /* 18px */
    line-height: 2.4rem;
    margin-bottom: 4rem;
    color: #333;
    text-align: center;    
}
main .works_photo hr{
    border-bottom: 1px solid #000000;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
main .pd_top{
    padding-top: 5rem;
    padding-bottom: 5rem;
}
/* ===============================
   画面幅1080px以下（タブレット）
=============================== */
@media (max-width: 1080px) {
  main .renovation_bx {
    padding: 5rem 5rem;
  }
  main .contact_bx {
    flex-wrap: wrap;
  }
  main .renovation_photo,
  main .renovation_txtbx {
    width: 100%;
    margin: 0 0 3rem 0;
  }
  main .renovation_title {
    font-size: 1.4rem;
  }
  main .reform_txt {
    font-size: 1.05rem;
  }
main .renovation_read{
    font-size: 1.4rem; /* 18px */
    line-height: 2rem;
    margin-bottom: 3rem; 
}
}
/* ===============================
   画面幅768px以下（スマホ）
=============================== */
@media (max-width: 768px) {
  main .renovation_bx {
    padding: 3rem 2rem;
  }
  main .renovation_title {
    font-size: 1.3rem; /* 約21px */
  }
  main .reform_txt {
    font-size: 1rem; /* 約16px */
  }
  main .contact_bx{
    width: 95%;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
  }
main .renovation_read{
    font-size: 1.2rem; /* 18px */
    line-height: 2rem;
    margin-bottom: 2.5rem;
    text-align: justify;
}
    main .works_photo hr{
    padding-top: 2rem;
    padding-bottom: 0rem;
}
main .pd_top{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
main .foot_banner_title{
    font-size: 1.5rem;
}
}

/* --------------------------
   form_buttun
   -------------------------- */
a.form_buttun {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    color: #000;
    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: #fff000;   /* 黄色背景 */
    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: #000;   /* 初期は白 */
    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: #000;   /* 黒に変更 */
}

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;
    }
    main .foot_banner_left{
    width: 50%;
    padding: 3rem;
}
}
@media screen and (max-width: 1200px) {
    a.form_buttun {
        padding: 15px 10px;
        font-size: 16px;
    }
    main .foot_banner_txt{
    font-size: 1rem;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}main .foot_banner_left{
    width: 50%;
    padding: 2.8rem;
}
}
/* スマホ対応 */
@media screen and (max-width: 767px) {
a.form_buttun {
        font-size: 14px;
    }
a.form_buttun::after {
        font-size: 14px;
        right: 10px;
    }
main .foot_banner_left{
    width: 100%;
    padding: 3rem;
}
main .foot_banner_right{
    width: 100%;
}
    main .foot_banner_txt{
    font-size: 0.8rem;
    text-align: justify;
    color: #fff;
    margin-bottom: 20px;
}
    
}/* スマホ対応 */
@media screen and (max-width: 680px) {
    main .foot_banner_bx{
    width: 100%;
    margin-bottom: 20px;
}
main .topix_area2{
    width: 100vw;
    padding: 3rem;
}
}
@media screen and (max-width: 420px) {
a.form_buttun {
    padding: 10px 10px;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
    }
main .foot_banner_left{
    width: 100%;
    padding: 2rem;
}
a.form_buttun::after {
        font-size: 14px;
    }
main .service_line {
    padding: 40px 0;             /* 上下の余白 */
}
main .foot_banner_title{
    font-size: 1.3rem;
}
}
@media screen and (max-width: 350px) {
    a.form_buttun {
    font-size: 12px;
    }
}
