@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 500;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  border: 1px solid #B3B3B3;
  padding: 7px 20px;
  line-height: 1.9;
}

table {
  border-collapse: collapse;
}

.wrapper {
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

header {
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-bottom: 30px;
}
header .inner {
  max-width: 1300px;
}
header .inner .fix_btn {
  padding: 0 20px;
}
header .inner .fix_btn ul {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
header .inner .fix_btn ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 45px;
  background: #AC9A83;
  position: relative;
}
header .inner .fix_btn ul li a span {
  position: relative;
  z-index: 2;
}
header .inner .fix_btn ul li a::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: 1;
}
header .inner .fix_btn ul li a:hover {
  opacity: 1;
}
header .inner .fix_btn ul li a:hover::before {
  width: 100%;
}
header .inner .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 20px;
  border-bottom: 1px solid #fff;
}
header .inner .row h1 a img {
  width: 200px;
}
header .inner .row nav ul {
  display: flex;
  gap: 15px;
}
header .inner .row nav ul li a {
  font-size: 15px;
  font-weight: 600;
}
header.scrolled {
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.header_btn {
  display: none;
}

#global_nav {
  display: none;
}

section h2 {
  font-size: 46px;
  line-height: 1.1;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
}
section h2 span {
  color: #AC9A83;
}
section .sub_ttl {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.23;
}
section .inner .sec_row {
  display: flex;
  justify-content: space-between;
}
section .inner .sec_row .sec_ttl {
  width: 290px;
}
section .inner .sec_row .sec_right {
  width: calc(100% - 380px);
}

#mv {
  height: 430px;
  background: url(../img/mv.jpg) no-repeat center/cover;
  padding-top: 115px;
}
#mv .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  color: #fff;
}
#mv .inner .txt h2 {
  font-size: 57px;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
}
#mv .inner .txt .sub_ttl {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}
#mv .inner .desc {
  font-size: 18px;
  line-height: 1.9;
  max-width: 410px;
}

#page_content {
  padding: 100px 0;
}
#page_content .inner .coming {
  text-align: center;
  font-size: 20px;
}

#breadcrumb {
  padding: 12px 0;
  background: #fff;
}
#breadcrumb .inner ul {
  display: flex;
  align-items: center;
}
#breadcrumb .inner ul li {
  font-size: 13px;
  color: #AC9A83;
}
#breadcrumb .inner ul li:not(:last-child) {
  margin-right: 1em;
}
#breadcrumb .inner ul li:not(:last-child)::after {
  content: "＞";
  margin-left: 1em;
}

.btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 210px;
  height: 50px;
  background: #AC9A83;
  color: #fff;
  padding: 0 20px;
  font-weight: 500;
  position: relative;
}
.btn a span {
  position: relative;
  z-index: 2;
}
.btn a::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  transition: 0.3s;
}
.btn a::after {
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  background: url(../img/arrow_right.svg) no-repeat center/contain;
  z-index: 2;
}
.btn a:hover {
  opacity: 1;
}
.btn a:hover::before {
  width: 100%;
}

.wp-pagenavi {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.wp-pagenavi > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #AC9A83;
  color: #AC9A83;
}
.wp-pagenavi > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #AC9A83;
  background: #AC9A83;
  color: #fff;
}

.empty {
  margin-top: 40px;
  text-align: center;
}

#request_booking .sec_row {
  display: flex;
}
#request_booking .sec_row .sec {
  width: 50%;
  background: repeat center/cover;
  color: #fff;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
#request_booking .sec_row .sec::before {
  content: "";
  display: block;
  width: 125px;
  aspect-ratio: 1/1;
  background: url(../img/deco_LT.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#request_booking .sec_row .sec::after {
  content: "";
  display: block;
  width: 125px;
  aspect-ratio: 1/1;
  background: url(../img/deco_RB.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#request_booking .sec_row .sec h2 {
  text-align: center;
  margin-bottom: 20px;
}
#request_booking .sec_row .sec .sub_ttl {
  text-align: center;
  margin-bottom: 20px;
}
#request_booking .sec_row .sec .desc {
  text-align: center;
  line-height: 1.9;
  font-weight: 600;
}
#request_booking .sec_row .sec .btn {
  margin-top: 40px;
}
#request_booking .sec_row .sec .btn a {
  margin: 0 auto;
  background: none;
  border: 1px solid #fff;
}
#request_booking .sec_row .sec .btn a::before {
  background: #AC9A83;
}
#request_booking .sec_row .sec#request {
  background-image: url(../img/request_bg.jpg);
}
#request_booking .sec_row .sec#booking {
  background-image: url(../img/booking_bg.jpg);
}

footer {
  background: #000;
  color: #fff;
  padding: 90px 0;
}
footer .inner .row {
  display: flex;
  justify-content: space-between;
}
footer .inner .row .logo_address .logo {
  margin-bottom: 20px;
}
footer .inner .row .logo_address .logo img {
  width: 336px;
}
footer .inner .row .logo_address .address_sns {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
footer .inner .row .logo_address .address_sns .address {
  font-size: 14px;
  line-height: 1.8;
}
footer .inner .row .logo_address .address_sns .sns {
  display: flex;
  gap: 15px;
}
footer .inner .row .logo_address .address_sns .sns li img {
  width: 40px;
}
footer .inner .row .nav_licenses {
  max-width: 500px;
}
footer .inner .row .nav_licenses nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}
footer .inner .row .nav_licenses nav ul li a {
  font-size: 15px;
  font-weight: 600;
}
footer .inner .row .nav_licenses .licenses {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}
footer .inner .row .nav_licenses .sns {
  display: none;
}
footer .inner .logo_copy {
  margin-top: 40px;
  border-top: 1px solid #fff;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .inner .logo_copy .copy {
  text-align: right;
  font-size: 13px;
}

.modal_trg {
  cursor: pointer;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 200;
}
.modal .modal_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal .modal_content {
  background: #fff;
  padding: 50px;
  width: 800px;
  max-width: 90%;
  max-height: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
}
.modal .modal_content .modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
}
.modal .modal_content .modal_inner {
  display: none;
}

@media (max-width: 1200px) {
  header {
    padding-top: 30px;
  }
  header .inner .fix_btn {
    display: none;
  }
  header .inner .row nav {
    display: none;
  }
  .header_btn {
    display: flex;
    align-items: center;
    gap: 30px;
    position: fixed;
    top: 30px;
    right: 5%;
    z-index: 120;
  }
  .header_btn ul {
    display: flex;
    gap: 15px;
  }
  .header_btn ul li {
    border: transparent 1px solid;
    transition: 0.3s;
  }
  .header_btn ul li img {
    width: 40px;
  }
  .header_btn #menu_btn {
    width: 26px;
    height: 16px;
    cursor: pointer;
    position: relative;
  }
  .header_btn #menu_btn span {
    display: block;
    background: #fff;
    position: absolute;
    transition: 0.3s;
    right: 0;
    width: 100%;
    height: 1px;
  }
  .header_btn #menu_btn span:nth-child(1) {
    top: calc(50% - 8px);
  }
  .header_btn #menu_btn span:nth-child(2) {
    top: 50%;
  }
  .header_btn #menu_btn span:nth-child(3) {
    top: calc(50% + 8px);
  }
  .header_btn.open ul li {
    border-color: #fff;
  }
  .header_btn.open #menu_btn span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  .header_btn.open #menu_btn span:nth-child(2) {
    opacity: 0;
  }
  .header_btn.open #menu_btn span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
  #global_nav {
    background: #AC9A83;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 500px;
    max-width: 100%;
    padding: 100px 15px 15px;
    z-index: 110;
    min-height: 100svh;
    overflow: auto;
  }
  #global_nav nav {
    height: 100%;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
  }
  #global_nav nav ul {
    padding: 0 calc(4% + 13px);
  }
  #global_nav nav ul li {
    border-bottom: 1px solid #fff;
  }
  #global_nav nav ul li a {
    display: flex;
    padding: 12px 20px 17px 0;
    color: #fff;
    font-size: 15px;
  }
  #global_nav nav::after {
    content: "";
    display: block;
    width: 143px;
    aspect-ratio: 1/1;
    background: url(../img/deco_LB_white.png) no-repeat center/contain;
  }
  #mv {
    padding-top: 101px;
  }
}
@media (max-width: 1080px) {
  footer .inner .row {
    flex-direction: column;
    gap: 60px;
  }
  footer .inner .row .nav_licenses {
    width: 100%;
  }
  footer .inner .row .nav_licenses nav ul {
    justify-content: flex-start;
  }
  footer .inner .row .nav_licenses .licenses {
    text-align: left;
  }
  footer .inner .row .nav_licenses .copy {
    text-align: left;
  }
}
@media (max-width: 1000px) {
  section .inner .sec_row {
    flex-direction: column;
    gap: 40px;
  }
  section .inner .sec_row .sec_ttl {
    width: 100%;
  }
  section .inner .sec_row .sec_right {
    width: 100%;
  }
  #mv .inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  #mv .inner .desc {
    margin-top: 20px;
  }
}
@media (max-width: 900px) {
  #request_booking .sec_row {
    flex-direction: column;
  }
  #request_booking .sec_row .sec {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .inner {
    width: 92%;
  }
  header {
    padding: 15px 0;
    position: absolute;
  }
  header .inner .row {
    padding: 0 0 15px;
  }
  header .inner .row h1 a img {
    width: 154px;
    display: block;
  }
  .header_btn {
    gap: 5px;
    top: 15px;
  }
  .header_btn ul {
    gap: 5px;
  }
  .header_btn #menu_btn {
    background: #AC9A83;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
  }
  .header_btn #menu_btn span {
    width: 26px;
    right: 6px;
  }
  .header_btn.open #menu_btn {
    border-color: #fff;
  }
  section h2 {
    font-size: 38px;
  }
  section .sub_ttl {
    margin-top: 5px;
    font-size: 16px;
  }
  #mv {
    padding-top: 71px;
  }
  #mv .inner .txt h2 {
    font-size: 42px;
    line-height: 0.93;
  }
  #breadcrumb .inner ul li {
    font-size: 12px;
  }
  .btn a {
    width: 190px;
  }
  .wp-pagenavi {
    margin-top: 40px;
    gap: 10px;
  }
  .wp-pagenavi > a,
  .wp-pagenavi > span {
    width: 35px;
    height: 35px;
  }
  #request_booking .sec_row .sec .desc {
    font-size: 14px;
  }
  footer {
    padding: 70px 0;
  }
  footer .inner .row {
    gap: 40px;
  }
  footer .inner .row .logo_address .logo img {
    width: 265px;
  }
  footer .inner .row .logo_address .address_sns .address {
    font-size: 14px;
  }
  footer .inner .row .logo_address .address_sns .sns {
    display: none;
  }
  footer .inner .row .nav_licenses .licenses {
    font-size: 12px;
    line-height: 1.6;
  }
  footer .inner .row .nav_licenses .sns {
    display: flex;
    margin-top: 20px;
  }
  footer .inner .logo_copy {
    margin-top: 30px;
    flex-direction: column;
    gap: 30px;
  }
  footer .inner .logo_copy .logo {
    width: 100%;
  }
  footer .inner .logo_copy .copy {
    width: 100%;
    text-align: center;
  }
  .modal .modal_content {
    padding: 25px;
  }
}
#top #mv {
  height: 100svh;
  color: #fff;
  padding-top: 115px;
  position: relative;
  z-index: 1;
  padding-top: 86px;
}
#top #mv .mv_slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#top #mv .mv_slider .swiper-wrapper {
  height: 100%;
}
#top #mv .mv_slider .swiper-wrapper .swiper-slide {
  height: 100%;
}
#top #mv .mv_slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top #mv .inner {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#top #mv .inner h2 {
  font-size: 47px;
  line-height: 1.45;
  font-weight: bold;
  white-space: pre-wrap;
  overflow: hidden;
  position: relative;
  display: inline-block;
}
#top #mv .inner h2::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #fff;
  margin: -12px 0 0 4px;
  animation: blink 0.8s steps(1) infinite;
  vertical-align: middle;
}
#top #mv .inner h2.is-finished::after {
  opacity: 0;
  animation: none;
}
#top #mv .inner p {
  margin-top: 10px;
  font-size: 20px;
}
#top #mv .inner p::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1em;
  background: transparent;
  margin: -5px 0 0 4px;
  animation: blink 0.8s steps(1) infinite;
  vertical-align: middle;
  opacity: 0;
}
#top #mv .inner p.is-typing::after {
  background: #fff;
}
#top #mv .inner p.is-finished::after {
  background: transparent;
  animation: none;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
