html {
  scroll-behavior: smooth;
}

.pc {
  display: block;
}

@media screen and (max-width: 520px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}

@media screen and (max-width: 520px) {
  .sp {
    display: block;
  }
}
h1, h2, h3, h4, h5, p, a {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #333;
}

h4 {
  margin-bottom: 50px;
  font-size: 52px;
  font-family: "Cormorant", serif;
  font-weight: 600;
  text-align: center;
}

h5 {
  margin-bottom: 100px;
  font-size: 40px;
  font-family: "Cormorant", serif;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 520px) {
  h4 {
    margin-bottom: 40px;
    font-size: 32px;
  }
  h5 {
    margin-bottom: 40px;
  }
}
.header {
  width: 100%;
  height: 80px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  margin-left: 4%;
}
.header__logo img {
  height: 45px;
}
.header__nav {
  display: flex;
}
.header__nav ul {
  display: flex;
  align-items: center;
  column-gap: 60px;
  margin-right: 60px;
}
.header__nav ul li a {
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}
.header__nav ul li a:hover {
  color: #a08156;
}
.header__nav__cv {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 80px;
  background: linear-gradient(to right, #cdbd83, #ba9667);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}
.header__nav__cv:hover {
  opacity: 0.8;
}

@media screen and (max-width: 520px) {
  .header {
    height: 60px;
  }
  .header__logo img {
    height: 35px;
  }
  .header__nav {
    display: none;
  }
}
.fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
}
.fv__img {
  z-index: 9;
  position: relative;
  background-color: #eee;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.fv__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  -webkit-animation: anime 18s 0s infinite;
  animation: anime 18s 0s infinite;
}
.fv__img img:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.fv__img img:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  17% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale(1.1);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  17% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
.fv__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
.fv__txt {
  z-index: 10;
  position: absolute;
  bottom: 40px;
  left: 60px;
}
.fv__txt h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.75;
  color: #000;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 520px) {
  .fv {
    display: none;
    height: calc(100vh - 60px);
  }
  .fv__txt {
    z-index: 10;
    position: absolute;
    bottom: 20px;
    left: 10px;
  }
  .fv__txt h1 {
    font-size: 16px;
  }
}
.fv_sp {
  display: none;
}

@media screen and (max-width: 520px) {
  .fv_sp {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
  }
  .fv_sp__img {
    z-index: 9;
    position: relative;
    background-color: #eee;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
  }
  .fv_sp__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    -webkit-animation: animesp 18s 0s infinite;
    animation: animesp 18s 0s infinite;
  }
  .fv_sp__img img:nth-of-type(2) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
  }
  .fv_sp__img img:nth-of-type(3) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s;
  }
  @keyframes animesp {
    0% {
      opacity: 0;
    }
    17% {
      opacity: 1;
    }
    33% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      z-index: 9;
    }
    100% {
      opacity: 0;
    }
  }
  @-webkit-keyframes animesp {
    0% {
      opacity: 0;
    }
    17% {
      opacity: 1;
    }
    33% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      z-index: 9;
    }
    100% {
      opacity: 0;
    }
  }
  .fv_sp__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 10;
  }
  .fv_sp__txt {
    z-index: 10;
    position: absolute;
    bottom: 10px;
    left: 15px;
  }
  .fv_sp__txt h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.75;
    color: #000;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
}
.concept {
  padding: 150px 0 120px;
  background-color: #eeece6;
  text-align: center;
}
.concept h2 {
  margin-bottom: 60px;
  font-size: 28px;
  color: #a08156;
}
.concept__container {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.concept__container p {
  font-size: 18px;
  line-height: 2;
  color: #000;
}

@media screen and (max-width: 520px) {
  .concept {
    padding: 80px 0 80px;
  }
  .concept h2 {
    margin-bottom: 60px;
    font-size: 20px;
  }
  .concept__container {
    row-gap: 50px;
  }
  .concept__container p {
    font-size: 13px;
    line-height: 2.5;
  }
}
.service {
  padding: 120px 0;
  background-color: #f2f2f2;
}
.service__container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto 120px;
}
.service__container__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service__container__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.service__container__item img {
  width: 50%;
}
.service__container__item__content {
  width: 48%;
  max-width: 520px;
}
.service__container__item__content p {
  text-align: justify;
}
.service__container__item__content p:nth-of-type(1) {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}
.service__container__item__content p:nth-of-type(2) {
  font-size: 14px;
  line-height: 2;
}
.service__feature {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  column-gap: 10px;
}
.service__feature__item {
  width: 100%;
  background-color: #fff;
}
.service__feature__item > p {
  background-color: #b49b79;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
}
.service__feature__item__content {
  padding: 25px 0 30px;
}
.service__feature__item__content p:nth-of-type(1) {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.service__feature__item__content p:nth-of-type(2) {
  width: 92%;
  max-width: 320px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.75;
  text-align: justify;
}
.service__step {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 30px;
}
.service__step__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
  text-align: center;
}
.service__step__item::before, .service__step__item::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
}
.service__step__item::before {
  width: 30px;
  height: 100%;
}
.service__step__item:nth-of-type(1) {
  background-color: #fff;
}
.service__step__item:nth-of-type(1)::before {
  background-color: #f4f0eb;
}
.service__step__item:nth-of-type(1)::after {
  border-top: 100px solid transparent;
  border-bottom: 100px solid transparent;
  border-left: 30px solid #fff;
}
.service__step__item:nth-of-type(2) {
  background-color: #f4f0eb;
}
.service__step__item:nth-of-type(2)::before {
  background-color: #ebe4db;
}
.service__step__item:nth-of-type(2)::after {
  border-top: 100px solid transparent;
  border-bottom: 100px solid transparent;
  border-left: 30px solid #f4f0eb;
}
.service__step__item:nth-of-type(3) {
  background-color: #ebe4db;
}
.service__step__item:nth-of-type(3)::before {
  background-color: #e1d7ca;
}
.service__step__item:nth-of-type(3)::after {
  border-top: 100px solid transparent;
  border-bottom: 100px solid transparent;
  border-left: 30px solid #ebe4db;
}
.service__step__item:nth-of-type(4) {
  background-color: #e1d7ca;
}
.service__step__item:nth-of-type(4)::before {
  background-color: #d7cab7;
}
.service__step__item:nth-of-type(4)::after {
  border-top: 100px solid transparent;
  border-bottom: 100px solid transparent;
  border-left: 30px solid #e1d7ca;
}
.service__step__item:nth-of-type(5) {
  background-color: #d7cab7;
}
.service__step__item p:nth-of-type(1) {
  position: absolute;
  top: -20px;
  left: 10%;
  font-size: 44px;
  font-family: "Crimson Text", serif;
  font-weight: 800;
  color: #b49b79;
}
.service__step__item p:nth-of-type(2) {
  width: 80%;
  margin-bottom: 15px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 800;
  text-align: justify;
}
.service__step__item p:nth-of-type(3) {
  width: 80%;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 600;
  text-align: justify;
}

