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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
  outline: none;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.u-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none !important;
  }
}

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

.l-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 96rem;
    padding: 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-title__en {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #3d3d3d;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  line-height: 1;
}
.section-title__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 0.7em;
  background-color: #c2a475;
}
.section-title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .section-title {
    margin-bottom: 6rem;
  }
  .section-title__en {
    font-size: 4rem;
  }
  .section-title__ja {
    font-size: 1.2rem;
  }
}

.c-btn {
  display: inline-block;
  background-color: #c2a475;
  color: #fff;
  padding: 0.5rem 4rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  border-radius: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.c-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1px;
  background-color: #fff;
}
.c-btn:hover {
  opacity: 0.8;
  padding-left: 4.5rem;
  padding-right: 3.5rem;
}

.header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background 0.3s ease;
}
.header.is-scrolled {
  background: rgba(61, 61, 61, 0.85);
  backdrop-filter: blur(10px);
  shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header__inner {
  padding: 0.5rem 0 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 120rem;
    margin: 0 auto;
    padding: 2rem 4rem;
  }
}
.header__logo-unit {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.header__logo a {
  display: flex;
  align-items: center;
  line-height: 1;
}
.header__logo a img {
  width: 4.9rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 8.9rem;
  }
}
.header__logo a {
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .header__logo a {
    font-size: 2.4rem;
  }
}
.header__tagline {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-top: -0.2rem;
}
@media screen and (min-width: 768px) {
  .header__tagline {
    font-size: 1.2rem;
  }
}
.header__nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100vh;
  background-color: #eae8e3;
  z-index: 105;
  transition: left 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 4rem 2rem 4rem;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    left: auto;
    transition: none;
  }
  .header__nav.js-nav {
    display: none !important;
  }
}
.header__nav.u-desktop {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .header__nav.u-desktop {
    display: flex !important;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
  }
}
.header__nav {
  /* --- メニュー内のロゴ --- */
}
.header__nav-logo {
  display: flex;
  align-items: center;
}
.header__nav-logo img {
  width: 6rem;
  filter: brightness(0) saturate(100%) invert(34%) sepia(0%) saturate(0%) hue-rotate(249deg) brightness(98%) contrast(90%);
}
.header__nav-logo-text {
  font-size: 1.4rem;
  color: #595959;
  margin-left: 1rem;
}
.header__nav {
  /* --- メニュー下のコンタクトエリア --- */
}
.header__nav-footer {
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(61, 61, 61, 0.2);
  padding-top: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr 1fr auto auto;
  gap: 0.5em;
}
.header__nav-footer .header__nav-tel {
  display: block;
  font-size: 2.4rem;
  font-family: "Cormorant Garamond", serif;
  color: #3d3d3d;
  margin-bottom: 2rem;
  text-decoration: none;
  grid-column: 1/-1;
  grid-row: 1/2;
}
.header__nav-footer .header__nav-time {
  color: #3d3d3d;
  font-size: 1.2rem;
  grid-column: 1/-1;
  grid-row: 2/3;
}
.header__nav-footer .c-btn {
  grid-column: 1/-1;
  grid-row: 3/4;
  display: inline-block;
}
.header__nav-footer .header__nav-sns {
  grid-column: 1/2;
  grid-row: 4/5;
  margin-top: 2rem;
}
.header__nav-footer .header__nav-sns img {
  width: 3rem;
  filter: brightness(0) saturate(100%) invert(34%) sepia(0%) saturate(0%) hue-rotate(249deg) brightness(98%) contrast(90%);
}
.header__nav-footer .header__nav-privacy {
  display: block;
  margin-top: auto;
  font-size: 1rem;
  color: #3d3d3d;
  grid-column: 2/3;
  grid-row: 4/5;
}
.header__nav-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .header__nav-list {
    flex-direction: row;
  }
}
.header__nav-list li a {
  font-family: "Cormorant Garamond", serif;
  color: #3d3d3d;
  font-size: 2.1rem;
}
@media screen and (min-width: 768px) {
  .header__nav-list li a {
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    font-size: 1.6rem;
  }
}
.header__hamburger {
  display: block;
  cursor: pointer;
  width: 6rem;
  height: 100%;
  background-color: #3d3d3d;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  cursor: pointer;
  z-index: 110;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.header__hamburger span:nth-child(1) {
  top: 30%;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  bottom: 30%;
}
.header {
  /* --- JSでクラスが付与された時のスタイル --- */
}
.header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header__nav.is-open {
  left: 0;
}
.header__nav.is-open .header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4rem;
}
.header__nav.is-open .header__nav-list li {
  opacity: 0;
  animation: fadeInUp 0.5s forwards;
}
.header__nav.is-open .header__nav-list li:nth-child(1) {
  animation-delay: 0.5s;
}
.header__nav.is-open .header__nav-list li:nth-child(2) {
  animation-delay: 0.6s;
}
.header__nav.is-open .header__nav-list li:nth-child(3) {
  animation-delay: 0.7s;
}
.header__nav.is-open .header__nav-list li:nth-child(4) {
  animation-delay: 0.8s;
}
.header__nav.is-open .header__nav-list li:nth-child(5) {
  animation-delay: 0.9s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kv {
  position: relative;
  height: 100dvh;
  overflow: hidden;
}
.kv__slider {
  height: 100%;
}
.kv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  max-width: 120rem;
  padding: 0 2rem;
  pointer-events: none;
}
.kv__image-wrap {
  height: 100%;
}
.kv__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  max-width: 120rem;
  padding: 0 2rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .kv__content {
    padding: 0 4rem;
  }
}
.kv__title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.kv__title-en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .kv__title {
    font-size: 4.8rem;
  }
  .kv__title-en {
    font-size: 2.4rem;
  }
}
.kv__text {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 2rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .kv__text {
    font-size: 1.6rem;
  }
}