#top #about {
  background: url(../img/top/about_bg.jpg) no-repeat center/cover;
  color: #fff;
  padding: 100px 0;
}
#top #about .inner .sec_row {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  padding: 80px;
}
#top #about .inner .sec_row::before {
  content: "";
  display: block;
  width: 203px;
  aspect-ratio: 1/1;
  background: url(../img/deco_LT.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#top #about .inner .sec_row::after {
  content: "";
  display: block;
  width: 203px;
  aspect-ratio: 1/1;
  background: url(../img/deco_RB.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#top #about .inner .sec_row .logo img {
  width: 432px;
}
#top #about .inner .sec_row .txt {
  width: 44.2%;
}
#top #about .inner .sec_row .txt h2 {
  font-size: 42px;
  line-height: 1.35;
  font-weight: bold;
  margin-bottom: 20px;
}
#top #about .inner .sec_row .txt .desc {
  line-height: 1.9;
}
#top #news {
  padding: 100px 0;
}
#top #news .inner .sec_row .sec_right .list .item {
  border-top: 1px solid #000;
}
#top #news .inner .sec_row .sec_right .list .item a {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 40px;
}
#top #news .inner .sec_row .sec_right .list .item a .date {
  font-size: 13px;
  font-weight: bold;
  flex-shrink: 0;
}
#top #news .inner .sec_row .sec_right .list .item a .ttl {
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#top #news .inner .sec_row .sec_right .list .item:last-child {
  border-bottom: 1px solid #000;
}
#top #news .inner .sec_row .sec_right .btn {
  margin-top: 40px;
}
#top #service {
  background: #AC9A83;
  color: #fff;
  padding: 100px 0;
}
#top #service .inner .sec_row .sec_ttl h2 span {
  color: #000;
}
#top #service .inner .sec_row .sec_right .list .item {
  padding: 20px 0;
  border-top: 1px solid #fff;
  display: flex;
  justify-content: space-between;
}
#top #service .inner .sec_row .sec_right .list .item .txt {
  width: 41.4%;
}
#top #service .inner .sec_row .sec_right .list .item .txt .ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#top #service .inner .sec_row .sec_right .list .item .txt .desc {
  line-height: 1.9;
}
#top #service .inner .sec_row .sec_right .list .item .txt .btn {
  margin-top: 45px;
}
#top #service .inner .sec_row .sec_right .list .item .txt .btn a {
  border: 1px solid #fff;
}
#top #service .inner .sec_row .sec_right .list .item .img {
  width: 36.5%;
}
#top #service .inner .sec_row .sec_right .list .item:last-child {
  border-bottom: 1px solid #fff;
}
#top #work {
  padding: 100px 0;
  background: #F6F5F3;
}
#top #work .inner .sec_row .sec_right .list .item {
  padding: 20px 0;
  border-top: 1px solid #000;
  display: flex;
  justify-content: space-between;
}
#top #work .inner .sec_row .sec_right .list .item .txt {
  width: 41.4%;
}
#top #work .inner .sec_row .sec_right .list .item .txt .ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#top #work .inner .sec_row .sec_right .list .item .txt .desc {
  line-height: 1.9;
}
#top #work .inner .sec_row .sec_right .list .item .txt .btn {
  margin-top: 45px;
}
#top #work .inner .sec_row .sec_right .list .item .img {
  width: 36.5%;
}
#top #work .inner .sec_row .sec_right .list .item:last-child {
  border-bottom: 1px solid #000;
}
#top #furniture {
  padding: 100px 0;
}
#top #furniture .inner .sec_row .sec_ttl h2 span {
  color: #AC9A83;
}
#top #furniture .inner .sec_row .sec_right .list .item {
  padding: 20px 0;
  border-top: 1px solid #000;
  display: flex;
  justify-content: space-between;
}
#top #furniture .inner .sec_row .sec_right .list .item .txt {
  width: 41.4%;
}
#top #furniture .inner .sec_row .sec_right .list .item .txt .ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#top #furniture .inner .sec_row .sec_right .list .item .txt .desc {
  line-height: 1.9;
}
#top #furniture .inner .sec_row .sec_right .list .item .txt .btn {
  margin-top: 45px;
}
#top #furniture .inner .sec_row .sec_right .list .item .img {
  width: 36.5%;
}
#top #furniture .inner .sec_row .sec_right .list .item:last-child {
  border-bottom: 1px solid #000;
}
#top #access {
  padding: 100px 0;
}
#top #access .inner h2 {
  text-align: center;
}
#top #access .inner .sub_ttl {
  text-align: center;
  margin-bottom: 50px;
}
#top #access .inner .access_row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
#top #access .inner .access_row .block h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
#top #access .inner .access_row .block .desc {
  line-height: 1.75;
  max-width: 340px;
}
#top #access .inner .access_row .block:not(:last-child) {
  padding-right: 60px;
  border-right: 1px solid #000;
}
#top #access .inner .access_row .block:not(:first-child) {
  padding-left: 60px;
}
#top #footer_slider .swiper .swiper-wrapper {
  transition-timing-function: linear;
}

@media (max-width: 1200px) {
  #top #about .inner .sec_row {
    flex-direction: column;
    gap: 40px;
  }
  #top #about .inner .sec_row .txt {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #top #mv .inner h2 {
    font-size: 36px;
  }
  #top #about {
    position: relative;
    z-index: 1;
    padding: 70px 0;
  }
  #top #about .inner .sec_row {
    gap: 50px;
    padding: 0;
  }
  #top #about .inner .sec_row .logo img {
    width: 335px;
  }
  #top #about .inner .sec_row .txt h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  #top #about .inner .sec_row .txt .desc {
    font-size: 16px;
  }
  #top #about .inner .sec_row::before, #top #about .inner .sec_row::after {
    content: none;
  }
  #top #about::before {
    content: "";
    display: block;
    background: url(../img/deco_RT.png) no-repeat right top/contain;
    position: absolute;
    right: 0;
    top: 0;
    width: 170px;
    aspect-ratio: 1/1;
    z-index: -1;
  }
  #top #about::after {
    content: "";
    display: block;
    background: url(../img/deco_LB_mini.png) no-repeat left bottom/contain;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 51px;
    aspect-ratio: 1/1;
    z-index: -1;
  }
  #top #news {
    padding: 70px 0;
  }
  #top #news .inner .sec_row .sec_right .list .item a {
    flex-direction: column;
    gap: 5px;
    padding: 16px 0;
  }
  #top #news .inner .sec_row .sec_right .list .item a .date {
    width: 100%;
  }
  #top #news .inner .sec_row .sec_right .list .item a .ttl {
    width: 100%;
  }
  #top #news .inner .sec_row .sec_right .btn a {
    margin: 0 auto;
  }
  #top #service {
    padding: 70px 0;
  }
  #top #service .inner .sec_row .sec_right .list .item {
    gap: 20px;
    flex-direction: column;
  }
  #top #service .inner .sec_row .sec_right .list .item .img {
    width: 100%;
    order: 1;
  }
  #top #service .inner .sec_row .sec_right .list .item .txt {
    width: 100%;
    order: 2;
  }
  #top #service .inner .sec_row .sec_right .list .item .txt .btn {
    margin-top: 30px;
  }
  #top #service .inner .sec_row .sec_right .list .item .txt .btn a {
    margin: 0 auto;
  }
  #top #work {
    padding: 70px 0;
  }
  #top #work .inner .sec_row .sec_right .list .item {
    gap: 20px;
    flex-direction: column;
  }
  #top #work .inner .sec_row .sec_right .list .item .img {
    width: 100%;
    order: 1;
  }
  #top #work .inner .sec_row .sec_right .list .item .txt {
    width: 100%;
    order: 2;
  }
  #top #work .inner .sec_row .sec_right .list .item .txt .btn {
    margin-top: 30px;
  }
  #top #work .inner .sec_row .sec_right .list .item .txt .btn a {
    margin: 0 auto;
  }
  #top #furniture {
    padding: 70px 0;
  }
  #top #furniture .inner .sec_row .sec_right .list .item {
    gap: 20px;
    flex-direction: column;
  }
  #top #furniture .inner .sec_row .sec_right .list .item .img {
    width: 100%;
    order: 1;
  }
  #top #furniture .inner .sec_row .sec_right .list .item .txt {
    width: 100%;
    order: 2;
  }
  #top #furniture .inner .sec_row .sec_right .list .item .txt .btn {
    margin-top: 30px;
  }
  #top #furniture .inner .sec_row .sec_right .list .item .txt .btn a {
    margin: 0 auto;
  }
  #top #access {
    padding: 70px 0;
  }
  #top #access .inner {
    width: 100%;
  }
  #top #access .inner .sub_ttl {
    margin-bottom: 40px;
  }
  #top #access .inner .map iframe {
    height: 280px;
  }
  #top #access .inner .access_row {
    flex-direction: column;
    width: 90%;
    margin: 40px auto 0;
  }
  #top #access .inner .access_row .block {
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
  }
  #top #access .inner .access_row .block:not(:last-child) {
    padding-right: 8px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-right: 0;
    border-bottom: 1px solid #000;
  }
  #top #access .inner .access_row .block:not(:first-child) {
    padding-left: 8px;
  }
}
#single_homes_for_sale #mv {
  position: relative;
}
#single_homes_for_sale #mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#single_homes_for_sale #mv .inner {
  position: relative;
  z-index: 2;
}
#single_homes_for_sale #mv .inner .txt h2::first-letter {
  color: #AC9A83;
}
#single_homes_for_sale #detail_area {
  background: #F6F5F3;
  padding: 100px 0;
}
#single_homes_for_sale #detail_area .content {
  background: #fff;
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  z-index: 1;
}
#single_homes_for_sale #detail_area .content::before {
  content: "";
  display: block;
  width: 275px;
  aspect-ratio: 1/1;
  background: url(../img/deco_RT.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#single_homes_for_sale #detail_area .content::after {
  content: "";
  display: block;
  width: 275px;
  aspect-ratio: 1/1;
  background: url(../img/deco_LB.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#single_homes_for_sale #detail_area .content .inner {
  width: 100%;
  padding: 0 80px;
}
#single_homes_for_sale #detail_area .content .inner h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
#single_homes_for_sale #detail_area .content .main_area .main_slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 460px;
  -o-object-fit: contain;
     object-fit: contain;
}
#single_homes_for_sale #detail_area .content .main_area .tmb_slider {
  margin-top: 20px;
}
#single_homes_for_sale #detail_area .content .main_area .tmb_slider .swiper-wrapper .swiper-slide {
  width: calc((100% - 50px) / 6);
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: pointer;
}
#single_homes_for_sale #detail_area .content .main_area .tmb_slider .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
#single_homes_for_sale #detail_area .content .main_area .tmb_slider .pager {
  display: none;
}
#single_homes_for_sale #detail_area .content .main_area .txt_area {
  max-width: 840px;
  margin: 80px auto 0;
}
#single_homes_for_sale #detail_area .content .main_area .txt_area .copy {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
#single_homes_for_sale #detail_area .content .main_area .txt_area .desc {
  line-height: 1.9;
  letter-spacing: 0.03em;
}
#single_homes_for_sale #detail_area .content .feature {
  margin-top: 80px;
}
#single_homes_for_sale #detail_area .content .feature .feature_slider .swiper-wrapper {
  gap: 2%;
}
#single_homes_for_sale #detail_area .content .feature .feature_slider .swiper-wrapper .swiper-slide {
  width: 23.5%;
}
#single_homes_for_sale #detail_area .content .feature .feature_slider .swiper-wrapper .swiper-slide .name {
  margin-top: 10px;
  line-height: 1.9;
  font-weight: bold;
}
#single_homes_for_sale #detail_area .content .feature .feature_slider .swiper-wrapper .swiper-slide .desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.9;
}
#single_homes_for_sale #detail_area .content .division {
  margin-top: 80px;
}
#single_homes_for_sale #detail_area .content .division .img {
  text-align: center;
}
#single_homes_for_sale #detail_area .content .division .img img {
  width: 100%;
  height: 460px;
  -o-object-fit: contain;
     object-fit: contain;
}
#single_homes_for_sale #detail_area .content .division .caption {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
}
#single_homes_for_sale #detail_area .content .access {
  margin-top: 80px;
}
#single_homes_for_sale #detail_area .content .access .map iframe {
  width: 100%;
  height: 480px;
}
#single_homes_for_sale #detail_area .content .access .access_img {
  margin-top: 40px;
  text-align: center;
}
#single_homes_for_sale #detail_area .content .facility {
  margin-top: 80px;
}
#single_homes_for_sale #detail_area .content .facility ul {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#single_homes_for_sale #detail_area .content .facility ul li {
  width: 49%;
  padding: 20px 0;
  border-top: 1px solid #000;
}
#single_homes_for_sale #detail_area .content .facility ul li:nth-last-child(-n+2) {
  border-bottom: 1px solid #000;
}
#single_homes_for_sale #detail_area .content .overview {
  margin-top: 80px;
  padding-bottom: 30px;
}
#single_homes_for_sale #detail_area .content .overview .table_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 840px;
  margin: 0 auto;
}
#single_homes_for_sale #detail_area .content .overview .table_row table {
  width: 49%;
}
#single_homes_for_sale #detail_area .content .overview .table_row table tr {
  border-top: 1px solid #000;
}
#single_homes_for_sale #detail_area .content .overview .table_row table tr th {
  text-align: left;
  padding: 20px 0;
  width: 100px;
}
#single_homes_for_sale #detail_area .content .overview .table_row table tr td {
  padding: 20px 0;
}
#single_homes_for_sale #detail_area .content .overview .table_row table tr:last-child {
  border-bottom: 1px solid #000;
}
#single_homes_for_sale #detail_area .btn {
  margin-top: 60px;
}
#single_homes_for_sale #detail_area .btn a {
  margin: 0 auto;
}

