@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 1.0rem;
  font-size: 10px;
  color: #2e2930;
  line-height: 1.7;
  font-family: 'Noto Serif JP', serif;
}

h1 {
  font-size: clamp(4rem, 3.125vw, 6rem);
  font-weight: 500;
}

@media (max-width: 500px) {
  h1 {
    font-size: 2.6rem;
  }
}

h2 {
  font-size: clamp(3.2rem, 2.5vw, 4rem);
  font-weight: 400;
  margin-bottom: 40px;
}

@media (max-width: 500px) {
  h2 {
    font-size: 2.4rem;
  }
}

p {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

main {
  margin-bottom: 200px;
}

.sp__view {
  display: none;
}

@media (max-width: 500px) {
  .sp__view {
    display: block;
  }
}

@media (max-width: 500px) {
  .pc__view {
    display: none;
  }
}

#reno01 {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../img/lp/fv.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
  box-sizing: border-box;
}

@media (max-width: 500px) {
  #reno01 {
    justify-content: space-between;
    padding-top: 60px;
  }
}

#reno01 h2 {
  margin-bottom: 300px;
}

@media (max-width: 500px) {
  #reno01 h2 {
    margin-bottom: auto;
  }
}

#reno01 p {
  text-align: left;
}

@media (max-width: 500px) {
  #reno01 p {
    line-height: 1.8 !important;
  }
}

#reno01::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(22, 22, 14, 0.6) 10%, rgba(22, 22, 14, 0.3) 50%, rgba(22, 22, 14, 0.6) 100%);
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

#reno01 > * {
  position: relative;
  z-index: 2;
}

#reno01 p {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  line-height: 4.8rem;
  font-weight: 100;
}

.bg-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  color: white;
  padding: 8rem 2rem;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #231815;
}

@media (max-width: 768px) {
  .bg-section {
    background-attachment: scroll;
  }
}

.bg-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(35, 24, 21, 0.3) 0%, #231815 100%);
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  transition: background 0.3s ease;
}

.bg-section > * {
  position: relative;
  z-index: 2;
}

.bg-section.left {
  background-position: left center;
  background-size: 60% auto;
  background-repeat: no-repeat;
}

.bg-section.left::before {
  background: linear-gradient(to right, rgba(35, 24, 21, 0.2) 0%, rgba(35, 24, 21, 0.4) 25%, rgba(35, 24, 21, 0.6) 50%, #231815 60%);
}

.bg-section.right {
  background-position: right center;
  background-size: 60% auto;
  background-repeat: no-repeat;
}

.bg-section.right::before {
  background: linear-gradient(to left, rgba(35, 24, 21, 0.2) 0%, rgba(35, 24, 21, 0.4) 25%, rgba(35, 24, 21, 0.6) 50%, #231815 60%);
}

@media (max-width: 500px) {
  .bg-section.left {
    background-position: left bottom;
    background-size: 100% auto;
  }
  .bg-section.right {
    background-position: left bottom;
    background-size: 100% auto;
  }
  .bg-section::before {
    background: linear-gradient(to right, rgba(35, 24, 21, 0.9) 0%, rgba(35, 24, 21, 0.6) 25%, rgba(35, 24, 21, 0.2) 50%, rgba(35, 24, 21, 0.6) 75%, #231815 100%) !important;
  }
}

.reno-inner {
  display: flex;
  flex-direction: column;
  width: 56.354166663%;
  max-width: 1084px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .reno-inner {
    min-width: 1084px;
  }
}

@media (max-width: 1199px) {
  .reno-inner {
    width: 90%;
    max-width: 90%;
  }
}

@media (max-width: 500px) {
  .reno-inner {
    max-width: 100%;
    width: 100%;
  }
}

#reno02 {
  background-image: url("../img/lp/renova02.jpg");
}

#reno02 .reno-inner {
  justify-content: center;
  align-items: flex-end;
}

#reno02 h2 {
  font-size: clamp(3.4rem, 2vw, 3.4rem);
  text-align: left;
  width: 60%;
  max-width: 600px;
}

