@charset "UTF-8";
body {
  font-family: "Inter", sans-serif;
  background-color: #F6F6F6;
}

header li, footer li {
  list-style: none;
}

a {
  text-decoration: none;
}

.mb_br {
  display: none;
}
@media (width < 1101px) {
  .mb_br {
    display: block;
  }
}

@media (width < 431px) {
  .pc_br {
    display: none;
  }
}

.tb_block {
  display: none;
}
@media (width < 1101px) {
  .tb_block {
    display: block;
  }
}

@media (width < 1101px) {
  .tb_none {
    display: none;
  }
}

/* .tb_center {
  display: none;
} */
@media (width < 1101px) {
  .tb_center {
    display: block;
    margin: 0 auto;
  }
}

/*----------セクションタイトル----------*/
.main_title {
  color: #B7AD84;
  font-size: 50px;
  letter-spacing: 0.3rem;
}
@media (width < 1101px) {
  .main_title {
    font-size: 40px;
  }
}
@media (width < 431px) {
  .main_title {
    font-size: 30px;
  }
}

.sub_title {
  font-size: 20px;
  font-weight: bold;
}
@media (width < 1101px) {
  .sub_title {
    font-size: 16px;
  }
}

.box_title {
  color: #B7AD84;
  font-size: 60px;
  letter-spacing: 0.3rem;
}
@media (width < 1101px) {
  .box_title {
    font-size: 30px;
  }
}

.box_sub_title {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}
@media (width < 431px) {
  .box_sub_title {
    font-size: 14px;
  }
}

/*----------ボタンレイアウト----------*/
.btn_01 {
  width: 300px;
  height: 70px;
}
.btn_01 a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #2D2D2D;
  border-radius: 5px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}
.btn_01 a:hover {
  background-color: #B7AD84;
  border-radius: 10px;
}

.btn_02 {
  width: 300px;
  height: 70px;
}
.btn_02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B7AD84;
  border-radius: 5px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}
.btn_02 a:hover {
  background-color: #B7AD84;
  color: #fff;
  border-radius: 10px;
}
@media (width < 431px) {
  .btn_02 {
    margin: 0 auto;
  }
}

.center_btns {
  margin: 0 auto;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/*----------ヘッダー----------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

@media (width < 1101px) {
  header {
    top: 0;
  }
}
.slide_nav_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 5% 0 5%;
  padding: 0 2%;
  border-radius: 5px;
  transition: all 0.5s ease;
}
@media (width < 1101px) {
  .slide_nav_wrapper {
    margin: 0;
    padding: 0 0 0 30px;
  }
}
@media (width < 431px) {
  .slide_nav_wrapper {
    padding: 0 0 0 15px;
  }
}

.mb_header__container {
  display: flex;
  justify-content: right;
  align-items: center;
}

.mb_menu {
  display: none;
}

@media (width < 1101px) {
  .mb_menu {
    display: block;
  }
}
.header_logo {
  width: 6%;
  padding: 10px 0;
}
@media (width < 1441px) {
  .header_logo {
    width: 8%;
  }
}
@media (width < 1101px) {
  .header_logo {
    width: 12%;
    padding: 0;
  }
}
@media (width < 431px) {
  .header_logo {
    width: 20%;
  }
}

.header_logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===============================================
ハンバーガーボタンのスタイリング
=============================================== */
.hamburger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 550;
  background-color: #404040;
  transition: 0.5s all;
}

@media (width < 1101px) {
  .hamburger {
    width: 120px;
    height: 100px;
    background-color: #2D2D2D;
  }
}
@media (width < 769px) {
  .hamburger {
    height: 80px;
  }
}
@media (width < 431px) {
  .hamburger {
    width: 100px;
    height: 70px;
  }
}
.hamburger:hover {
  background-color: #000;
}

.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 50px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.5s;
}

@media (width < 1281px) {
  .hamburger span,
.hamburger span::after,
.hamburger span::before {
    width: 30px;
  }
}
.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ===============================================
メニューのスタイリング
=============================================== */
.mb_nav {
  position: fixed;
  width: 60%;
  height: 100vh;
  top: 0;
  right: -120%;
  background-color: #404040;
  opacity: 0.9;
  padding: 100px 0;
  transition: all 0.5s;
  z-index: 500;
}