@media (max-width: 1000px) {
  #single_homes_for_sale #detail_area .content {
    padding: 60px 0;
  }
  #single_homes_for_sale #detail_area .content::before, #single_homes_for_sale #detail_area .content::after {
    width: 205px;
  }
  #single_homes_for_sale #detail_area .content .inner {
    padding: 0 80px;
  }
  #single_homes_for_sale #detail_area .content .facility ul {
    flex-direction: column;
  }
  #single_homes_for_sale #detail_area .content .facility ul li {
    width: 100%;
    padding: 15px 0;
  }
  #single_homes_for_sale #detail_area .content .facility ul li:nth-last-child(2) {
    border-bottom: 0;
  }
  #single_homes_for_sale #detail_area .content .overview .table_row {
    flex-direction: column;
  }
  #single_homes_for_sale #detail_area .content .overview .table_row table {
    width: 100%;
  }
  #single_homes_for_sale #detail_area .content .overview .table_row table tr th {
    padding: 15px 0;
  }
  #single_homes_for_sale #detail_area .content .overview .table_row table tr td {
    padding: 15px 0;
  }
  #single_homes_for_sale #detail_area .content .overview .table_row table:not(:last-child) tr:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 768px) {
  #single_homes_for_sale #mv .inner .txt h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  #single_homes_for_sale #detail_area {
    padding: 70px 0;
  }
  #single_homes_for_sale #detail_area .content {
    width: 100%;
    padding: 0 0 40px;
  }
  #single_homes_for_sale #detail_area .content::before, #single_homes_for_sale #detail_area .content::after {
    content: none;
  }
  #single_homes_for_sale #detail_area .content .inner {
    width: 92%;
    padding: 0;
  }
  #single_homes_for_sale #detail_area .content .inner h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  #single_homes_for_sale #detail_area .content .main_area .main_slider .swiper-wrapper .swiper-slide img {
    height: unset;
  }
  #single_homes_for_sale #detail_area .content .main_area .tmb_slider {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  #single_homes_for_sale #detail_area .content .main_area .tmb_slider .swiper-wrapper {
    gap: 0;
  }
  #single_homes_for_sale #detail_area .content .main_area .tmb_slider .swiper-wrapper .swiper-slide {
    width: 100px;
    flex-shrink: 0;
  }
  #single_homes_for_sale #detail_area .content .main_area .tmb_slider .pager {
    display: block;
  }
  #single_homes_for_sale #detail_area .content .main_area .tmb_slider .pager .swiper-button-prev {
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(172, 154, 131, 0.8);
  }
  #single_homes_for_sale #detail_area .content .main_area .tmb_slider .pager .swiper-button-prev::after {
    font-size: 25px;
    color: #fff;
  }
  #single_homes_for_sale #detail_area .content .main_area .tmb_slider .pager .swiper-button-next {
    margin-top: 0;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(172, 154, 131, 0.8);
  }
  #single_homes_for_sale #detail_area .content .main_area .tmb_slider .pager .swiper-button-next::after {
    font-size: 25px;
    color: #fff;
  }
  #single_homes_for_sale #detail_area .content .main_area .txt_area .copy {
    font-size: 22px;
    line-height: 1.35;
  }
  #single_homes_for_sale #detail_area .content .feature {
    margin-top: 40px;
  }
  #single_homes_for_sale #detail_area .content .feature .feature_slider {
    margin-left: -5vw;
    margin-right: -5vw;
    padding: 0 5vw;
  }
  #single_homes_for_sale #detail_area .content .feature .feature_slider .swiper-wrapper {
    gap: 0;
  }
  #single_homes_for_sale #detail_area .content .division {
    margin-top: 40px;
  }
  #single_homes_for_sale #detail_area .content .division .img img {
    height: 230px;
  }
  #single_homes_for_sale #detail_area .content .division .caption {
    font-size: 16px;
  }
  #single_homes_for_sale #detail_area .content .access {
    margin-top: 40px;
  }
  #single_homes_for_sale #detail_area .content .access .map iframe {
    height: 230px;
  }
  #single_homes_for_sale #detail_area .content .facility {
    margin-top: 40px;
  }
  #single_homes_for_sale #detail_area .content .overview {
    margin-top: 40px;
    padding-bottom: 0;
  }
  #single_homes_for_sale #detail_area .content .overview .table_row table tr th {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
  #single_homes_for_sale #detail_area .content .overview .table_row table tr td {
    display: block;
    width: 100%;
  }
  #single_homes_for_sale #detail_area .btn {
    margin-top: 40px;
  }
  #single_homes_for_sale #detail_area .btn a {
    width: 210px;
  }
}
#homes_for_sale #mv {
  background-image: url(../img/hfs/mv.jpg);
}
#homes_for_sale #homes_list {
  padding: 100px 0;
  background: #F6F5F3;
}
#homes_for_sale #homes_list .inner .sort {
  background: #fff;
  padding: 30px;
}
#homes_for_sale #homes_list .inner .sort h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
#homes_for_sale #homes_list .inner .sort ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#homes_for_sale #homes_list .inner .sort ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 10px 20px;
  background: #C8C8C8;
  min-width: 130px;
}
#homes_for_sale #homes_list .inner .sort ul li.current a {
  background: #AC9A83;
}
#homes_for_sale #homes_list .inner .sort:not(:first-child) {
  margin-top: 20px;
}
#homes_for_sale #homes_list .inner .list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.6666666667%;
}
#homes_for_sale #homes_list .inner .list .card {
  width: 23.75%;
}
#homes_for_sale #homes_list .inner .list .card a {
  display: block;
  background: #fff;
  padding: 13px;
  height: 100%;
}
#homes_for_sale #homes_list .inner .list .card a .img {
  overflow: hidden;
  aspect-ratio: 259/172;
}
#homes_for_sale #homes_list .inner .list .card a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
#homes_for_sale #homes_list .inner .list .card a .txt {
  margin-top: 20px;
}
#homes_for_sale #homes_list .inner .list .card a .txt .category {
  font-size: 13px;
  line-height: 1;
  border: 1px solid #000;
  padding: 7px 10px;
  width: -moz-fit-content;
  width: fit-content;
}
#homes_for_sale #homes_list .inner .list .card a .txt .ttl {
  margin-top: 10px;
  font-weight: bold;
  transition: 0.5s;
}
#homes_for_sale #homes_list .inner .list .card a .txt .price {
  margin-top: 10px;
  color: #AC9A83;
  font-weight: bold;
  text-align: right;
}
#homes_for_sale #homes_list .inner .list .card a .txt .price span {
  font-size: 32px;
}
#homes_for_sale #homes_list .inner .list .card a .txt .land_area {
  margin-top: 10px;
  font-size: 13px;
}
#homes_for_sale #homes_list .inner .list .card a .txt .completed {
  color: #d93f3f;
  line-height: 1;
  border: 1px solid #d93f3f;
  padding: 10px 20px;
  border-radius: 8px;
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (hover: hover) and (pointer: fine) {
  #homes_for_sale #homes_list .inner .list .card a:hover {
    opacity: 1;
    background: #f9f9f9;
  }
  #homes_for_sale #homes_list .inner .list .card a:hover .img img {
    transform: scale(1.1);
  }
  #homes_for_sale #homes_list .inner .list .card a:hover .txt .ttl {
    color: #AC9A83;
  }
}
@media (hover: hover) and (pointer: fine) {
  #homes_for_sale #homes_list .inner .list .card a:not([href]):hover {
    background: #fff;
  }
  #homes_for_sale #homes_list .inner .list .card a:not([href]):hover .img img {
    transform: none;
  }
  #homes_for_sale #homes_list .inner .list .card a:not([href]):hover .txt .ttl {
    color: #000;
  }
}