@media (max-width: 768px) {
  #reno02 h2 {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 500px) {
  #reno02 h2 {
    font-size: 2.4rem;
  }
}

#reno02 p {
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
  width: 60%;
  text-align: left;
  max-width: 600px;
}

@media (max-width: 500px) {
  #reno02 p {
    width: 100%;
  }
}

@media (max-width: 500px) {
  #reno02 {
    padding-bottom: 56.25%;
  }
}

#reno03 {
  background-image: url("../img/lp/renova03.jpg");
}

#reno03 .reno-inner {
  justify-content: center;
  align-items: flex-start;
}

#reno03 h2 {
  text-align: left;
  width: 60%;
  max-width: 680px;
}

@media (max-width: 768px) {
  #reno03 h2 {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

#reno03 p {
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
  width: 56%;
  text-align: left;
  max-width: 592px;
}

@media (max-width: 500px) {
  #reno03 p {
    width: 100%;
  }
}

@media (max-width: 500px) {
  #reno03 {
    padding-bottom: 66.6667%;
  }
}

#reno04 {
  background-image: url("../img/lp/renova04.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 90vh;
}

#reno04 .reno-inner {
  margin-top: 80px;
  justify-content: center;
  align-items: flex-start;
}

#reno04 h2 {
  text-align: left;
  width: 60%;
  max-width: 550px;
  color: #231815;
}

#reno04 p {
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
  width: 56%;
  text-align: left;
  max-width: 550px;
  color: #231815;
}

@media (max-width: 768px) {
  #reno04 {
    height: 60vh;
  }
}

@media (max-width: 500px) {
  #reno04 {
    padding: 0 16px;
    height: 100%;
    background-size: 100% auto;
    background-position: right bottom;
  }
  #reno04 .reno-inner {
    margin: 60px 0;
    padding-bottom: 55.45%;
  }
  #reno04 h2 {
    width: 100%;
  }
  #reno04 p {
    width: 100%;
  }
}

.reno-wrap {
  display: flex;
  margin: 120px 0;
  align-items: flex-start;
  gap: 40px;
  padding-right: 5%;
}

.reno-wrap figure {
  width: 50%;
}

.reno-wrap figure figcaption {
  font-size: 1.6rem;
}

.reno-wrap img {
  width: 100%;
  height: auto;
}

.reno-wrap .reno-contents {
  position: relative;
  width: 50%;
  padding-bottom: 40%;
}

.reno-wrap .reno-contents p {
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
}

.reno-wrap .reno-contents p:last-of-type {
  padding-bottom: 80px;
}

.reno-wrap .reno-contents figure {
  position: absolute;
  width: 116%;
  aspect-ratio: 1920 / 1280;
  right: 0;
}

.reno-wrap .reno-contents figure img {
  width: auto;
  height: auto;
  object-fit: cover;
  top: 0;
}

@media (max-width: 500px) {
  .reno-wrap {
    flex-direction: column;
    padding-right: 0;
    margin: 80px 0 60px;
  }
  .reno-wrap figure {
    width: 100%;
  }
  .reno-wrap .reno-contents {
    width: 100%;
    padding-bottom: 0;
  }
  .reno-wrap .reno-contents h2 {
    width: 90%;
    margin: 0 auto 20px;
  }
  .reno-wrap .reno-contents p {
    width: 90%;
    margin: 0 auto 16px;
  }
  .reno-wrap .reno-contents p:last-of-type {
    padding-bottom: 40px;
  }
  .reno-wrap .reno-contents figure {
    position: static;
    margin-bottom: 20px;
    width: 100%;
  }
}

#reno06 {
  background-image: url("../img/lp/renova06.jpg");
}

#reno06 .reno-inner {
  justify-content: center;
  align-items: flex-end;
}

#reno06 h2 {
  text-align: left;
  width: 60%;
  max-width: 600px;
}

