@charset "UTF-8";
@import url("https://use.typekit.net/mxq5frb.css");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@keyframes poyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes popZoom {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes bgRotate {
  from {
    background-position: center center;
    transform: rotate(0deg);
  }
  to {
    background-position: center center;
    transform: rotate(360deg);
  }
}
header {
  background: #554D11;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  transition: 0.5s;
}
header.scrolled {
  background: rgba(85, 77, 17, 0.8); /* 白、60%透明 */
}
header.scrolled .right_nav .contact_btn {
  background: rgba(49, 45, 8, 0.8);
}
header .flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-family: YakuHanJP, "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 860px) {
  header .flex {
    align-items: center;
    padding: 10px 0;
  }
}
header .flex h1 {
  flex-shrink: 0.2;
  padding-bottom: 24px;
}
@media screen and (max-width: 860px) {
  header .flex h1 {
    padding: 0;
    width: 100px;
  }
}
header ul li a {
  color: #fff;
  line-height: 1;
}
header ul li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 860px) {
  header nav {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 80vw;
    height: 100vh;
    max-width: 300px;
    background: #8E8323;
    z-index: 9999;
    overflow: scroll;
    padding: 30px 0;
    transition: 0.5s;
  }
  header nav.active {
    right: 0;
  }
  header nav .nav_close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    display: block;
  }
  header nav .contact_btn a {
    color: #fff;
    padding: 20px 10px;
    box-sizing: border-box;
    display: block;
    background: #554D11;
    border-bottom: 1px solid #fff;
  }
  header nav .sns_link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  header nav .sns_link li {
    width: 30px;
  }
  header nav .sns_link li + li {
    margin-left: 20px;
  }
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 860px) {
  header nav ul {
    display: block;
  }
}
header nav ul li {
  position: relative;
}
header nav ul li.nav_link {
  position: relative;
  transition: 0.5s;
  margin-left: 35px;
}
@media screen and (max-width: 860px) {
  header nav ul li.nav_link {
    margin-left: 0;
  }
}
header nav ul li.nav_link:first-child {
  margin-left: 0;
}
header nav ul li.nav_link::after {
  content: "";
  display: block;
  background: url(/wp-content/themes/realestate/image/common/arrow.svg) no-repeat center/contain;
}
header nav ul li.nav_link:hover {
  border-color: #fff;
}
header nav ul li.nav_link a {
  padding-bottom: 20px;
}
@media screen and (max-width: 860px) {
  header nav ul li.nav_link a {
    padding: 10px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 860px) {
  header nav ul li.nav_link a.hover_line {
    border-bottom: 1px solid #fff;
  }
}
header nav ul li.nav_link a.hover_line::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  background: #fff;
  height: 1px;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 860px) {
  header nav ul li.nav_link a.hover_line::before {
    display: none;
  }
}
header nav ul li.nav_link a.hover_line::after {
  content: "";
  display: block;
  width: 12px;
  height: 4px;
  background: url(/wp-content/themes/realestate/image/common/arrow.svg) no-repeat center/contain;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 860px) {
  header nav ul li.nav_link a.hover_line::after {
    display: none;
  }
}
header nav ul li.nav_link a.hover_line:hover::before, header nav ul li.nav_link a.hover_line:hover::after, header nav ul li.nav_link a.hover_line.active::before, header nav ul li.nav_link a.hover_line.active::after {
  opacity: 1;
}
header nav ul li a {
  display: block;
  font-size: 1.8rem;
}
header nav ul li a:hover {
  border-color: #fff;
  color: #fff;
}
header nav ul li a:hover::after {
  opacity: 1;
}
header nav ul li .child_nav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background: #989260;
  padding: 15px 16px;
  box-sizing: border-box;
  z-index: 99;
  display: none;
}
@media screen and (max-width: 860px) {
  header nav ul li .child_nav {
    position: static;
    transform: none;
    display: block;
    border-bottom: 1px solid #fff;
  }
}
header nav ul li .child_nav a {
  display: block;
  font-size: 1.6rem;
  white-space: nowrap;
  padding: 0;
}
header nav ul li .child_nav a::after {
  display: none;
}
header nav ul li .child_nav .child_nav_list {
  display: block;
  padding-bottom: 0;
}
header nav ul li .child_nav .child_nav_list li a {
  font-size: 1.4rem;
  display: flex;
  align-self: center;
  margin-left: 1em;
  line-height: 2.14;
}
header nav ul li .child_nav .child_nav_list li a::before {
  content: ">";
  display: block;
}
header .right_nav {
  display: flex;
  align-items: flex-end;
}
header .right_nav .contact_btn {
  background: #312D08;
}
header .right_nav .contact_btn a {
  padding-top: 60px;
  padding: 60px 20px 20px;
  line-height: 1;
  display: block;
}
header .right_nav a {
  font-size: 1.8rem;
  color: #fff;
}
header .right_nav .sns_link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 12px;
}
header .right_nav .sns_link li {
  width: 30px;
  margin-left: 20px;
}
header .sp_navToggle {
  display: block;
  position: relative;
  border-bottom: 2px solid #fff;
  border-top: 2px solid #fff;
  width: 25px;
  height: 20px;
  box-sizing: border-box;
}
header .sp_navToggle::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: #fff;
}