@media (max-width: 1000px) {
  #homes_for_sale #homes_list .inner .list {
    gap: 20px 2%;
  }
  #homes_for_sale #homes_list .inner .list .card {
    width: 32%;
  }
}
@media (max-width: 768px) {
  #homes_for_sale #homes_list {
    padding: 70px 0;
  }
  #homes_for_sale #homes_list .inner .sort {
    padding: 20px;
  }
  #homes_for_sale #homes_list .inner .sort h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  #homes_for_sale #homes_list .inner .sort ul {
    gap: 8px;
  }
  #homes_for_sale #homes_list .inner .sort ul li a {
    min-width: 90px;
    font-size: 14px;
    padding: 10px 15px;
  }
  #homes_for_sale #homes_list .inner .sort:not(:first-child) {
    margin-top: 15px;
  }
  #homes_for_sale #homes_list .inner .list {
    margin-top: 40px;
    gap: 20px;
  }
  #homes_for_sale #homes_list .inner .list .card {
    width: 100%;
  }
}
#news #mv {
  background-image: url(../img/news/mv.jpg);
}
#news #news_list {
  background: #F6F5F3;
  padding: 100px 0;
}
#news #news_list .inner .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.6666666667%;
}
#news #news_list .inner .list .item {
  width: 23.75%;
}
#news #news_list .inner .list .item a {
  display: block;
  background: #fff;
  padding: 13px;
  height: 100%;
}
#news #news_list .inner .list .item a .img {
  overflow: hidden;
  aspect-ratio: 259/172;
  background: #f6f5f4;
}
#news #news_list .inner .list .item a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s;
}
#news #news_list .inner .list .item a .txt {
  margin-top: 20px;
  letter-spacing: 0.03em;
}
#news #news_list .inner .list .item a .txt .date {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}
#news #news_list .inner .list .item a .txt .ttl {
  font-weight: 600;
  line-height: 1.9;
  margin-bottom: 10px;
  transition: 0.5s;
}
#news #news_list .inner .list .item a .txt .content {
  line-height: 1.9;
}
@media (hover: hover) and (pointer: fine) {
  #news #news_list .inner .list .item a:hover {
    opacity: 1;
    background: #f9f9f9;
  }
  #news #news_list .inner .list .item a:hover .img img {
    transform: scale(1.1);
  }
  #news #news_list .inner .list .item a:hover .txt .ttl {
    color: #AC9A83;
  }
}

@media (max-width: 1000px) {
  #news #news_list .inner .list {
    gap: 20px 2%;
  }
  #news #news_list .inner .list .item {
    width: 32%;
  }
}
@media (max-width: 768px) {
  #news #news_list {
    padding: 70px 0;
  }
  #news #news_list .inner .list {
    gap: 20px;
  }
  #news #news_list .inner .list .item {
    width: 100%;
  }
}
#single_news #mv {
  background-image: url(../img/news/mv.jpg);
}
#single_news #news_content {
  background: #F6F5F3;
  padding: 100px 0;
}
#single_news #news_content .inner .bg {
  background: #fff;
  padding: 80px;
}
#single_news #news_content .inner .bg .eyecatch {
  text-align: center;
  margin-bottom: 80px;
}
#single_news #news_content .inner .bg .date {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 5px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
#single_news #news_content .inner .bg .ttl {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.03em;
}
#single_news #news_content .inner .bg .content {
  line-height: 1.9;
  letter-spacing: 0.03em;
}
#single_news #news_content .inner .bg .content > *:not(figure) {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
#single_news #news_content .inner .bg .content > *:not(figure):not(:last-child) {
  margin-bottom: 40px;
}
#single_news #news_content .inner .bg .content a {
  color: #AC9A83;
  text-decoration: underline;
}
#single_news #news_content .inner .pagenation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 890px;
  margin: 80px auto 0;
}
#single_news #news_content .inner .pagenation > div a {
  display: flex;
  align-items: center;
  gap: 20px;
  letter-spacing: 0.03em;
}
#single_news #news_content .inner .pagenation > div a .txt {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 5px;
}
#single_news #news_content .inner .pagenation > div a .ttl {
  font-weight: bold;
  line-height: 1.9;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#single_news #news_content .inner .pagenation > div.prev a::before {
  content: "";
  width: 6px;
  height: 12px;
  background: url(../img/arrow_prev_black.svg) no-repeat center/contain;
}
#single_news #news_content .inner .pagenation > div.next a::after {
  content: "";
  width: 6px;
  height: 12px;
  background: url(../img/arrow_next_black.svg) no-repeat center/contain;
}
#single_news #news_content .inner .btn {
  margin-top: 80px;
}
#single_news #news_content .inner .btn a {
  width: -moz-fit-content;
  width: fit-content;
  gap: 25px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #single_news #news_content {
    padding: 50px 0;
  }
  #single_news #news_content .inner .bg {
    padding: 20px;
  }
  #single_news #news_content .inner .bg .eyecatch {
    margin-bottom: 40px;
  }
  #single_news #news_content .inner .bg .ttl {
    font-size: 22px;
    margin-bottom: 15px;
  }
  #single_news #news_content .inner .bg .content {
    font-size: 14px;
  }
  #single_news #news_content .inner .bg .content > *:not(figure) {
    margin-bottom: 20px;
  }
  #single_news #news_content .inner .bg .content > *:not(figure):not(:last-child) {
    margin-bottom: 20px;
  }
  #single_news #news_content .inner .bg .content h2 {
    font-size: 22px;
  }
  #single_news #news_content .inner .pagenation {
    margin-top: 40px;
    flex-direction: column;
    gap: 30px;
  }
  #single_news #news_content .inner .pagenation > div {
    width: 100%;
  }
  #single_news #news_content .inner .pagenation > div a .txt {
    margin-bottom: 0;
  }
  #single_news #news_content .inner .pagenation > div.prev a {
    width: -moz-fit-content;
    width: fit-content;
  }
  #single_news #news_content .inner .pagenation > div.next a {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 0 auto;
  }
  #single_news #news_content .inner .btn {
    margin-top: 40px;
  }
}
#contact .inner #mv {
  background-image: url(../img/contact/mv.jpg);
}

@media (max-width: 768px) {
  #contact #mv .inner .desc {
    font-size: 16px;
  }
}
#reserve .inner #mv {
  background-image: url(../img/reserve/mv.jpg);
}

@media (max-width: 768px) {
  #reserve #mv .inner .desc {
    font-size: 16px;
  }
  #reserve #mv .inner .txt_area {
    margin: 20px 0;
  }
  #reserve #mv .inner .txt_area .copy {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=date],
input[type=number],
textarea,
select {
  border: 1px solid #B3B3B3;
  padding: 6px 20px;
  height: 45px;
  line-height: 1.9;
}

.wpcf7-list-item {
  display: flex !important;
  margin-left: 0 !important;
}
.wpcf7-list-item label {
  display: flex;
}
.wpcf7-list-item input[type=checkbox] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 37px;
}
.wpcf7-list-item input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 25px;
  aspect-ratio: 1/1;
  border: 1px solid #B3B3B3;
  flex-shrink: 0;
  margin-top: -2px;
  position: absolute;
  top: 0;
  left: 0;
}
.wpcf7-list-item input[type=checkbox] + .wpcf7-list-item-label::after {
  content: none;
}
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  border-bottom: 3px solid #AC9A83;
  border-left: 3px solid #AC9A83;
  transform: rotate(-45deg);
  width: 14px;
  height: 8px;
  position: absolute;
  top: 3px;
  left: 5px;
}
.wpcf7-list-item:not(:last-child) {
  margin-bottom: 8px;
}

.btn {
  margin-top: 60px;
}
.btn input {
  display: flex;
  align-items: center;
  color: #fff;
  width: 250px;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  padding: 0 20px;
  text-align: left;
  margin: 0 auto;
}
.btn input:hover {
  opacity: 0.7;
}
.btn input:disabled {
  background-color: #ccc;
}
.btn input:disabled:hover {
  opacity: 1;
  cursor: not-allowed;
}
.btn input[type=submit] {
  background: #AC9A83 url(../img/arrow_right.svg) no-repeat center right 20px/9px;
}
.btn input[type=button] {
  background: #bbb url(../img/arrow_left.svg) no-repeat center left 20px/9px;
  text-align: right;
}

.wpcf7-not-valid-tip {
  margin-top: 10px;
}

.form_sec {
  background: #F6F5F3;
  padding: 100px 0;
  letter-spacing: 0.03em;
}
.form_sec .inner .bg {
  background: #fff;
  padding: 80px;
}
.form_sec .inner .bg .intro {
  text-align: center;
  line-height: 1.9;
}
.form_sec .inner .bg .tel {
  text-align: center;
  color: #AC9A83;
  font-size: 22px;
  font-weight: bold;
  margin-top: 30px;
  line-height: 1;
}
.form_sec .inner .bg .tel span {
  font-size: 37px;
}
.form_sec .inner .bg .time {
  text-align: center;
  margin-top: 10px;
  line-height: 1.9;
}
.form_sec .inner .bg table {
  margin: 40px auto 0;
  width: 100%;
  max-width: 890px;
}
.form_sec .inner .bg table tr {
  border-top: 1px solid #000;
}
.form_sec .inner .bg table tr th {
  width: 250px;
  padding: 30px 20px 30px 0;
  text-align: left;
  font-weight: 500;
  vertical-align: top;
}
.form_sec .inner .bg table tr th p {
  display: flex;
  align-items: flex-start;
}
.form_sec .inner .bg table tr th span {
  margin-top: -5px;
  background: #AC9A83;
  color: #fff;
  font-size: 13px;
  padding: 7px 8px;
  margin-left: 20px;
  display: block;
}
.form_sec .inner .bg table tr td {
  width: calc(100% - 250px);
  padding: 20px 0;
}
.form_sec .inner .bg table tr td input[type=text],
.form_sec .inner .bg table tr td input[type=email],
.form_sec .inner .bg table tr td input[type=tel],
.form_sec .inner .bg table tr td textarea {
  width: 100%;
}
.form_sec .inner .bg table tr td textarea {
  height: 130px;
}
.form_sec .inner .bg table tr td select {
  max-width: 340px;
  width: 100%;
  background: url(../img/arrow_bottom_black.svg) no-repeat center right 20px/11px;
}
.form_sec .inner .bg table tr.date td .group .ttl {
  line-height: 1.9;
  margin-bottom: 5px;
}
.form_sec .inner .bg table tr.date td .group .row {
  display: flex;
  justify-content: space-between;
}
.form_sec .inner .bg table tr.date td .group .row .input_date,
.form_sec .inner .bg table tr.date td .group .row .input_time {
  width: calc((100% - 20px) / 2);
}
.form_sec .inner .bg table tr.date td .group .row .input_date input,
.form_sec .inner .bg table tr.date td .group .row .input_date select,
.form_sec .inner .bg table tr.date td .group .row .input_time input,
.form_sec .inner .bg table tr.date td .group .row .input_time select {
  width: 100%;
}
.form_sec .inner .bg table tr.date td .group:not(:last-child) {
  margin-bottom: 10px;
}
.form_sec .inner .bg table tr.number td .row {
  display: flex;
  justify-content: space-between;
}
.form_sec .inner .bg table tr.number td .row .group {
  width: calc((100% - 20px) / 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form_sec .inner .bg table tr.number td .row .group .ttl {
  flex-shrink: 0;
}
.form_sec .inner .bg table tr.number td .row .group .input {
  width: calc(100% - 53px);
}
.form_sec .inner .bg table tr.number td .row .group .input input {
  width: 100%;
}
.form_sec .inner .bg .agree {
  border-top: 1px solid #000;
  padding-top: 40px;
  max-width: 890px;
  margin: 0 auto;
}
.form_sec .inner .bg .agree .modal_trg {
  text-decoration: underline;
  color: #AC9A83;
}
.form_sec .inner .bg .agree .wpcf7-list-item {
  justify-content: center;
}
.form_sec .inner .btns {
  display: flex;
  justify-content: center;
  gap: 40px;
}

#complete_sec {
  background: #F6F5F3;
  padding: 100px 0;
  letter-spacing: 0.03em;
}
#complete_sec .inner .bg {
  background: #fff;
  padding: 80px;
}
#complete_sec .inner .bg .complete {
  text-align: center;
  line-height: 1.9;
}