.about {
  background: url("../images/top-about-bg-sp.webp") center/cover no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.about {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about {
    background: url("../images/top-about-bg-pc.webp") center/cover no-repeat;
  }
}
.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .about__inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 35rem;
    gap: 6rem;
  }
}
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .about__content {
    flex: 1.3;
    z-index: 1;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.about__content .section-title__ja,
.about__content .section-title__en {
  color: #fff;
}
.about__btn {
  text-align: center;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .about__btn {
    margin-top: 4rem;
  }
}
.about__text {
  letter-spacing: 0.1em;
  line-height: 2;
  position: relative;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 1rem;
}
@media screen and (min-width: 768px) {
  .about__text {
    letter-spacing: 0.2em;
    line-height: 2;
  }
}
.about__text::before, .about__text::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.about__text::before {
  top: -1rem;
  left: 0;
  width: 1px;
  height: 7lh;
}
.about__text::after {
  top: 0rem;
  left: -1rem;
  width: 10em;
  height: 1px;
}
.about__image {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__image {
    display: block;
    flex: 0.7;
    padding: 10rem 0;
    position: relative;
    z-index: 2;
  }
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.4rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .about__image::after {
    content: "GRACE GARDEN";
    position: absolute;
    bottom: -5rem;
    right: -3rem;
    font-family: "Aboreto", cursive;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
  }
}

.works {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .works {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.works {
  background: url("../images/top-works-bg-sp.webp") center/cover no-repeat;
  border-bottom: 10rem solid #595959;
}
@media screen and (min-width: 768px) {
  .works {
    background: url("../images/top-works-bg-pc.webp") center/cover no-repeat;
  }
}
.works__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (min-width: 768px) {
  .works__list {
    flex-direction: row;
    gap: 4rem 3rem;
  }
}
.works__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .works__item {
    flex: 1;
  }
}
.works__main-swiper {
  width: 100%;
  aspect-ratio: 331/248;
  overflow: hidden;
}
.works__main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works__thumb-swiper {
  width: 100%;
  margin-top: 0.625rem;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .works__thumb-swiper {
    display: none;
  }
}
.works__thumb-swiper .swiper-slide {
  height: 100%;
  cursor: pointer;
  cursor: pointer;
  transition: all 0.5s ease;
  opacity: 0.4;
  transform: scale(0.9);
}
.works__thumb-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  transform: scale(1);
}
.works__thumb-swiper .swiper-slide:hover {
  opacity: 0.7;
}
.works__thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works__pc-swiper .swiper-slide {
  position: relative;
}
.works__pc-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.works__pc-swiper .works__info {
  margin-top: 1.2rem;
}
.works__pc-swiper .works__info .area {
  font-size: 1.4rem;
  border-radius: 0.2rem;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works__pc-swiper .works__info .area {
    font-size: 1.4rem;
  }
}
.works__pc-swiper .works__info .category {
  font-size: 1.2rem;
  color: #666;
}
@media screen and (min-width: 768px) {
  .works__pc-swiper .works__info .category {
    font-size: 1.6rem;
  }
}
.works__info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}
.works__info .area {
  font-size: 1rem;
  color: #fff;
  background-color: #3d3d3d;
  padding: 0.2rem 1rem;
  display: block;
}
.works__info .category {
  font-size: 1.6rem;
  color: #333;
}
.works__btn {
  color: #fff;
  margin-top: 4rem;
  text-align: center;
}

