@charset "UTF-8";
@import url("global.css");
/* ------------------------------
 Index-Page
------------------------------ */
/* ---------- Category-Link ---------- */
#catlink {
  border-top: #c9c9c9 1px solid;
  border-bottom: #c9c9c9 1px solid;
  padding-block: 20px;
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
#catlink .h {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
#catlink .h::before {
  content: "\f02b";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  display: inline-block;
  margin-right: 5px;
  vertical-align: 0;
}
#catlink .taglist {
  padding-block: 10px;
  flex-grow: 1;
}
#catlink .taglist ul {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
#catlink .taglist ul li a {
  display: block;
  background-color: #e9e8e1;
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 15px;
}
#catlink .taglist ul li a::before {
  content: "#";
  padding-right: 2px;
}
@media (any-hover: hover) {
  #catlink .taglist ul li a:hover {
    background-color: #F0EDDF;
  }
}
#catlink .voice {
  padding: 10px 35px;
  flex-shrink: 1;
  border-left: #c9c9c9 1px dotted;
}
#catlink .voice .banner {
  width: 420px;
}
#catlink .voice .banner a {
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 25px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
@media (any-hover: hover) {
  #catlink .voice .banner a:hover::after {
    translate: 10px 0;
  }
  #catlink .voice .banner a:hover .bg::before {
    opacity: .7;
  }
}
#catlink .voice .banner a::after {
  content: "";
  display: block;
  width: 27px;
  height: 16px;
  border-radius: 2px;
  text-align: center;
  align-content: center;
  background: #4A4234 url("../img/arrow.png") no-repeat center center;
  background-size: 13px auto;
  filter: invert(1) brightness(1.5);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#catlink .voice .banner a .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
#catlink .voice .banner a .bg::before {
  content: "";
  background-color: #000;
  opacity: .4;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
#catlink .voice .banner a .text {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
  color: #fff;
}
#catlink .voice .banner a .text .logo {
  width: 80px;
  display: inline-block;
  margin-right: 10px;
  filter: invert(1) brightness(1.5);
  vertical-align: 2px;
}
.ownervoice #catlink .voice .banner a {
  pointer-events: none;
}

/* ---------- Index-List ---------- */
ul.workslist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: min(54px,3.2vw);
}
ul.workslist li {
  display: contents;
}
ul.workslist li a {
  display: grid;
  position: relative;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 3;
  height: 100%;
  line-height: 1.5;
  margin-top: 70px;
}
@media (any-hover: hover) {
  ul.workslist li a:hover .image img {
    filter: brightness(1.5);
  }
  ul.workslist li a:hover .image::before {
    opacity: .8;
  }
  ul.workslist li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
ul.workslist li a .image {
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}
ul.workslist li a .image img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
ul.workslist li a .image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #4A4234;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
ul.workslist li a .image::after {
  content: "この住宅を見る";
  color: #fff;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  z-index: 2;
  opacity: 0;
  translate: 0 10px;
}
ul.workslist li a .image .number {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 15px 2px 8px;
  border-top-right-radius: 5px;
  z-index: 3;
  background-color: #F8F7F4;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  font-size: 87.5%;
  color: #999;
}
ul.workslist li a .image .number::before {
  content: "#";
  padding-right: 2px;
  font-size: 90%;
}
ul.workslist li a .posttitle {
  font-size: min(21px,1.8vw);
  line-height: 1.5;
}
ul.workslist li a .postcat {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  margin-top: 5px;
}
ul.workslist li a .postcat span {
  display: block;
}
ul.workslist li a .postcat span::before {
  content: "#";
  padding-right: 1px;
}
ul.workslist li a:has(.voice) .posttitle {
  padding-right: 60px;
  position: relative;
}
ul.workslist li a:has(.voice) .posttitle .voice {
  position: absolute;
  right: 0;
  top: 0;
  width: 46px;
  height: 46px;
  background: #F0EDDF url("../img/icon_voice.svg") no-repeat center 25%;
  background-size: 20px;
  text-align: center;
  box-sizing: border-box;
  padding-top: 26px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
}
ul.workslist li a:has(.voice) .postcat {
  padding-right: 60px;
}

/* ---------- Category-Title ---------- */
#cattitle {
  display: flex;
  gap: 35px;
  margin-top: 60px;
  align-items: center;
}
#cattitle .cattitle {
  font-size: 16px;
}
#cattitle .cattitle strong {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.8em;
}
#cattitle .cattitle strong::before {
  content: "#";
  padding-right: 4px;
}
#cattitle .reset a {
  border: #c9c9c9 1px solid;
  border-radius: 2px;
  background-color: #fff;
  padding: 4px 13px 4px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
}
#cattitle .reset a::before {
  content: "\f00d";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  display: block;
  line-height: 1;
}
@media (any-hover: hover) {
  #cattitle .reset a:hover {
    background-color: #F0EDDF;
    border-color: #999;
  }
}