#modal_privacy h3 {
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #9F9F9F;
}
#modal_privacy h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 1em 0 0.5em 0;
}
#modal_privacy .inner_txt {
  padding: 20px;
  line-height: 1.9;
}
#modal_privacy .inner_txt ol {
  list-style: decimal inside;
}
#modal_privacy .inner_txt ol li {
  text-indent: -1em;
  margin-left: 1em;
}
#modal_privacy .inner_txt ul li {
  text-indent: -1em;
  margin-left: 1em;
}
#modal_privacy .inner_txt ul li::before {
  content: "・";
}
#modal_privacy .inner_txt a {
  text-decoration: underline;
}
#modal_privacy .inner_txt a:hover {
  text-decoration: none;
}
#modal_privacy .inner_txt .btn {
  margin-top: 20px;
}
#modal_privacy .inner_txt .btn a {
  text-decoration: none;
}

@media (max-width: 1000px) {
  .form_sec .inner .bg {
    padding: 80px 40px;
  }
  .form_sec .inner .bg table tr.date td .group .row {
    flex-direction: column;
    gap: 10px;
  }
  .form_sec .inner .bg table tr.date td .group .row .input_date,
  .form_sec .inner .bg table tr.date td .group .row .input_time {
    width: 100%;
  }
  .form_sec .inner .bg table tr.date td .group .row .input_date input,
  .form_sec .inner .bg table tr.date td .group .row .input_date select,
  .form_sec .inner .bg table tr.date td .group .row .input_time input,
  .form_sec .inner .bg table tr.date td .group .row .input_time select {
    width: 100%;
    max-width: 340px;
  }
  #complete_sec .inner .bg {
    padding: 80px 40px;
  }
}
@media (max-width: 768px) {
  .form_sec {
    font-size: 14px;
    padding: 50px 0;
  }
  .form_sec .inner .bg {
    padding: 20px;
  }
  .form_sec .inner .bg .intro {
    text-align: left;
  }
  .form_sec .inner .bg .tel {
    font-size: 20px;
  }
  .form_sec .inner .bg .tel span {
    font-size: 33px;
  }
  .form_sec .inner .bg table tr th {
    display: block;
    width: 100%;
    padding: 15px 0 0;
  }
  .form_sec .inner .bg table tr th span {
    margin-top: -3px;
    margin-left: 15px;
    font-size: 11px;
    padding: 5px 8px;
  }
  .form_sec .inner .bg table tr td {
    display: block;
    width: 100%;
    padding: 10px 0 15px;
  }
  .form_sec .inner .bg .agree {
    padding-top: 20px;
  }
  .form_sec .inner .btn {
    margin-top: 30px;
  }
  .form_sec .inner .btns .btn input {
    width: 120px;
  }
  #complete_sec {
    font-size: 14px;
    padding: 50px 0;
  }
  #complete_sec .inner .bg {
    padding: 20px;
  }
  #complete_sec .inner .bg .intro {
    text-align: left;
  }
}
#ourwork #mv {
  background-image: url(../img/ourwork/mv.jpg);
}
#ourwork #work_list {
  background: #F6F5F3;
  padding: 100px 0;
}
#ourwork #work_list .inner .tab_nav {
  position: relative;
  z-index: 1;
}
#ourwork #work_list .inner .tab_nav ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
#ourwork #work_list .inner .tab_nav ul li {
  padding: 10px 20px;
  min-width: 130px;
  text-align: center;
  font-weight: 500;
  line-height: 1.9;
  color: #fff;
  background: #C8C8C8;
  cursor: pointer;
  transition: 0.3s;
}
#ourwork #work_list .inner .tab_nav ul li.current {
  background: #AC9A83;
}
#ourwork #work_list .inner .tab_nav ul li:hover {
  opacity: 0.7;
}
#ourwork #work_list .inner .tab_nav::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #AC9A83;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#ourwork #work_list .inner .tab_content {
  margin-top: 60px;
}
#ourwork #work_list .inner .tab_content .tab_block {
  display: none;
}
#ourwork #work_list .inner .tab_content .tab_block.show {
  display: block;
}
#ourwork #work_list .inner .tab_content .tab_block .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.6666666667%;
}
#ourwork #work_list .inner .tab_content .tab_block .list .card {
  width: 23.75%;
}
#ourwork #work_list .inner .tab_content .tab_block .list .card a {
  display: block;
  background: #fff;
  padding: 13px;
  height: 100%;
}
#ourwork #work_list .inner .tab_content .tab_block .list .card a .img {
  overflow: hidden;
  aspect-ratio: 259/172;
}
#ourwork #work_list .inner .tab_content .tab_block .list .card a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
#ourwork #work_list .inner .tab_content .tab_block .list .card a .txt {
  margin-top: 20px;
}
#ourwork #work_list .inner .tab_content .tab_block .list .card a .txt .category {
  font-size: 13px;
  line-height: 1;
  border: 1px solid #000;
  padding: 7px 10px;
  width: -moz-fit-content;
  width: fit-content;
}
#ourwork #work_list .inner .tab_content .tab_block .list .card a .txt .ttl {
  margin-top: 10px;
  line-height: 1.9;
  font-weight: bold;
  transition: 0.5s;
}
#ourwork #work_list .inner .tab_content .tab_block .list .card a .txt .excerpt {
  margin-top: 10px;
  line-height: 1.9;
}
@media (hover: hover) and (pointer: fine) {
  #ourwork #work_list .inner .tab_content .tab_block .list .card a:hover {
    opacity: 1;
    background: #f9f9f9;
  }
  #ourwork #work_list .inner .tab_content .tab_block .list .card a:hover .img img {
    transform: scale(1.1);
  }
  #ourwork #work_list .inner .tab_content .tab_block .list .card a:hover .txt .ttl {
    color: #AC9A83;
  }
}
@media (hover: hover) and (pointer: fine) {
  #ourwork #work_list .inner .tab_content .tab_block .list .card a:not([href]):hover {
    background: #fff;
  }
  #ourwork #work_list .inner .tab_content .tab_block .list .card a:not([href]):hover .img img {
    transform: none;
  }
  #ourwork #work_list .inner .tab_content .tab_block .list .card a:not([href]):hover .txt .ttl {
    color: #000;
  }
}

@media (max-width: 1080px) {
  #ourwork #work_list .inner .tab_content .tab_block .list {
    gap: 20px 2%;
  }
  #ourwork #work_list .inner .tab_content .tab_block .list .card {
    width: 32%;
  }
}
@media (max-width: 768px) {
  #ourwork #work_list {
    padding: 70px 0;
  }
  #ourwork #work_list .inner .tab_nav ul {
    gap: 8px;
  }
  #ourwork #work_list .inner .tab_nav ul li {
    min-width: 90px;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 15px;
  }
  #ourwork #work_list .inner .tab_content {
    margin-top: 40px;
  }
  #ourwork #work_list .inner .tab_content .tab_block .list {
    gap: 20px;
  }
  #ourwork #work_list .inner .tab_content .tab_block .list .card {
    width: 100%;
  }
}
#single_ourwork #detail_area {
  background: #F6F5F3;
  padding: 100px 0;
}
#single_ourwork #detail_area .content {
  background: #fff;
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  z-index: 1;
}
#single_ourwork #detail_area .content::before {
  content: "";
  display: block;
  width: 275px;
  aspect-ratio: 1/1;
  background: url(../img/deco_RT.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#single_ourwork #detail_area .content::after {
  content: "";
  display: block;
  width: 275px;
  aspect-ratio: 1/1;
  background: url(../img/deco_LB.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#single_ourwork #detail_area .content .inner {
  width: 100%;
  padding: 0 80px;
}
#single_ourwork #detail_area .content .inner h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}
#single_ourwork #detail_area .content .main_area .main_slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 460px;
  -o-object-fit: contain;
     object-fit: contain;
}
#single_ourwork #detail_area .content .main_area .tmb_slider {
  margin-top: 20px;
}
#single_ourwork #detail_area .content .main_area .tmb_slider .swiper-wrapper .swiper-slide {
  width: calc((100% - 50px) / 8);
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: pointer;
}
#single_ourwork #detail_area .content .main_area .tmb_slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
#single_ourwork #detail_area .content .main_area .tmb_slider .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
#single_ourwork #detail_area .content .main_area .tmb_slider .pager {
  display: none;
}
#single_ourwork #detail_area .content .main_area .txt_area {
  max-width: 840px;
  margin: 80px auto;
}
#single_ourwork #detail_area .content .main_area .txt_area .copy {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
#single_ourwork #detail_area .content .main_area .txt_area .desc {
  line-height: 1.9;
  letter-spacing: 0.03em;
}
#single_ourwork #detail_area .btn {
  margin-top: 60px;
}
#single_ourwork #detail_area .btn a {
  margin: 0 auto;
}

@media (max-width: 1000px) {
  #single_ourwork #detail_area .content {
    padding: 60px 0;
  }
  #single_ourwork #detail_area .content::before, #single_ourwork #detail_area .content::after {
    width: 205px;
  }
  #single_ourwork #detail_area .content .inner {
    padding: 0 80px;
  }
}
@media (max-width: 768px) {
  #single_ourwork #detail_area {
    padding: 70px 0;
  }
  #single_ourwork #detail_area .content {
    width: 100%;
    padding: 0 0 40px;
  }
  #single_ourwork #detail_area .content::before, #single_ourwork #detail_area .content::after {
    content: none;
  }
  #single_ourwork #detail_area .content .inner {
    width: 92%;
    padding: 0;
  }
  #single_ourwork #detail_area .content .inner h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  #single_ourwork #detail_area .content .main_area .main_slider .swiper-wrapper .swiper-slide img {
    max-height: 230px;
  }
  #single_ourwork #detail_area .content .main_area .tmb_slider {
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  #single_ourwork #detail_area .content .main_area .tmb_slider .swiper-wrapper {
    gap: 0;
  }
  #single_ourwork #detail_area .content .main_area .tmb_slider .swiper-wrapper .swiper-slide {
    width: 100px;
    flex-shrink: 0;
  }
  #single_ourwork #detail_area .content .main_area .tmb_slider .pager {
    display: block;
  }
  #single_ourwork #detail_area .content .main_area .tmb_slider .pager .swiper-button-prev {
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(172, 154, 131, 0.8);
  }
  #single_ourwork #detail_area .content .main_area .tmb_slider .pager .swiper-button-prev::after {
    font-size: 25px;
    color: #fff;
  }
  #single_ourwork #detail_area .content .main_area .tmb_slider .pager .swiper-button-next {
    margin-top: 0;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(172, 154, 131, 0.8);
  }
  #single_ourwork #detail_area .content .main_area .tmb_slider .pager .swiper-button-next::after {
    font-size: 25px;
    color: #fff;
  }
  #single_ourwork #detail_area .content .main_area .txt_area {
    margin: 40px auto;
  }
  #single_ourwork #detail_area .content .main_area .txt_area .copy {
    font-size: 22px;
    line-height: 1.35;
  }
  #single_ourwork #detail_area .btn {
    margin-top: 40px;
  }
  #single_ourwork #detail_area .btn a {
    width: 210px;
  }
}
#comfy_court #mv,
#comfy_court_test #mv {
  background-image: url(../img/comfy/mv.jpg);
}
#comfy_court #about,
#comfy_court_test #about {
  background: url(../img/comfy/about.jpg) no-repeat center/cover;
  color: #fff;
  padding: 100px 0;
}
#comfy_court #about .inner .sec_row,
#comfy_court_test #about .inner .sec_row {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  padding: 80px;
}
#comfy_court #about .inner .sec_row::before,
#comfy_court_test #about .inner .sec_row::before {
  content: "";
  display: block;
  width: 203px;
  aspect-ratio: 1/1;
  background: url(../img/deco_LT.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#comfy_court #about .inner .sec_row::after,
#comfy_court_test #about .inner .sec_row::after {
  content: "";
  display: block;
  width: 203px;
  aspect-ratio: 1/1;
  background: url(../img/deco_RB.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#comfy_court #about .inner .sec_row h2,
#comfy_court_test #about .inner .sec_row h2 {
  font-size: 62px;
  font-weight: 600;
  font-family: "futura-pt", sans-serif;
}
#comfy_court #about .inner .sec_row .txt,
#comfy_court_test #about .inner .sec_row .txt {
  width: 44.2%;
}
#comfy_court #about .inner .sec_row .txt .main,
#comfy_court_test #about .inner .sec_row .txt .main {
  font-size: 42px;
  line-height: 1.35;
  font-weight: bold;
  margin-bottom: 20px;
}
#comfy_court #about .inner .sec_row .txt .desc,
#comfy_court_test #about .inner .sec_row .txt .desc {
  line-height: 1.9;
}
#comfy_court #concept,
#comfy_court_test #concept {
  padding: 100px 0;
}
#comfy_court #concept .inner h2,
#comfy_court_test #concept .inner h2 {
  text-align: center;
}
#comfy_court #concept .inner .sub_ttl,
#comfy_court_test #concept .inner .sub_ttl {
  text-align: center;
}
#comfy_court #concept .inner .img,
#comfy_court_test #concept .inner .img {
  margin-top: 50px;
}
#comfy_court #concept .inner .main,
#comfy_court_test #concept .inner .main {
  margin: 40px auto 0;
  max-width: 840px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