.service {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .service {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.service {
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service {
    background-image: url("../images/top-service-bg-pc.webp");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 28rem;
  }
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28rem;
  height: 100%;
  background-color: rgba(194, 164, 117, 0.4);
  z-index: 0;
  display: none;
}
@media screen and (min-width: 768px) {
  .service::before {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .service__side-title {
    position: absolute;
    top: 0;
    left: 10rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .service__side-title .line {
    width: 0.5px;
    height: 30rem;
    background-color: #333;
    margin-bottom: 3rem;
  }
  .service__side-title .content {
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .service__side-title .content .section-title__en {
    line-height: 1;
    padding-top: 2rem;
  }
  .service__side-title .content .section-title__en::before {
    left: 0;
    top: 0;
    right: 0.3rem;
    transform: translateY(-50%);
    width: 0.8em;
    height: 0.7rem;
  }
}
@media screen and (min-width: 768px) {
  .service__num {
    text-combine-upright: all;
  }
}
.service__inner {
  max-width: 100rem;
}
@media screen and (min-width: 768px) {
  .service__inner {
    padding: 0 0 0 28rem;
  }
}
.service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
}
@media screen and (min-width: 768px) {
  .service__list {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.service__item {
  width: calc((100% - 1rem) / 2);
}
@media screen and (min-width: 768px) {
  .service__item {
    display: flex;
    width: auto;
  }
}
.service__item:hover {
  transform: translateY(-5px);
}
.service__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .service__img {
    aspect-ratio: auto;
    width: 22.8rem;
  }
}
.service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__title {
  font-size: 1.2rem;
  font-weight: normal;
  color: #333;
  margin-bottom: 0.5rem;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__title {
    font-size: 1.4rem;
    writing-mode: vertical-rl;
    text-align: start;
  }
}
.service__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
}
.service__btn {
  text-align: center;
  margin-top: 4rem;
}

.contact {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.contact {
  position: relative;
  background-color: #f2ede8;
  z-index: 1;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/contact-bg-sp.webp) no-repeat center center/cover;
  opacity: 0.4;
  z-index: -1;
}
.contact__inner {
  position: relative;
  overflow: hidden;
  width: auto;
  margin: 0 2rem;
  padding: 4rem 2rem;
  background-color: #fff;
  box-shadow: none;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    margin: 0 auto;
  }
}
.contact__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* 三角形のサイズ（お好みで調整してください） */
  border-style: solid;
  border-width: 6rem 6rem 0 0;
  border-color: #3d3d3d transparent transparent transparent;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .contact__inner::before {
    border-width: 10rem 10rem 0 0;
  }
}
.contact .section-title {
  margin-bottom: 0;
}
.contact .section-title__en {
  padding-left: 0;
  margin-bottom: 0.5rem;
}
.contact .section-title__en::before {
  content: none;
}
.contact .section-title__ja {
  color: #9e8c7a;
  letter-spacing: 0.15em;
}
.contact__content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}
.contact__text {
  font-size: 1.2rem;
  line-height: 2;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  color: #6b5f52;
  border-top: 1px solid #e0d8cf;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 1.6rem;
    margin-top: 4rem;
    margin-bottom: 6rem;
  }
}
.contact__action {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .contact__action {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6rem;
  }
}
.contact__tel {
  padding: 2rem 0;
  border-radius: 1rem;
  background: #f7f4f0;
}
@media screen and (min-width: 768px) {
  .contact__tel {
    flex: 1;
  }
}
.contact__tel-link {
  text-decoration: none;
  color: #3d3d3d;
  display: block;
}
.contact__tel-label {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #9e8c7a;
  background: none;
  padding: 0;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .contact__tel-label {
    font-size: 1.2rem;
  }
}
.contact__tel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2.8rem;
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.05em;
  color: #3d3d3d;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .contact__tel-number {
    font-size: 4rem;
  }
}
.contact__tel-number::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-color: #595959;
  mask: url(../../images/contact-tel.svg) center/contain no-repeat;
  -webkit-mask: url(../../images/contact-tel.svg) center/contain no-repeat;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.contact__tel-time {
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-top: 0.8rem;
  color: #333;
  letter-spacing: 0.05em;
  color: #9e8c7a;
}
@media screen and (min-width: 768px) {
  .contact__tel-time {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__mail {
    flex: 1;
  }
}
.contact .c-btn--accent {
  border-radius: 4px;
  width: 100%;
  background-color: #d43a3a;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .contact .c-btn--accent {
    position: relative;
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .contact .c-btn--accent::before {
    content: "";
    display: block;
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    mask: url(../../images/contact-mail.svg) center/contain no-repeat;
    -webkit-mask: url(../../images/contact-mail.svg) center/contain no-repeat;
    margin: 0 auto 0.5rem;
    opacity: 1;
  }
}
.contact .c-btn::after {
  background-color: #e2deda;
}
@media screen and (min-width: 768px) {
  .contact .c-btn::after {
    width: 5rem;
  }
}
.contact .c-btn:hover {
  opacity: 0.8;
  padding-left: 4.5rem;
  padding-right: 3.5rem;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 6rem 0 2rem;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.footer__logo-img {
  width: 6rem;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer__logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.footer__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    gap: 4rem;
  }
}
.footer__nav-list a {
  text-decoration: none;
  color: inherit;
  font-size: 1.4rem;
  transition: opacity 0.3s;
}
.footer__nav-list a:hover {
  opacity: 0.7;
}
.footer__nav-sns {
  display: flex;
  align-items: center;
}
.footer__nav-sns img {
  width: 2.4rem;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
  vertical-align: middle;
}
.footer__nav-sns img:hover {
  transform: scale(1.1);
}
.footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer__link {
  margin-bottom: 1rem;
}
.footer__link a {
  font-size: 1rem;
  color: #fff;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.footer__link a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__copy {
  font-size: 1.2rem;
  color: #fff;
  opacity: 0.4;
  letter-spacing: 0.05em;
}

.page-hero {
  position: relative;
  padding: 7rem 0 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #9d947e 0%, #b0aaaa 50%, #cbc3b1 100%);
}
@media screen and (min-width: 768px) {
  .page-hero {
    padding: 14rem 0 3rem;
    background: linear-gradient(135deg, #a59e8e 0%, #b0aaaa 50%, #a59e8e 100%);
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -8rem;
  left: -8rem;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 164, 117, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-hero__deco::before {
  content: "";
  position: absolute;
  top: 0;
  right: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.06) 30%, rgba(255, 255, 255, 0.06) 70%, transparent);
}
.page-hero__deco::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(10% + 2.4rem);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0.03) 70%, transparent);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.page-hero__label {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: #f7f4f0;
  margin-bottom: 0.5rem;
}
.page-hero__label::before, .page-hero__label::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: #fff;
  vertical-align: middle;
  margin: 0 1rem;
  opacity: 0.7;
}
.page-hero__title {
  font-family: "Aboreto", cursive;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero__line {
  width: 20rem;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, #fff, transparent);
}

.works-filter {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.works-filter__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: #888;
  margin-bottom: 1.2rem;
}
.works-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.works-filter__break {
  width: 100%;
  height: 0;
}
.works-filter__item a {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border: 1px solid #ccc;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #555;
  transition: all 0.2s ease;
}
.works-filter__item a:hover {
  border-color: #c2a475;
  color: #c2a475;
}
.works-filter__item.is-active a, .works-filter__item.current-cat a {
  background: #c2a475;
  border-color: #c2a475;
  color: #fff;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 2.4rem;
}
@media screen and (min-width: 768px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 3rem;
  }
}