@media (width < 431px) {
  .mb_nav {
    width: 100%;
    padding: 50px 0 100px 0;
  }
}
.mb_nav__list {
  display: block;
}

.mb_nav__list li {
  padding-left: 5%;
}

.mb_nav__item a {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 20px 0 20px 50px;
  text-transform: uppercase;
}

.mb_nav__item a:hover {
  color: #0f5474;
  background-color: #fff;
  width: 60%;
}

@media (width < 1101px) {
  .mb_nav__item a:hover {
    width: 80%;
  }
}
@media (width < 769px) {
  .mb_nav__item a:hover {
    width: 100%;
  }
}
.mb_nav.open {
  right: 0;
}

.mb_header__container {
  display: none;
}
@media (width < 1101px) {
  .mb_header__container {
    display: block;
  }
}

/* ===============================================
パソコン・ナビゲーションメニュー
=============================================== */
.header_pc_container {
  width: 60%;
}
@media (width < 1101px) {
  .header_pc_container {
    display: none;
  }
}

.header_pc_nav ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_pc_nav li {
  font-size: 16px;
  text-align: center;
}
.header_pc_nav a {
  color: #000;
  transition: color 0.3s ease;
}
.header_pc_nav a:hover {
  color: #B7AD84;
}

.menu_rb {
  font-size: 10px;
}

/*----------コンタクトボタン----------*/
.header_pc_nav .hnav_contact {
  background-color: #2D2D2D;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header_pc_nav .hnav_contact:hover {
  background-color: #B7AD84; /* 好みに応じて調整可能 */
  color: #fff;
}