#comfy_court #concept .inner .desc,
#comfy_court_test #concept .inner .desc {
  margin: 20px auto 0;
  max-width: 840px;
  line-height: 1.75;
}
#comfy_court #feature,
#comfy_court_test #feature {
  background: #AC9A83;
  color: #fff;
  padding: 100px 0;
}
#comfy_court #feature .inner h2,
#comfy_court_test #feature .inner h2 {
  text-align: center;
}
#comfy_court #feature .inner h2 span,
#comfy_court_test #feature .inner h2 span {
  color: #000;
}
#comfy_court #feature .inner .sub_ttl,
#comfy_court_test #feature .inner .sub_ttl {
  text-align: center;
}
#comfy_court #feature .inner ul,
#comfy_court_test #feature .inner ul {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
#comfy_court #feature .inner ul li,
#comfy_court_test #feature .inner ul li {
  width: 50%;
  padding: 40px;
  display: flex;
  justify-content: space-between;
}
#comfy_court #feature .inner ul li .txt,
#comfy_court_test #feature .inner ul li .txt {
  width: 55.7%;
}
#comfy_court #feature .inner ul li .txt h3,
#comfy_court_test #feature .inner ul li .txt h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#comfy_court #feature .inner ul li .txt .desc,
#comfy_court_test #feature .inner ul li .txt .desc {
  line-height: 1.9;
}
#comfy_court #feature .inner ul li .img,
#comfy_court_test #feature .inner ul li .img {
  width: 38.4%;
}
#comfy_court #feature .inner ul li:not(:nth-child(2n)),
#comfy_court_test #feature .inner ul li:not(:nth-child(2n)) {
  border-right: 1px solid #fff;
}
#comfy_court #feature .inner ul li:nth-child(n+3),
#comfy_court_test #feature .inner ul li:nth-child(n+3) {
  border-top: 1px solid #fff;
}
#comfy_court #plan,
#comfy_court_test #plan {
  background: #F6F5F3;
  padding: 100px 0;
}
#comfy_court #plan .inner h2,
#comfy_court_test #plan .inner h2 {
  text-align: center;
}
#comfy_court #plan .inner .sub_ttl,
#comfy_court_test #plan .inner .sub_ttl {
  text-align: center;
}
#comfy_court #plan .inner .list,
#comfy_court_test #plan .inner .list {
  margin-top: 60px;
}
#comfy_court #plan .inner .list .plan_block,
#comfy_court_test #plan .inner .list .plan_block {
  background: #fff;
  position: relative;
  padding: 80px;
  z-index: 1;
}
#comfy_court #plan .inner .list .plan_block::before,
#comfy_court_test #plan .inner .list .plan_block::before {
  content: "";
  display: block;
  width: 275px;
  aspect-ratio: 1/1;
  background: url(../img/deco_RT.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#comfy_court #plan .inner .list .plan_block::after,
#comfy_court_test #plan .inner .list .plan_block::after {
  content: "";
  display: block;
  width: 275px;
  aspect-ratio: 1/1;
  background: url(../img/deco_LB.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#comfy_court #plan .inner .list .plan_block .txt_area,
#comfy_court_test #plan .inner .list .plan_block .txt_area {
  max-width: 840px;
  margin: 80px auto;
}
#comfy_court #plan .inner .list .plan_block .txt_area .copy,
#comfy_court_test #plan .inner .list .plan_block .txt_area .copy {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
#comfy_court #plan .inner .list .plan_block .txt_area .desc,
#comfy_court_test #plan .inner .list .plan_block .txt_area .desc {
  line-height: 1.9;
  letter-spacing: 0.03em;
  word-break: break-all;
}
#comfy_court #plan .inner .list .plan_block .feature,
#comfy_court_test #plan .inner .list .plan_block .feature {
  margin-top: 80px;
}
#comfy_court #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper,
#comfy_court_test #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper {
  gap: 2%;
}
#comfy_court #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide,
#comfy_court_test #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide {
  width: 23.5%;
}
#comfy_court #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide .name,
#comfy_court_test #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide .name {
  margin-top: 10px;
  line-height: 1.9;
  font-weight: bold;
}
#comfy_court #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide .desc,
#comfy_court_test #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide .desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.9;
  word-break: break-all;
}
#comfy_court #plan .inner .list .plan_block .overview,
#comfy_court_test #plan .inner .list .plan_block .overview {
  margin: 80px auto 0;
  max-width: 840px;
  padding-bottom: 30px;
}
#comfy_court #plan .inner .list .plan_block .overview h3,
#comfy_court_test #plan .inner .list .plan_block .overview h3 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}
#comfy_court #plan .inner .list .plan_block .overview .table_row,
#comfy_court_test #plan .inner .list .plan_block .overview .table_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 840px;
  margin: 0 auto;
}
#comfy_court #plan .inner .list .plan_block .overview .table_row table,
#comfy_court_test #plan .inner .list .plan_block .overview .table_row table {
  width: 49%;
}
#comfy_court #plan .inner .list .plan_block .overview .table_row table tr,
#comfy_court_test #plan .inner .list .plan_block .overview .table_row table tr {
  border-top: 1px solid #000;
}
#comfy_court #plan .inner .list .plan_block .overview .table_row table tr th,
#comfy_court_test #plan .inner .list .plan_block .overview .table_row table tr th {
  text-align: left;
  padding: 20px 0;
  width: 100px;
}
#comfy_court #plan .inner .list .plan_block .overview .table_row table tr td,
#comfy_court_test #plan .inner .list .plan_block .overview .table_row table tr td {
  padding: 20px 0;
  word-break: break-all;
}
#comfy_court #plan .inner .list .plan_block .overview .table_row table tr:last-child,
#comfy_court_test #plan .inner .list .plan_block .overview .table_row table tr:last-child {
  border-bottom: 1px solid #000;
}
#comfy_court #plan .inner .list .plan_block:not(:last-child),
#comfy_court_test #plan .inner .list .plan_block:not(:last-child) {
  margin-bottom: 60px;
}
#comfy_court #plan .inner .btn,
#comfy_court_test #plan .inner .btn {
  margin-top: 60px;
}
#comfy_court #plan .inner .btn a,
#comfy_court_test #plan .inner .btn a {
  margin: 0 auto;
}