.works-card__main-img {
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 0.6rem;
}
.works-card__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.works-card__thumbs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.works-card__thumb {
  flex: 1;
  aspect-ratio: 16/9;
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.works-card__thumb.is-active {
  opacity: 1;
  outline: 2px solid #c2a475;
  outline-offset: -2px;
}
.works-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-card__body {
  padding: 0 0.4rem;
}
.works-card__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.works-card__area {
  display: inline-block;
  background: #3d3d3d;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.2rem 0.8rem;
  letter-spacing: 0.1em;
}
.works-card__category {
  font-size: 1.2rem;
  color: #666;
  letter-spacing: 0.1em;
}
.works-card__text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #444;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.works-card__lightbox-trigger {
  display: none;
}

.works-pagination {
  margin-top: 6rem;
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
}
.works-pagination__list {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.works-pagination__item a,
.works-pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  color: #555;
  transition: all 0.2s ease;
}
.works-pagination__item a:hover {
  border-color: #c2a475;
  color: #c2a475;
}
.works-pagination__item.is-active span, .works-pagination__item.current span {
  background: #c2a475;
  border-color: #c2a475;
  color: #fff;
}

.service-detail {
  padding: 0 0 8rem;
  background: #dfddd6;
}
@media screen and (min-width: 768px) {
  .service-detail {
    padding: 2rem 0 12rem;
  }
}
.service-detail__btn {
  text-align: center;
  margin-top: 6rem;
}
.service-detail__btn .c-btn--accent {
  font-family: "Noto Sans JP", sans-serif;
}

