@charset "UTF-8";
:root {
  --base-font: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --en-font: "Amiri", serif;
  --c-base: #F5F3F0;
  --c-primary: #7A7166;
  --c-accent: #4A3C2B;
  --c-text: #1B1B1B;
  --c-text-white: #fff;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(ul, ol) {
  padding: 0;
  list-style: "";
}

:where(img) {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

:where(a) {
  text-decoration: none;
  color: inherit;
}

:where(address) {
  font-style: normal;
}

:where(button) {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background: none;
  touch-action: manipulation;
}

:where([type=text], [type=email], [type=tel], select, textarea) {
  appearance: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  width: 100%;
  background-color: var(--c-base);
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  padding: 0;
}

:where(textarea) {
  resize: none;
  field-sizing: content;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(a) {
  transition: opacity 0.3s;
  cursor: pointer;
}

@media (hover: hover) {
  :where(a):hover {
    opacity: 0.7;
  }
}
:focus:not(:focus-visible) {
  outline: none;
}

:where(summary) {
  display: block;
  list-style: none;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
  display: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

html:has(.p-contact) {
  scroll-behavior: revert;
}

body {
  font-family: var(--base-font);
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
}

@media screen and (min-width: 961px) {
  .content-ttl {
    display: flex;
    align-items: center;
    gap: 33px;
  }
}
.content-ttl .content-ttl_sub {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: relative;
  width: fit-content;
}
@media screen and (min-width: 961px) {
  .content-ttl .content-ttl_sub {
    font-size: 14px;
  }
}
.content-ttl .content-ttl_sub::after {
  content: "/";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  position: absolute;
  top: -15%;
  right: -20px;
}
@media screen and (min-width: 961px) {
  .content-ttl .content-ttl_sub::after {
    font-size: 18px;
    top: -10%;
    right: -22px;
  }
}
.content-ttl h3 {
  margin-top: 4px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 961px) {
  .content-ttl h3 {
    font-size: 24px;
  }
}

.works-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 961px) {
  .works-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
  }
}

.works-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px 20px;
  border: 1px solid transparent;
  transition: 0.3s;
}
@media screen and (min-width: 961px) {
  .works-item:hover {
    opacity: 1;
    border: 1px solid var(--c-accent);
  }
  .works-item:hover .works-item_txt span {
    background-color: var(--c-accent);
  }
}
.works-item img {
  border-radius: 4px;
}
.works-item .works-item_txt {
  margin-top: 16px;
}
.works-item .works-item_txt .works-item_name {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 961px) {
  .works-item .works-item_txt .works-item_name {
    font-size: 20px;
  }
}
.works-item .works-item_txt .works-item_tag {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 961px) {
  .works-item .works-item_txt .works-item_tag {
    margin-top: 16px;
  }
}
.works-item .works-item_txt .works-item_tag p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  padding: 4px 12px;
  border: 1px solid #BDB8B1;
  border-radius: 999px;
  width: fit-content;
}
.works-item .works-item_txt span {
  margin-top: 20px;
  width: 100%;
  padding: 8px;
  background-color: var(--c-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
}
@media screen and (min-width: 961px) {
  .works-item .works-item_txt span {
    max-width: 120px;
    padding: 4px 16px;
    margin-top: 24px;
  }
}
.works-item .works-item_txt span img {
  width: 10px;
}

.works-btn {
  display: flex;
  font-size: 16px;
  gap: 8px;
  align-items: center;
  padding: 8px 32px;
  border: 1px solid var(--c-text);
  background-color: #fff;
  width: fit-content;
  border-radius: 4px;
  margin: 32px auto 0;
  transition: 0.3s;
}
@media screen and (min-width: 961px) {
  .works-btn {
    margin: 40px auto 0;
  }
}
.works-btn img {
  width: 10px;
}
.works-btn:hover {
  background-color: var(--c-base);
  opacity: 1;
}

.l-inner {
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-inner {
    padding: 0 5vw;
  }
}
@media screen and (min-width: 961px) {
  .l-inner {
    max-width: 1440px;
    padding: 0 min(5vw, 72px);
  }
}

.l-inner--sm {
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .l-inner--sm {
    padding: 0 10vw;
  }
}
@media screen and (min-width: 961px) {
  .l-inner--sm {
    max-width: 1440px;
    padding: 0 min(10vw, 144px);
  }
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 29px min(4vw, 15px);
  display: flex;
  justify-content: space-between;
  gap: min(4.26vw, 16px);
  align-items: center;
  background-color: #fff;
}
@media screen and (min-width: 961px) {
  .l-header {
    padding: 32px min(5vw, 72px);
  }
}
.l-header-logo {
  width: min(57.93vw, 400px);
}
@media screen and (min-width: 961px) {
  .l-header-logo {
    width: min(31.25vw, 450px);
    max-width: 450px;
  }
}
.l-header-contact {
  background-color: var(--c-accent);
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
}
@media screen and (min-width: 961px) {
  .l-header-contact {
    padding: 8px 30px;
    gap: 8px;
  }
}
.l-header-contact img {
  width: clamp(10px, 3.2vw, 12px);
}
@media screen and (min-width: 961px) {
  .l-header-contact img {
    width: 16px;
  }
}
.l-header-contact p {
  font-weight: 500;
  font-size: clamp(10px, 3.2vw, 12px);
}
@media screen and (min-width: 961px) {
  .l-header-contact p {
    font-size: 16px;
    line-height: 1.5;
  }
}

.l-footer {
  padding-top: 40px;
}
.l-footer .footer-logo {
  max-width: 280px;
}
@media screen and (min-width: 961px) {
  .l-footer .footer-logo {
    max-width: 380px;
  }
}
.l-footer .footer-box {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
  color: #666666;
}
@media screen and (min-width: 769px) {
  .l-footer .footer-box {
    margin-top: 16px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.l-footer .footer-box .footer-left {
  font-size: 14px;
}
@media screen and (min-width: 961px) {
  .l-footer .footer-box .footer-left {
    font-size: 15px;
  }
}
.l-footer .footer-box .footer-right {
  font-size: 12px;
}
@media screen and (min-width: 961px) {
  .l-footer .footer-box .footer-right {
    font-size: 15px;
  }
}
.l-footer .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 20px;
  background-color: #4A4642;
}
@media screen and (min-width: 961px) {
  .l-footer .footer-bottom {
    flex-direction: row;
    padding: 16px min(5vw, 72px);
    justify-content: space-between;
  }
}
.l-footer .footer-bottom a {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
}
.l-footer .footer-bottom small {
  font-weight: 500;
  font-size: 10px;
  line-height: 160%;
  text-align: center;
  display: block;
}

.l-main {
  margin-top: var(--header-height, clamp(85px, 22.66vw, 86px));
}
@media screen and (min-width: 961px) {
  .l-main {
    margin-top: var(--header-height, 104px);
  }
}

#renova-mv .mv-copy {
  padding: 0 12px 0 20px;
}
@media screen and (min-width: 961px) {
  #renova-mv .mv-copy {
    padding: 0 0 0 min(5vw, 72px);
  }
}
#renova-mv .mv-copy h2 {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media screen and (min-width: 961px) {
  #renova-mv .mv-copy h2 {
    flex-direction: row;
  }
}
#renova-mv .mv-copy span {
  font-size: 6.93vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