@media (max-width: 1000px) {
  #comfy_court #about .inner .sec_row,
  #comfy_court_test #about .inner .sec_row {
    flex-direction: column;
  }
  #comfy_court #about .inner .sec_row h2,
  #comfy_court_test #about .inner .sec_row h2 {
    width: 100%;
  }
  #comfy_court #about .inner .sec_row .txt,
  #comfy_court_test #about .inner .sec_row .txt {
    width: 100%;
  }
  #comfy_court #feature .inner ul,
  #comfy_court_test #feature .inner ul {
    flex-direction: column;
  }
  #comfy_court #feature .inner ul li,
  #comfy_court_test #feature .inner ul li {
    width: 100%;
  }
  #comfy_court #feature .inner ul li:not(:nth-child(2n)),
  #comfy_court_test #feature .inner ul li:not(:nth-child(2n)) {
    border-right: 0;
  }
  #comfy_court #feature .inner ul li:nth-child(n+2),
  #comfy_court_test #feature .inner ul li:nth-child(n+2) {
    border-top: 1px solid #fff;
  }
  #comfy_court #plan .inner .list .plan_block::before, #comfy_court #plan .inner .list .plan_block::after,
  #comfy_court_test #plan .inner .list .plan_block::before,
  #comfy_court_test #plan .inner .list .plan_block::after {
    width: 205px;
  }
  #comfy_court #plan .inner .list .plan_block .overview .table_row,
  #comfy_court_test #plan .inner .list .plan_block .overview .table_row {
    flex-direction: column;
  }
  #comfy_court #plan .inner .list .plan_block .overview .table_row table,
  #comfy_court_test #plan .inner .list .plan_block .overview .table_row table {
    width: 100%;
  }
  #comfy_court #plan .inner .list .plan_block .overview .table_row table tr th,
  #comfy_court_test #plan .inner .list .plan_block .overview .table_row table tr th {
    padding: 15px 0;
  }
  #comfy_court #plan .inner .list .plan_block .overview .table_row table tr td,
  #comfy_court_test #plan .inner .list .plan_block .overview .table_row table tr td {
    padding: 15px 0;
  }
  #comfy_court #plan .inner .list .plan_block .overview .table_row table:not(:last-child) tr:last-child,
  #comfy_court_test #plan .inner .list .plan_block .overview .table_row table:not(:last-child) tr:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 768px) {
  #comfy_court #about,
  #comfy_court_test #about {
    position: relative;
    z-index: 1;
    padding: 70px 0;
  }
  #comfy_court #about .inner .sec_row,
  #comfy_court_test #about .inner .sec_row {
    gap: 30px;
    padding: 0;
  }
  #comfy_court #about .inner .sec_row h2,
  #comfy_court_test #about .inner .sec_row h2 {
    font-size: 42px;
  }
  #comfy_court #about .inner .sec_row .txt .main,
  #comfy_court_test #about .inner .sec_row .txt .main {
    font-size: 24px;
    margin-bottom: 15px;
  }
  #comfy_court #about .inner .sec_row .txt .desc,
  #comfy_court_test #about .inner .sec_row .txt .desc {
    font-size: 16px;
  }
  #comfy_court #about .inner .sec_row::before, #comfy_court #about .inner .sec_row::after,
  #comfy_court_test #about .inner .sec_row::before,
  #comfy_court_test #about .inner .sec_row::after {
    content: none;
  }
  #comfy_court #about::before,
  #comfy_court_test #about::before {
    content: "";
    display: block;
    background: url(../img/deco_RT.png) no-repeat right top/contain;
    position: absolute;
    right: 0;
    top: 0;
    width: 170px;
    aspect-ratio: 1/1;
    z-index: -1;
  }
  #comfy_court #about::after,
  #comfy_court_test #about::after {
    content: "";
    display: block;
    background: url(../img/deco_LB_mini.png) no-repeat left bottom/contain;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 51px;
    aspect-ratio: 1/1;
    z-index: -1;
  }
  #comfy_court #concept,
  #comfy_court_test #concept {
    padding: 60px 0;
  }
  #comfy_court #concept .inner .img,
  #comfy_court_test #concept .inner .img {
    margin-top: 30px;
  }
  #comfy_court #concept .inner .main,
  #comfy_court_test #concept .inner .main {
    font-size: 18px;
    margin-top: 30px;
  }
  #comfy_court #feature,
  #comfy_court_test #feature {
    padding: 60px 0;
  }
  #comfy_court #feature .inner ul li,
  #comfy_court_test #feature .inner ul li {
    padding: 20px 0;
  }
  #comfy_court #feature .inner ul li .txt,
  #comfy_court_test #feature .inner ul li .txt {
    width: 59%;
  }
  #comfy_court #feature .inner ul li .txt h3,
  #comfy_court_test #feature .inner ul li .txt h3 {
    font-size: 16px;
  }
  #comfy_court #feature .inner ul li .txt .desc,
  #comfy_court_test #feature .inner ul li .txt .desc {
    font-size: 14px;
  }
  #comfy_court #feature .inner ul li .img,
  #comfy_court_test #feature .inner ul li .img {
    width: 34%;
  }
  #comfy_court #plan,
  #comfy_court_test #plan {
    padding: 60px 0;
  }
  #comfy_court #plan .inner .list,
  #comfy_court_test #plan .inner .list {
    margin-top: 30px;
  }
  #comfy_court #plan .inner .list .plan_block,
  #comfy_court_test #plan .inner .list .plan_block {
    padding: 0 4% 40px;
  }
  #comfy_court #plan .inner .list .plan_block::before, #comfy_court #plan .inner .list .plan_block::after,
  #comfy_court_test #plan .inner .list .plan_block::before,
  #comfy_court_test #plan .inner .list .plan_block::after {
    content: none;
  }
  #comfy_court #plan .inner .list .plan_block .txt_area,
  #comfy_court_test #plan .inner .list .plan_block .txt_area {
    margin: 20px auto;
  }
  #comfy_court #plan .inner .list .plan_block .txt_area .copy,
  #comfy_court_test #plan .inner .list .plan_block .txt_area .copy {
    font-size: 22px;
  }
  #comfy_court #plan .inner .list .plan_block .feature,
  #comfy_court_test #plan .inner .list .plan_block .feature {
    margin-top: 40px;
  }
  #comfy_court #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper,
  #comfy_court_test #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper {
    gap: 0;
  }
  #comfy_court #plan .inner .list .plan_block .overview,
  #comfy_court_test #plan .inner .list .plan_block .overview {
    margin-top: 40px;
    padding-bottom: 0;
  }
  #comfy_court #plan .inner .list .plan_block .overview h3,
  #comfy_court_test #plan .inner .list .plan_block .overview h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  #comfy_court #plan .inner .list .plan_block .overview .table_row table tr th,
  #comfy_court_test #plan .inner .list .plan_block .overview .table_row table tr th {
    width: 100%;
    display: block;
    font-weight: bold;
    padding-bottom: 0;
  }
  #comfy_court #plan .inner .list .plan_block .overview .table_row table tr td,
  #comfy_court_test #plan .inner .list .plan_block .overview .table_row table tr td {
    width: 100%;
    display: block;
  }
  #comfy_court #plan .inner .btn,
  #comfy_court_test #plan .inner .btn {
    margin-top: 40px;
  }
}
#garage_house #mv,
#garage_house_test #mv {
  background-image: url(../img/garage/mv.jpg);
}
#garage_house #about,
#garage_house_test #about {
  background: url(../img/garage/about.jpg) no-repeat center/cover;
  color: #fff;
  padding: 100px 0;
}
#garage_house #about .inner .sec_row,
#garage_house_test #about .inner .sec_row {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  padding: 80px;
}
#garage_house #about .inner .sec_row::before,
#garage_house_test #about .inner .sec_row::before {
  content: "";
  display: block;
  width: 203px;
  aspect-ratio: 1/1;
  background: url(../img/deco_LT_white.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#garage_house #about .inner .sec_row::after,
#garage_house_test #about .inner .sec_row::after {
  content: "";
  display: block;
  width: 203px;
  aspect-ratio: 1/1;
  background: url(../img/deco_RB_white.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#garage_house #about .inner .sec_row h2,
#garage_house_test #about .inner .sec_row h2 {
  font-size: 62px;
  font-weight: 600;
  font-family: "futura-pt", sans-serif;
}
#garage_house #about .inner .sec_row .txt,
#garage_house_test #about .inner .sec_row .txt {
  width: 44.2%;
}
#garage_house #about .inner .sec_row .txt .main,
#garage_house_test #about .inner .sec_row .txt .main {
  font-size: 42px;
  line-height: 1.35;
  font-weight: bold;
  margin-bottom: 20px;
}
#garage_house #about .inner .sec_row .txt .desc,
#garage_house_test #about .inner .sec_row .txt .desc {
  line-height: 1.9;
}
#garage_house #concept,
#garage_house_test #concept {
  padding: 100px 0;
}
#garage_house #concept .inner h2,
#garage_house_test #concept .inner h2 {
  text-align: center;
}
#garage_house #concept .inner .sub_ttl,
#garage_house_test #concept .inner .sub_ttl {
  text-align: center;
}
#garage_house #concept .inner .img,
#garage_house_test #concept .inner .img {
  margin-top: 50px;
}
#garage_house #concept .inner .main,
#garage_house_test #concept .inner .main {
  margin: 40px auto 0;
  max-width: 840px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
#garage_house #concept .inner .desc,
#garage_house_test #concept .inner .desc {
  margin: 20px auto 0;
  max-width: 840px;
  line-height: 1.75;
}
#garage_house #feature,
#garage_house_test #feature {
  background: #000;
  color: #fff;
  padding: 100px 0;
}
#garage_house #feature .inner h2,
#garage_house_test #feature .inner h2 {
  text-align: center;
}
#garage_house #feature .inner h2 span,
#garage_house_test #feature .inner h2 span {
  color: #AC9A83;
}
#garage_house #feature .inner .sub_ttl,
#garage_house_test #feature .inner .sub_ttl {
  text-align: center;
}
#garage_house #feature .inner ul,
#garage_house_test #feature .inner ul {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
#garage_house #feature .inner ul li,
#garage_house_test #feature .inner ul li {
  width: 50%;
  padding: 40px;
  display: flex;
  justify-content: space-between;
}
#garage_house #feature .inner ul li .txt,
#garage_house_test #feature .inner ul li .txt {
  width: 55.7%;
}
#garage_house #feature .inner ul li .txt h3,
#garage_house_test #feature .inner ul li .txt h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#garage_house #feature .inner ul li .txt .desc,
#garage_house_test #feature .inner ul li .txt .desc {
  line-height: 1.9;
}
#garage_house #feature .inner ul li .img,
#garage_house_test #feature .inner ul li .img {
  width: 38.4%;
}
#garage_house #feature .inner ul li:not(:nth-child(2n)),
#garage_house_test #feature .inner ul li:not(:nth-child(2n)) {
  border-right: 1px solid #fff;
}
#garage_house #feature .inner ul li:nth-child(n+3),
#garage_house_test #feature .inner ul li:nth-child(n+3) {
  border-top: 1px solid #fff;
}
#garage_house #plan,
#garage_house_test #plan {
  background: #F6F5F3;
  padding: 100px 0;
}
#garage_house #plan .inner h2,
#garage_house_test #plan .inner h2 {
  text-align: center;
}
#garage_house #plan .inner .sub_ttl,
#garage_house_test #plan .inner .sub_ttl {
  text-align: center;
}
#garage_house #plan .inner .list,
#garage_house_test #plan .inner .list {
  margin-top: 60px;
}
#garage_house #plan .inner .list .plan_block,
#garage_house_test #plan .inner .list .plan_block {
  background: #fff;
  position: relative;
  padding: 80px;
  z-index: 1;
}
#garage_house #plan .inner .list .plan_block::before,
#garage_house_test #plan .inner .list .plan_block::before {
  content: "";
  display: block;
  width: 275px;
  aspect-ratio: 1/1;
  background: url(../img/deco_RT_gray.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
#garage_house #plan .inner .list .plan_block::after,
#garage_house_test #plan .inner .list .plan_block::after {
  content: "";
  display: block;
  width: 275px;
  aspect-ratio: 1/1;
  background: url(../img/deco_LB_gray.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
#garage_house #plan .inner .list .plan_block .txt_area,
#garage_house_test #plan .inner .list .plan_block .txt_area {
  max-width: 840px;
  margin: 80px auto;
}
#garage_house #plan .inner .list .plan_block .txt_area .copy,
#garage_house_test #plan .inner .list .plan_block .txt_area .copy {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
#garage_house #plan .inner .list .plan_block .txt_area .desc,
#garage_house_test #plan .inner .list .plan_block .txt_area .desc {
  line-height: 1.9;
  letter-spacing: 0.03em;
  word-break: break-all;
}
#garage_house #plan .inner .list .plan_block .feature,
#garage_house_test #plan .inner .list .plan_block .feature {
  margin-top: 80px;
}
#garage_house #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper,
#garage_house_test #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper {
  gap: 2%;
}
#garage_house #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide,
#garage_house_test #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide {
  width: 23.5%;
}
#garage_house #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide .name,
#garage_house_test #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide .name {
  margin-top: 10px;
  line-height: 1.9;
  font-weight: bold;
}
#garage_house #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide .desc,
#garage_house_test #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper .swiper-slide .desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.9;
  word-break: break-all;
}
#garage_house #plan .inner .list .plan_block .overview,
#garage_house_test #plan .inner .list .plan_block .overview {
  margin: 80px auto 0;
  max-width: 840px;
  padding-bottom: 30px;
}
#garage_house #plan .inner .list .plan_block .overview h3,
#garage_house_test #plan .inner .list .plan_block .overview h3 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}
#garage_house #plan .inner .list .plan_block .overview .table_row,
#garage_house_test #plan .inner .list .plan_block .overview .table_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 840px;
  margin: 0 auto;
}
#garage_house #plan .inner .list .plan_block .overview .table_row table,
#garage_house_test #plan .inner .list .plan_block .overview .table_row table {
  width: 49%;
}
#garage_house #plan .inner .list .plan_block .overview .table_row table tr,
#garage_house_test #plan .inner .list .plan_block .overview .table_row table tr {
  border-top: 1px solid #000;
}
#garage_house #plan .inner .list .plan_block .overview .table_row table tr th,
#garage_house_test #plan .inner .list .plan_block .overview .table_row table tr th {
  text-align: left;
  padding: 20px 0;
  width: 100px;
}
#garage_house #plan .inner .list .plan_block .overview .table_row table tr td,
#garage_house_test #plan .inner .list .plan_block .overview .table_row table tr td {
  padding: 20px 0;
  word-break: break-all;
}
#garage_house #plan .inner .list .plan_block .overview .table_row table tr:last-child,
#garage_house_test #plan .inner .list .plan_block .overview .table_row table tr:last-child {
  border-bottom: 1px solid #000;
}
#garage_house #plan .inner .list .plan_block:not(:last-child),
#garage_house_test #plan .inner .list .plan_block:not(:last-child) {
  margin-bottom: 60px;
}
#garage_house #plan .inner .btn,
#garage_house_test #plan .inner .btn {
  margin-top: 60px;
}
#garage_house #plan .inner .btn a,
#garage_house_test #plan .inner .btn a {
  margin: 0 auto;
  background: #000;
}
#garage_house #plan .inner .btn a::before,
#garage_house_test #plan .inner .btn a::before {
  background: #AC9A83;
}