footer {
  background: #EDEDEB;
}
footer > * {
  max-width: 1416px;
  width: 90%;
  border-bottom: 1px solid #BEBEBE;
  margin: 0 auto;
}
footer > *.foot01 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 50px;
}
@media screen and (max-width: 860px) {
  footer > *.foot01 {
    display: block;
    padding-bottom: 30px;
  }
}
footer > *.foot01 .foot_logo {
  display: block;
  max-width: 184px;
}
@media screen and (max-width: 860px) {
  footer > *.foot01 .foot_logo {
    width: 100px;
    margin: 0 auto;
  }
}
footer > *.foot01 p {
  font-size: 2.4rem;
  text-align: 0.05em;
  color: #626262;
  margin-left: clamp(0px, 3.17vw, 45px);
}
@media screen and (max-width: 860px) {
  footer > *.foot01 p {
    font-size: 1.7rem;
    text-align: center;
    margin: 20px auto;
  }
}
footer > *.foot01 .sns {
  display: flex;
  margin-left: clamp(0px, 16.45vw, 233px);
  gap: clamp(0px, 7.41vw, 105px);
}
footer > *.foot01 .sns a {
  max-width: 96px;
}
@media screen and (max-width: 860px) {
  footer > *.foot01 .sns {
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }
  footer > *.foot01 .sns a {
    max-width: 50px;
  }
}
footer > *.linkBox {
  display: flex;
  justify-content: flex-start;
  gap: 5%;
  padding: 60px 0;
}
@media screen and (max-width: 860px) {
  footer > *.linkBox {
    display: block;
    padding: 30px 0;
  }
}
@media screen and (max-width: 860px) {
  footer > *.linkBox ul:first-child .ttl {
    margin-top: 0 !important;
  }
}
footer > *.linkBox ul li {
  margin-left: 14px;
}
footer > *.linkBox ul li + li {
  margin-top: 0.7em;
}
footer > *.linkBox ul li.ttl {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  border-left: 6px solid #554E11;
  text-align: left;
  color: #626262;
  padding-left: 8px;
}
footer > *.linkBox ul li.ttl:nth-of-type(n+2) {
  margin-top: 0.7em;
}
@media screen and (max-width: 860px) {
  footer > *.linkBox ul li.ttl {
    margin-top: 1.5em !important;
    font-size: 1.4rem;
  }
}
footer > *.linkBox ul li a {
  color: #626262;
  font-size: 1.6rem;
}
@media screen and (max-width: 860px) {
  footer > *.linkBox ul li a {
    font-size: 1.4rem;
  }
}
footer > *.linkBox ul li ul {
  margin-top: 0.7em;
}
footer > *.icnBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  padding-top: 60px;
}
@media screen and (max-width: 860px) {
  footer > *.icnBox {
    display: block;
    padding-top: 30px;
  }
}
footer > *.icnBox a {
  display: flex;
  align-items: center;
  width: 22%;
}
@media screen and (max-width: 860px) {
  footer > *.icnBox a {
    width: auto;
  }
  footer > *.icnBox a + a {
    margin-top: 20px;
  }
}
footer > *.icnBox a img {
  max-width: 92px;
}
@media screen and (max-width: 860px) {
  footer > *.icnBox a img {
    width: 70px;
  }
}
footer > *.icnBox a p {
  font-size: 1.6rem;
  font-weight: 200;
  color: #626262;
  line-height: 1.2;
  margin-left: 15px;
}
@media screen and (max-width: 860px) {
  footer > *.icnBox a p {
    font-size: 1.4rem;
  }
}
footer > *.icnBox a p strong {
  display: block;
  font-size: 1.25em;
  font-weight: 600;
}
footer > *.telBox {
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px auto;
}
@media screen and (max-width: 860px) {
  footer > *.telBox {
    display: block;
    margin: 30px auto 30px;
  }
}
footer > *.telBox p strong {
  display: block;
  font-size: 2.4rem;
  color: #554D11;
}
@media screen and (max-width: 860px) {
  footer > *.telBox p strong {
    font-size: 2rem;
  }
}
footer > *.telBox p span {
  display: inline-block;
  font-size: 1.8rem;
  color: #554D11;
}
@media screen and (max-width: 860px) {
  footer > *.telBox p span {
    display: block;
    font-size: 1.4rem;
  }
}
footer > *.telBox p span + span {
  margin-left: 1em;
}
@media screen and (max-width: 860px) {
  footer > *.telBox p span + span {
    display: block;
    margin: 0;
  }
}
@media screen and (max-width: 860px) {
  footer > *.telBox p {
    text-align: center;
  }
}
footer > *.telBox a {
  max-width: 300px;
  display: block;
}
@media screen and (max-width: 860px) {
  footer > *.telBox a {
    margin: 20px auto 0;
  }
}
footer .copyright {
  width: 100%;
  max-width: none;
  background: #554D11;
  text-align: center;
  color: #fff;
  display: block;
  font-size: 1.4rem;
  padding: 0.5em;
  box-sizing: border-box;
}

.retop {
  display: none;
}
@media screen and (max-width: 860px) {
  .retop {
    display: block;
    border-radius: 99999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #554D11;
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    aspect-ratio: 1/1;
    padding: 10px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 99;
  }
  .retop span {
    display: block;
    color: #fff;
  }
}

#child #mv {
  box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.56);
}
#child #mv .flex {
  align-items: center;
  max-width: 1400px;
  padding: 10px 0;
  margin: 0 auto;
  width: 95%;
}
@media screen and (max-width: 860px) {
  #child #mv .flex {
    display: block;
    padding: 25px 0;
  }
}
#child #mv .flex .imgBox {
  display: block;
  max-width: 371px;
}
@media screen and (max-width: 860px) {
  #child #mv .flex .imgBox {
    max-width: 200px;
    margin: 0 auto;
  }
}
#child #mv .flex h2 {
  flex-shrink: 0;
  font-size: 4.8rem;
  text-align: center;
}
@media screen and (max-width: 860px) {
  #child #mv .flex h2 {
    font-size: 2.8rem;
    text-align: center;
  }
}
#child #mv .flex h2 .line {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #292929;
  margin: 0 auto;
  margin-bottom: 0.3em;
  padding-bottom: 0.3em;
}
#child #mv .flex h2 small {
  display: block;
  font-size: 0.7em;
}
#child #pan {
  margin: 51px auto 80px;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 860px) {
  #child #pan {
    margin: 25px auto;
  }
}
#child #pan ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
}
#child #pan li {
  position: relative;
  font-size: 1.6rem;
}
@media screen and (max-width: 860px) {
  #child #pan li {
    font-size: 1.1rem;
  }
}
#child #pan li + li::before {
  content: "＞";
  margin: 0 0.5em;
  color: #666;
}
#child #pan a {
  text-decoration: none;
  color: #333;
}
#child #pan a:hover {
  text-decoration: underline;
}
#child .mainimg {
  margin: 0 auto 54px;
  display: block;
  max-width: 313px;
  width: 80%;
}
@media screen and (max-width: 860px) {
  #child .mainimg {
    margin-bottom: 30px;
  }
}
#child p {
  font-size: 1.8rem;
  line-height: 2.1;
}
@media screen and (max-width: 860px) {
  #child p {
    font-size: 1.6rem;
  }
}
#child .pagenation {
  margin-top: 150px;
  margin-bottom: 50px;
}
@media screen and (max-width: 860px) {
  #child .pagenation {
    margin: 50px auto;
  }
}
#child .pagenation ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
#child .pagenation ul li a, #child .pagenation ul li span {
  color: #554D11;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  aspect-ratio: 1/1;
  font-size: 2.4rem;
  border-radius: 100%;
  border: 1px solid #554D11;
  box-sizing: border-box;
  line-height: 1;
}
@media screen and (max-width: 860px) {
  #child .pagenation ul li a, #child .pagenation ul li span {
    font-size: 1.4rem;
    width: 30px;
  }
}
#child .pagenation ul li.active a, #child .pagenation ul li.active span {
  color: #fff;
  background: #554D11;
}
#child #editor_cont p {
  line-height: 1.8;
}
#child #editor_area #topBox .img img {
  border-radius: 10px;
  width: 100%;
  max-width: none;
}
#child #editor_area hr {
  margin: 2em 0;
}
#child.about .sectionBox {
  padding: 115px 0;
}
@media screen and (max-width: 860px) {
  #child.about .sectionBox {
    padding: 70px 0;
  }
}
#child.about #box01 {
  padding-top: 0;
}
#child.about #box01 .flexBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 68px;
}
#child.about #box01 .flexBox .cont {
  width: calc((100% - 91px) / 2);
  border: 1px solid #554E11;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 860px) {
  #child.about #box01 .flexBox .cont {
    width: calc((100% - 40px) / 2);
    padding: 15px;
  }
}
#child.about #box01 .flexBox .cont:nth-of-type(1) {
  order: 0;
}
#child.about #box01 .flexBox .cont:nth-of-type(2) {
  order: 2;
}
#child.about #box01 .flexBox .cont:nth-of-type(3) {
  order: 7;
}
#child.about #box01 .flexBox .cont:nth-of-type(4) {
  order: 5;
}
#child.about #box01 .flexBox .cont dt {
  display: flex;
  align-items: center;
  font-size: 3rem;
  color: #554E11;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media screen and (max-width: 860px) {
  #child.about #box01 .flexBox .cont dt {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
  }
}
#child.about #box01 .flexBox .cont dt .num {
  background: #554E11;
  width: 1.4em;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #fff;
  border-radius: 100%;
  font-size: 2.7rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  flex-shrink: 0;
  margin-right: 10px;
}
@media screen and (max-width: 860px) {
  #child.about #box01 .flexBox .cont dt .num {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#child.about #box01 .flexBox .cont dd {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 860px) {
  #child.about #box01 .flexBox .cont dd {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
#child.about #box01 .flexBox .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
#child.about #box01 .flexBox .arrow:nth-of-type(1) {
  order: 1;
}
#child.about #box01 .flexBox .arrow:nth-of-type(2) {
  order: 4;
  width: calc((100% - 91px) / 2);
  margin: 22px 0;
}
@media screen and (max-width: 860px) {
  #child.about #box01 .flexBox .arrow:nth-of-type(2) {
    width: calc((100% - 40px) / 2);
    margin: 10px 0;
  }
}
#child.about #box01 .flexBox .arrow:nth-of-type(2) .triangle {
  transform: rotate(90deg);
}
#child.about #box01 .flexBox .arrow:nth-of-type(3) {
  order: 3;
  width: calc((100% - 91px) / 2);
  margin: 22px 0;
}
@media screen and (max-width: 860px) {
  #child.about #box01 .flexBox .arrow:nth-of-type(3) {
    width: calc((100% - 40px) / 2);
    margin: 10px 0;
  }
}
#child.about #box01 .flexBox .arrow:nth-of-type(3) .triangle {
  transform: rotate(-90deg);
}
#child.about #box01 .flexBox .arrow:nth-of-type(4) {
  order: 6;
  transform: rotate(180deg);
}
#child.about #box01 .flexBox .arrow .triangle {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-left: 47px solid #554E11;
  border-right: 0;
}
@media screen and (max-width: 860px) {
  #child.about #box01 .flexBox .arrow .triangle {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #554E11;
  }
}
#child.about #box02 {
  background: #FBFAF9;
}
#child.about #box02 .contArea {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  margin-top: 70px;
}
@media screen and (max-width: 860px) {
  #child.about #box02 .contArea {
    margin-top: 50px;
  }
}
#child.about #box02 .contArea li::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-left: 27px solid transparent;
  border-right: 27px solid transparent;
  border-top: 47px solid #554E11;
  border-bottom: 0;
  margin: 0 auto 40px;
}
@media screen and (max-width: 860px) {
  #child.about #box02 .contArea li::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #554E11;
    margin-bottom: 15px;
  }
}
#child.about #box02 .contArea li:last-child::after {
  display: none;
}
#child.about #box02 .contArea .cont {
  border: 1px solid #554E11;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  #child.about #box02 .contArea .cont {
    display: block;
    padding: 20px;
  }
}
#child.about #box02 .contArea .cont img {
  max-width: 330px;
  width: 30%;
  margin-right: 5%;
  flex-shrink: 0;
}
@media screen and (max-width: 860px) {
  #child.about #box02 .contArea .cont img {
    width: 100%;
    margin: 0 auto 20px;
  }
}
#child.about #box02 .contArea .cont dl dt {
  font-size: 3rem;
  color: #554E11;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 860px) {
  #child.about #box02 .contArea .cont dl dt {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