/*----------ヘッダー背景色----------*/
.slide_nav_wrapper.scrolled {
  background-color: #ffffff; /* 白背景に少し透け感 */
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
@media (width < 1101px) {
  .slide_nav_wrapper.scrolled {
    background-color: transparent;
    box-shadow: none;
  }
}

header.scrolled .header_pc_nav a {
  color: #fff;
}

/* ===============================================
スライドショー
=============================================== */
.swiper-slide img {
  width: 100%;
  height: 100%;
  margin: 0;
}

.sample-slider .swiper-wrapper {
  transition-timing-function: linear;
}

/* ===============================================
ファーストビュー
=============================================== */
.top_fv {
  padding: 6% 0 7% 0;
  background-image: url(img/tile1.webp);
  background-position: right bottom;
  background-size: 65%;
}
@media (width < 1441px) {
  .top_fv {
    padding: 10% 0 7% 0;
  }
}
@media (width < 1101px) {
  .top_fv {
    padding: 12% 0 7% 0;
  }
}
@media (width < 769px) {
  .top_fv {
    padding: 20% 0 7% 0;
    background-size: 80%;
  }
}
@media (width < 431px) {
  .top_fv {
    padding: 28% 0 7% 0;
  }
}

.top_fv_title {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3% 0;
}
@media (width < 1441px) {
  .top_fv_title {
    max-width: 1280px;
  }
}
@media (width < 1281px) {
  .top_fv_title {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .top_fv_title {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .top_fv_title {
    padding: 0 0 3% 3%;
  }
}
.top_fv_title h1 {
  font-size: 35px;
  font-weight: bold;
}
@media (width < 1281px) {
  .top_fv_title h1 {
    font-size: 30px;
  }
}
@media (width < 431px) {
  .top_fv_title h1 {
    font-size: 25px;
  }
}
/* .top_fv_title p {
  font-size: 25px;
  padding-top: 15px;
}
@media (width < 1281px) {
  .top_fv_title p {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .top_fv_title p {
    font-size: 16px;
  }
} */

/* ===============================================
私たちについて
=============================================== */
.top_about {
  padding: 10% 0;
  background-image: url(img/tile2.webp);
  background-position: center bottom;
  background-size: 100%;
}

.top_about_inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.top_about_text {
  padding-bottom: 5%;
}
@media (width < 431px) {
  .top_about_text {
    padding: 0 10px 10% 10px;
  }
}
.top_about_text h3 {
  font-size: 25px;
  padding: 5% 0 30px 0;
}
@media (width < 1101px) {
  .top_about_text h3 {
    font-size: 20px;
  }
}
.top_about_text p {
  font-size: 18px;
  line-height: 2.5rem;
}
@media (width < 1101px) {
  .top_about_text p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .top_about_text p {
    font-size: 14px;
  }
}
.top_about_text p:nth-last-of-type(2) {
  padding-top: 30px;
}

/* スライダーの見た目調整 */
.another-slider .swiper-wrapper {
  transition-timing-function: linear; /* ← ブレーキ防止 */
}

/* ===============================================
事業内容
=============================================== */
.top_service {
  padding: 10% 5%;
}

.top_service_inner {
  max-width: 1440px;
  margin: 0 auto;
}
@media (width < 1441px) {
  .top_service_inner {
    max-width: 1280px;
  }
}
@media (width < 1281px) {
  .top_service_inner {
    max-width: 1100px;
  }
}

.top_service_contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10% 0 0 0;
}
@media (width < 1101px) {
  .top_service_contents {
    display: block;
  }
}

.top_service_contents_text {
  width: 45%;
}
@media (width < 1101px) {
  .top_service_contents_text {
    width: 100%;
    text-align: center;
  }
}
.top_service_contents_text h2 {
  font-size: 25px;
}
@media (width < 1101px) {
  .top_service_contents_text h2 {
    padding: 5% 0 0 0;
    font-size: 20px;
  }
}
.top_service_contents_text p {
  font-size: 18px;
  line-height: 2.5rem;
  padding: 30px 0;
}
@media (width < 1101px) {
  .top_service_contents_text p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .top_service_contents_text p {
    font-size: 14px;
  }
}

.top_service_contents_img {
  width: 45%;
}
@media (width < 1101px) {
  .top_service_contents_img {
    width: 100%;
  }
}
.top_service_contents_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

/* ===============================================
個別ページリンクボタン
=============================================== */
.top_singlepage_box {
  background-color: #2D2D2D;
}

.top_singlepage_inner {
  position: relative;
}
.top_singlepage_inner p {
  color: #fff;
  line-height: 2rem;
  padding: 30px 0;
}

.top_singlepage_textright {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (width < 769px) {
  .top_singlepage_textright {
    left: 5%;
  }
}
@media (width < 431px) {
  .top_singlepage_textright {
    position: static;
    top: 0;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    width: 100%;
    text-align: center;
    background-image: url(img/RENOVATION-btn.webp);
    background-position: center;
    background-size: cover;
    padding: 5% 0;
  }
}

.top_singlepage_textleft {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (width < 1101px) {
  .top_singlepage_textleft {
    right: 5%;
  }
}
@media (width < 431px) {
  .top_singlepage_textleft {
    position: static;
    top: 0;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    width: 100%;
    text-align: center;
    background-image: url(img/LISTINGS-btn.webp);
    background-position: center;
    background-size: cover;
    padding: 5% 0;
  }
}

.top_ctabox_imgright {
  width: 55%;
  margin-left: auto;
}
.top_ctabox_imgright img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width < 769px) {
  .top_ctabox_imgright {
    width: 70%;
  }
}
@media (width < 431px) {
  .top_ctabox_imgright {
    display: none;
  }
}

.top_ctabox_imgleft {
  width: 55%;
  margin-right: auto;
}
.top_ctabox_imgleft img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width < 769px) {
  .top_ctabox_imgleft {
    width: 70%;
  }
}
@media (width < 431px) {
  .top_ctabox_imgleft {
    display: none;
  }
}

/* ===============================================
会社概要リンクボタン
=============================================== */
.top_company_btn {
  padding: 10% 0;
  background-image: url(img/company-btn.webp);
  background-position: center;
  background-size: cover;
}

.top_company_inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.top_company_text {
  text-align: center;
}
.top_company_text p {
  color: #fff;
  line-height: 2.5rem;
  padding: 30px 0;
}

/* ===============================================
お問い合わせ・Q＆Aボタン
=============================================== */
.top_ctabox {
  padding: 10% 0;
  background-image: url(img/tile2.webp);
  background-position: bottom;
  background-size: 100% 40%;
}
@media (width < 1101px) {
  .top_ctabox {
    padding: 10% 0 5% 0;
  }
}

.top_ctabox_inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 1281px) {
  .top_ctabox_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .top_ctabox_inner {
    display: block;
    padding: 0 5%;
  }
}

.top_box_contents {
  border: solid 1px #B7AD84;
  border-radius: 5px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  width: 40%;
  text-align: center;
  padding: 5% 0;
}
.top_box_contents p {
  line-height: 2rem;
  padding: 30px 0;
}
@media (width < 1281px) {
  .top_box_contents {
    width: 45%;
  }
}
@media (width < 1101px) {
  .top_box_contents {
    width: 100%;
    margin-bottom: 5%;
  }
}

/*----------シングルボタン----------*/
.page_ctabox {
  padding: 5% 0;
  background-image: url(img/tile2.webp);
  background-position: bottom;
  background-size: 100% 40%;
}
@media (width < 1101px) {
  .page_ctabox {
    padding: 10% 0 5% 0;
  }
}

.page_ctabox_inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .page_ctabox_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .page_ctabox_inner {
    display: block;
    padding: 0 5%;
  }
}