.service-detail__intro {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service-detail__intro {
    padding-top: 12rem;
    margin-bottom: 10rem;
  }
}

.service-detail__intro-bg {
  width: 100%;
  height: 28rem;
}
@media screen and (min-width: 768px) {
  .service-detail__intro-bg {
    position: absolute;
    inset: 0;
    height: 100%;
  }
}
.service-detail__intro-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.service-detail__intro-overlay {
  display: none;
}
@media screen and (min-width: 768px) {
  .service-detail__intro-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(30, 26, 20, 0.6);
  }
}

.service-detail__intro-content {
  position: relative;
  z-index: 1;
  padding: 10rem 2rem 2rem;
}
@media screen and (min-width: 768px) {
  .service-detail__intro-content {
    padding: 8rem 4rem;
  }
}

.service-detail__intro-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: #c2a475;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .service-detail__intro-en {
    color: rgba(194, 164, 117, 0.9);
  }
}

.service-detail__intro-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #3d3d3d;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .service-detail__intro-title {
    font-size: 2.4rem;
    color: #fff;
  }
}

.service-detail__intro-line {
  width: 3.2rem;
  height: 1px;
  background: #c2a475;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .service-detail__intro-line {
    background: rgba(194, 164, 117, 0.7);
  }
}

.service-detail__intro-text {
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #444;
}
@media screen and (min-width: 768px) {
  .service-detail__intro-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
  }
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 4rem 2rem;
}
@media screen and (min-width: 768px) {
  .service-list {
    padding: 4rem 2rem;
    gap: 8rem;
  }
}
.service-list__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .service-list__item {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .service-list__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.service-list__img {
  position: relative;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .service-list__img {
    flex: 1;
  }
}
.service-list__img img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-list__num {
  position: absolute;
  top: -1rem;
  left: 0;
  background: #3d3d3d;
  padding: 1rem 1.4rem 2rem 1.4rem;
  z-index: 1;
  line-height: 1;
}
.service-list__num-label {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #c2a475;
  margin-bottom: 0.2rem;
}
@media screen and (min-width: 768px) {
  .service-list__num-label {
    font-size: 1.2rem;
  }
}
.service-list__num-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .service-list__num-value {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .service-list__body {
    flex: 1;
  }
}
.service-list__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-list__title {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 2rem;
  }
}
.service-list__text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #444;
}
@media screen and (min-width: 768px) {
  .service-list__text {
    font-size: 1.5rem;
  }
}