@media (max-width: 1000px) {
  #garage_house #about .inner .sec_row,
  #garage_house_test #about .inner .sec_row {
    flex-direction: column;
  }
  #garage_house #about .inner .sec_row h2,
  #garage_house_test #about .inner .sec_row h2 {
    width: 100%;
  }
  #garage_house #about .inner .sec_row .txt,
  #garage_house_test #about .inner .sec_row .txt {
    width: 100%;
  }
  #garage_house #feature .inner ul,
  #garage_house_test #feature .inner ul {
    flex-direction: column;
  }
  #garage_house #feature .inner ul li,
  #garage_house_test #feature .inner ul li {
    width: 100%;
  }
  #garage_house #feature .inner ul li:not(:nth-child(2n)),
  #garage_house_test #feature .inner ul li:not(:nth-child(2n)) {
    border-right: 0;
  }
  #garage_house #feature .inner ul li:nth-child(n+2),
  #garage_house_test #feature .inner ul li:nth-child(n+2) {
    border-top: 1px solid #fff;
  }
  #garage_house #plan .inner .list .plan_block::before, #garage_house #plan .inner .list .plan_block::after,
  #garage_house_test #plan .inner .list .plan_block::before,
  #garage_house_test #plan .inner .list .plan_block::after {
    width: 205px;
  }
  #garage_house #plan .inner .list .plan_block .overview .table_row,
  #garage_house_test #plan .inner .list .plan_block .overview .table_row {
    flex-direction: column;
  }
  #garage_house #plan .inner .list .plan_block .overview .table_row table,
  #garage_house_test #plan .inner .list .plan_block .overview .table_row table {
    width: 100%;
  }
  #garage_house #plan .inner .list .plan_block .overview .table_row table tr th,
  #garage_house_test #plan .inner .list .plan_block .overview .table_row table tr th {
    padding: 15px 0;
  }
  #garage_house #plan .inner .list .plan_block .overview .table_row table tr td,
  #garage_house_test #plan .inner .list .plan_block .overview .table_row table tr td {
    padding: 15px 0;
  }
  #garage_house #plan .inner .list .plan_block .overview .table_row table:not(:last-child) tr:last-child,
  #garage_house_test #plan .inner .list .plan_block .overview .table_row table:not(:last-child) tr:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 768px) {
  #garage_house #about,
  #garage_house_test #about {
    position: relative;
    z-index: 1;
    padding: 70px 0;
  }
  #garage_house #about .inner .sec_row,
  #garage_house_test #about .inner .sec_row {
    gap: 30px;
    padding: 0;
  }
  #garage_house #about .inner .sec_row h2,
  #garage_house_test #about .inner .sec_row h2 {
    font-size: 40px;
  }
  #garage_house #about .inner .sec_row .txt .main,
  #garage_house_test #about .inner .sec_row .txt .main {
    font-size: 24px;
    margin-bottom: 15px;
  }
  #garage_house #about .inner .sec_row .txt .desc,
  #garage_house_test #about .inner .sec_row .txt .desc {
    font-size: 16px;
  }
  #garage_house #about .inner .sec_row::before, #garage_house #about .inner .sec_row::after,
  #garage_house_test #about .inner .sec_row::before,
  #garage_house_test #about .inner .sec_row::after {
    content: none;
  }
  #garage_house #about::before,
  #garage_house_test #about::before {
    content: "";
    display: block;
    background: url(../img/deco_RT_white.png) no-repeat right top/contain;
    position: absolute;
    right: 0;
    top: 0;
    width: 170px;
    aspect-ratio: 1/1;
    z-index: -1;
  }
  #garage_house #about::after,
  #garage_house_test #about::after {
    content: "";
    display: block;
    background: url(../img/deco_LB_mini_white.png) no-repeat left bottom/contain;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 51px;
    aspect-ratio: 1/1;
    z-index: -1;
  }
  #garage_house #concept,
  #garage_house_test #concept {
    padding: 60px 0;
  }
  #garage_house #concept .inner .img,
  #garage_house_test #concept .inner .img {
    margin-top: 30px;
  }
  #garage_house #concept .inner .main,
  #garage_house_test #concept .inner .main {
    font-size: 18px;
    margin-top: 30px;
  }
  #garage_house #feature,
  #garage_house_test #feature {
    padding: 60px 0;
  }
  #garage_house #feature .inner ul li,
  #garage_house_test #feature .inner ul li {
    padding: 20px 0;
  }
  #garage_house #feature .inner ul li .txt,
  #garage_house_test #feature .inner ul li .txt {
    width: 59%;
  }
  #garage_house #feature .inner ul li .txt h3,
  #garage_house_test #feature .inner ul li .txt h3 {
    font-size: 16px;
  }
  #garage_house #feature .inner ul li .txt .desc,
  #garage_house_test #feature .inner ul li .txt .desc {
    font-size: 14px;
  }
  #garage_house #feature .inner ul li .img,
  #garage_house_test #feature .inner ul li .img {
    width: 34%;
  }
  #garage_house #plan,
  #garage_house_test #plan {
    padding: 60px 0;
  }
  #garage_house #plan .inner .list,
  #garage_house_test #plan .inner .list {
    margin-top: 30px;
  }
  #garage_house #plan .inner .list .plan_block,
  #garage_house_test #plan .inner .list .plan_block {
    padding: 0 4% 40px;
  }
  #garage_house #plan .inner .list .plan_block::before, #garage_house #plan .inner .list .plan_block::after,
  #garage_house_test #plan .inner .list .plan_block::before,
  #garage_house_test #plan .inner .list .plan_block::after {
    content: none;
  }
  #garage_house #plan .inner .list .plan_block .txt_area,
  #garage_house_test #plan .inner .list .plan_block .txt_area {
    margin: 20px auto;
  }
  #garage_house #plan .inner .list .plan_block .txt_area .copy,
  #garage_house_test #plan .inner .list .plan_block .txt_area .copy {
    font-size: 22px;
  }
  #garage_house #plan .inner .list .plan_block .feature,
  #garage_house_test #plan .inner .list .plan_block .feature {
    margin-top: 40px;
  }
  #garage_house #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper,
  #garage_house_test #plan .inner .list .plan_block .feature .feature_slider .swiper-wrapper {
    gap: 0;
  }
  #garage_house #plan .inner .list .plan_block .overview,
  #garage_house_test #plan .inner .list .plan_block .overview {
    margin-top: 40px;
    padding-bottom: 0;
  }
  #garage_house #plan .inner .list .plan_block .overview h3,
  #garage_house_test #plan .inner .list .plan_block .overview h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  #garage_house #plan .inner .list .plan_block .overview .table_row table tr th,
  #garage_house_test #plan .inner .list .plan_block .overview .table_row table tr th {
    width: 100%;
    display: block;
    font-weight: bold;
    padding-bottom: 0;
  }
  #garage_house #plan .inner .list .plan_block .overview .table_row table tr td,
  #garage_house_test #plan .inner .list .plan_block .overview .table_row table tr td {
    width: 100%;
    display: block;
  }
  #garage_house #plan .inner .btn,
  #garage_house_test #plan .inner .btn {
    margin-top: 40px;
  }
}
#reform_renovation #mv,
#reform_renovation_test #mv {
  background-image: url(../img/reform/mv.jpg);
}
#reform_renovation .reform_sec,
#reform_renovation_test .reform_sec {
  background: #F6F5F3;
  padding: 100px 0;
}
#reform_renovation .reform_sec .inner h2,
#reform_renovation_test .reform_sec .inner h2 {
  text-align: center;
}
#reform_renovation .reform_sec .inner .sub_ttl,
#reform_renovation_test .reform_sec .inner .sub_ttl {
  text-align: center;
}
#reform_renovation .reform_sec .inner ul,
#reform_renovation_test .reform_sec .inner ul {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
#reform_renovation .reform_sec .inner ul li,
#reform_renovation_test .reform_sec .inner ul li {
  width: 50%;
  padding: 40px;
  display: flex;
  justify-content: space-between;
}
#reform_renovation .reform_sec .inner ul li .txt,
#reform_renovation_test .reform_sec .inner ul li .txt {
  width: 55.7%;
}
#reform_renovation .reform_sec .inner ul li .txt h3,
#reform_renovation_test .reform_sec .inner ul li .txt h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#reform_renovation .reform_sec .inner ul li .txt .desc,
#reform_renovation_test .reform_sec .inner ul li .txt .desc {
  line-height: 1.9;
  word-break: break-all;
}
#reform_renovation .reform_sec .inner ul li .txt .price,
#reform_renovation_test .reform_sec .inner ul li .txt .price {
  text-align: right;
  color: #AC9A83;
  font-weight: bold;
}
#reform_renovation .reform_sec .inner ul li .txt .price span,
#reform_renovation_test .reform_sec .inner ul li .txt .price span {
  font-size: 32px;
}
#reform_renovation .reform_sec .inner ul li .img,
#reform_renovation_test .reform_sec .inner ul li .img {
  width: 38.4%;
}
#reform_renovation .reform_sec .inner ul li:not(:nth-child(2n)),
#reform_renovation_test .reform_sec .inner ul li:not(:nth-child(2n)) {
  border-right: 1px solid #000;
}
#reform_renovation .reform_sec .inner ul li:nth-child(n+3),
#reform_renovation_test .reform_sec .inner ul li:nth-child(n+3) {
  border-top: 1px solid #000;
}
#reform_renovation .reform_sec#detached,
#reform_renovation_test .reform_sec#detached {
  padding-bottom: 0;
}
#reform_renovation .reform_sec#condominium,
#reform_renovation_test .reform_sec#condominium {
  padding-top: 50px;
}

@media (max-width: 1000px) {
  #reform_renovation .reform_sec .inner ul,
  #reform_renovation_test .reform_sec .inner ul {
    flex-direction: column;
  }
  #reform_renovation .reform_sec .inner ul li,
  #reform_renovation_test .reform_sec .inner ul li {
    width: 100%;
  }
  #reform_renovation .reform_sec .inner ul li:not(:nth-child(2n)),
  #reform_renovation_test .reform_sec .inner ul li:not(:nth-child(2n)) {
    border-right: 0;
  }
  #reform_renovation .reform_sec .inner ul li:nth-child(n+2),
  #reform_renovation_test .reform_sec .inner ul li:nth-child(n+2) {
    border-top: 1px solid #000;
  }
}
@media (max-width: 768px) {
  #reform_renovation .reform_sec,
  #reform_renovation_test .reform_sec {
    padding: 60px 0;
  }
  #reform_renovation .reform_sec .inner ul li,
  #reform_renovation_test .reform_sec .inner ul li {
    padding: 20px 0;
  }
  #reform_renovation .reform_sec .inner ul li .txt,
  #reform_renovation_test .reform_sec .inner ul li .txt {
    width: 59%;
  }
  #reform_renovation .reform_sec .inner ul li .txt h3,
  #reform_renovation_test .reform_sec .inner ul li .txt h3 {
    font-size: 16px;
  }
  #reform_renovation .reform_sec .inner ul li .txt .desc,
  #reform_renovation_test .reform_sec .inner ul li .txt .desc {
    font-size: 14px;
  }
  #reform_renovation .reform_sec .inner ul li .img,
  #reform_renovation_test .reform_sec .inner ul li .img {
    width: 34%;
  }
  #reform_renovation .reform_sec#condominium,
  #reform_renovation_test .reform_sec#condominium {
    padding-top: 40px;
  }
}/*# sourceMappingURL=style.css.map */