.page_box_contents {
  border: solid 1px #B7AD84;
  border-radius: 5px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  width: 100%;
  text-align: center;
  padding: 5% 0;
}
.page_box_contents p {
  line-height: 2rem;
  padding: 30px 0;
}
@media (width < 1101px) {
  .page_box_contents {
    margin-bottom: 5%;
  }
}

/* ===============================================
フッター
=============================================== */
footer {
  background-color: #2D2D2D;
  padding: 5% 0 15px 0;
}

.footer_inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5%;
}
@media (width < 1441px) {
  .footer_inner {
    max-width: 1280px;
  }
}
@media (width < 1281px) {
  .footer_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .footer_inner {
    padding: 0 5% 7% 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.footer_contents {
  color: #fff;
}
.footer_contents p {
  line-height: 2rem;
}
@media (width < 1101px) {
  .footer_contents p {
    text-align: center;
  }
}
@media (width < 431px) {
  .footer_contents p {
    font-size: 14px;
  }
}

.footer_nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px; /* 縦・横の間隔（お好みで調整） */
  width: 95%;
  margin-left: auto;
}
.footer_nav li{
	padding-top: 10px;
}
.footer_nav{
  width: 50%;
}
@media (width < 1281px) {
.footer_nav{
  width: 60%;
}
}
@media (width < 1101px) {
  .footer_nav ul {
    display: none;
  }
}
.footer_nav li {
  width: calc((100% - 60px) / 3); /* ← 横gap30px×2ぶん差し引く */
}
.footer_nav a {
  color: #fff;
  transition: color 0.3s ease;
}
.footer_nav a:hover {
  color: #aaaaaa;
}

.copyright {
  text-align: center;
  color: #fff;
}
@media (width < 431px) {
  .copyright {
    font-size: 12px;
  }
}

/* ===============================================
毛別ページ・ファーストビュー
=============================================== */
.page_fv {
  padding: 10% 0;
}
@media (width < 1101px) {
  .page_fv {
    padding: 15% 0 10% 0;
  }
}
@media (width < 431px) {
  .page_fv {
    padding: 25% 0 15% 0;
  }
}

.page_fv_inner {
  position: relative;
}

.page_fv_inner::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -15%;
  z-index: -1;
  display: block;
  width: 70%;
  height: 250px;
  background: #575757;
}
@media (width < 1101px) {
  .page_fv_inner::before {
    height: 230px;
  }
}
@media (width < 769px) {
  .page_fv_inner::before {
    height: 200px;
  }
}
@media (width < 431px) {
  .page_fv_inner::before {
    height: 140px;
  }
}