@media screen and (min-width: 961px) {
  #renova-mv .mv-copy span {
    font-size: min(3.05vw, 44px);
  }
}
#renova-mv .mv-copy img {
  display: inline-block;
}
#renova-mv .mv-copy .mv-copy_saisei {
  width: 29.6vw;
}
@media screen and (min-width: 961px) {
  #renova-mv .mv-copy .mv-copy_saisei {
    width: 163px;
  }
}
#renova-mv .mv-copy .mv-copy_saisekkei {
  width: 44.26vw;
}
@media screen and (min-width: 961px) {
  #renova-mv .mv-copy .mv-copy_saisekkei {
    width: 244px;
  }
}
#renova-mv .mv-copy p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 961px) {
  #renova-mv .mv-copy p {
    font-size: 28px;
  }
}
#renova-mv .mv-img {
  margin-top: 24px;
  display: block;
}

#renova-why {
  padding: 80px 0 64px;
}
@media screen and (min-width: 961px) {
  #renova-why {
    padding: 80px 0;
  }
}
#renova-why .why-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
}
@media screen and (min-width: 961px) {
  #renova-why .why-list {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 32px;
  }
}
#renova-why .why-item {
  border: 1px solid #BDB8B1;
  border-radius: 8px;
  padding: 8px 16px 20px;
  position: relative;
}
@media screen and (min-width: 961px) {
  #renova-why .why-item {
    padding: 8px 20px 20px;
  }
}
#renova-why .why-item img {
  width: 120px;
  margin: 0 auto;
}
#renova-why .why-item_number {
  position: absolute;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  border-top: 4px solid #7A7166;
  padding-top: 8px;
  top: 0;
}
@media screen and (min-width: 961px) {
  #renova-why .why-item_number {
    font-size: 38px;
  }
}
#renova-why .why-item_catch {
  margin: 14px 0 16px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 961px) {
  #renova-why .why-item_catch {
    margin: 16px 0;
    font-size: 20px;
    letter-spacing: 0;
  }
}
#renova-why ._item01 {
  border-top-right-radius: 40px;
}
#renova-why ._item02 {
  border-bottom-left-radius: 40px;
}
#renova-why ._item03 {
  border-bottom-right-radius: 40px;
}