#child.about #box02 .contArea .cont dl dd {
  font-size: 2rem;
  line-height: 2.1;
}
@media screen and (max-width: 860px) {
  #child.about #box02 .contArea .cont dl dd {
    font-size: 1.6rem;
  }
}
#child.about #box03 .center {
  text-align: center;
  font-size: 2.8rem;
}
@media screen and (max-width: 860px) {
  #child.about #box03 .center {
    font-size: 2.2rem;
  }
}
#child.about #box03 .flex {
  flex-wrap: wrap;
  align-items: flex-start;
}
#child.about #box03 .flex li {
  width: 30%;
}
#child.about #box03 .flex li:nth-child(n+4) {
  margin-top: 80px;
}
@media screen and (max-width: 860px) {
  #child.about #box03 .flex li {
    width: 48%;
  }
  #child.about #box03 .flex li:nth-child(n+3) {
    margin-top: 30px;
  }
}
#child.about #box03 .flex li .img {
  border: 2px solid #554E11;
  border-radius: 10px;
  box-sizing: border-box;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#child.about #box03 .flex li .img img {
  max-width: 213px;
  width: 80%;
  margin: 0 auto;
}
#child.about #box03 .flex li p {
  color: #554E11;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 860px) {
  #child.about #box03 .flex li p {
    font-size: 1.6rem;
  }
}
#child.about #box04 {
  border-top: 2px solid #554D11;
}
#child.about #box04 p {
  text-align: center;
  width: 90%;
  margin: 80px auto 100px;
  font-size: 2.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 860px) {
  #child.about #box04 p {
    font-size: 1.8rem;
  }
}
#child.preventing #mv .flex {
  padding: 10px 0;
}
#child.preventing #editor_area #topBox h3 {
  margin-top: 40px;
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  #child.preventing #editor_area #topBox h3 {
    font-size: 3rem;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
#child.preventing #editor_area #topBox h3 span {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  background: #7B8B69;
  border: #707070;
  border-radius: 9999px;
  line-height: 2;
  padding: 0 0.5em;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 860px) {
  #child.preventing #editor_area #topBox h3 span {
    position: static;
    transform: none;
    margin: 10px auto 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#child.preventing #editor_area #editor_cont {
  border-top: 1px solid #707070;
  margin-bottom: 120px;
}
@media screen and (max-width: 860px) {
  #child.preventing #editor_area #editor_cont {
    margin-bottom: 60px;
  }
}
#child.preventing #editor_area #editor_cont p {
  margin: 1em 0;
}
#child.preventing #other_link {
  background: #F9F8F5;
}
#child.preventing #other_link .flex {
  align-items: center;
}
@media screen and (max-width: 860px) {
  #child.preventing #other_link .flex {
    display: block;
  }
}
#child.preventing #other_link .flex .img {
  width: 45%;
  aspect-ratio: 3/2;
}
#child.preventing #other_link .flex .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 860px) {
  #child.preventing #other_link .flex .img {
    width: 100%;
    margin-top: 40px;
  }
}
#child.preventing #other_link .flex dl {
  width: 55%;
}
@media screen and (max-width: 860px) {
  #child.preventing #other_link .flex dl {
    width: 100%;
  }
}
#child.preventing #other_link .flex dl dt {
  border-bottom: 1px solid #707070;
  font-size: 3.2rem;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
#child.preventing #other_link .flex dl dd p {
  line-height: 1.7;
  width: 95%;
}
#child.preventing #other_link .flex dl dd .btn {
  margin-top: 40px;
}
#child.collabo_model #mv .flex {
  padding: 10px 0;
}
#child.collabo_model #editor_area #topBox h3 {
  margin-top: 40px;
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #editor_area #topBox h3 {
    font-size: 3rem;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
#child.collabo_model #editor_area #topBox h3 span {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  background: #7B8B69;
  border: #707070;
  border-radius: 9999px;
  line-height: 2;
  padding: 0 0.5em;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 860px) {
  #child.collabo_model #editor_area #topBox h3 span {
    position: static;
    transform: none;
    margin: 10px auto 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
#child.collabo_model #editor_area #editor_cont {
  border-top: 1px solid #707070;
}
#child.collabo_model #editor_area #editor_cont p {
  margin: 1em 0;
}
#child.collabo_model #property_list {
  background: #F9F8F5;
}
#child.collabo_model #property_list .flex {
  align-items: center;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .flex {
    display: block;
  }
}
#child.collabo_model #property_list .flex .img {
  width: 45%;
  aspect-ratio: 3/2;
}
#child.collabo_model #property_list .flex .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .flex .img {
    width: 100%;
    margin-top: 40px;
  }
}
#child.collabo_model #property_list .flex dl {
  width: 55%;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .flex dl {
    width: 100%;
  }
}
#child.collabo_model #property_list .flex dl dt {
  border-bottom: 1px solid #707070;
  font-size: 3.2rem;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