.page_fv_title {
  background-image: url(img/page-box.webp);
  background-position: left;
  background-size: cover;
  padding: 5% 0 5% 10%;
  width: 70%;
}
@media (width < 1101px) {
  .page_fv_title {
    padding: 7% 0 7% 10%;
  }
}
@media (width < 769px) {
  .page_fv_title {
    width: 80%;
    padding: 10% 0 10% 10%;
  }
}
@media (width < 431px) {
  .page_fv_title {
    width: 95%;
    padding: 15% 0 15% 10%;
  }
}
.page_fv_title h1 {
  font-size: 50px;
  color: #fff;
  letter-spacing: 0.3rem;
}
@media (width < 1101px) {
  .page_fv_title h1 {
    font-size: 40px;
  }
}
@media (width < 769px) {
  .page_fv_title h1 {
    font-size: 30px;
  }
}
@media (width < 431px) {
  .page_fv_title h1 {
    font-size: 25px;
  }
}
.page_fv_title p {
  font-size: 25px;
  color: #fff;
  font-weight: bold;
}
@media (width < 1101px) {
  .page_fv_title p {
    font-size: 20px;
  }
}
@media (width < 769px) {
  .page_fv_title p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .page_fv_title p {
    font-size: 14px;
  }
}

/* ===============================================
毛別ページ・会社概要
=============================================== */
.company_message {
  padding: 5% 0 10% 0;
}

.company_message_inner {
  max-width: 1440px;
  margin: 0 auto;
}
@media (width < 1441px) {
  .company_message_inner {
    max-width: 1280px;
  }
}
@media (width < 1281px) {
  .company_message_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .company_message_inner {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .company_message_inner {
    padding: 0 3%;
  }
}

.message_title {
  padding-bottom: 5%;
}
@media (width < 769px) {
  .message_title {
    padding-bottom: 10%;
  }
}

.message_box {
  border: #B7AD84 solid 1px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  padding: 5%;
}

.message_box_title {
  padding-bottom: 3%;
}
.message_box_title h2 {
  font-size: 30px;
  letter-spacing: 0.2rem;
  padding-bottom: 10px;
}
@media (width < 1101px) {
  .message_box_title h2 {
    font-size: 25px;
  }
}
@media (width < 769px) {
  .message_box_title h2 {
    font-size: 20px;
  }
}
.message_box_title p {
  font-size: 20px;
}
@media (width < 1101px) {
  .message_box_title p {
    font-size: 16px;
  }
}
@media (width < 769px) {
  .message_box_title p {
    font-size: 14px;
  }
}

.message_wrapper {
  display: flex;
  justify-content: space-between;
}
@media (width < 1101px) {
  .message_wrapper {
    display: block;
  }
}

.message_img {
  width: 40%;
}
@media (width < 1101px) {
  .message_img {
    width: 100%;
  }
}
.message_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.message_text {
  width: 100%;
}
@media (width < 1101px) {
  .message_text {
    width: 100%;
  }
}
.message_text h3 {
  font-size: 25px;
  font-weight: normal;
  padding-bottom: 3%;
}
@media (width < 1101px) {
  .message_text h3 {
    font-size: 20px;
    padding: 3% 0 15px 0;
  }
}
.message_text p {
  font-size: 18px;
  line-height: 2.3rem;
}
@media (width < 1101px) {
  .message_text p {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .message_text p {
    font-size: 14px;
  }
}

/*----------会社概要----------*/
.overview_inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .overview_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .overview_inner {
    max-width: 768px;
  }
}
@media (width < 769px) {
  .overview_inner {
    padding: 0 15px;
  }
}

.overview_title {
  text-align: center;
}

.company_overview_contents {
  padding: 5% 0 10% 0;
}

@media (width < 431px) {
  .company_overview_contents {
    padding: 15% 0 15% 0;
  }
}
.company_overview_contents table {
  border-collapse: collapse; /* セル枠を重ねて表示 */
  width: 80%;
  margin: 0 auto;
  font-size: 20px;
}

@media (width < 1281px) {
  .company_overview_contents table {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .company_overview_contents table {
    width: 100%;
  }
}
.company_overview_contents tr {
  border-bottom: solid 1px #D9D9D9;
}

.company_overview_contents td {
  padding: 2% 0;
}

@media (width < 431px) {
  .company_overview_contents td {
    font-size: 12px;
  }
}
.company_overview_contents .contents_more {
  padding-left: 5%;
}

.company_overview_contents .contents_title {
  padding-left: 15px;
  white-space: nowrap;
}
@media (width < 431px) {
  .company_overview_contents .contents_title {
    padding-left: 0px;
  }
}

/* ===============================================
個別ページ・お問い合わせ
=============================================== */
.page_contactform {
  padding-bottom: 10%;
}
@media (width < 431px) {
  .page_contactform {
    padding-bottom: 15%;
  }
}

.page_contactform_inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .page_contactform_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .page_contactform_inner {
    padding: 0 3%;
  }
}

.contactform_title {
  text-align: center;
  padding-bottom: 5%;
}

.contact_anounce {
  line-height: 2rem;
  padding-top: 3%;
  font-size: 14px;
}

.contactform_box {
  border: #B7AD84 solid 1px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  padding: 5%;
}

.page_contact_main_box {
  padding: 10% 5%;
}

@media (width < 431px) {
  .page_contact_main_box {
    padding: 10% 5% 15% 5%;
  }
}
.page_contact_main_box dl {
  padding: 3% 0;
  border-top: solid 1px #B7AD84;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (width < 769px) {
  .page_contact_main_box dl {
    display: block;
  }
}
.page_contact_main_box dt {
  width: 40%; /* ラベル部分の幅 */
  padding-left: 1rem;
}

@media (width < 769px) {
  .page_contact_main_box dt {
    width: 100%;
    padding: 0 0 3% 0;
  }
}
.page_contact_main_box dd {
  width: 60%; /* 入力フィールドの幅 */
  border: solid 1px #B7AD84;
}

@media (width < 769px) {
  .page_contact_main_box dd {
    width: 100%;
  }
}
.page_contact_main_box .required {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 15px;
  background-color: #B7AD84;
  color: #fff;
  font-size: 12px;
  vertical-align: middle;
}

.page_contact_main_box input {
  width: 100%;
  padding: 2% 1rem;
  background-color: #fff;
}

.page_contact_main_box textarea {
  width: 100%;
  padding: 2% 1rem 10% 1rem;
  resize: none;
  background-color: #fff;
}

.pparea_btnbox {
  padding: 5% 0 20px 0;
}

.pp_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 14px;
}
.pp_checkbox a {
  color: #B7AD84;
}