/* ------------------------------
 Post-Page
------------------------------ */
#posttopimage {
  height: min(100vh,800px);
  margin-bottom: 20px;
}
#posttopimage figure img {
  animation: titleimage .7s ease-in-out .1s 1;
  animation-fill-mode: both;
}

@keyframes titleimage {
  0% {
    opacity: 0;
    filter: blur(10px) brightness(5);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}
#posttop {
  --gray: #686868;
  margin-bottom: 160px;
}
#posttop .back {
  margin: 0 0 50px 25px;
  width: fit-content;
}
#posttop .back a {
  display: flex;
  align-items: center;
  gap: 12px;
}
#posttop .back a::before {
  content: "";
  width: 30px;
  height: 18px;
  border-radius: 2px;
  text-align: center;
  align-content: center;
  background: #4A4234 url("../img/arrow.png") no-repeat center center;
  background-size: 14px auto;
  scale: -1 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  #posttop .back a:hover::before {
    translate: -5px 0;
    background-color: #999;
  }
}
#posttop .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
#posttop .wrapper .posttitle #posttitle {
  font-size: min(44px,3.5vw);
  margin-bottom: 10px;
  line-height: 1.5;
}
#posttop .wrapper .posttitle #posttitle .number {
  display: block;
  padding-bottom: 5px;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  font-size: 16px;
  color: #c9c9c9;
}
#posttop .wrapper .posttitle #posttitle .number::before {
  content: "#";
  padding-right: .1em;
  font-size: 90%;
}
#posttop .wrapper .posttitle .posttag {
  display: flex;
  gap: 5px 18px;
  flex-wrap: wrap;
}
#posttop .wrapper .posttitle .posttag li a {
  display: block;
  font-size: 85%;
  color: var(--gray);
  background-image: linear-gradient(var(--gray), var(--gray));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9);
}
#posttop .wrapper .posttitle .posttag li a::before {
  content: "#";
  padding-right: 2px;
}
@media (any-hover: hover) {
  #posttop .wrapper .posttitle .posttag li a:hover {
    background-position: bottom left;
    background-size: 100% 1px;
  }
}
#posttop .wrapper .postdata {
  width: 50%;
  flex-shrink: 0;
}
#posttop .wrapper .postdata:has(.text) .data {
  border-top: #999 1px dashed;
  padding-top: 18px;
  margin-top: 30px;
}
#posttop .wrapper .postdata .data {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  column-gap: 30px;
}
#posttop .wrapper .postdata .data dl {
  width: calc(50% - 15px);
  margin-top: 12px;
  display: flex;
  gap: 15px;
  line-height: 1.5;
}
#posttop .wrapper .postdata .data dl dt {
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  width: 80px;
  flex-shrink: 0;
}
#posttop .wrapper .postdata .data dl dt::after {
  content: "：";
}

.postgallery {
  margin-bottom: 140px;
}
.postgallery .image {
  margin-top: 70px;
  text-align: center;
}
.postgallery .image img {
  width: auto;
  max-height: 720px;
}
.postgallery .image:first-of-type {
  margin-top: 0;
}
.postgallery .caption {
  margin-top: 20px;
}

