@charset "utf-8";

/* sub-page */
.page p:last-child,
.single p:last-child {
  margin-bottom: 0;
}
.page .row,
.single .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 2em;
}
.page .row.reverse,
.single .row.reverse {
  flex-direction: row-reverse;
}
.page .row .txt,
.page .row .img,
.single .row .txt,
.single .row .img {
  width: calc(50% - 1em);
}
.page ul.row,
.single ul.row {
  padding: 0;
}
.page ul.row li,
.single ul.row li {
  list-style: none;
}
.page .text-left,
.single .text-left {
  text-align: left;
}
.page .text-center,
.single .text-center {
  text-align: center;
}
.page .text-right,
.single .text-right {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .page .row .txt,
  .page .row .img,
  .single .row .txt,
  .single .row .img {
    width: 100%;
  }
}
/* end/sub-page */

/* about */
.about-thoughts_area {
  margin-bottom: 4em;
}
.about-thoughts_area .row {
  align-items: center;
}
.about-thoughts_area .row .txt {
  width: calc(65% - 1em);
}
.about-thoughts_area .row .img {
  width: calc(35% - 1em);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-thoughts_area .row .txt,
  .about-thoughts_area .row .img {
    width: 100%;
  }
}

.about-thoughts_cont h2 {
  padding-top: 0;
  margin-top: 0;
}
.about-ideal_list {
  margin-bottom: 2em;
}
.about-ideal_list:last-child {
  margin-bottom: 0;
}
.about-ideal_list .row {
  align-items: center;
  position: relative;
}
.about-ideal_list .row .txt {
  width: calc(70% - 1em);
  padding: 2em 2em 2em 0;
  position: relative;
  z-index: 0;
}
.about-ideal_list .row .txt::before {
  content: " ";
  width: calc(100% + 2em);
  height: calc(100% + 4em);
  background: url(../img/about_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -2em;
  right: 0;
  z-index: -1;
}
.about-ideal_list .row.reverse .txt::before {
  transform: scale(-1, 1);
  right: unset;
  left: 0;
}
.about-ideal_list .row.reverse .txt {
  padding: 2em 0em 2em 2em;
}
.about-ideal_list .row .txt h4 {
  margin-top: 0;
}
.about-ideal_list .row .img {
  width: calc(30% - 1em);
  padding: 0 0 1em 0;
}
.about-ideal_list .row::after {
  content: "";
  width: 80%;
  height: 100%;
  background: #f5f3ee;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.about-ideal_list .row.reverse::after {
  left: 0;
  right: unset;
}
@media screen and (max-width: 768px) {
  .about-ideal_list .row {
    gap: 1em;
  }
  .about-ideal_list .row .txt {
    width: 100%;
    padding: 1em 1em 1em 0;
    position: relative;
    z-index: 0;
  }
  .about-ideal_list .row .txt {
    width: 100%;
    padding: 0 1em 1em 1em;
    position: relative;
    z-index: 0;
  }
  .about-ideal_list .row .txt::before {
    width: 100%;
    height: calc(100% + 6em + 4px);
    transform: rotate(90deg);
    top: unset;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  .about-ideal_list .row.reverse .txt::before {
    width: 100%;
    height: calc(100% + 6em + 4px);
    transform: rotate(90deg);
    top: unset;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  .about-ideal_list .row.reverse .txt {
    padding: 0 1em 0 1em;
  }
  .about-ideal_list .row .img {
    width: 50vw;
    padding: 0 0 0 0;
    margin: 0 auto;
  }
  .about-ideal_list .row::after {
    content: "";
    width: 100%;
    height: calc(100% - 25vw);
    background: #f5f3ee;
    position: absolute;
    top: unset;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
}

.about-nurturing_area {
  background: #f8f4eb;
  padding: 1em;
  margin-bottom: 2em;
}
.about-nurturing_area:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
}
/* end/about */

/* greeting */
.greeting-lead_area {
  margin-bottom: 2em;
}
.greeting-lead_area .txt {
  display: flex;
  align-items: center;
}
.greeting-lead_area .txt p {
  font-weight: bold;
}
.greeting-lead_area .txt p span {
  display: block;
  font-size: 2em;
}
.greeting-text_area {
  background: url(../img/greeting_bg001.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1.5em;
}
.greeting-text_area .greeting-text_inner {
  background: #ffffffcc;
  padding: 1.5em;
}
.greeting-text_area .greeting-text_inner img {
  display: block;
  max-width: 320px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .greeting-text_area {
    padding: 1em;
  }
  .greeting-text_area .greeting-text_inner {
    padding: 1em;
  }
  .greeting-text_area .greeting-text_inner img {
    max-width: 200px;
  }
}

.greeting-menu_area > .row {
  padding: 0;
  list-style: none;
  gap: 1em;
}
.greeting-menu_area > .row > li {
  width: calc(25% - 1em);
  list-style: none;
  margin: 0;
}
.greeting-menu_area > .row li::marker {
  display: none;
}
.greeting-menu_area .row li .tit {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 1em;
}
.greeting-menu_area .row li h3 {
  font-family: sans-serif;
  font-size: 1.4em;
  font-weight: 500;
  width: 100%;
  text-align: center;
  background: #ffffffcc;
  padding: 0.25em 0;
  margin: 0;
  position: absolute;
}
.greeting-menu_area .row .row {
  gap: 1em;
  padding: 0 0 0 0;
}
.greeting-menu_area .row .row li {
  width: ;
  list-style: none;
  border: 0;
  padding: 0 1em 0 0;
  margin: 0;
}
.greeting-menu_area .row li a {
  padding: 0 0 0 0.5rem;
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: 0.4s;
}
.greeting-menu_area .row li:last-child a {
  border: none;
}
.greeting-menu_area .row li a::after {
  content: url(../img/icon_arrow.svg);
  display: inline-block;
  width: 0.5em;
  position: absolute;
  top: calc(50% - 0.75rem);
  right: -1rem;
}
.greeting-menu_area .row li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .greeting-menu_area > .row {
    gap: 1em;
  }
  .greeting-menu_area > .row > li {
    width: calc(50% - 0.5em);
    list-style: none;
    margin: 0;
  }
}
/* end/greeting */

/* reform */
.page-id-19 .highlight {
  padding: 1.5em 0;
  background: #f8f4eb;
}
.popularity-reform_cont {
  padding: 0 1em;
}
.popularity-reform_cont h2 {
  margin-top: 0;
  padding-top: 0;
}
.popularity-reform_cont .row {
  gap: 1em;
  padding: 0;
}
.popularity-reform_cont .row li {
  width: calc(33.33% - 1em);
  list-style: none;
}
.popularity-reform_area {
  padding-top: 1.5em;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.popularity-reform_area h3 {
  font-size: 1.4em;
}
.popularity-reform_area .number {
  position: absolute;
  top: 0;
}
.popularity-reform_area .price {
  font-size: 1.1em;
  font-weight: bold;
  color: #ff0000;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .popularity-reform_cont .row li {
    width: 100%;
    list-style: none;
  }
}

.reform-list_cont .row {
  padding: 0;
  list-style: none;
}
.reform-list_cont .row li {
  width: calc(50% - 1em);
  background: #f8f4eb;
  padding: 1em 1em 3em 1em;
  list-style: none;
  position: relative;
}
.reform-list_cont .row li h3 {
  margin-top: 0;
}
.reform-list_cont .row li img {
  margin-bottom: 1em;
}
.reform-list_cont .row li .price {
  font-size: 1.1em;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 0.5rem;
}
.reform-list_cont .row li .text-right:last-child {
  position: absolute;
  right: 1em;
  bottom: 1em;
}
.detail-link {
  padding: 0 1rem 0 0;
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: 0.4s;
}
.detail-link:hover {
  opacity: 0.7;
}
.detail-link::after {
  content: url(../img/icon_arrow.svg);
  display: inline-block;
  width: 0.5em;
  position: absolute;
  top: calc(50% - 1.1rem);
  right: 0;
}
@media screen and (max-width: 768px) {
  .reform-list_cont .row li {
    width: 100%;
  }
}
/* end/reform */

/* pet */
.page-pet .kitchen-reform_area .price table tr th {
  font-weight: bold;
}
/* end/pet */

/* kitchen */
.kitchen-lead_area {
  position: relative;
  padding-bottom: 4em;
}
.kitchen-lead_area .img img {
  border-radius: 20px;
}
.kitchen-lead_area .txt {
  position: absolute;
  width: calc(100% - 4em);
  background: #f8f4eb;
  padding: 1em;
  margin: -6em 0 0 4em;
}
.kitchen-worry_area {
  margin-bottom: 1em;
}
.kitchen-worry_area .row {
  padding: 0;
  gap: 1em;
}
.kitchen-worry_area .row li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(33.33% - 0.666em);
  text-align: center;
  background: #f5f3ee;
  padding: 1em;
  list-style: none;
  position: relative;
  z-index: -1;
}
.kitchen-worry_area .row li::after {
  content: "";
  background: #d2d6de;
  width: 100%;
  height: 100%;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: ;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.kitchen-worry_area .row li p {
  font-weight: bold;
  z-index: 1;
}
.kitchen-effect_area {
  padding-top: 2em;
}
.kitchen-effect_area .kitchen-effect_inner {
  background: url(../img/full_merit_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1.5em 4em;
  position: relative;
}
.kitchen-effect_area img {
  display: block;
  max-width: 160px;
  height: 40px;
  margin: 0 auto;
  position: absolute;
  top: -2em;
  left: calc(50% - 80px);
}
.kitchen-effect_area p {
  font-size: 1.2rem;
  background: #ffffffcc;
  text-align: center;
  padding: 1em;
}
.kitchen-effect_area p strong {
  font-weight: normal;
  color: #f57a3a;
}
@media screen and (max-width: 768px) {
  .kitchen-lead_area {
    padding-bottom: 0;
  }
  .kitchen-lead_area .txt {
    width: 100%;
    margin: 0;
    position: static;
  }
  .kitchen-lead_area .img {
    margin-bottom: 1em;
  }
  .kitchen-worry_area .row li {
    width: calc(50% - 0.5em);
    padding: 0.5em;
  }
  .kitchen-effect_area .kitchen-effect_inner {
    padding: 1em 1em;
  }
  .kitchen-effect_area img {
    display: block;
    width: 80px;
    margin: 0 auto;
    position: absolute;
    top: -1em;
    left: calc(50% - 40px);
  }
}

.kitchen-merit_area {
  margin-bottom: 3rem;
}
.kitchen-merit_area:last-child {
  margin-bottom: 0;
}
.kitchen-merit_area h3 {
  margin-bottom: 1em;
}
.kitchen-merit_list {
  background: #f5f3ee;
  padding: 1em;
  margin-bottom: 1.5em;
}
.kitchen-merit_list:last-child {
  margin-bottom: 0;
}
.kitchen-merit_list .row {
  align-items: center;
}
.kitchen-merit_list .row .txt {
  width: calc(65% - 1em);
}
.kitchen-merit_list .row .img {
  width: calc(35% - 1em);
}
.kitchen-merit_list .row .img img {
  display: block;
  margin: 0 auto;
}
.kitchen-merit_list .row h4 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .kitchen-merit_list .row .txt {
    width: 100%;
  }
  .kitchen-merit_list .row .img {
    width: 100%;
  }
}

.kitchen-maker_area .row {
  justify-content: flex-start;
  gap: 1rem;
}
.kitchen-maker_area .row li {
  width: calc(25% - (3rem / 4));
  border: solid 1px #c7c7c7;
  line-height: 1;
  margin: 0;
}
.kitchen-maker_area .row li img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .kitchen-maker_area .row {
    gap: 1em;
  }
  .kitchen-maker_area .row li {
    width: calc(50% - 0.5em);
  }
}

.kitchen-reform_area > img {
  border-radius: 20px;
  margin-bottom: 1.5em;
}
.kitchen-reform_list {
  border: solid 2px #333333;
  margin-bottom: 1em;
}
.kitchen-reform_list:last-child {
  margin-bottom: 3em;
}
.kitchen-reform_list h4 {
  font-weight: normal;
  line-height: 1;
  color: #fff;
  background: #333333;
  padding: 0.5em 0.75em;
  margin: 0;
}
.kitchen-reform_list p {
  padding: 1em;
}

.kitchen-reform-price_list {
  background: #f5f3ee;
  padding: 2em;
  position: relative;
  margin-top: 2em;
  margin-bottom: 3em;
}
.kitchen-reform-price_list::before {
  content: "";
  width: 4em;
  height: 2em;
  border-top: solid #7f7e7c 1px;
  border-left: solid #7f7e7c 1px;
  position: absolute;
  top: 1em;
  left: 1em;
}
.kitchen-reform-price_list::after {
  content: "";
  width: 4em;
  height: 2em;
  border-bottom: solid #7f7e7c 1px;
  border-right: solid #7f7e7c 1px;
  position: absolute;
  bottom: 1em;
  right: 1em;
}
.kitchen-reform-price_list .content {
  text-align: center;
}
.kitchen-reform-price_list .content .txt {
  font-size: 1.2em;
  color: #fff;
  background: #333333;
  padding: 0.5em 2em;
  border-radius: 1.5em;
}
.kitchen-reform-price_list .content .plus {
  padding: 0 0.5em;
}
.kitchen-reform-price_list .price {
  font-size: 3.2em;
  font-weight: 900;
  line-height: 1.75;
  color: #806e5b;
  text-align: center;
}
.kitchen-reform-price_list .price span {
  font-size: 0.5em;
}
.kitchen-reform-contact_list {
  background: url(../img/contact_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 3em 0;
  position: relative;
}
.kitchen-reform-contact_list h4 {
  font-size: 1.4em;
  text-align: center;
  background: none;
  padding: 0;
}
.kitchen-reform-contact_list .row {
  gap: 1em;
}
.kitchen-reform-contact_list .row li {
  width: calc(33.33% - 1em);
}
@media screen and (max-width: 768px) {
  .kitchen-reform-price_list .content .txt {
    font-size: 1em;
    padding: 0.5em 1em;
  }
  .kitchen-reform-price_list .content .plus {
    padding: 0 0.5em;
  }
  .kitchen-reform-price_list {
    padding: 2.5em 2.5em 1.5em;
  }
  .kitchen-reform-price_list .price {
    font-size: 2.4em;
    font-weight: 900;
    color: #806e5b;
    text-align: center;
  }
}

.kitchen-case_cont .kitchen-case_area:nth-child(3) {
  margin-bottom: 2em;
}
.kitchen-case_area .row {
  gap: 1rem;
  margin-bottom: 1em;
  justify-content: center;
}
.kitchen-case_area .row li {
  width: calc(50% - 0.5em);
}
.kitchen-case_list {
  margin-bottom: 1.5em;
}
.main_contents .kitchen-case_list table {
  max-width: 768px;
  margin: 0 auto;
}
.main_contents .kitchen-case_list table th,
.main_contents .kitchen-case_list table td {
  border: 2px solid #c69c6d;
  padding: 1rem;
}
.main_contents .kitchen-case_list table th {
  width: 180px;
}
.main_contents .kitchen-case_list table tr:nth-child(2) td {
  width: calc(50% - 180px - 2px);
  text-align: center;
}
.main_contents .kitchen-case_list table tr:first-child th:first-child {
  border-bottom: 2px solid #fff;
}
.kitchen-voice_list {
  background: url(../img/voice_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1em;
}
.kitchen-voice_list .kitchen-voice_inner {
  background: #fff;
  padding: 2rem;
}
.kitchen-voice_list .kitchen-voice_inner h4 {
  background: url(../img/line_tit04.svg) no-repeat left 1.85em top 0.35em / 17px
    auto;
  padding-bottom: 0.5em;
  padding: 0 3em 0.5em;
  border-bottom: dashed 1px;
  margin-top: 0;
}
.kitchen-voice_list .kitchen-voice_inner p {
  margin: 0 2em;
}
.kitchen-voice_list .kitchen-voice_inner p strong {
  color: #f57a3a;
}
@media screen and (max-width: 768px) {
  .main_contents .kitchen-case_list table th {
    width: 72px;
    padding: 0.25em;
  }
  .main_contents .kitchen-case_list table td {
    padding: 1em 0.25em;
  }
  .kitchen-voice_list .kitchen-voice_inner h4 {
    background: url(../img/line_tit04.svg) no-repeat left top 0.35em / 17px auto;
    padding: 0 1em 0.5em 1.5em;
    margin-top: 0;
  }
  .kitchen-voice_list .kitchen-voice_inner p {
    margin: 0;
  }
  .kitchen-case_cont .text-right {
    text-align: center;
  }
  .kitchen-voice_list .kitchen-voice_inner {
    background: #fff;
    padding: 1.5rem;
  }
}

.kitchen-flow_area {
  background: #f5f2eb;
  padding: 1em;
  margin-bottom: 2em;
  position: relative;
}
.kitchen-flow_area:nth-child(2) .row {
  margin-bottom: 1em;
}
.kitchen-flow_area::after {
  content: "";
  width: 2em;
  height: 1em;
  background: url(../img/flow_arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -1.5em;
  left: calc(50% - 0.5em);
}
.kitchen-flow_area:last-child:after {
  display: none;
}
.kitchen-flow_area:last-child {
  margin-bottom: 0;
}
.kitchen-flow_area .row .txt {
  width: calc(65% - 1em);
}
.kitchen-flow_area .row .img {
  width: calc(35% - 1em);
}
.kitchen-flow_area .row .img img {
  display: block;
  margin: 0 auto;
}
.kitchen-flow_area h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: unset;
  gap: 1em;
  padding-block: 1em;
  border-bottom: dashed 1px;
  margin-top: 0;
  margin-bottom: 1em;
}
.kitchen-flow_area h3 img {
  width: 87.53px;
}
.kitchen-flow_area h3 .tit {
  font-family: sans-serif;
  width: calc(100% - 87.53px - 1em);
}
.kitchen-flow_area h3 .step {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25em;
}
.kitchen-flow_area h3 .step .number {
  font-size: 2rem;
}
.kitchen-flow_area .cta_warp {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .kitchen-flow_area .row .txt {
    width: 100%;
  }
  .kitchen-flow_area h3 {
    margin-top: 0;
  }
  .kitchen-flow_area .row .img {
    width: 100%;
  }
}
/* end/kitchen */

/* exterior */
.page-exterior .kitchen-effect_area .kitchen-effect_inner {
  background: url(../img/exterior_merit_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.exterior-cost_inner {
  background: #f8f4eb;
  padding: 0 1em;
}
.exterior-cost_area {
  padding: 2em 0 2em 0;
  border-bottom: dashed 2px #dcc9b4;
}
.exterior-cost_area:first-child {
  padding-top: 1em;
}
.exterior-cost_area:last-child {
  border-bottom: none;
  padding-bottom: 1em;
}
.exterior-cost_area .row {
  align-items: center;
}
.exterior-cost_area .row .img {
  width: calc(45% - 1em);
}
.exterior-cost_area .row .txt {
  width: calc(55% - 1em);
}
.exterior-cost_area .row .txt h3 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .exterior-cost_area .row .img {
    width: 100%;
  }
  .exterior-cost_area .row .txt {
    width: 100%;
  }
}
/* end/exterior */

/* full */
.full-cost_cont p {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}
.full-cost_cont ul {
  max-width: 768px;
  margin: 0 auto;
}
.full-cost_cont ul li {
  width: calc(25% - 2em);
}
@media screen and (max-width: 768px) {
  .full-cost_cont ul.row {
    gap: 1em;
  }
  .full-cost_cont ul li {
    width: calc(50% - 0.5em);
  }
}
/* end/full */

/* floor */
.page-floor .kitchen-effect_area .kitchen-effect_inner {
  background: url(../img/floor_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.floor-cost_cont p:first-child {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}
.floor-cost_cont table tbody tr th {
  vertical-align: middle;
}
.floor-cost_cont table tbody tr th:first-child {
  width: 75%;
}
.floor-cost_cont table tbody tr th:last-child {
  width: 25%;
}
.floor-cost_cont table tbody tr td {
  vertical-align: middle;
}
.floor-cost_cont table tbody tr td:first-child {
  font-weight: bold;
}
.floor-cost_cont table tbody tr td:last-child {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .floor-cost_cont table tbody tr th:first-child {
    width: calc(100% - 100px);
  }
  .floor-cost_cont table tbody tr th:last-child {
    width: 100px;
  }
}
/* end/floor */

/* end/wallpaper */
.page-wallpaper .kitchen-effect_area .kitchen-effect_inner {
  background: url(../img/wallpaper_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* end/wallpaper */

/* paint-waterproof */
.page-paint-waterproof .kitchen-effect_area .kitchen-effect_inner {
  background: url(../img/paint-waterproof_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.wallpaper-cost_area .row {
  align-items: center;
}
.wallpaper-cost_area .row .img {
  width: calc(40% - 1em);
}
.wallpaper-cost_area .row .txt {
  width: calc(60% - 1em);
}
.wallpaper-cost_area table tbody tr th {
  width: 40%;
  font-weight: bold;
  vertical-align: middle;
}
.wallpaper-cost_area table tbody tr td {
  width: 60%;
  text-align: right;
  vertical-align: middle;
}
.wallpaper-cost_list strong {
  color: #c69c6d;
}
@media screen and (max-width: 768px) {
  .wallpaper-cost_area .row .img {
    width: 100%;
  }
  .wallpaper-cost_area .row .txt {
    width: 100%;
  }
}
/* end/paint-waterproof */

/* furniture */
.page-furniture .kitchen-effect_area .kitchen-effect_inner {
  background: url(../img/furniture_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1.5em 4em;
  position: relative;
}
.furniture-cando_area {
  margin-bottom: 2em;
}
.furniture-cando_area h3 {
  background: unset;
  padding: 0;
}
.furniture-cando_area h3 span {
  display: inline-block;
  line-height: 1;
  color: #fff;
  background: #f57a3a;
  padding: 0.3em 0.6em;
  border-radius: 1em;
  margin-right: 0.25em;
}
.furniture-cando-order_area ul.row {
  margin-bottom: 2em;
}
.furniture-cando-order_area ul.row li {
  width: calc(33.33% - 2em);
}
.furniture-cost_cont p {
  background: #f5f2eb;
  padding: 1em;
  border: dashed 2px #c69c6d;
}
.furniture-cost_cont p strong {
  color: #f57a3a;
}
.page-furniture .kitchen-case_area .row {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .furniture-cando-order_area ul.row li {
    width: 100%;
  }
  .page-furniture .kitchen-case_area .row li {
    width: 100%;
  }
}
/* end/furniture */

/* case */
.case-lead_area {
  margin-bottom: 2em;
}
.case-lead_area table thead tr th {
  width: 13.33%;
}
.case-lead_area table thead tr td {
  width: 20%;
  text-align: center;
  vertical-align: middle;
}
.case-lead_area table tbody tr td {
  width: 100%;
  background: #ede8e333;
}
.case-before-after_area ul li {
  width: calc(50% - 1em);
  position: relative;
}
.case-before-after_area ul li:first-child::after {
  content: "";
  width: 1em;
  aspect-ratio: 1 / cos(15deg);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: linear-gradient(45deg, #c69c6d, #d9b58a);
  position: absolute;
  top: calc(50% - 0.5em);
  right: -1.5em;
}
.case-before-after_area ul li img {
  line-height: 1;
}
.case-before-after_area ul li span {
  display: block;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #595959;
  padding: 0.25em;
  margin-top: -5px;
}
.case-before-after_area {
  padding: 1em 1em 1em 1em;
  background: #f5f2eb;
}
.case-images_area a {
  transition: 0.3s;
}
.case-images_area a:hover {
  opacity: 0.7;
}
.case-before-after_area ul li:last-child span {
  background: #af9c11;
}
.case-images_area {
  padding: 0 1em 1em 1em;
  background: #f5f2eb;
}
.case-images_area .row {
  justify-content: flex-start;
  gap: 1em;
}
.case-images_area ul li {
  width: calc(25% - 0.75em);
  margin: 0;
}
.case-images_area ul li img {
  margin: 0;
}
.case-connection_area a {
  transition: 0.3s;
}
.case-connection_area a:hover {
  opacity: 0.7;
}
.case-connection_area .row {
  justify-content: flex-start;
  gap: 1em;
}
.case-connection_area ul li {
  width: calc(33.33% - 0.67em);
}
.case-connection_area ul li a {
  text-decoration: none;
}
.case-connection_area ul li img {
  border-radius: 0.5em;
  border: solid 2px #f5f2eb;
}
.case-connection_area ul li p {
  color: #222;
}
@media screen and (max-width: 768px) {
  .case-lead_area table tr {
    display: flex;
    flex-wrap: wrap;
  }
  .case-lead_area table thead tr th {
    width: 100%;
    border-bottom: unset;
  }
  .case-lead_area table thead tr td {
    width: 100%;
    text-align: center;
    vertical-align: middle;
    border-bottom: unset;
  }
  .case-before-after_area ul li {
    width: 100%;
  }
  .case-before-after_area ul li:first-child::after {
    top: unset;
    bottom: -1.75em;
    right: calc(50% - 0.5em);
    transform: rotate(90deg);
  }
  .case-images_area .row {
    gap: 0.5em;
  }
  .case-images_area ul li {
    width: calc(50% - 0.5em);
  }
  .case-connection_area ul li {
    width: 100%;
  }
}
/* end/case */

/* news */
.news_area h1 {
  text-align: center;
  color: #c69c6d;
}
.news_inner {
  margin-bottom: 2em;
}
.news_area .btn-area {
  text-align: center;
}
main .news_area ul li::marker {
  color: #c69c6d;
}
main .news_area ol li::marker {
  color: #c69c6d;
}
@media screen and (max-width: 768px) {
}
/* end/news */