#child.collabo_model #property_list .flex dl dd p {
  line-height: 1.7;
  width: 95%;
}
#child.collabo_model #property_list .flex dl dd .btn {
  margin-top: 40px;
}
#child.collabo_model #property_list {
  background: #F9F8F5;
}
#child.collabo_model #property_list .slider {
  margin-bottom: 78px;
}
#child.collabo_model #property_list .slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(30px, 5vw, 78px);
  aspect-ratio: 1/1;
  z-index: 3;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .slider .slick-arrow {
    top: 49%;
  }
}
#child.collabo_model #property_list .slider .slick-arrow.prev-arrow {
  left: -2%;
}
#child.collabo_model #property_list .slider .slick-arrow.next-arrow {
  right: -2%;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .slider {
    display: block;
    margin-bottom: 30px;
  }
}
#child.collabo_model #property_list .cont {
  width: 31%;
  display: block;
  padding: 0 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont {
    width: 100%;
  }
  #child.collabo_model #property_list .cont + .cont {
    margin-top: 30px;
  }
}
#child.collabo_model #property_list .cont img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
#child.collabo_model #property_list .cont .property-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px auto;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont .property-meta {
    margin: 10px auto 5px;
  }
}
#child.collabo_model #property_list .cont .property-meta dd {
  font-size: 1.8rem;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont .property-meta dd {
    font-size: 1.4rem;
  }
}
#child.collabo_model #property_list .cont .property-meta .icn {
  font-size: 1.6rem;
  border: 1px solid #707070;
  border-radius: 16px;
  width: 92px;
  text-align: center;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont .property-meta .icn {
    font-size: 1.2rem;
  }
}
#child.collabo_model #property_list .cont .property-title {
  border-top: 1px solid #707070;
  padding-top: 12px;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont .property-title {
    padding-top: 5px;
  }
}
#child.collabo_model #property_list .cont .property-title dt {
  font-size: 2rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont .property-title dt {
    font-size: 1.6rem;
  }
}
#child.collabo_model #property_list .cont .property-title dt::after {
  content: "|";
  margin: 0 0.25em;
}
#child.collabo_model #property_list .cont .property-title dd {
  font-size: 1.8rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont .property-title dd {
    font-size: 1.4rem;
  }
}
#child.collabo_model #property_list .cont .property-info dt {
  font-size: 2.4rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont .property-info dt {
    font-size: 2rem;
  }
}
#child.collabo_model #property_list .cont .property-info dt::after {
  content: "/";
}
#child.collabo_model #property_list .cont .property-info dd {
  font-size: 1.8rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont .property-info dd {
    font-size: 1.4rem;
  }
}
#child.collabo_model #property_list .cont dl dt {
  font-size: 2.4rem;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont dl dt {
    font-size: 2.2rem;
    padding: 10px 0;
  }
}
#child.collabo_model #property_list .cont dl dd {
  word-break: break-all;
  font-size: 1.6rem;
  border-top: 2px solid #292929;
  padding-top: 20px;
}
@media screen and (max-width: 860px) {
  #child.collabo_model #property_list .cont dl dd {
    font-size: 1.4rem;
  }
}
#child .collabo_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#child .collabo_list a {
  width: 45%;
  margin-bottom: 50px;
}
@media screen and (max-width: 860px) {
  #child .collabo_list a {
    width: 100%;
  }
}
#child .collabo_list a .img {
  width: 100%;
  aspect-ratio: 3/2;
}
#child .collabo_list a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
#child .collabo_list a .title {
  text-align: center;
  font-size: 2.8rem;
  display: block;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 860px) {
  #child .collabo_list a .title {
    font-size: 2.2rem;
  }
}
#child.blog #blogBody {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody {
    display: block;
  }
}
#child.blog #blogBody #sideBar {
  max-width: 550px;
  width: 30%;
  flex-shrink: 0;
  background: #F9F8F5;
  padding: 110px 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #sideBar {
    width: 100%;
    max-width: none;
    padding: 40px 5%;
  }
}
#child.blog #blogBody #sideBar dl {
  max-width: 360px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  box-sizing: border-box;
  word-break: break-all;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  color: #292929;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #sideBar dl {
    max-width: none;
    padding: 20px;
  }
}
#child.blog #blogBody #sideBar dl + dl {
  margin-top: 60px;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #sideBar dl + dl {
    margin-top: 30px;
  }
}
#child.blog #blogBody #sideBar dl dt {
  border-bottom: 1px solid #292929;
  font-size: 2.2rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #sideBar dl dt {
    font-size: 1.6rem;
  }
}
#child.blog #blogBody #sideBar dl dd ul {
  font-size: 1.6rem;
}
#child.blog #blogBody #sideBar dl dd ul li {
  list-style: none;
  margin-top: 0.5em;
}
#child.blog #blogBody #sideBar dl dd ul li + li {
  border-top: 1px dashed #ccc;
  padding-top: 0.5em;
}
#child.blog #blogBody #sideBar dl dd ul li a {
  color: #292929;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#child.blog #blogBody #sideBar dl dd ul li a .post-date {
  display: inline-block;
  font-weight: 500;
}
#child.blog #blogBody #sideBar dl dd ul li a .post-cat {
  display: inline-block;
  font-size: 0.7em;
  color: #fff;
  border-radius: 99999px;
  padding: 0.25em 0.7em;
}
#child.blog #blogBody #sideBar dl dd ul li a .post-title {
  display: block;
  width: 100%;
  margin-top: 0.25em;
}
#child.blog #blogBody #mainBox {
  width: 100%;
  margin-bottom: 60px;
}
#child.blog #blogBody #mainBox .blog_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 870px;
}
#child.blog #blogBody #mainBox .blog_list a {
  display: block;
  width: 43%;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox .blog_list a {
    width: 100%;
  }
  #child.blog #blogBody #mainBox .blog_list a + a {
    margin-top: 40px;
  }
}
#child.blog #blogBody #mainBox .blog_list a + :nth-child(n+3) {
  margin-top: 100px;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox .blog_list a + :nth-child(n+3) {
    margin-top: 40px;
  }
}
#child.blog #blogBody #mainBox .blog_list a .img {
  aspect-ratio: 7/4;
  width: 100%;
  display: block;
  border: 1px solid #707070;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox .blog_list a .img {
    border-radius: 10px;
  }
}
#child.blog #blogBody #mainBox .blog_list a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#child.blog #blogBody #mainBox .blog_list a dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.8rem;
  margin: 25px auto;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox .blog_list a dl {
    font-size: 1.6rem;
    margin: 10px auto;
  }
}
#child.blog #blogBody #mainBox .blog_list a dl dd {
  width: 50%;
}
#child.blog #blogBody #mainBox .blog_list a dl dd.category {
  text-align: center;
  border-radius: 9999px;
}
#child.blog #blogBody #mainBox .blog_list a h3 {
  font-size: 1.7rem;
  margin-bottom: 0.25em;
}
#child.blog #blogBody #mainBox .blog_list a p {
  word-break: break-all;
  font-size: 1.6rem;
  line-height: 1.675;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox .blog_list a p {
    font-size: 1.6rem;
  }
}
#child.blog #blogBody #mainBox #contArea #topBox p {
  text-align: right;
  margin-top: 20px;
}
#child.blog #blogBody #mainBox #contArea #editor_area .category {
  margin-bottom: 10px;
  margin-top: 65px;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox #contArea #editor_area .category {
    margin-top: 30px;
  }
}
#child.blog #blogBody #mainBox #contArea #editor_area .category span {
  display: inline-block;
  box-sizing: border-box;
  color: #fff;
  border-radius: 9999px;
  line-height: 1;
  white-space: nowrap;
  padding: 0.25em 0.5em;
  box-sizing: border-box;
  font-size: 1.6rem;
}
#child.blog #blogBody #mainBox #contArea #editor_area .blog_ttl {
  font-size: 4rem;
  line-height: 1.25;
  margin: 65px auto 70px;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox #contArea #editor_area .blog_ttl {
    font-size: 2.8rem;
    margin: 1em 0;
  }
}
#child.blog #blogBody #mainBox #contArea #editor_area .subttl {
  border-left: 10px solid #8E8323;
  text-align: left;
  padding-left: 0.5em;
  font-size: 3.4rem;
  margin-top: 70px;
  margin-bottom: 30px;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox #contArea #editor_area .subttl {
    font-size: 2.4rem;
    margin: 1em 0;
  }
}
#child.blog #blogBody #mainBox #contArea #editor_area .smallttl {
  font-size: 3rem;
  font-weight: 400;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox #contArea #editor_area .smallttl {
    font-size: 2rem;
  }
}
#child.blog #blogBody #mainBox #contArea #editor_area p {
  margin: 1em 0;
  font-size: 1.6rem;
}
#child.blog #blogBody #mainBox #contArea #editor_area h1, #child.blog #blogBody #mainBox #contArea #editor_area h2, #child.blog #blogBody #mainBox #contArea #editor_area h3, #child.blog #blogBody #mainBox #contArea #editor_area h4, #child.blog #blogBody #mainBox #contArea #editor_area h5, #child.blog #blogBody #mainBox #contArea #editor_area h6 {
  margin-top: 2.5em;
}
#child.blog #blogBody #mainBox #contArea #editor_area ul {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 30px;
  margin: 30px auto;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox #contArea #editor_area ul {
    padding: 15px;
  }
}
#child.blog #blogBody #mainBox #contArea #editor_area ul li {
  list-style: disc;
  margin-left: 1em;
  font-size: 2.4rem;
  line-height: 1.83;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox #contArea #editor_area ul li {
    font-size: 1.6rem;
  }
}
#child.blog #blogBody #mainBox #contArea .blog_navi {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-bottom: 80px;
  padding: 60px 0;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox #contArea .blog_navi {
    padding: 30px 0;
  }
}
#child.blog #blogBody #mainBox #contArea .blog_navi a {
  display: block;
  font-size: 2.2rem;
  max-width: 330px;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox #contArea .blog_navi a {
    font-size: 1.4rem;
  }
}
#child.blog #blogBody #mainBox #contArea .blog_navi a span {
  display: block;
}
#child.blog #blogBody #mainBox #contArea .blog_navi a p {
  font-size: 2rem;
  line-height: 1.7;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox #contArea .blog_navi a p {
    font-size: 1.3rem;
  }
}
#child.blog #blogBody #mainBox #contArea .blog_navi a img {
  margin: 10px auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 5/2;
}
#child.blog #blogBody #mainBox #contArea .blog_navi a.next span {
  text-align: right;
}
#child.blog #blogBody #mainBox #contArea .blog_navi a.back_list {
  flex-shrink: 0;
  margin: 0 2em;
}
#child.blog #blogBody #mainBox .bnrBox {
  border-top: 1px solid #707070;
  margin-bottom: 80px;
  padding: 60px 0;
}
#child.blog #blogBody #mainBox .bnrBox a {
  max-width: 476px;
  width: 50%;
  margin-left: auto;
  margin-right: 0;
  display: block;
}
@media screen and (max-width: 860px) {
  #child.blog #blogBody #mainBox .bnrBox a {
    width: 100%;
    max-width: none;
  }
}
#child.property #mv .slider {
  position: relative;
  margin: 0;
  padding: 60px 0;
}
@media screen and (max-width: 860px) {
  #child.property #mv .slider {
    padding: 30px 0;
  }
}
#child.property #mv .slider li {
  padding: 0 2vw;
  display: block !important;
}
#child.property #mv .slider li a {
  display: block;
  position: relative;
  max-width: 655px;
  width: 32vw;
}
@media screen and (max-width: 860px) {
  #child.property #mv .slider li a {
    width: 80vw;
  }
}
#child.property #mv .slider li a p {
  position: absolute;
  background: #fff;
  right: 0;
  bottom: 0.5em;
  font-size: clamp(14px, 1.5vw, 24px);
  width: 90%;
  text-align: center;
}
#child.property #mv .slider li a img {
  border-radius: 10px;
}
#child.property #mv .slider .slick-arrow {
  position: absolute;
  top: calc(50% - 15px);
  transform: translateY(-50%);
  width: clamp(30px, 5vw, 78px);
  aspect-ratio: 1/1;
  z-index: 3;
}
@media screen and (max-width: 860px) {
  #child.property #mv .slider .slick-arrow {
    top: 49%;
  }
}
#child.property #mv .slider .slick-arrow.prev-arrow {
  left: 10vw;
}
#child.property #mv .slider .slick-arrow.next-arrow {
  right: 10vw;
  transform: translateY(-50%) rotate(180deg);
}
#child.property #mv .slider .slick-dots {
  position: static;
  justify-content: center;
  display: flex;
  margin-top: 10px;
}
#child.property #mv .slider .slick-dots li {
  padding: 0;
  display: block;
}
@media screen and (max-width: 860px) {
  #child.property #mv .slider .slick-dots li {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 860px) {
  #child.property #mv .slider .slick-dots li button {
    padding: 0;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
#child.property #mv .slider .slick-dots li button::before {
  font-size: 17px;
  content: "●";
  opacity: 1;
  color: #B4B4B4;
}
@media screen and (max-width: 860px) {
  #child.property #mv .slider .slick-dots li button::before {
    font-size: 2vw;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: static;
    line-height: 1;
  }
}
#child.property #mv .slider .slick-dots li.slick-active button:before {
  color: #000;
}
#child.property .property_list .cont {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 50px;
  box-sizing: border-box;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 860px) {
  #child.property .property_list .cont {
    display: block;
    padding: 30px 2.5vw;
  }
}
#child.property .property_list .cont:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#child.property .property_list .cont .thum {
  position: relative;
  width: 45%;
}
#child.property .property_list .cont .thum img {
  border-radius: 10px;
}
@media screen and (max-width: 860px) {
  #child.property .property_list .cont .thum {
    width: 100%;
  }
}
#child.property .property_list .cont .thum .catch {
  position: absolute;
  background: #fff;
  top: 10px;
  right: -20px;
  border: 1px solid #707070;
  box-sizing: border-box;
  border-radius: 10px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  padding: 10px 25px;
}
#child.property .property_list .cont .detail {
  width: 50%;
  padding-top: 1em;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 860px) {
  #child.property .property_list .cont .detail {
    width: 100%;
  }
}
#child.property .property_list .cont .detail .address span {
  display: block;
  font-size: 2.4rem;
  line-height: 1.78;
}
@media screen and (max-width: 860px) {
  #child.property .property_list .cont .detail .address span {
    font-size: 1.6rem;
  }
}
#child.property .property_list .cont .detail .price {
  font-size: 3rem;
  font-weight: 700;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  text-align: right;
  line-height: 1.7;
}
@media screen and (max-width: 860px) {
  #child.property .property_list .cont .detail .price {
    font-size: 2.4rem;
  }
}
#child.property .property_list .cont .detail .txt {
  margin: 10px 0;
}
#child.property .property_list .cont .detail .btn {
  margin-top: auto;
  margin-right: 0;
  color: #fff;
}
@media screen and (max-width: 860px) {
  #child.property .property_list .cont .detail .btn {
    width: 100%;
    max-width: none;
  }
}
#child.property #property_detail .detail_ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 3.6rem;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .detail_ttl {
    font-size: 2.6rem;
    display: block;
  }
}
#child.property #property_detail .detail_ttl .category {
  display: block;
  border: 1px solid #707070;
  font-size: 2.1rem;
  line-height: 1;
  padding: 0.25em 0.5em;
  border-radius: 999px;
  font-weight: 400;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .detail_ttl .category {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
#child.property #property_detail .thum {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  margin-top: 50px;
}
#child.property #property_detail .thum li {
  aspect-ratio: 16/9;
}
#child.property #property_detail .thum img {
  border-radius: 10px;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto;
}
#child.property #property_detail .thum_sub {
  position: relative;
  margin: 40px 0;
}
#child.property #property_detail .thum_sub .thum_subslider li .inner {
  display: block;
  padding: 0 5px;
  box-sizing: border-box;
  width: 140px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .thum_sub .thum_subslider li .inner {
    width: 70px;
  }
}
#child.property #property_detail .thum_sub .thum_subslider li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .thum_sub .thum_subslider li img {
    border-radius: 10px;
  }
}
#child.property #property_detail .thum_sub .thum_subslider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(30px, 5vw, 78px);
  aspect-ratio: 1/1;
  z-index: 3;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .thum_sub .thum_subslider .slick-arrow {
    top: 49%;
  }
}
#child.property #property_detail .thum_sub .thum_subslider .slick-arrow.prev-arrow {
  left: 10vw;
}
#child.property #property_detail .thum_sub .thum_subslider .slick-arrow.next-arrow {
  right: 10vw;
  transform: translateY(-50%) rotate(180deg);
}
#child.property #property_detail #main_spec {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 75px;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #main_spec {
    display: block;
  }
}
#child.property #property_detail #main_spec dl {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #main_spec dl {
    justify-content: center;
  }
}
#child.property #property_detail #main_spec dl + dl {
  margin-left: 1em;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #main_spec dl + dl {
    margin-left: 0;
    margin-top: 10px;
  }
}
#child.property #property_detail #main_spec dl dt {
  font-size: 2.2rem;
  margin-right: 1em;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #main_spec dl dt {
    font-size: 1.6rem;
  }
}
#child.property #property_detail #main_spec dl dd {
  font-size: 2.8rem;
  border: 1px solid #707070;
  border-radius: 999px;
  box-sizing: border-box;
  line-height: 1;
  white-space: nowrap;
  padding: 0.5em 1.5em;
}
@media screen and (max-width: 1090px) {
  #child.property #property_detail #main_spec dl dd {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #main_spec dl dd {
    font-size: 2rem;
  }
}
#child.property #property_detail #youtube_link {
  margin: 75px auto;
}
#child.property #property_detail #youtube_link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFB;
  border: 1px solid #707070;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #youtube_link a {
    display: block;
  }
}
#child.property #property_detail #youtube_link a .logo {
  display: block;
  max-width: 245px;
  margin-left: 5%;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #youtube_link a .logo {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  #child.property #property_detail #youtube_link a .logo img {
    margin: 0 auto;
    max-width: 150px;
  }
}
#child.property #property_detail #youtube_link a p {
  font-size: 2.8rem;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #youtube_link a p {
    font-size: 1.6rem;
    text-align: center;
  }
}
#child.property #property_detail #youtube_link a::after {
  content: "";
  width: 60px;
  aspect-ratio: 1/1;
  background: url(/wp-content/themes/realestate/image/common/arrow_tri.png) no-repeat center/contain;
  margin-right: 2.5%;
  display: block;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #youtube_link a::after {
    width: 30px;
    margin: 10px auto;
  }
}
#child.property #property_detail #txtBox {
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 50px;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #txtBox {
    padding: 20px;
  }
}
#child.property #property_detail #txtBox h3 {
  font-size: 2.4rem;
  margin-top: 1.5em;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #txtBox h3 {
    font-size: 2rem;
  }
}
#child.property #property_detail #txtBox h3:first-child {
  margin-top: 0;
}
#child.property #property_detail #txtBox p {
  font-size: 2.2rem;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #txtBox p {
    font-size: 1.6rem;
  }
}
#child.property #property_detail .specifications {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
#child.property #property_detail .specifications dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid #707070;
  padding: 30px 0;
  width: 100%;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .specifications dl {
    display: block;
    padding: 0;
  }
}
#child.property #property_detail .specifications dl.small {
  width: 50%;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .specifications dl.small {
    width: 100%;
  }
}
#child.property #property_detail .specifications dl:last-child {
  border-bottom: 1px solid #707070;
}
#child.property #property_detail .specifications dl dt {
  font-size: 2.1rem;
  width: 10em;
  text-align: center;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .specifications dl dt {
    background: #F9F8F5;
    width: 100%;
    padding: 0.5em;
    box-sizing: border-box;
    border-bottom: none !important;
    font-size: 1.4rem;
  }
}
#child.property #property_detail .specifications dl dd {
  font-weight: 600;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .specifications dl dd {
    font-size: 1.4rem;
    padding: 0.5em;
    box-sizing: border-box;
  }
}
#child.property #property_detail .specifications dl dd.price {
  font-size: 3.2rem;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .specifications dl dd.price {
    text-align: center;
    font-size: 2.2rem;
  }
}
#child.property #property_detail #madori {
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 50px;
}
#child.property #property_detail #spec_list {
  margin-top: 60px;
}
#child.property #property_detail #spec_list h3 {
  font-size: 2.8rem;
  font-weight: 400;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #spec_list h3 {
    font-size: 2.2rem;
  }
}
#child.property #property_detail #spec_list .flex {
  margin-top: 30px;
  display: flex;
  align-items: stretch;
  border: 1px solid #707070;
  border-radius: 10px;
  flex-wrap: wrap;
}
#child.property #property_detail #spec_list .flex dl {
  width: 12.5%;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  border-right: 1px solid #707070;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#child.property #property_detail #spec_list .flex dl:nth-child(8n) {
  border-right: none;
}
#child.property #property_detail #spec_list .flex dl:nth-child(n+9) {
  border-top: 1px solid #707070;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #spec_list .flex dl {
    width: 25%;
  }
  #child.property #property_detail #spec_list .flex dl:nth-child(4n) {
    border-right: none;
  }
  #child.property #property_detail #spec_list .flex dl:nth-child(n+5) {
    border-top: 1px solid #707070;
  }
}
#child.property #property_detail #spec_list .flex dl dd {
  opacity: 0.4;
}
#child.property #property_detail #spec_list .flex dl dd img {
  display: block;
  max-width: 65px;
  width: 50%;
  margin: 0 auto;
}
#child.property #property_detail #spec_list .flex dl dt {
  opacity: 0.4;
  text-align: center;
  font-size: 1.6rem;
  margin-top: 10px;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail #spec_list .flex dl dt {
    font-size: 1.2rem;
  }
}
#child.property #property_detail #spec_list .flex dl.active dd, #child.property #property_detail #spec_list .flex dl.active dt {
  opacity: 1;
}
#child.property #property_detail .contact_btn {
  border-radius: 9999px;
  color: #fff;
  text-align: center;
  background: #E97B50;
  margin: 0 auto;
  display: block;
  max-width: 380px;
  width: 100%;
  font-size: 2.3rem;
  line-height: 1;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  box-sizing: border-box;
  padding: 0.5em 40px;
}
@media screen and (max-width: 860px) {
  #child.property #property_detail .contact_btn {
    width: 90%;
    font-size: 1.7rem;
    margin-top: 15px;
  }
}
#child.property #property_list {
  background: #F9F8F5;
}
#child.property #property_list .slider {
  margin-bottom: 78px;
}
#child.property #property_list .slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(30px, 5vw, 78px);
  aspect-ratio: 1/1;
  z-index: 3;
}
@media screen and (max-width: 860px) {
  #child.property #property_list .slider .slick-arrow {
    top: 49%;
  }
}
#child.property #property_list .slider .slick-arrow.prev-arrow {
  left: -2%;
}
#child.property #property_list .slider .slick-arrow.next-arrow {
  right: -2%;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 860px) {
  #child.property #property_list .slider {
    display: block;
    margin-bottom: 30px;
  }
}
#child.property #property_list .cont {
  width: 31%;
  display: block;
  padding: 0 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 860px) {
  #child.property #property_list .cont {
    width: 100%;
  }
  #child.property #property_list .cont + .cont {
    margin-top: 30px;
  }
}
#child.property #property_list .cont img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
#child.property #property_list .cont .property-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px auto;
}
@media screen and (max-width: 860px) {
  #child.property #property_list .cont .property-meta {
    margin: 10px auto 5px;
  }
}
#child.property #property_list .cont .property-meta dd {
  font-size: 1.8rem;
}
@media screen and (max-width: 860px) {
  #child.property #property_list .cont .property-meta dd {
    font-size: 1.4rem;
  }
}
#child.property #property_list .cont .property-meta .icn {
  font-size: 1.6rem;
  border: 1px solid #707070;
  border-radius: 16px;
  width: 92px;
  text-align: center;
}
@media screen and (max-width: 860px) {
  #child.property #property_list .cont .property-meta .icn {
    font-size: 1.2rem;
  }
}
#child.property #property_list .cont .property-title {
  border-top: 1px solid #707070;
  padding-top: 12px;
}
@media screen and (max-width: 860px) {
  #child.property #property_list .cont .property-title {
    padding-top: 5px;
  }
}
#child.property #property_list .cont .property-title dt {
  font-size: 2rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #child.property #property_list .cont .property-title dt {
    font-size: 1.6rem;
  }
}
#child.property #property_list .cont .property-title dt::after {
  content: "|";
  margin: 0 0.25em;
}
#child.property #property_list .cont .property-title dd {
  font-size: 1.8rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #child.property #property_list .cont .property-title dd {
    font-size: 1.4rem;
  }
}
#child.property #property_list .cont .property-info dt {
  font-size: 2.4rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #child.property #property_list .cont .property-info dt {
    font-size: 2rem;
  }
}
#child.property #property_list .cont .property-info dt::after {
  content: "/";
}
#child.property #property_list .cont .property-info dd {
  font-size: 1.8rem;
  display: inline;
}
@media screen and (max-width: 860px) {
  #child.property #property_list .cont .property-info dd {
    font-size: 1.4rem;
  }
}
#child.contact .flowBox {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  max-width: 440px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
#child.contact .flowBox::before {
  content: "";
  width: 95%;
  display: block;
  height: 3px;
  background: #808080;
  top: 10.5px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