#reno06 p {
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
  width: 56%;
  text-align: left;
  max-width: 600px;
}

@media (max-width: 768px) {
  #reno06 h2 {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  #reno06.bg-section.left {
    min-height: 70vh;
    background-size: auto 70%;
  }
}

@media (max-width: 500px) {
  #reno06.bg-section {
    padding: 4rem 2rem;
  }
  #reno06 .reno-inner {
    height: 60vh;
    justify-content: space-between;
  }
  #reno06 h2 {
    width: 100%;
  }
  #reno06 p {
    width: 100%;
  }
}

#qa {
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#qa .reno-inner {
  margin: 120px auto;
}

#qa .reno-inner h2 {
  text-align: center;
}

#qa ul {
  list-style: none;
  padding: 0;
}

#qa ul li {
  margin-bottom: 40px;
}

#qa ul li h3 {
  position: relative;
  font-size: 2.0rem;
  padding-left: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

#qa ul li h3::before {
  position: absolute;
  content: 'Q';
  width: 30px;
  height: 30px;
  background: #231815;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}

#qa ul li p {
  position: relative;
  font-size: 1.8rem;
  padding-left: 40px;
  display: flex;
  align-items: flex-start;
}

#qa ul li p::before {
  position: absolute;
  content: 'A';
  width: 30px;
  height: 30px;
  background: #EEEEEE;
  color: #231815;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}

@media (max-width: 500px) {
  #qa {
    padding: 60px 0;
  }
  #qa .reno-inner {
    padding: 0 16px;
    margin: 0;
  }
  #qa ul li h3 {
    font-size: 1.8rem;
    align-items: flex-start;
  }
  #qa ul li p {
    font-size: 1.6rem;
  }
}

#reno07 .reno-inner {
  justify-content: center;
  align-items: center;
  margin: 120px auto;
}

@media (max-width: 500px) {
  #reno07 .reno-inner {
    margin: 80px auto;
  }
}

#reno07 h2 {
  text-align: center;
}

#reno07 p {
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
  text-align: left;
  width: fit-content;
  width: 88%;
}

#reno07 .staff {
  margin-top: 80px;
  display: flex;
  gap: 80px;
  width: 100%;
}

#reno07 .staff .staff-info {
  width: 50%;
}

#reno07 .staff .staff-info img {
  width: 100%;
}

#reno07 .staff .staff-info p {
  margin-top: 14px;
}

#reno07 .staff .staff-info span {
  display: block;
  font-size: 1.6rem;
}

@media (max-width: 500px) {
  #reno07 .staff {
    flex-direction: column;
    width: 88%;
    gap: 20px;
    margin-top: 40px;
  }
  #reno07 .staff .staff-info {
    width: 100%;
  }
}

#reno08 {
  background-image: url("../img/lp/renova08.jpg");
}

#reno08 .reno-inner {
  justify-content: center;
  align-items: center;
}

#reno08 h2 {
  text-align: left;
}

#reno08 p {
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
  text-align: left;
}

#reno08.bg-section {
  align-items: flex-start;
  padding-top: 80px;
  padding-top: 60px;
}

#reno08.bg-section::before {
  background: radial-gradient(circle, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0.2) 10%, rgba(35, 24, 21, 0.5) 30%, rgba(35, 24, 21, 0.9) 50%, #231815 60%, #231815 100%);
}

@media (max-width: 768px) {
  #reno08.bg-section::before {
    background: radial-gradient(circle, rgba(35, 24, 21, 0) 0%, rgba(35, 24, 21, 0.2) 10%, rgba(35, 24, 21, 0.5) 30%, rgba(35, 24, 21, 0.9) 60%, #231815 80%, #231815 100%) !important;
  }
}

#contact .reno-inner {
  margin: 120px auto;
}

@media (max-width: 500px) {
  #contact .reno-inner {
    padding: 0 16px;
    margin: 60px auto;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #231815;
  color: #fff;
  padding: 16px;
}