#renova-works {
  padding: 64px 0;
  background-color: var(--c-base);
}
@media screen and (min-width: 961px) {
  #renova-works {
    padding: 80px 0;
  }
}
#renova-works .works-btn {
  padding: 8px 15px 8px 16px;
}
#renova-works .works-btn span {
  width: 154px;
  font-size: 15px;
}
@media screen and (min-width: 961px) {
  #renova-works .works-btn span {
    width: 170px;
    font-size: 16px;
  }
}
@media screen and (min-width: 961px) {
  #renova-works .works-btn {
    padding: 8px 16px;
  }
}
#renova-works .works-btn img {
  width: 6px;
  height: 10px;
}
#renova-works .works-item--hidden {
  display: none;
}
#renova-works .works-item--fade-in {
  animation: worksItemFadeIn 0.4s ease both;
}

@keyframes worksItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#renova-contact {
  background-image: url(../img/common/bg_contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 24px 0;
  background-position: center;
}
@media screen and (min-width: 961px) {
  #renova-contact {
    padding: 64px 0;
  }
}
#renova-contact .contact-bg {
  padding: 32px 16px 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}
@media screen and (min-width: 961px) {
  #renova-contact .contact-bg {
    padding: 40px 0;
  }
}
#renova-contact .contact-ttl {
  text-align: center;
}
#renova-contact .contact-ttl .contact-ttl_sub {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (min-width: 961px) {
  #renova-contact .contact-ttl .contact-ttl_sub {
    font-size: 16px;
  }
}
#renova-contact .contact-ttl span {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 961px) {
  #renova-contact .contact-ttl span {
    font-size: 32px;
  }
}
#renova-contact .contact-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 961px) {
  #renova-contact .contact-box {
    gap: 80px;
    margin-top: 40px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
#renova-contact .contact-box .contact-left {
  margin-top: 32px;
}
@media screen and (min-width: 961px) {
  #renova-contact .contact-box .contact-left {
    margin-top: 0;
    position: relative;
  }
  #renova-contact .contact-box .contact-left::after {
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 108px;
    background-color: var(--c-text);
    top: 0;
    right: -40px;
  }
}
#renova-contact .contact-box .contact-left .contact_attention {
  margin-top: 8px;
}
#renova-contact .contact-box .contact-right {
  padding: 0 11px;
}
@media screen and (min-width: 961px) {
  #renova-contact .contact-box .contact-right {
    padding: 0;
  }
}
#renova-contact .contact-box .contact-tel {
  padding: 0 11px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  #renova-contact .contact-box .contact-tel {
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
#renova-contact .contact-box .contact-tel .contact-tel_tag {
  background-color: #fff;
  text-align: center;
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 4px;
}
@media screen and (min-width: 961px) {
  #renova-contact .contact-box .contact-tel .contact-tel_tag {
    font-size: 15px;
  }
}
#renova-contact .contact-box .contact-tel a {
  margin-top: 4px;
  display: block;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 961px) {
  #renova-contact .contact-box .contact-tel a {
    font-size: 26px;
    pointer-events: none;
  }
}
#renova-contact .contact-box .contact-btn {
  background-color: var(--c-accent);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  padding: 8px;
  width: 100%;
  border-radius: 4px;
  gap: 8px;
}
@media screen and (min-width: 961px) {
  #renova-contact .contact-box .contact-btn {
    padding: 8px 32px;
    font-size: 20px;
  }
}
#renova-contact .contact-box .contact-btn img {
  width: 18px;
}
#renova-contact .contact-txt {
  margin-top: 32px;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 961px) {
  #renova-contact .contact-txt {
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
  }
}
#renova-contact .contact_attention {
  position: relative;
  padding-left: 19px;
}
@media screen and (min-width: 961px) {
  #renova-contact .contact_attention {
    font-size: 15px;
  }
}
#renova-contact .contact_attention::before {
  content: "※";
  position: absolute;
  left: 0;
}