#child.contact .flowBox span {
  display: block;
  position: relative;
  text-align: center;
  font-weight: bold;
  color: #808080;
  padding-top: 50px;
}
#child.contact .flowBox span::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(/wp-content/themes/realestate/image/contact/flow_icn_off.svg) no-repeat center;
  background-size: cover;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
#child.contact .flowBox span.active {
  color: #000;
}
#child.contact .flowBox span.active::before {
  background: url(/wp-content/themes/realestate/image/contact/flow_icn_act.svg) no-repeat center;
  background-size: cover;
}
#child.contact .center_txt {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.7;
  margin-top: 70px;
  margin-bottom: 80px;
}
@media screen and (max-width: 860px) {
  #child.contact .center_txt {
    font-size: 1.8rem;
  }
}
#child.contact form {
  margin-bottom: 200px;
}
#child.contact form dl .flex {
  justify-content: flex-start;
}
@media screen and (max-width: 860px) {
  #child.contact form dl .flex {
    display: block;
  }
}
#child.contact form dl .flex dl {
  max-width: 435px;
  width: 45%;
}
@media screen and (max-width: 860px) {
  #child.contact form dl .flex dl {
    width: 100%;
    max-width: none;
  }
}
#child.contact form dl .flex dl + dl {
  margin-left: 10%;
}
@media screen and (max-width: 860px) {
  #child.contact form dl .flex dl + dl {
    margin-left: 0;
  }
}
#child.contact form dl dt {
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 860px) {
  #child.contact form dl dt {
    font-size: 1.7rem;
    margin-top: 20px;
  }
}
#child.contact form dl dt.required::after {
  content: "必須";
  font-size: 1.8rem;
  color: #fff;
  background: #BE4D4D;
  border-radius: 5px;
  padding: 0.25em 0.5em;
  line-height: 1;
  margin-left: 1em;
}
@media screen and (max-width: 860px) {
  #child.contact form dl dt.required::after {
    font-size: 1.2rem;
  }
}
#child.contact form dl dd {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 860px) {
  #child.contact form dl dd {
    display: block;
    margin-top: 20px;
  }
}
#child.contact form dl dd label {
  margin-right: 2rem;
  font-size: 2.4rem;
  margin-left: 0.5em;
}
@media screen and (max-width: 860px) {
  #child.contact form dl dd label {
    font-size: 1.6rem;
  }
}
#child.contact form dl dd .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
#child.contact form dl dd .wpcf7-list-item {
  margin: 0;
}
#child.contact form dl dd input[type=text], #child.contact form dl dd input[type=email], #child.contact form dl dd input[type=tel], #child.contact form dl dd textarea {
  border: 1px solid #707070;
  border-radius: 5px;
  width: 100% !important;
  font-size: 2.4rem;
  padding: 0.25em;
  box-sizing: border-box;
  max-width: none;
}
@media screen and (max-width: 860px) {
  #child.contact form dl dd input[type=text], #child.contact form dl dd input[type=email], #child.contact form dl dd input[type=tel], #child.contact form dl dd textarea {
    font-size: 1.6rem;
  }
}
#child.contact form dl dd input[type=text].small, #child.contact form dl dd input[type=email].small, #child.contact form dl dd input[type=tel].small, #child.contact form dl dd textarea.small {
  max-width: 435px;
  width: 100%;
}
@media screen and (max-width: 860px) {
  #child.contact form dl dd input[type=text].small, #child.contact form dl dd input[type=email].small, #child.contact form dl dd input[type=tel].small, #child.contact form dl dd textarea.small {
    max-width: none;
  }
}
#child.contact form dl dd .search {
  font-size: 2rem;
  background: #EBEBEB;
  border-radius: 5px;
  padding: 0.25em 1em;
  margin-left: 1em;
  box-sizing: border-box;
  display: block;
}
@media screen and (max-width: 860px) {
  #child.contact form dl dd .search {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
#child.contact form .privacy_check {
  margin-top: 30px;
  display: block;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  #child.contact form .privacy_check {
    font-size: 1.6rem;
  }
}
#child.contact form .privacy_check .wpcf7-list-item-label {
  display: none;
}
#child.contact form .privacy_check a {
  text-decoration: underline;
}
#child.contact form .buttons {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 780px;
  margin: 50px auto 0;
}
@media screen and (max-width: 860px) {
  #child.contact form .buttons {
    display: block;
  }
}
#child.contact form .buttons button, #child.contact form .buttons input[type=submit], #child.contact form .buttons [type=button] {
  width: 48%;
  color: #fff;
  border-radius: 9999px;
  border: none;
  font-size: 2rem;
  max-width: 340px;
  padding: 0.25em;
  box-sizing: border-box;
  display: block;
}
@media screen and (max-width: 860px) {
  #child.contact form .buttons button, #child.contact form .buttons input[type=submit], #child.contact form .buttons [type=button] {
    font-size: 1.8rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #child.contact form .buttons button + button, #child.contact form .buttons input[type=submit] + button, #child.contact form .buttons [type=button] + button {
    margin-top: 20px;
  }
}
#child.contact form .buttons button[type=reset], #child.contact form .buttons input[type=submit][type=reset], #child.contact form .buttons [type=button][type=reset] {
  background: #EDE7D1;
}
#child.contact form .buttons button[type=submit], #child.contact form .buttons button [type=button], #child.contact form .buttons input[type=submit][type=submit], #child.contact form .buttons input[type=submit] [type=button], #child.contact form .buttons [type=button][type=submit], #child.contact form .buttons [type=button] [type=button] {
  background: #554E11;
}
@media screen and (max-width: 860px) {
  #child.contact form .buttons button[type=submit], #child.contact form .buttons button [type=button], #child.contact form .buttons input[type=submit][type=submit], #child.contact form .buttons input[type=submit] [type=button], #child.contact form .buttons [type=button][type=submit], #child.contact form .buttons [type=button] [type=button] {
    margin-top: 20px;
  }
}
#child.contact form .buttons button[type=button], #child.contact form .buttons input[type=submit][type=button], #child.contact form .buttons [type=button][type=button] {
  color: #000;
}
#child .wpcf7-not-valid-tip {
  font-size: 1.4rem;
}
#child.project #blogBody #mainBox #contArea #editor_area .blog_ttl {
  margin-top: 0;
}
#child.project #blogBody #mainBox #contArea #editor_area .blog_ttl {
  border-bottom: 1px solid #707070;
  padding-bottom: 0.25em;
}
#child.produce #mv {
  background: url(/wp-content/themes/realestate/image/produce/mv.jpg) no-repeat center/cover;
}
#child.produce #mv .flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 370px;
  padding: 0;
}
@media screen and (max-width: 860px) {
  #child.produce #mv .flex {
    height: auto;
    padding: 50px 10px;
  }
}
#child.produce #mv h2 {
  color: #fff;
  display: block;
}
#child.produce #mv h2 .line {
  border-color: #fff;
  font-weight: 400;
}
#child.produce #produce_cont {
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
}
#child.produce #produce_cont article {
  position: relative;
}
#child.produce #produce_cont article .abso {
  position: absolute;
  top: -10%;
  right: 0;
  max-width: 491px;
  width: 30%;
}
@media screen and (max-width: 860px) {
  #child.produce #produce_cont article .abso {
    position: static;
    width: 60%;
    margin: 0 auto 30px;
  }
}
#child.produce #other_link .flex {
  justify-content: flex-start;
}
@media screen and (max-width: 860px) {
  #child.produce #other_link .flex {
    display: block;
  }
}
#child.produce #other_link a {
  max-width: 476px;
  width: 30%;
  position: relative;
  display: block;
}
@media screen and (max-width: 860px) {
  #child.produce #other_link a {
    width: 100%;
  }
}
#child.produce #other_link a + a {
  margin-left: 5%;
}
@media screen and (max-width: 860px) {
  #child.produce #other_link a + a {
    margin: 20px auto 0;
  }
}
#child.produce #other_link a span {
  position: absolute;
  color: #fff;
  text-align: center;
  width: 100%;
  bottom: 15%;
  left: 0;
  font-size: clamp(12px, 2vw, 36px);
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 860px) {
  #child.produce #other_link a span {
    font-size: 6vw;
  }
}
#child.privacy {
  margin-bottom: 70px;
}
#child.privacy #mv .flex {
  justify-content: center;
}
#child.privacy #editor_cont p {
  margin-top: 1em;
}
#child.privacy #editor_cont h3 {
  margin-top: 3rem;
}
#child.special-single #mv {
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 860px) {
  #child.special-single #mv {
    height: 198px;
  }
}
#child.special-single #mv .imgBox {
  display: none;
}
#child.special-single #mv .flex {
  justify-content: center;
}
#child.special-single #editor_area .cont {
  padding: 140px 0;
}
@media screen and (max-width: 860px) {
  #child.special-single #editor_area .cont {
    padding: 60px 0;
  }
}
#child.special-single #editor_area .cont:first-child {
  padding-top: 0;
}
#child.special-single #editor_area .cont:first-child h3 {
  margin-top: 0 !important;
}
#child.special-single #editor_area .cont:nth-child(even) {
  background: #F8F6EC;
}
#child.special-single #editor_area .cont h3 {
  font-size: 4.8rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 860px) {
  #child.special-single #editor_area .cont h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    margin-top: 0 !important;
  }
}
#child.special-single #editor_area .cont .flex.flex-r {
  flex-direction: row-reverse;
}
@media screen and (max-width: 860px) {
  #child.special-single #editor_area .cont .flex {
    display: block;
  }
}
#child.special-single #editor_area .cont .flex .txt {
  width: 55%;
}
@media screen and (max-width: 860px) {
  #child.special-single #editor_area .cont .flex .txt {
    width: 100%;
  }
}
#child.special-single #editor_area .cont .flex .img {
  width: 40%;
}
@media screen and (max-width: 860px) {
  #child.special-single #editor_area .cont .flex .img {
    width: 100%;
    margin-top: 10px;
  }
}
#child.special-single #editor_area .cont p {
  font-size: 2.4rem;
}
@media screen and (max-width: 860px) {
  #child.special-single #editor_area .cont p {
    font-size: 1.6rem;
  }
}
#child.special-single #editor_area .cont img {
  margin: 20px auto;
}
#child.special-single #editor_area .btnBox {
  text-align: center;
  padding-top: 70px;
}
#child.special-single #editor_area .btnBox .btn {
  width: -moz-fit-content;
  width: fit-content;
  max-width: none;
  background: #554D11;
  color: #fff;
}/*# sourceMappingURL=child.css.map */