.pp_checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
}

/*コンタクトボタン・アニメーション*/
.page_contact_formbtnarea {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}

@media (width < 769px) {
  .page_contact_formbtnarea {
    font-size: 20px;
    width: 50%;
  }
}
.page_contact_formbtn {
  font-size: 20px;
  color: #000;
  background-color: #fff;
  border: solid 1px #B7AD84;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  cursor: pointer;
  transition: all 0.4s;
}

@media (width < 431px) {
  .page_contact_formbtn {
    font-size: 16px;
    padding: 7% 0;
  }
}
.page_contact_formbtn:hover {
  border-radius: 15px;
}

.page_contct_anouncetxt {
  text-align: center;
  padding: 3% 0;
}

/* ===============================================
個別ページ・プライバシーポリシー
=============================================== */
.privacy_box {
  border: #B7AD84 solid 1px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  padding: 5%;
}
@media (width < 431px) {
  .privacy_box p {
    font-size: 14px;
  }
}

.page_privacy_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 10%;
}
@media (width < 1101px) {
  .page_privacy_inner {
    padding: 0 3% 10% 3%;
  }
}

.privacy_title {
  padding-bottom: 5%;
}

/* ===============================================
個別ページ・よくある質問
=============================================== */
.page_qa_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5% 0 10% 0;
}
@media (width < 1281px) {
  .page_qa_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .page_qa_inner {
    padding: 5% 3% 10% 3%;
  }
}

.qa_title {
  padding-bottom: 3%;
}
@media (width < 431px) {
  .qa_title {
    padding-bottom: 5%;
  }
}

.accordion .toggle {
  background-color: #F6F6F6;
  color: #000;
  width: 100%;
  text-align: left;
  padding: 3% 0 3% 3%;
  display: flex;
  align-items: center;
}
.accordion .toggle img {
  margin-right: 15px;
}
@media (width < 431px) {
  .accordion .toggle img {
    width: 25px;
    height: 25px;
  }
}
@media (width < 431px) {
  .accordion .toggle {
    padding: 5%;
  }
}