.contact-page {
  padding: 5rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .contact-page {
    padding: 8rem 0 12rem;
  }
}
.contact-page__lead {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .contact-page__lead {
    font-size: 1.5rem;
    margin-bottom: 5rem;
  }
}
.contact-page__cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .contact-page__cards {
    flex-direction: row;
    gap: 3rem;
    margin-bottom: 8rem;
  }
}
.contact-page__card {
  flex: 1;
  background: #f7f4f0;
  display: flex;
  overflow: hidden;
}
.contact-page__card-accent {
  width: 0.6rem;
  background: #c2a475;
  flex-shrink: 0;
}
.contact-page__card-body {
  padding: 2.4rem 2.4rem 2.4rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-page__card-label {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.6rem;
  color: #3d3d3d;
}
.contact-page__card-tel {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.contact-page__card-tel svg {
  color: #c2a475;
  flex-shrink: 0;
}
.contact-page__card-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: #3d3d3d;
  letter-spacing: 0.05em;
  line-height: 1;
}
.contact-page__card-time {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.contact-page__card-web-icon {
  margin-bottom: 1.2rem;
}
.contact-page__card-web-icon svg {
  color: #c2a475;
}
.contact-page__card-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
  letter-spacing: 0.05em;
}

.contact-form__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .contact-form__title {
    font-size: 2rem;
  }
}
.contact-form__body {
  background: #f7f4f0;
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .contact-form__body {
    padding: 5rem 6rem;
  }
}
.contact-form__row {
  margin-bottom: 2.4rem;
}
.contact-form__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  color: #3d3d3d;
}
.contact-form__required {
  font-size: 1rem;
  background: #c2a475;
  color: #fff;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.05em;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 1rem 1.2rem;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #c2a475;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #aaa;
  font-size: 1.3rem;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #aaa;
  font-size: 1.3rem;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 14rem;
}
.contact-form__file {
  font-size: 1.3rem;
  color: #333;
}
.contact-form__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: #333;
  cursor: pointer;
}
.contact-form__checkbox input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #ccc;
  accent-color: #c2a475;
  cursor: pointer;
}
.contact-form__checkbox--privacy {
  margin-top: 1rem;
}
.contact-form__privacy {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #ddd;
}
.contact-form__privacy p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0.8rem;
}
.contact-form__submit {
  text-align: center;
}
.contact-form__submit .c-btn--accent {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
}

.philosophy {
  position: relative;
  overflow: hidden;
  padding-top: 5.4rem;
}
@media screen and (min-width: 768px) {
  .philosophy {
    padding-top: 13.7rem;
  }
}
.philosophy__bg {
  width: 100%;
  height: 28rem;
}
@media screen and (min-width: 768px) {
  .philosophy__bg {
    position: absolute;
    inset: 0;
    height: 100%;
  }
}
.philosophy__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.philosophy__overlay {
  display: none;
}
@media screen and (min-width: 768px) {
  .philosophy__overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(30, 26, 20, 0.6);
  }
}
.philosophy__inner {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
}
@media screen and (min-width: 768px) {
  .philosophy__inner {
    padding: 10rem 0;
  }
}
@media screen and (min-width: 768px) {
  .philosophy__content {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 2rem;
    max-width: 56rem;
  }
}
.philosophy__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: #c2a475;
  margin-bottom: 1.2rem;
}
@media screen and (min-width: 768px) {
  .philosophy__en {
    color: rgba(194, 164, 117, 0.9);
  }
}
.philosophy__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #3d3d3d;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .philosophy__title {
    font-size: 2.8rem;
    color: #fff;
  }
}
.philosophy__line {
  width: 3.2rem;
  height: 1px;
  background: #c2a475;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .philosophy__line {
    background: rgba(194, 164, 117, 0.7);
  }
}
.philosophy__text {
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: #444;
}
@media screen and (min-width: 768px) {
  .philosophy__text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
  }
}

.company {
  padding: 6rem 0;
}
@media screen and (min-width: 768px) {
  .company {
    padding: 10rem 0;
  }
}
.company__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4rem;
}
.company__table tr {
  border-bottom: 1px solid #e0deda;
}
.company__table tr:first-child {
  border-top: 1px solid #e0deda;
}
.company__table th {
  width: 12rem;
  padding: 1.8rem 1.2rem 1.8rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #3d3d3d;
  letter-spacing: 0.08em;
  vertical-align: top;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .company__table th {
    width: 18rem;
    padding: 2.2rem 2rem 2.2rem 0;
    font-size: 1.4rem;
  }
}
.company__table td {
  padding: 1.8rem 0;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
  letter-spacing: 0.05em;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .company__table td {
    padding: 2.2rem 0;
    font-size: 1.5rem;
  }
}
.company__table td a {
  color: #c2a475;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.company__table td a:hover {
  opacity: 0.7;
}

.about-cta {
  background: #f7f4f0;
  padding: 6rem 0;
}
@media screen and (min-width: 768px) {
  .about-cta {
    padding: 8rem 0;
  }
}
.about-cta__inner {
  text-align: center;
}
.about-cta__inner .c-btn--accent {
  font-family: "Noto Sans JP", sans-serif;
}
.about-cta__text {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #3d3d3d;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .about-cta__text {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=style.css.map */