#renova-work-mv {
  background: linear-gradient(180deg, rgba(245, 243, 240, 0) 0%, rgba(245, 243, 240, 0) 18%, #F5F3F0 18.18%, #F5F3F0 100%);
  padding-bottom: 48px;
}
@media screen and (min-width: 961px) {
  #renova-work-mv {
    background: linear-gradient(180deg, rgba(245, 243, 240, 0) 0%, rgba(245, 243, 240, 0) 30%, #F5F3F0 30%, #F5F3F0 100%);
    padding-bottom: 64px;
  }
}
#renova-work-mv .mv-img {
  display: flex;
  justify-content: center;
}
#renova-work-mv .mv-img img {
  width: 89.33vw;
  border-radius: 8px;
}
@media screen and (min-width: 961px) {
  #renova-work-mv .mv-img img {
    width: min(95vw, 1368px);
    border-radius: 16px;
  }
}
#renova-work-mv .mv-ttl {
  margin-top: 32px;
}
#renova-work-mv .mv-ttl .mv-ttl_sub {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 12px;
}
@media screen and (min-width: 961px) {
  #renova-work-mv .mv-ttl .mv-ttl_sub {
    font-size: 16px;
    padding-left: 14px;
  }
}
#renova-work-mv .mv-ttl .mv-ttl_sub::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--c-text);
  border-radius: 50%;
  position: absolute;
  top: 28%;
  left: 0;
}
@media screen and (min-width: 961px) {
  #renova-work-mv .mv-ttl .mv-ttl_sub::before {
    width: 8px;
    height: 8px;
  }
}
#renova-work-mv .mv-ttl h2 {
  margin-top: 4px;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  #renova-work-mv .mv-ttl h2 {
    font-size: 44px;
  }
}
#renova-work-mv .mv-ttl .mv-ttl_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
@media screen and (min-width: 961px) {
  #renova-work-mv .mv-ttl .mv-ttl_tag {
    margin-top: 20px;
  }
}
#renova-work-mv .mv-ttl .mv-ttl_tag p {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 12px;
  background-color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
}

#renova-work-body {
  padding: 48px 0 0;
}
@media screen and (min-width: 961px) {
  #renova-work-body {
    padding: 64px 0 0;
  }
}
#renova-work-body .content-ttl h3 {
  color: #333333;
}
#renova-work-body .work-content {
  padding: 72px 0;
}
@media screen and (min-width: 961px) {
  #renova-work-body .work-content {
    padding: 96px 0;
  }
}
#renova-work-body .work-content:nth-child(1) {
  padding: 0 0 72px;
}
@media screen and (min-width: 961px) {
  #renova-work-body .work-content:nth-child(1) {
    padding: 0 0 96px;
  }
}
#renova-work-body .work-content:nth-child(even) {
  background-color: var(--c-base);
}
#renova-work-body .work-content._overview .l-inner {
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #renova-work-body .work-content._overview .l-inner {
    padding: 0 10vw;
  }
}
@media screen and (min-width: 961px) {
  #renova-work-body .work-content._overview .l-inner {
    max-width: 1440px;
    padding: 0 min(10vw, 144px);
  }
}
#renova-work-body table {
  margin-top: 32px;
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #renova-work-body table {
    margin-top: 24px;
    font-size: 16px;
    width: 100%;
  }
}
#renova-work-body table th {
  text-align: left;
  font-weight: 500;
  border: 1px solid #D9D5D0;
  background-color: var(--c-base);
  padding: 8px 16px;
  white-space: nowrap;
  max-width: 150px;
}
@media screen and (min-width: 769px) {
  #renova-work-body table th {
    max-width: none;
    width: 150px;
    white-space: wrap;
  }
}
#renova-work-body table td {
  border: 1px solid #D9D5D0;
  padding: 8px 16px;
}
#renova-work-body .content-bfaf {
  margin-top: 32px;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-bfaf {
    margin-top: 40px;
  }
}
#renova-work-body .content-bfaf h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  background-image: repeating-linear-gradient(90deg, #7a7166, #7a7166 4px, transparent 4px, transparent 8px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-bfaf h4 {
    font-size: 20px;
  }
}
#renova-work-body .content-bfaf p {
  margin-top: 16px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
}
#renova-work-body .content-bfaf .content-bfaf_list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  #renova-work-body .content-bfaf .content-bfaf_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-bfaf .content-bfaf_list {
    gap: 56px;
  }
}
#renova-work-body .content-bfaf .content-bfaf_item {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-bfaf .content-bfaf_item {
    gap: 20px;
  }
}
#renova-work-body .content-bfaf .content-bfaf_img {
  padding: 8px;
  border-radius: 8px;
}
#renova-work-body .content-bfaf .content-bfaf_img p {
  margin-top: 8px;
  font-family: var(--en-font);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}