.accordion .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #FAFAFA;
}

.accordion_content_inner {
  padding: 3% 5%;
  position: relative;
}
@media (width < 431px) {
  .accordion_content_inner {
    padding: 7% 10%;
  }
}
.accordion_content_inner p {
  line-height: 2rem;
}
@media (width < 431px) {
  .accordion_content_inner p {
    font-size: 14px;
    line-height: 1.7rem;
  }
}

.accordion .item.active .content {
  max-height: 500px; /* 十分大きな高さにしておく */
}
.accordion .item{
	background-color: #EFEFEF;
}

/* ===============================================
個別ページ・事業内容
=============================================== */
.page_ourservice {
  padding: 3% 0 10% 0;
}

.our_service_title {
  text-align: center;
}

.our_service_text {
  text-align: center;
}
.our_service_text h3 {
  padding: 5% 0 3% 0;
  font-size: 25px;
}
@media (width < 431px) {
  .our_service_text h3 {
    font-size: 18px;
    padding: 12% 0 5% 0;
  }
}
.our_service_text p {
  line-height: 2.5rem;
  font-size: 18px;
}
@media (width < 431px) {
  .our_service_text p {
    font-size: 14px;
  }
}

.our_service_inner, .service_contents_inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media (width < 1281px) {
  .our_service_inner, .service_contents_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .our_service_inner, .service_contents_inner {
    padding: 0 3%;
  }
}

.page_service_contents {
  background-color: #EFEFEF;
  padding: 10% 0;
}

.service_contents_box {
  border: solid 1px #B7AD84;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  padding: 7% 7% 10% 7%;
  margin-bottom: 5%;
}
@media (width < 769px) {
  .service_contents_box {
    margin-bottom: 10%;
  }
}
.service_contents_box h2 {
  text-align: center;
  padding-bottom: 7%;
}
@media (width < 431px) {
  .service_contents_box h2 {
    font-size: 18px;
  }
}

.service_contents_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 769px) {
  .service_contents_wrapper {
    display: block;
  }
}

.service_contents_wrapper + .service_contents_wrapper {
  padding-top: 10%;
}
@media (width < 769px) {
  .service_contents_wrapper + .service_contents_wrapper {
    padding-top: 5%;
  }
}

.service_contents_img {
  width: 45%;
  height: 300px;
}
@media (width < 769px) {
  .service_contents_img {
    width: 95%;
    margin: 0 auto;
  }
}
@media (width < 431px) {
  .service_contents_img {
    height: 200px;
  }
}
.service_contents_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.service_contents_text {
  width: 50%;
  line-height: 2.3rem;
}
@media (width < 431px) {
  .service_contents_text {
    line-height: 2rem;
  }
}
@media (width < 769px) {
  .service_contents_text {
    width: 95%;
    margin: 0 auto;
    padding: 5% 0;
  }
}
.service_contents_text ul {
  padding-left: 1.5rem;
}
@media (width < 431px) {
  .service_contents_text li {
    font-size: 14px;
  }
}
.service_contents_text h3 {
  display: flex;
  align-items: center;
  padding-bottom: 3%;
}
@media (width < 431px) {
  .service_contents_text h3 {
    font-size: 16px;
  }
}
@media (width < 431px) {
  .service_contents_text p {
    font-size: 14px;
  }
}