.staffcomment {
  max-width: 840px;
  margin: 0 auto 180px;
}
.staffcomment .title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  line-height: 1;
}
.staffcomment .title::before {
  content: "";
  width: 20px;
  height: 16px;
  display: block;
  background: url("../img/comment.png") no-repeat left center;
  background-size: contain;
}
.staffcomment .title span {
  display: block;
}
.staffcomment .title .en {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 500;
}
.staffcomment .title .ja {
  font-weight: 500;
  padding-top: 2px;
}
.staffcomment .comment {
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  gap: min(40px,5vw);
  align-items: center;
  padding: 45px 50px;
}
.staffcomment .comment .staff {
  width: 140px;
  flex-shrink: 0;
  text-align: center;
}
.staffcomment .comment .staff .photo {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 6px;
}
.staffcomment .comment .staff .photo.nophoto {
  border: #c9c9c9 1px solid;
  background: url("../img/nostaff.jpg") no-repeat center center;
  background-size: contain;
}
.staffcomment .comment .staff .name {
  font-size: 14px;
  font-weight: 500;
}
.staffcomment .comment .text {
  flex-grow: 1;
}

#owner .sectitle {
  margin-bottom: 50px;
  line-height: 1.6;
  text-align: center;
}
#owner .sectitle .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  letter-spacing: .08em;
}
#owner .sectitle .ja {
  display: flex;
  justify-content: center;
  gap: 5px;
}
#owner .sectitle .ja::before {
  content: "［";
}
#owner .sectitle .ja::after {
  content: "］";
}
#owner .mainimage {
  height: min(780px,100vh);
  margin-bottom: 85px;
}
#owner .voicetitle {
  margin-bottom: 80px;
  text-align: center;
}
#owner .voicetitle .title {
  line-height: 1.5;
  font-size: clamp(17px, 3.2vw, 32px);
}
#owner .voicetitle .sub {
  font-size: 14px;
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
}
#owner .voicetitle .sub:has(.family) .name {
  display: flex;
  align-items: center;
  gap: 10px;
}
#owner .voicetitle .sub:has(.family) .name::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #999;
}
#owner .voicetitle .dot {
  position: relative;
  margin-top: 25px;
}
#owner .voicetitle .dot span {
  display: block;
  width: 7px;
  height: 7px;
  background-color: #4A4234;
  margin-inline: auto;
  border-radius: 2px;
  rotate: 45deg;
}
#owner .voicetitle .dot::before, #owner .voicetitle .dot::after {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  background-color: #4A4234;
  rotate: 45deg;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
}
#owner .voicetitle .dot::before {
  left: 50%;
  margin-left: -25px;
}
#owner .voicetitle .dot::after {
  right: 50%;
  margin-right: -25px;
}
#owner .voicebody {
  max-width: 860px;
  margin-inline: auto;
}
#owner .voicebody > *:first-child {
  margin-top: 0;
}
#owner .voicebody h1, #owner .voicebody h2, #owner .voicebody h3, #owner .voicebody h4, #owner .voicebody h5 {
  background-color: #F0EDDF;
  margin-block: 90px 30px;
  padding: 10px 20px;
  font-size: 120%;
  line-height: 1.5;
}
#owner .voicebody p {
  margin-block: 20px;
}
#owner .voicebody p:has(img) {
  margin-block: 35px;
}
#owner .voicebody img {
  display: block;
  margin-inline: auto;
  max-height: 580px;
  width: auto;
}
#owner .voicebody strong {
  font-weight: 500;
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  /* ------------------------------
   Index-Page
  ------------------------------ */
  /* ---------- Category-Link ---------- */
  #catlink .voice {
    padding-inline: 30px 10px;
  }
  #catlink .voice .banner {
    max-width: 32vw;
  }

  /* ------------------------------
   Post-Page
  ------------------------------ */
  #posttop .wrapper .postdata .data dl {
    gap: 10px;
  }
  #posttop .wrapper .postdata .data dl dt {
    width: 75px;
  }

  .postgallery {
    margin-bottom: 120px;
  }
  .postgallery .image img {
    max-height: 700px;
  }

  .staffcomment {
    margin: 0 auto 150px;
  }

  #owner .mainimage {
    height: 50vw;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  /* ------------------------------
   Index-Page
  ------------------------------ */
  /* ---------- Category-Link ---------- */
  #catlink {
    gap: 20px;
    margin-bottom: 15px;
  }
  #catlink .h {
    font-size: 15px;
  }
  #catlink .taglist ul li a {
    font-size: 14px;
  }
  #catlink .voice {
    padding: 10px 0 10px 20px;
  }
  #catlink .voice .banner {
    width: 210px;
    max-width: none;
  }
  #catlink .voice .banner a {
    padding-inline: 20px 18px;
  }
  #catlink .voice .banner a .text {
    font-size: 18px;
  }
  #catlink .voice .banner a .text .logo {
    display: block;
    margin: 0 0 3px 0;
    vertical-align: 0;
  }

  /* ---------- Index-List ---------- */
  ul.workslist {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4vw;
  }
  ul.workslist li a {
    margin-top: 50px;
  }
  ul.workslist li a .posttitle {
    font-size: 18px;
  }
  ul.workslist li a:has(.voice) .posttitle {
    padding-right: 55px;
  }
  ul.workslist li a:has(.voice) .posttitle .voice {
    width: 40px;
    height: 40px;
    background-size: 18px;
    padding-top: 23px;
    font-size: 10px;
  }
  ul.workslist li a:has(.voice) .postcat {
    padding-right: 55px;
  }

  /* ---------- Category-Title ---------- */
  #cattitle {
    gap: 30px;
    margin-top: 50px;
  }

  /* ------------------------------
   Post-Page
  ------------------------------ */
  #posttopimage {
    height: 70vw;
  }

  #posttop {
    margin-bottom: 100px;
  }
  #posttop .wrapper {
    display: block;
  }
  #posttop .wrapper .posttitle {
    margin-bottom: 50px;
  }
  #posttop .wrapper .posttitle #posttitle {
    font-size: min(33px,6.2vw);
  }
  #posttop .wrapper .posttitle #posttitle .number {
    margin-top: -15px;
  }
  #posttop .wrapper .postdata {
    width: auto;
  }

  .postgallery {
    margin-bottom: 90px;
  }
  .postgallery .image {
    margin-top: 50px;
  }
  .postgallery .image img {
    max-height: 75vw;
  }
  .postgallery .caption {
    margin-top: 15px;
  }

  .staffcomment {
    margin: 0 auto 100px;
  }
  .staffcomment .comment {
    padding: 5vw;
  }

  #owner .sectitle {
    margin-bottom: 40px;
  }
  #owner .mainimage {
    margin-bottom: 60px;
  }
  #owner .voicetitle {
    margin-bottom: 60px;
  }
  #owner .voicebody {
    margin-inline: 2vw;
  }
  #owner .voicebody img {
    max-height: 60vw;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /* ------------------------------
   Index-Page
  ------------------------------ */
  /* ---------- Category-Link ---------- */
  #catlink {
    padding: 20px 5px 25px;
    display: block;
    margin-bottom: 50px;
  }
  #catlink .h {
    font-size: 14px;
    margin-bottom: 8px;
  }
  #catlink .h::before {
    margin-right: 5px;
  }
  #catlink .taglist {
    padding-block: 0;
    margin-bottom: 20px;
  }
  #catlink .taglist ul li a {
    font-size: 10px;
  }
  #catlink .taglist ul li a::before {
    padding-right: 1px;
  }
  #catlink .voice {
    padding: 0;
    border-left: none;
  }
  #catlink .voice .banner {
    width: auto;
    max-width: 360px;
  }
  #catlink .voice .banner a {
    padding-inline: 20px 18px;
  }
  #catlink .voice .banner a::after {
    width: 25px;
  }
  #catlink .voice .banner a .text {
    font-size: 19px;
    padding-bottom: 4px;
  }
  #catlink .voice .banner a .text .logo {
    display: inline-block;
    margin-right: 10px;
    vertical-align: 2px;
  }

  /* ---------- Index-List ---------- */
  ul.workslist {
    display: block;
  }
  ul.workslist li {
    display: block;
    margin-bottom: 40px;
  }
  ul.workslist li a {
    display: block;
    margin-top: 0;
  }
  ul.workslist li a .image {
    margin-bottom: 12px;
  }
  ul.workslist li a .posttitle {
    font-size: min(18px,4.5vw);
  }
  ul.workslist li a .postcat {
    gap: 10px;
    font-size: 11px;
    margin-top: 5px;
  }

  /* ---------- Category-Title ---------- */
  #cattitle {
    display: block;
    margin-block: -10px 40px;
  }
  #cattitle .cattitle {
    font-size: 15px;
    margin-bottom: 5px;
  }
  #cattitle .cattitle strong {
    margin-right: 8px;
    font-size: 1.5em;
  }
  #cattitle .cattitle strong::before {
    padding-right: 4px;
  }
  #cattitle .reset a {
    padding: 3px 8px 3px 10px;
    width: fit-content;
    gap: 5px;
    font-size: 11px;
    letter-spacing: 0;
  }

  /* ------------------------------
   Post-Page
  ------------------------------ */
  #posttopimage {
    height: 100vw;
    margin-bottom: 15px;
  }

  #posttop {
    margin-bottom: 70px;
  }
  #posttop .back {
    margin: 0 0 30px 5vw;
  }
  #posttop .back a {
    gap: 10px;
  }
  #posttop .back a::before {
    width: 24px;
    height: 15px;
    background-size: 12px auto;
  }
  #posttop .wrapper .posttitle {
    margin-bottom: 40px;
  }
  #posttop .wrapper .posttitle #posttitle .number {
    font-size: 14px;
  }
  #posttop .wrapper .posttitle .posttag {
    gap: 5px 15px;
  }
  #posttop .wrapper .postdata .text {
    font-size: 13px;
  }
  #posttop .wrapper .postdata:has(.text) .data {
    padding-top: 15px;
    margin-top: 25px;
  }
  #posttop .wrapper .postdata .data {
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    column-gap: 20px;
    padding-inline: 1vw;
  }
  #posttop .wrapper .postdata .data dl {
    width: calc(50% - 10px);
    display: block;
    gap: 10px;
  }
  #posttop .wrapper .postdata .data dl dt {
    color: #999;
    font-weight: 500;
    display: block;
    width: auto;
    margin-bottom: 2px;
  }
  #posttop .wrapper .postdata .data dl dt::after {
    display: none;
  }

  .postgallery {
    margin-bottom: 60px;
  }
  .postgallery .image {
    margin-top: 40px;
  }
  .postgallery .caption {
    margin-top: 12px;
    font-size: 13px;
  }

  .staffcomment {
    margin: 0 auto 80px;
  }
  .staffcomment .title {
    display: block;
    text-align: center;
  }
  .staffcomment .title::before {
    display: inline-block;
    margin-right: 10px;
  }
  .staffcomment .title span {
    display: block;
  }
  .staffcomment .title .en {
    display: inline-block;
  }
  .staffcomment .title .ja {
    padding-top: 10px;
  }
  .staffcomment .comment {
    border-radius: 10px;
    display: block;
    padding: 30px;
  }
  .staffcomment .comment .staff {
    width: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
  }
  .staffcomment .comment .staff .photo {
    margin-bottom: 0;
    width: 90px;
  }
  .staffcomment .comment .text {
    font-size: 13px;
  }

  #owner .sectitle {
    margin-bottom: 35px;
  }
  #owner .sectitle .en {
    font-size: 30px;
  }
  #owner .mainimage {
    height: 60vw;
    margin-bottom: 30px;
  }
  #owner .voicetitle {
    margin-bottom: 40px;
  }
  #owner .voicetitle .sub {
    font-size: 12px;
  }
  #owner .voicetitle .sub:has(.family) .name::after {
    height: 12px;
  }
  #owner .voicetitle .dot {
    margin-top: 20px;
  }
  #owner .voicebody {
    margin-inline: 2vw;
  }
  #owner .voicebody h1, #owner .voicebody h2, #owner .voicebody h3, #owner .voicebody h4, #owner .voicebody h5 {
    margin-block: 50px 25px;
    font-size: 15px;
  }
  #owner .voicebody p {
    font-size: 13px;
  }
  #owner .voicebody p:has(img) {
    margin-block: 30px;
  }
  #owner .voicebody img {
    max-height: 80vw;
  }
}

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