#renova-work-body .content-bfaf .content-bfaf_img img {
  border-radius: 4px;
}
#renova-work-body .content-bfaf .content-bfaf_img:nth-child(1) {
  background-color: rgba(255, 255, 255, 0.9490196078);
}
#renova-work-body .content-bfaf .content-bfaf_img:nth-child(1) img {
  width: 120px;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-bfaf .content-bfaf_img:nth-child(1) img {
    width: 15.97vw;
  }
}
#renova-work-body .content-bfaf .content-bfaf_img:nth-child(2) {
  color: var(--c-text-white);
  background-color: var(--c-primary);
}
#renova-work-body .content-bfaf .content-bfaf_img:nth-child(2) img {
  width: 171px;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-bfaf .content-bfaf_img:nth-child(2) img {
    width: 23.47vw;
  }
}
#renova-work-body .content-bfaf + .content-bfaf {
  margin-top: 56px;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-bfaf + .content-bfaf {
    margin-top: 72px;
  }
}
#renova-work-body .content-point {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-point {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
#renova-work-body .content-point_item {
  display: flex;
  gap: 16px;
  padding: 20px 16px;
  border: 1px solid var(--c-primary);
  border-radius: 8px;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-point_item {
    gap: 24px;
    padding: 24px 32px;
  }
}
#renova-work-body .content-point_item span {
  font-family: var(--en-font);
  font-size: 12px;
  line-height: 1.5;
  color: var(--c-primary);
  display: flex;
  flex-direction: column;
  width: fit-content;
  align-items: center;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-point_item span {
    font-size: 14px;
  }
}
#renova-work-body .content-point_item span::after {
  content: "01";
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-point_item span::after {
    font-size: 40px;
  }
}
#renova-work-body .content-point_item:nth-child(2) span::after {
  content: "02";
}
#renova-work-body .content-point_item:nth-child(3) span::after {
  content: "03";
}
#renova-work-body .content-point_item:nth-child(4) span::after {
  content: "04";
}
#renova-work-body .content-point_item:nth-child(5) span::after {
  content: "05";
}
#renova-work-body .content-point_item:nth-child(6) span::after {
  content: "06";
}
#renova-work-body .content-point_item:nth-child(7) span::after {
  content: "07";
}
#renova-work-body .content-point_item:nth-child(8) span::after {
  content: "08";
}
#renova-work-body .content-point_item:nth-child(9) span::after {
  content: "09";
}
#renova-work-body .content-point_item:nth-child(10) span::after {
  content: "10";
}
#renova-work-body .content-point_item .content-point_txt {
  border-left: 1px solid var(--c-primary);
  padding-left: 16px;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-point_item .content-point_txt {
    padding-left: 24px;
  }
}
#renova-work-body .content-point_item h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #E5E1DA;
  padding: 4px 8px;
  border-radius: 4px;
}
@media screen and (min-width: 961px) {
  #renova-work-body .content-point_item h4 {
    font-size: 20px;
    padding: 4px 12px;
    width: fit-content;
  }
}
#renova-work-body .content-point_item p {
  margin-top: 8px;
}

#renova-work-other {
  background-color: var(--c-base);
  padding: 72px 0;
}
@media screen and (min-width: 961px) {
  #renova-work-other {
    padding: 96px 0;
  }
}

@media screen and (min-width: 769px) {
  .u-mobile {
    display: none;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 769px) {
  .u-desktop {
    display: revert;
  }
}

.u-font-en,
.u-font-number {
  font-family: var(--en-font);
}

.u-font-bold {
  font-weight: 700;
}

.u-text-white {
  color: var(--c-text-white);
}