.number_box {
  background-color: #B7AD84;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
@media (width < 431px) {
  .number_box {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* ===============================================
リストページ・リフォーム実績
=============================================== */
.reform_filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 1101px) {
  .reform_filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.filter-btn {
  background-color: #B7AD84;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
}
@media (width < 1101px) {
  .filter-btn {
    font-size: 16px;
  }
}

.reform_filterbtn {
  width: 220px;
  height: 60px;
}
@media (width < 1101px) {
  .reform_filterbtn {
    width: 100%;
  }
}

.page_list_inner, .list_box_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 7%;
}
@media (width < 1281px) {
  .page_list_inner, .list_box_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .page_list_inner, .list_box_inner {
    padding: 0 3% 13% 3%;
  }
}

@media (width < 769px) {
  .page_list_inner {
    padding-top: 7%;
  }
}

.reform-list {
  width: 100%;
}
.reform-list li + li {
  margin-top: 5%;
}

.reform-item {
  width: 100%;
  list-style: none;
  border: solid 1px #B7AD84;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  padding: 3% 5% 5% 5%;
}
.reform-item a {
  color: #000;
}
@media (width < 769px) {
  .reform-item {
    padding: 5%;
  }
}
.reform-item h2 {
  color: #B7AD84;
  font-size: 35px;
}
@media (width < 769px) {
  .reform-item h2 {
    font-size: 25px;
  }
}
.reform-item h3 {
  padding: 15px 0 3% 0;
  font-size: 25px;
  font-weight: normal;
}
@media (width < 769px) {
  .reform-item h3 {
    font-size: 18px;
    padding: 10px 0 3% 0;
  }
}
.reform-item img {
  width: 100%;
  border-radius: 8px;
}

.reform-item-text {
  padding: 3% 0;
}
.reform-item-text p {
  line-height: 2rem;
}
@media (width < 769px) {
  .reform-item-text p {
    font-size: 14px;
  }
}

/* ===============================================
リストページ・取り扱い物件
=============================================== */
.listing_filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 1101px) {
  .listing_filter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.filter-btn {
  background-color: #B7AD84;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
}
@media (width < 1101px) {
  .filter-btn {
    font-size: 16px;
  }
}

.listing_filterbtn {
  width: 170px;
  height: 60px;
}
@media (width < 1101px) {
  .listing_filterbtn {
    width: 100%;
  }
}

.page_list_inner, .list_box_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 7%;
}
@media (width < 1281px) {
  .page_list_inner, .list_box_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .page_list_inner, .list_box_inner {
    padding: 0 3% 13% 3%;
  }
}

@media (width < 769px) {
  .page_list_inner {
    padding-top: 7%;
  }
}

.listing-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}
@media (width < 1101px) {
  .listing-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 769px) {
  .listing-list {
    gap: 40px;
  }
}
@media (width < 431px) {
  .listing-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.listing-item {
  padding: 7% 10%;
  list-style: none;
  border: solid #B7AD84 1px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
}
.listing-item a {
  color: #000;
}

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

.listing-label {
  background-color: #B7AD84;
  color: #fff;
  display: inline-block;
  width: 90px;
  height: 30px;
  text-align: center;
  margin: 10px 0;
}

.listing-item-text {
  line-height: 2rem;
}
.listing-item-text h2 {
  font-weight: normal;
  font-size: 20px;
}
@media (width < 431px) {
  .listing-item-text h2 {
    font-size: 18px;
  }
}
@media (width < 431px) {
  .listing-item-text p {
    font-size: 14px;
  }
}

/* ===============================================
シングルページ・取り扱い物件
=============================================== */
.detail_box_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 10%;
}
@media (width < 1281px) {
  .detail_box_inner {
    max-width: 1100px;
  }
}
@media (width < 1101px) {
  .detail_box_inner {
    padding: 0 3% 10% 3%;
  }
}

.detail_box_card {
  border: solid 1px #B7AD84;
  padding: 5%;
}

fieldset.hidden-fields-container {
  display: none !important;
}
.zyunnbi{
	text-align: center;
}

/*----------リノベーションシングル----------*/
.renovation-detail-images {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr); /* 初期は3列 */
  margin-top: 30px;
}

.detail-image-item {
  width: 100%;
  aspect-ratio: 4 / 3; /* 横長比率。お好みで変更OK */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.detail-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ▼ 1100px 以下：2列 */
@media screen and (max-width: 1100px) {
  .renovation-detail-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ▼ 768px 以下：2列（維持） */
@media screen and (max-width: 768px) {
  .renovation-detail-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ▼ 430px 以下：1列にするならここで調整（必要なら） */
@media screen and (max-width: 430px) {
  .renovation-detail-images {
    grid-template-columns: repeat(2, 1fr); /* ←ここを repeat(1, 1fr) にすれば1列 */
    gap: 12px;
  }
}

/*# sourceMappingURL=style.css.map */