footer p {
  margin: 0;
}

@media (max-width: 500px) {
  footer {
    font-size: 1.4rem;
  }
}

#buttonArea {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #231815;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 1rem 0;
  box-sizing: border-box;
  z-index: 9999;
}

#buttonArea.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  padding: 40px 0;
}

#buttonArea a {
  position: relative;
  background: #231815;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #fff;
  white-space: nowrap;
  transition: background-color 0.3s;
  font-family: YakuHanMP, Arial, 'Noto Sans JP', sans-serif;
  width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.0rem;
}

#buttonArea a:hover {
  background: #3a2c27;
}

#buttonArea a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 1.7rem;
  width: 0.8rem;
  height: 1.6rem;
  background: no-repeat 50% 50% / 100% 100%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMid' viewBox='0 0 9 17' width='9' height='17'%3E%3Cpath d='M.707.707l8 8-8 8h0' fill='none' stroke='%23fff' stroke-linecap='square' stroke-miterlimit='8'/%3E%3C/svg%3E");
  background-size: contain;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 500px) {
  #buttonArea {
    gap: 8px;
  }
  #buttonArea.show {
    padding: 20px 0;
  }
  #buttonArea a {
    font-size: 12px;
    width: 40%;
    padding: 12px 20px;
  }
}

.wpcf7 ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wpcf7 .add-grp {
  margin-bottom: 0;
}

.wpcf7 input.third {
  width: 20%;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 textarea {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px;
  border-radius: 0px;
  background-color: #fff;
  height: auto;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  width: 60%;
}

@media (max-width: 500px) {
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 input[type="number"],
  .wpcf7 input[type="date"],
  .wpcf7 textarea {
    width: 90%;
  }
}

.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7 select {
  width: 30%;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  border-radius: 2px;
  background-color: #fff;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+");
  background-position: 100% center;
  background-repeat: no-repeat;
  border: 1px solid #ccc;
  padding: 8px 1em;
}

@media (max-width: 500px) {
  .wpcf7 select {
    width: 60%;
  }
}

.wpcf7 #submit-button,
.wpcf7 input[type="submit"],
.wpcf7 input[type="button"] {
  width: 20em;
  font-weight: bold;
  font-size: 1.4rem;
  background: #1b1615;
  border: none;
  padding: 20px 0;
  color: #FFF;
  cursor: pointer;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  margin-left: 96px;
}

.wpcf7 #submit-button:hover,
.wpcf7 input[type="submit"]:hover,
.wpcf7 input[type="button"]:hover {
  background-color: #292220;
}

@media (max-width: 500px) {
  .wpcf7 #submit-button,
  .wpcf7 input[type="submit"],
  .wpcf7 input[type="button"] {
    margin: 0 auto;
  }
}

.wpcf7 .mfp_buttons {
  margin: 60px 0;
  text-align: center;
}

.wpcf7 .require::before {
  content: '【必須】';
  font-size: 1.4rem;
  color: #8B221A;
}

@media (max-width: 500px) {
  .wpcf7-spinner {
    display: block;
  }
}

.wpcf7-checkbox {
  margin-top: 8px;
}

.wpcf7-list-item {
  display: block;
  margin: 0;
}

.wpcf7-free-text {
  display: block !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 1.6rem;
}

input.with-calendar-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='gray' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 0a.5.5 0 0 1 .5.5V1h9V.5a.5.5 0 0 1 1 0V1h1a1 1 0 0 1 1 1v1H0V2a1 1 0 0 1 1-1h1V.5a.5.5 0 0 1 .5-.5zM0 5v9a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V5H0zm2 2h2v2H2V7zm3 0h2v2H5V7zm3 0h2v2H8V7zm3 0h2v2h-2V7zM2 10h2v2H2v-2zm3 0h2v2H5v-2zm3 0h2v2H8v-2zm3 0h2v2h-2v-2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px 16px;
  padding-right: 32px;
  cursor: pointer;
}