@media screen and (max-width: 1300px) {
  .service__step {
    column-gap: 20px;
  }
  .service__step__item::before, .service__step__item::after {
    right: -20px;
  }
  .service__step__item::before {
    width: 20px;
  }
  .service__step__item:nth-of-type(1)::after {
    border-left: 20px solid #fff;
  }
  .service__step__item:nth-of-type(2)::after {
    border-left: 20px solid #f4f0eb;
  }
  .service__step__item:nth-of-type(3)::after {
    border-left: 20px solid #ebe4db;
  }
  .service__step__item:nth-of-type(4)::after {
    border-left: 20px solid #e1d7ca;
  }
  .service__step__item p:nth-of-type(2) {
    width: 90%;
    font-size: 14px;
  }
  .service__step__item p:nth-of-type(3) {
    width: 90%;
    font-size: 12px;
  }
}
@media screen and (max-width: 520px) {
  .service {
    padding: 80px 0;
  }
  .service__container {
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
  }
  .service__container__item {
    flex-direction: column;
  }
  .service__container__item:nth-of-type(2n) {
    flex-direction: column;
  }
  .service__container__item img {
    margin-bottom: 20px;
    width: 100%;
  }
  .service__container__item__content {
    width: 100%;
  }
  .service__container__item__content p:nth-of-type(1) {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .service__container__item__content p:nth-of-type(2) {
    font-size: 12px;
  }
  .service__feature {
    margin: 0 auto 80px;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
  .service__feature__item > p {
    padding: 6px 0;
    font-size: 16px;
  }
  .service__feature__item__content {
    padding: 25px 0 20px;
  }
  .service__feature__item__content p:nth-of-type(1) {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .service__feature__item__content p:nth-of-type(2) {
    font-size: 12px;
  }
  .service__step {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
  .service__step__item::before, .service__step__item::after {
    right: 0;
    top: inherit;
    bottom: -30px;
  }
  .service__step__item::before {
    width: 100%;
    height: 30px;
  }
  .service__step__item:nth-of-type(1)::after {
    border-left: 172.5px solid transparent;
    border-right: 172.5px solid transparent;
    border-top: 30px solid #fff;
    border-bottom: inherit;
  }
  .service__step__item:nth-of-type(2)::after {
    border-left: 172.5px solid transparent;
    border-right: 172.5px solid transparent;
    border-top: 30px solid #f4f0eb;
    border-bottom: inherit;
  }
  .service__step__item:nth-of-type(3)::after {
    border-left: 172.5px solid transparent;
    border-right: 172.5px solid transparent;
    border-top: 30px solid #ebe4db;
    border-bottom: inherit;
  }
  .service__step__item:nth-of-type(4)::after {
    border-left: 172.5px solid transparent;
    border-right: 172.5px solid transparent;
    border-top: 30px solid #e1d7ca;
    border-bottom: inherit;
  }
  .service__step__item p:nth-of-type(1) {
    position: relative;
    top: inherit;
    left: inherit;
    width: 80%;
    font-size: 32px;
    text-align: justify;
  }
  .service__step__item p:nth-of-type(2) {
    width: 80%;
    margin-bottom: 15px;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 800;
    text-align: justify;
  }
  .service__step__item p:nth-of-type(3) {
    width: 80%;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;
    text-align: justify;
    padding-bottom: 10px;
  }
}
.price {
  padding: 120px 0;
  background-color: #eeece6;
}
.price__container {
  width: 92%;
  max-width: 750px;
  margin: 0 auto;
}
.price__container ul {
  margin-bottom: 10px;
}
.price__container ul li {
  display: flex;
  align-items: center;
  padding: 25px 0;
  column-gap: 50px;
}
.price__container ul li:nth-of-type(2n+1) {
  background-color: #f2f2f2;
}
.price__container ul li:nth-of-type(2n) {
  background-color: #fff;
}
.price__container ul li > div {
  width: 35%;
  display: flex;
  justify-content: end;
  align-items: end;
  column-gap: 5px;
}
.price__container ul li > div > p:nth-of-type(1) {
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.price__container ul li > div > p:nth-of-type(2) {
  font-size: 16px;
  color: #ff0000;
}
.price__container ul li > p {
  width: 65%;
  font-size: 32px;
  color: #b29975;
  font-weight: 800;
}
.price__container ul li > p span {
  margin-left: 10px;
  font-size: 20px;
}
.price__container__info {
  font-size: 12px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 520px) {
  .price {
    padding: 80px 0;
  }
  .price__container ul li {
    padding: 20px 0;
    column-gap: 15px;
  }
  .price__container ul li > div {
    width: 35%;
    column-gap: 2px;
  }
  .price__container ul li > div > p:nth-of-type(1) {
    font-size: 14px;
  }
  .price__container ul li > div > p:nth-of-type(2) {
    font-size: 12px;
  }
  .price__container ul li > p {
    width: 65%;
    font-size: 20px;
  }
  .price__container ul li > p span {
    margin-left: 10px;
    font-size: 16px;
  }
  .price__container__info {
    font-size: 10px;
  }
}
.contact {
  padding: 120px 0;
}
.contact__container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
}
.contact__container__content {
  width: fit-content;
}
.contact__container__content p {
  font-size: 18px;
  font-weight: 700;
  text-align: justify;
}
.contact__container__content p:nth-of-type(1) {
  margin-bottom: 20px;
}
.contact__container__content p:nth-of-type(2) {
  margin-bottom: 30px;
  line-height: 1.75;
}
.contact__container__content a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  background-color: #b49b79;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
.contact__container__content a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid #fff;
}
.contact__container__content a:hover {
  opacity: 0.8;
}
.contact__container__img {
  width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #ccc;
  border: 1px solid #b49b79;
}
.contact__container__img img {
  width: 100%;
}

@media screen and (max-width: 520px) {
  .contact {
    padding: 80px 0;
  }
  .contact__container {
    flex-direction: column;
  }
  .contact__container__content {
    width: 100%;
  }
  .contact__container__content p {
    font-size: 15px;
  }
  .contact__container__content p:nth-of-type(1) {
    margin-bottom: 20px;
    line-height: 1.75;
  }
  .contact__container__content p:nth-of-type(2) {
    margin-bottom: 30px;
  }
  .contact__container__content a {
    font-size: 15px;
  }
  .contact__container__img {
    display: none;
  }
}
.footer {
  padding: 60px 0;
  background-color: #b49b79;
  text-align: center;
}
.footer img {
  margin-bottom: 40px;
  height: 50px;
}
.footer ul {
  display: flex;
  justify-content: center;
  column-gap: 30px;
}
.footer ul li a {
  font-size: 18px;
  color: #fff;
}

@media screen and (max-width: 520px) {
  .footer {
    padding: 60px 0 80px;
  }
  .footer img {
    margin-bottom: 30px;
    height: 40px;
  }
  .footer ul {
    column-gap: 20px;
  }
  .footer ul li a {
    font-size: 14px;
  }
}