@charset "UTF-8";
:root {
  --bg: #f8f7f2;
  --bg2: #f1efe8;
  --ink: #1f1f1d;
  --muted: #77736b;
  --line: #c5bfb2;
  --card: #fffefa;
  --dark: #20201e;
  --photo: #ddd8cc;
  --photo2: #d1c7b9;
  --max: 1180px;
  --pad: clamp(24px, 5vw, 60px);
  --section: clamp(96px, 12vw, 180px);
  --tracking: 0.18em;
}

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

html {
  scroll-behavior: smooth;
}

body {
  color: #1f1f1d;
  background: #f8f7f2;
  font-family: "Helvetica Neue", "Noto Sans JP", "Yu Gothic", YuGothic, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.95;
  letter-spacing: 0.04em;
  animation: fadeIn 1.4s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.modal-open {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  overflow: hidden;
}

.container {
  width: min(1180px, 100% - var(--pad) * 2);
  margin-inline: auto;
}

.center-block {
  max-width: 820px;
  margin: auto;
  text-align: left;
}
.center-block .kicker {
  justify-content: flex-start;
}

.section {
  padding: var(--section) 0;
  border-bottom: 1px solid rgba(197, 191, 178, 0.55);
}
@media (max-width: 900px) {
  .section {
    padding: 80px 0 !important;
  }
}

.section.no-border {
  border-bottom: 0;
}

.fade-in {
  opacity: 0;
  filter: blur(10px);
  transition: all 1s ease;
}
.fade-in.show {
  opacity: 1;
  filter: blur(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.h1,
.h2,
.page-title {
  font-weight: 300;
  line-height: 1.45;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.h1 {
  font-size: clamp(42px, 7vw, 64px);
}

.h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  margin: 46px 0 28px;
}
@media (max-width: 900px) {
  .h2 {
    margin: 24px 0;
  }
}

.lead {
  color: #77736b;
  font-size: clamp(15px, 1.5vw, 18px);
}
@media (max-width: 900px) {
  .lead {
    font-size: 14px;
  }
}

.text {
  color: #77736b;
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 900px) {
  .text {
    font-size: 14px;
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: clamp(48px, 8vw, 80px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #77736b;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
}
.kicker::before {
  content: attr(data-num);
  min-width: 28px;
  letter-spacing: 0.1em;
}
.kicker::after {
  content: "";
  width: 72px;
  height: 1px;
  background: #c5bfb2;
  order: 1;
}
.kicker span {
  order: 2;
}

.photo {
  position: relative;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  overflow: hidden;
  transition: all 0.5s ease;
}
@media (max-width: 900px) {
  .btn {
    padding: 0 16px;
  }
}
.btn span {
  z-index: 2;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.btn-01 {
  position: relative;
  background: #77736b;
  color: #fffefa;
  border: 1px solid transparent;
}
.nav-cta::before,
.btn-01::before {
  background: #f8f7f2;
}
.nav-cta:hover,
.btn-01:hover {
  color: #77736b;
  border: 1px solid #77736b;
}

.light,
.btn-02,
.btn-03 {
  background: transparent;
  color: #77736b;
  border: 1px solid #77736b;
}
.light::before,
.btn-02::before,
.btn-03::before {
  background: #77736b;
}
.light:hover,
.btn-02:hover,
.btn-03:hover {
  color: #f1efe8;
}

.btn-row {
  position: relative;
  overflow: hidden;
  display: inline-block;
  gap: 14px;
  margin-top: 34px;
  z-index: 1;
  cursor: pointer;
}

.page-hero {
  padding: clamp(90px, 12vw, 170px) var(--pad) clamp(70px, 9vw, 120px);
  border-bottom: 1px solid #c5bfb2;
}
@media (max-width: 900px) {
  .page-hero {
    padding: clamp(70px, 12vw, 170px) var(--pad) clamp(70px, 9vw, 120px);
    border-bottom: 1px solid #c5bfb2;
  }
}
.page-hero .container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
}
@media (max-width: 900px) {
  .page-hero .container {
    width: 100%;
    gap: 40px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-hero .container {
    grid-template-columns: 1fr;
  }
}
.page-hero .page-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}
.page-hero .lead {
  font-size: 16px;
  font-weight: 400;
}

.section-index {
  color: #77736b;
  letter-spacing: 0.2em;
  font-size: 12px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .section-index {
    color: #77736b;
    letter-spacing: 0.2em;
    font-size: 12px;
    text-transform: uppercase;
  }
}

.br-pc {
  display: block;
}
@media screen and (max-width: 1025px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #c7c6be;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #c5bfb2;
}
.header .header-inner {
  max-width: 2000px;
  margin: auto;
  min-height: 86px;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .header .header-inner {
    min-height: 72px;
    padding: 0 6vw;
  }
}

.logo {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .logo {
    width: 200px;
  }
}
.logo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 900px) {
  .global-nav {
    display: none;
  }
}
.global-nav ul {
  display: flex;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.16em;
}
.global-nav ul .nav-item {
  margin-right: 2vw;
  position: relative;
  color: #77736b;
  padding: 0 20px 5px 5px;
}
.global-nav ul .nav-item::before, .global-nav ul .nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
}
.global-nav ul .nav-item::before {
  left: 0;
  width: 100%;
  background-color: #fff;
}
.global-nav ul .nav-item::after {
  width: 15px;
  background-color: #77736b;
  right: 0;
  left: auto;
}
.global-nav ul .nav-item:hover::after {
  animation: moveBar 0.8s ease-out forwards;
}
.global-nav ul li {
  position: relative;
}
.global-nav ul li .nav-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s;
}
.global-nav ul li .nav-sns-link:hover {
  opacity: 0.7;
}
.global-nav ul .nav-sns:first-of-type {
  margin-left: 1vw;
}
.global-nav ul .nav-sns {
  margin-right: 10px;
}
.global-nav ul .nav-cta {
  margin-left: 1vw;
}

@keyframes moveBar {
  0% {
    width: 15px;
    right: 0;
    left: auto;
  }
  10% {
    width: 0;
    right: 0;
    left: auto;
  }
  11% {
    width: 0;
    right: auto;
    left: 0;
  }
  50% {
    width: 100%;
    right: 0;
    left: 0;
  }
  100% {
    width: 100%;
    right: 0;
    left: auto;
  }
}
.drawer {
  display: none;
}
@media screen and (max-width: 900px) {
  .drawer {
    display: block;
  }
}
.drawer .drawer-menu {
  position: relative;
  color: #fff;
  z-index: 3000;
  letter-spacing: 0.16em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .drawer .drawer-menu {
    font-size: 15px;
  }
}
.drawer .drawer-menu.is-active {
  color: #1f1f1d;
}
.drawer .drawer-nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #f8f7f2;
  padding: 7vw;
  line-height: 2;
  opacity: 0;
  overflow-y: auto;
  visibility: hidden;
  transition: all 0.3s;
}
.drawer .drawer-nav.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2999;
}
.drawer .drawer-nav ul {
  margin-top: 50px;
}
.drawer .drawer-nav ul li {
  margin-top: 24px;
}
.drawer .drawer-nav ul li:last-of-type {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #c5bfb2;
}
.drawer .drawer-nav ul li a {
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  .drawer .drawer-nav ul li a {
    font-size: 15px;
  }
}
.drawer .drawer-nav ul li .btn {
  width: 100%;
  padding: 24px;
}
.drawer .drawer-nav .sns {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer .drawer-nav .sns p {
  position: relative;
  color: #1f1f1d;
  margin-right: 15px;
  font-size: 15px;
  letter-spacing: 0.16em;
}
.drawer .drawer-nav .sns p::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #c5bfb2;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}
.drawer .drawer-nav .sns a {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
}
.fixed-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease 0s;
  grid-template-columns: 1fr 1fr;
  display: none;
}
@media (max-width: 900px) {
  .fixed-menu {
    display: grid;
  }
}
.fixed-menu.is-show {
  opacity: 1;
  visibility: visible;
}
.fixed-menu.hide {
  visibility: hidden;
  opacity: 0;
}
.fixed-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 50px;
  text-align: center;
  border: 1px solid #77736b;
}
.fixed-menu a span {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.fixed-menu .mail {
  background: #77736b;
}
.fixed-menu .tel {
  background: #fffefa;
  border: 1px solid #77736b;
}
.fixed-menu .tel span {
  color: #1f1f1d;
}

.hero {
  position: relative;
  padding: 6vw 0 6vw 12vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    padding: 10vw 0 8vw 10vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero {
    flex-direction: column-reverse;
    padding: 6vw 0 6vw 17vw;
  }
}
.hero h1 {
  margin: 24px 0;
  font-size: 3.65vw;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
}
@media (max-width: 900px) {
  .hero h1 {
    margin: 24px 0 16px;
    font-size: 8vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero h1 {
    font-size: 40px;
  }
}
.hero .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.hero .char.show {
  opacity: 1;
  transform: translateY(0);
}
.hero .hero-copy {
  width: 40%;
}
@media (max-width: 900px) {
  .hero .hero-copy {
    width: 100%;
    padding-right: 3vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero .hero-copy {
    width: 100%;
    padding-right: 60px;
  }
}
.hero .hero-visual {
  width: 57%;
  aspect-ratio: 4/3;
  min-height: 500px;
}
@media screen and (max-width: 767px) {
  .hero .hero-visual {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero .hero-visual {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
  }
}
.hero .hero-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #77736b;
  font-size: 0.8vw;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .hero .kicker {
    margin-bottom: 40px;
  }
}
.hero .kicker::before {
  display: none;
}
.hero .lead {
  color: #1f1f1d;
  font-size: 1.25vw;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .hero .lead {
    font-size: 15px;
  }
}
.hero .text {
  margin-top: 20px;
  font-size: 1.05vw;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero .text {
    font-size: 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .hero .text {
    font-size: 13px;
  }
}
.hero .btn-row {
  margin-top: 40px;
}
.hero .btn-row .btn {
  padding: 1vw;
  font-size: 1vw;
}

.hero-fade-up {
  opacity: 0;
  transform: translateY(15px);
  transition: all 1.2s ease-out;
}
.hero-fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-fade-in {
  opacity: 0;
  transition: all 2s ease-out;
}
.hero-fade-in.show {
  opacity: 1;
}

.scroll {
  position: absolute;
  bottom: 100px;
  left: 50px;
  line-height: 1;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .scroll {
    top: 50%;
  }
}
@media screen and (max-width: 767px) {
  .scroll {
    display: none;
  }
}
.scroll p {
  font-size: 0.8vw;
  letter-spacing: 0.24em;
  color: #77736b;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  transform: rotate(-180deg);
}
.scroll p::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  width: 1px;
  height: 80px;
  background: #77736b;
}

#scroll p::after {
  animation: sdl01 3s infinite;
}

@keyframes sdl01 {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  50% {
    clip-path: inset(0% 0 0 0);
  }
  50.1% {
    clip-path: inset(0 0 0% 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
#concept-sec {
  background: #fffefa;
  position: relative;
}
@media screen and (max-width: 767px) {
  #concept-sec {
    padding: 80px 0 120px !important;
  }
}
#concept-sec .concept-bg {
  position: absolute;
  right: 0;
  bottom: 2%;
  width: 50%;
  max-width: 1000px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #concept-sec .concept-bg {
    width: 65%;
  }
}
@media screen and (max-width: 767px) {
  #concept-sec .concept-bg {
    bottom: 0;
    width: 90%;
  }
}
#concept-sec .center-block {
  max-width: 820px;
  margin: auto;
  text-align: left;
}
#concept-sec .center-block .kicker {
  justify-content: flex-start;
}
#concept-sec .center-block .h2 {
  margin: 46px 0 28px;
}

#about #about_01 {
  padding: var(--section) 0;
  border-bottom: 1px solid rgba(197, 191, 178, 0.55);
}
#about #about_01 .center-block {
  max-width: 780px;
}
#about #about_01 .h2 {
  margin: 36px 0 28px;
}
#about #about_02 {
  background: var(--card);
  padding-bottom: 0;
}
#about #about_02 .container {
  width: 100%;
  padding: 0;
}
#about #about_02 .center-block {
  max-width: 840px;
}
@media (max-width: 900px) {
  #about #about_02 .center-block {
    padding-inline: 30px;
  }
}
#about #about_02 .h2 {
  margin: 36px 0 20px;
}
#about #about_02 .comparison-box {
  margin-top: 60px;
}
#about #about_02 .comparison-column:nth-of-type(1) h3 {
  text-align: center;
  font-size: 22px;
  color: #1f1f1d;
  margin-bottom: 0.5rem;
}
#about #about_02 .comparison-column:nth-of-type(1) .text {
  text-align: center;
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 12.5%;
  width: 0%;
  height: 2px;
  background: #1f1f1d;
  z-index: 1;
  transition: width 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list.is-visible::after {
  width: 75%;
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list.is-visible .flow-list__item .flow-node {
  opacity: 1;
  transform: scale(1);
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list.is-visible .flow-list__item .flow-label {
  opacity: 1;
  transform: translateY(0);
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list .flow-list__item:nth-child(1) .flow-node,
#about #about_02 .comparison-column:nth-of-type(1) .flow-list .flow-list__item:nth-child(1) .flow-label {
  transition-delay: 0s;
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list .flow-list__item:nth-child(2) .flow-node,
#about #about_02 .comparison-column:nth-of-type(1) .flow-list .flow-list__item:nth-child(2) .flow-label {
  transition-delay: 0.55s;
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list .flow-list__item:nth-child(3) .flow-node,
#about #about_02 .comparison-column:nth-of-type(1) .flow-list .flow-list__item:nth-child(3) .flow-label {
  transition-delay: 1.1s;
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list .flow-list__item:nth-child(4) .flow-node,
#about #about_02 .comparison-column:nth-of-type(1) .flow-list .flow-list__item:nth-child(4) .flow-label {
  transition-delay: 1.65s;
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #1f1f1d;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-node::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f1f1d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#about #about_02 .comparison-column:nth-of-type(1) .flow-label {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#about #about_02 .comparison-column:nth-of-type(2) {
  background: #c7c6be;
  padding: 80px 0;
  margin-top: 60px;
}
#about #about_02 .comparison-column:nth-of-type(2) .photo {
  width: 40%;
  margin: 0 auto;
}
#about #about_02 .comparison-column:nth-of-type(2) h3 {
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  margin: 20px 0 60px;
}
#about #about_02 .comparison-column:nth-of-type(2) .text {
  text-align: center;
  color: #fff;
  font-size: 15px;
}
#about #about_02 .comparison-column:nth-of-type(2) .feature-list {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  #about #about_02 .comparison-column:nth-of-type(2) .feature-list {
    grid-template-columns: 1fr;
  }
}
#about #about_02 .comparison-column:nth-of-type(2) .feature-list .pill {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#about #about_02 .comparison-column:nth-of-type(2) .feature-list .pill img {
  width: 20%;
  min-height: 55px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  #about #about_02 .comparison-column:nth-of-type(2) .feature-list .pill img {
    width: 12%;
  }
}
#about #about_02 .comparison-column:nth-of-type(2) .feature-list .pill span {
  display: block;
  text-align: center;
  padding: 10px 0;
  margin: 20px 0;
  color: #fff;
  font-size: 20px;
  border-top: 1px dashed #fff;
  border-bottom: 1px dashed #fff;
}
#about #about_02 .comparison-column:nth-of-type(2) .feature-list .pill .text {
  text-align: left;
  margin-top: 0;
  color: #77736b;
}
#about #about_03 {
  background: var(--card);
}
#about #about_03 .h2 {
  margin: 36px 0 20px;
}
#about #about_03 .design-points {
  margin-top: 36px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
#about #about_03 .design-points .design-point {
  display: grid;
  grid-template-columns: 20px 1fr;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
#about #about_03 .design-points .design-point .dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  margin-top: 10px;
}
#about #about_03 .design-points .design-point p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
#about #about_04 .h2 {
  margin: 36px 0 12px;
}
#about #about_04 .profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  #about #about_04 .profile-grid {
    grid-template-columns: 1fr;
  }
}
#about #about_04 .profile-grid .profile-card {
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0;
  overflow: hidden;
}
@media (max-width: 900px) {
  #about #about_04 .profile-grid .profile-card {
    display: flex;
    flex-direction: column;
  }
}
#about #about_04 .profile-grid .profile-card .profile-photo {
  position: relative;
  min-height: 160px;
}
#about #about_04 .profile-grid .profile-card .profile-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about #about_04 .profile-grid .profile-card .flex {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
#about #about_04 .profile-grid .profile-card .profile-body {
  padding: 28px;
}
@media (max-width: 900px) {
  #about #about_04 .profile-grid .profile-card .profile-body {
    padding: 20px;
  }
}
#about #about_04 .profile-grid .profile-card .profile-body small {
  color: var(--muted);
  letter-spacing: 0.16em;
  font-size: 11px;
}
#about #about_04 .profile-grid .profile-card .profile-body h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
#about #about_04 .profile-grid .profile-card .profile-body .qual {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
#about #about_04 .profile-grid .profile-card .profile-body .text {
  font-size: 14px;
  line-height: 1.9;
}
@media (max-width: 900px) {
  #about #about_04 .profile-grid .profile-card .profile-body .text {
    font-size: 13px;
  }
}

#architect-sec .mini-title {
  margin: 0 0 28px;
  color: #77736b;
  font-weight: 300;
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  #architect-sec .photo {
    width: 85%;
    margin: 0 auto;
  }
}

#design-sec {
  background: #fffefa;
}
#design-sec .split.reverse {
  grid-template-columns: 480px 1fr;
}
@media (max-width: 900px) {
  #design-sec .split.reverse {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  #design-sec .photo {
    order: 2;
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  #quality-sec .photo {
    width: 85%;
    margin: 0 auto;
  }
}

#quality .perf-section {
  padding: var(--section) 0;
  border-bottom: 1px solid rgba(197, 191, 178, 0.55);
}
#quality .bg-card {
  background: var(--card);
}
#quality .h2 {
  margin: 36px 0 20px;
}
#quality .photo {
  margin-bottom: 20px;
}
#quality .grade-num {
  display: inline-block;
  position: relative;
  color: #77736b;
  letter-spacing: 0.2em;
  padding-bottom: 2px;
  border-bottom: 1px solid #c5bfb2;
  margin-bottom: 16px;
}
#quality h3 {
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: var(--muted);
}
@media (max-width: 900px) {
  #quality h3 {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  #quality h4 {
    font-size: 15px;
  }
}
#quality #quality_01 .container {
  width: min(800px, 100% - var(--pad) * 2);
}
#quality #quality_01 .flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
#quality #quality_01 .flex .left {
  width: 43%;
}
#quality #quality_01 .flex .right {
  width: 52%;
}
#quality #quality_01 .flex .right .grade-box {
  display: flex;
  flex-direction: column;
}
#quality #quality_01 .flex .right .grade-box:nth-of-type(1) {
  border-bottom: 1px dashed #c5bfb2;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
#quality #quality_02 {
  padding: var(--section) 0;
  border-bottom: 1px solid rgba(197, 191, 178, 0.55);
}
#quality #quality_02 .container {
  width: min(800px, 100% - var(--pad) * 2);
}
#quality #quality_02 .flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
#quality #quality_02 .flex .left {
  width: 43%;
}
#quality #quality_02 .flex .right {
  width: 52%;
}
#quality .grade-block {
  margin-top: 64px;
}
#quality .grade-block h3 {
  font-weight: 400;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #77736b;
}
#quality .grade-block .text {
  color: #1f1f1d;
  text-align: center;
  margin: 20px 0;
}
#quality .grade-box .grade-card {
  display: flex;
  flex-direction: column;
}
#quality .grade-box .grade-content h4 {
  font-weight: 400;
  color: #77736b;
  margin-bottom: 10px;
}
#quality .grade-box .grade-content .grade-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #1f1f1d;
  margin: 0;
}
#quality .grade-box .grade-content .left {
  flex: 1;
}
#quality .grade-box .right {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
#quality .grade-box .label {
  font-size: 14px;
  color: #1f1f1d;
  text-align: center;
  padding: 12px 16px;
  margin: 0;
  border-top: 1px solid #77736b;
}
@media (max-width: 900px) {
  #quality .grade-box .label {
    font-size: 13px;
  }
}
#quality .grade-box .label-dashed {
  border-top-style: dashed;
  border-top-color: #77736b;
}
#quality .col2 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  #quality .col2 {
    grid-template-columns: 1fr;
  }
}
#quality .col2 .grade-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 16px;
  flex: 1;
}
#quality .col3 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 900px) {
  #quality .col3 {
    flex-direction: column;
  }
}
#quality .col3 .grade-card {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  width: 35%;
}
@media (max-width: 900px) {
  #quality .col3 .grade-card {
    width: 100%;
  }
}
#quality .col3 .grade-img {
  margin: 0 auto;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
#quality .col3 h4 {
  margin-top: 20px;
  text-align: center;
}
#quality .col3 .label {
  border-top: 1px solid #77736b;
  border-bottom: 1px solid #77736b;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: 400;
}
@media (max-width: 900px) {
  #quality .col3 .label {
    width: 60%;
    margin: 0 auto;
  }
}
#quality .col3 .label-dashed {
  border-top: 1px dashed #77736b;
  border-bottom: 1px dashed #77736b;
}
#quality .col3 .grade-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 0 8px 24px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  #quality .col3 .grade-arrow {
    padding: 0 0 20px;
  }
}
#quality .col3 .grade-arrow .arrow-text {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #77736b;
  text-align: center;
  line-height: 1.4;
}
#quality .col3 .grade-arrow .arrow-icon {
  display: block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #77736b;
}
@media (max-width: 900px) {
  #quality .col3 .grade-arrow .arrow-icon {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #77736b;
    border-bottom: none;
  }
}
#quality .col1 .grade-img {
  width: 65%;
  margin: 0 auto;
  padding: 40px;
}
@media (max-width: 900px) {
  #quality .col1 .grade-img {
    width: 100%;
  }
}
#quality .col1 h4 {
  text-align: center;
}
#quality #quality_03 .center-block {
  max-width: 880px;
}
@media screen and (max-width: 767px) {
  #quality #quality_03 .center-block {
    width: 92%;
  }
}
#quality #quality_03 .check-list {
  position: relative;
  margin-top: 60px;
}
@media (max-width: 900px) {
  #quality #quality_03 .check-list .text {
    font-size: 13px;
  }
}
#quality #quality_03 .check-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background-color: #c5bfb2;
  transition: height 1.6s ease;
  z-index: 0;
}
#quality #quality_03 .check-list.is-animated::before {
  height: 100%;
}
#quality #quality_03 .check-list .check-item {
  position: relative;
  width: 50%;
  padding: 30px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#quality #quality_03 .check-list .check-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
#quality #quality_03 .check-list .check-item::before {
  content: "";
  position: absolute;
  bottom: 5px;
  height: 1px;
  border-bottom: 1px dashed #c5bfb2;
}
#quality #quality_03 .check-list .check-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #f8f7f3;
  border: 1px solid #1f1f1d;
  z-index: 1;
}
#quality #quality_03 .check-list .check-item:nth-child(odd) {
  left: 0;
  padding-right: 60px;
  text-align: right;
}
@media (max-width: 900px) {
  #quality #quality_03 .check-list .check-item:nth-child(odd) {
    padding-right: 15px;
    text-align: left;
  }
}
#quality #quality_03 .check-list .check-item:nth-child(odd)::before {
  right: 6px;
  left: 0;
}
#quality #quality_03 .check-list .check-item:nth-child(odd)::after {
  right: -8px;
}
#quality #quality_03 .check-list .check-item:nth-child(odd) .check-content {
  display: inline-block;
}
#quality #quality_03 .check-list .check-item:nth-child(odd) h3 {
  text-align: left;
}
#quality #quality_03 .check-list .check-item:nth-child(even) {
  left: 50%;
  padding-left: 60px;
  text-align: left;
}
@media (max-width: 900px) {
  #quality #quality_03 .check-list .check-item:nth-child(even) {
    padding-left: 15px;
  }
}
#quality #quality_03 .check-list .check-item:nth-child(even)::before {
  left: 6px;
  right: 0;
}
#quality #quality_03 .check-list .check-item:nth-child(even)::after {
  left: -7px;
}
#quality #quality_03 .label {
  margin-top: 60px;
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  #quality #quality_03 .label {
    margin-top: 50px;
    text-align: left;
    font-size: 13px;
  }
}
#quality #quality_04 .container {
  grid-template-columns: 500px 1fr;
}
@media (max-width: 900px) {
  #quality #quality_04 .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  #quality #quality_04 .container .photo {
    order: 2;
  }
}
#quality #quality_05 .warranty-box {
  margin-top: 54px;
}
#quality #quality_05 .warranty-box .text {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
#quality #quality_05 .warranty-box .text::after {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  background-color: #c5bfb2;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s ease;
}
#quality #quality_05 .warranty-box .text.is-animated::after {
  transform: scaleX(1);
}
#quality #quality_05 .warranty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  #quality #quality_05 .warranty-grid {
    grid-template-columns: 1fr;
  }
}
#quality #quality_05 .warranty-card {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 32px;
}
@media (max-width: 900px) {
  #quality #quality_05 .warranty-card {
    padding: 32px 20px;
  }
}
#quality #quality_05 .warranty-card .flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  #quality #quality_05 .warranty-card .flex {
    flex-direction: column;
    margin-bottom: -10px;
  }
}
#quality #quality_05 .warranty-card .flex .left {
  width: 14%;
}
@media (max-width: 900px) {
  #quality #quality_05 .warranty-card .flex .left {
    width: 20%;
    position: relative;
    top: -12px;
  }
}
#quality #quality_05 .warranty-card .flex .right {
  width: 80%;
}
@media (max-width: 900px) {
  #quality #quality_05 .warranty-card .flex .right {
    position: relative;
    top: -30px;
    width: 100%;
  }
}
#quality #quality_05 .warranty-card .flex .right h3 {
  font-size: 18px;
  font-weight: 700;
}
#quality #quality_05 .warranty-card .flex .right p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #quality #quality_05 .warranty-card .flex .right p {
    margin-top: 4px;
    font-size: 13px;
  }
}
#quality #quality_05 .warranty-card .w-badge {
  text-align: center;
  font-size: 16px;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 12px 0;
  color: var(--muted);
  font-weight: 400;
}
#quality #quality_06 .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#quality #quality_06 .flex .left {
  width: 50%;
}
#quality #quality_06 .flex .right {
  width: 45%;
}
#quality #quality_06 .subsidy-table {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 900px) {
  #quality #quality_06 .subsidy-table {
    grid-template-columns: 1fr;
  }
}
#quality #quality_06 .subsidy-table .subsidy-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 3px solid var(--line);
  border-bottom: 1px solid var(--line);
}
#quality #quality_06 .subsidy-table .subsidy-row h4 {
  margin: 0 0 6px;
  font-weight: 400;
  font-size: 20px;
}
#quality #quality_06 .subsidy-table .subsidy-row p {
  font-size: 14px;
  color: var(--muted);
}
#quality #quality_06 .subsidy-table .subsidy-amount {
  text-align: right;
}
#quality #quality_06 .subsidy-table .subsidy-amount .label {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
#quality #quality_06 .subsidy-table .subsidy-amount strong {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 5px;
}

#works-sec {
  background: #fffefa;
}
#works-sec .works-grid {
  margin-top: 64px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.works-grid .work-card a {
  position: relative;
}
.works-grid .work-card a:hover .photo::before, .works-grid .work-card a:hover .photo::after {
  opacity: 1;
  transform: scale(1);
}
.works-grid .work-card a:hover .photo .card-mask {
  background-color: #1f1f1d;
}
.works-grid .work-card a:hover .photo > img {
  transform: scale(1.1);
}
.works-grid .work-card a .photo {
  position: relative;
  overflow: hidden;
  padding-top: 66.6667%;
}
.works-grid .work-card a .photo::before, .works-grid .work-card a .photo::after {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  content: "";
  opacity: 0;
  transition: all 0.4s;
}
.works-grid .work-card a .photo::before {
  border-top: 1px solid #c5bfb2;
  border-bottom: 1px solid #c5bfb2;
  transform: scale(0, 1);
  z-index: 10;
}
.works-grid .work-card a .photo::after {
  border-right: 1px solid #c5bfb2;
  border-left: 1px solid #c5bfb2;
  transform: scale(1, 0);
  z-index: 10;
}
.works-grid .work-card a .photo .card-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.5;
  transition: all 0.4s;
}
.works-grid .work-card a .photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s;
}
.works-grid .work-card a h3 {
  font-weight: 400;
}
.works-grid .work-card a .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 0;
  text-align: center;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s;
}
.works-grid .work-card a .content:hover {
  opacity: 1;
}
.works-grid .work-card a .content small {
  display: block;
  margin-top: 26px;
  color: #fff;
  letter-spacing: 0.16em;
}
.works-grid .work-card a .content .text {
  color: #fff;
}

#works-single .single-content {
  border-bottom: 1px solid #c5bfb2;
}
#works-single .single-content .container {
  width: min(1000px, 100% - var(--pad) * 2);
  padding: 120px 0;
}
@media (max-width: 900px) {
  #works-single .single-content .container {
    padding: 80px 0;
  }
}
#works-single .single-content .works-fv .works-head {
  padding-bottom: 10px;
  border-bottom: 1px solid #c5bfb2;
}
#works-single .single-content .works-fv .works-head h2 {
  font-weight: 600;
}
#works-single .single-content .works-fv .works-gallery {
  position: relative;
  max-width: 800px;
  margin: 40px auto 120px;
}
@media (max-width: 900px) {
  #works-single .single-content .works-fv .works-gallery {
    margin-bottom: 60px;
  }
}
#works-single .single-content .works-fv .works-gallery .slider-main {
  margin-bottom: 20px;
}
#works-single .single-content .works-fv .works-gallery .slider-main .slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}
@media (max-width: 900px) {
  #works-single .single-content .works-fv .works-gallery .slider-main .slider-item {
    height: 280px;
  }
}
#works-single .single-content .works-fv .works-gallery .slider-main .slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#works-single .single-content .works-fv .works-gallery .slider-thumb {
  position: relative;
  padding-bottom: 40px;
}
#works-single .single-content .works-fv .works-gallery .slider-thumb .slick-slide {
  margin: 0 6px;
}
#works-single .single-content .works-fv .works-gallery .slider-thumb .slick-slide img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
  transition: 0.3s;
}
#works-single .single-content .works-fv .works-gallery .slider-thumb .slick-current img {
  opacity: 1;
}
#works-single .single-content .works-fv .works-gallery .slider-thumb .slick-arrow {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  color: #77736b;
  cursor: pointer;
  z-index: 10;
}
#works-single .single-content .works-fv .works-gallery .slider-thumb .slick-arrow::before {
  display: none;
}
#works-single .single-content .works-fv .works-gallery .slider-thumb .slick-arrow svg {
  width: 100%;
  height: auto;
}
#works-single .single-content .works-fv .works-gallery .slider-thumb .slick-prev {
  right: 55px;
  left: auto;
}
#works-single .single-content .works-fv .works-gallery .slider-thumb .slick-next {
  right: 0;
}
#works-single .single-content .works-fv .works-gallery .slider-controls {
  position: absolute;
  right: 110px;
  bottom: -4px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.1em;
  color: #77736b;
}
#works-single .single-content .works-fv .works-gallery .slider-current,
#works-single .single-content .works-fv .works-gallery .slider-total {
  min-width: 20px;
  text-align: center;
}
#works-single .single-content .gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
#works-single .single-content .gallery-modal.active {
  display: block;
}
#works-single .single-content .gallery-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}
#works-single .single-content .gallery-modal__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
#works-single .single-content .gallery-modal__close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 100;
}
#works-single .single-content .gallery-modal .gallery-modal-slider {
  width: min(1200px, 90vw);
}
#works-single .single-content .gallery-modal .modal-slide {
  height: 80vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
#works-single .single-content .gallery-modal .modal-slide img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 900px) {
  #works-single .single-content .gallery-modal .modal-slide img {
    height: 70vh;
  }
}
#works-single .single-content .gallery-modal .gallery-modal-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  #works-single .single-content .gallery-modal .gallery-modal-pagination {
    bottom: 53px;
  }
}
#works-single .single-content .gallery-modal .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 900px) {
  #works-single .single-content .gallery-modal .slick-arrow {
    top: 100%;
    width: 24px;
    height: 24px;
  }
}
#works-single .single-content .gallery-modal .slick-arrow::before {
  display: none;
}
#works-single .single-content .gallery-modal .slick-arrow svg {
  width: 100%;
  height: auto;
}
#works-single .single-content .gallery-modal .slick-prev {
  left: -70px;
}
@media (max-width: 900px) {
  #works-single .single-content .gallery-modal .slick-prev {
    left: 0;
  }
}
#works-single .single-content .gallery-modal .slick-next {
  right: -70px;
}
@media (max-width: 900px) {
  #works-single .single-content .gallery-modal .slick-next {
    right: 0;
  }
}
#works-single .single-content .works-text p {
  font-size: 15px;
  line-height: 2;
}
@media (max-width: 900px) {
  #works-single .single-content .works-text p {
    font-size: 14px;
  }
}
#works-single .single-content .works-text .editor-content {
  font-size: 1.7rem;
}
#works-single .single-content .works-text .editor-content p + p {
  margin-top: 2em;
}
#works-single .works-outline {
  padding: 120px 0 0;
}
@media (max-width: 900px) {
  #works-single .works-outline {
    padding: 80px 0 0;
  }
}
#works-single .works-outline h2 {
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.2em;
}
#works-single .works-outline .outline-list {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-top: 1px solid #c5bfb2;
}
@media (max-width: 900px) {
  #works-single .works-outline .outline-list {
    grid-template-columns: 120px 1fr;
  }
}
#works-single .works-outline .outline-list dt,
#works-single .works-outline .outline-list dd {
  font-size: 14px;
  font-weight: 400;
  padding: 24px 0;
  border-bottom: 1px solid #c5bfb2;
}
#works-single .works-outline .outline-list dd {
  margin: 0;
}

.slick-slide {
  cursor: pointer;
}

.single_pagenavi {
  margin-top: 48px;
  position: relative;
}
.single_pagenavi .pagenavi_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .single_pagenavi .pagenavi_list .pagenavi_item {
    font-size: 0.875rem;
  }
}
.single_pagenavi .pagenavi_list .pagenavi_item a {
  display: block;
  position: relative;
  font-size: 14px;
  color: #77736b;
}
@media (max-width: 900px) {
  .single_pagenavi .pagenavi_list .pagenavi_item a {
    font-size: 12px;
  }
}
.single_pagenavi .pagenavi_list .pagenavi_item a.disabled {
  visibility: hidden;
}

#flow-sec .timeline {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 900px) {
  #flow-sec .timeline {
    grid-template-columns: 1fr;
    border-top: 0;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 80px;
  }
}
#flow-sec .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #c5bfb2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2.5s ease;
  z-index: 0;
}
@media (max-width: 900px) {
  #flow-sec .timeline::before {
    top: 6px;
    left: 67px;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
  }
}
#flow-sec .timeline .timeline-step {
  position: relative;
  padding-top: 30px;
  color: #77736b;
  font-size: 12px;
}
@media (max-width: 900px) {
  #flow-sec .timeline .timeline-step {
    display: flex;
    gap: 10px;
    padding: 0 0 50px 28px;
  }
}
#flow-sec .timeline .timeline-step::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #1f1f1d;
  background: #f8f7f2;
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (max-width: 900px) {
  #flow-sec .timeline .timeline-step::before {
    top: 5px;
    left: -20px;
  }
}
#flow-sec .timeline .timeline-step strong,
#flow-sec .timeline .timeline-step .label {
  font-size: 13px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#flow-sec .timeline .timeline-step strong {
  display: block;
  margin-bottom: 6px;
  color: #1f1f1d;
  font-weight: 300;
}
#flow-sec .timeline .timeline-step .label {
  display: block;
}
#flow-sec .timeline.is-visible::before {
  transform: scaleX(1);
}
#flow-sec .timeline.is-visible .timeline-step::before {
  opacity: 1;
  transform: scale(1);
}
#flow-sec .timeline.is-visible .timeline-step strong,
#flow-sec .timeline.is-visible .timeline-step .label {
  opacity: 1;
  transform: translateY(0);
}
#flow-sec .timeline .timeline-step:nth-child(1)::before,
#flow-sec .timeline .timeline-step:nth-child(1) strong,
#flow-sec .timeline .timeline-step:nth-child(1) .label {
  transition-delay: 0s;
}
#flow-sec .timeline .timeline-step:nth-child(2)::before,
#flow-sec .timeline .timeline-step:nth-child(2) strong,
#flow-sec .timeline .timeline-step:nth-child(2) .label {
  transition-delay: 0.2s;
}
#flow-sec .timeline .timeline-step:nth-child(3)::before,
#flow-sec .timeline .timeline-step:nth-child(3) strong,
#flow-sec .timeline .timeline-step:nth-child(3) .label {
  transition-delay: 0.4s;
}
#flow-sec .timeline .timeline-step:nth-child(4)::before,
#flow-sec .timeline .timeline-step:nth-child(4) strong,
#flow-sec .timeline .timeline-step:nth-child(4) .label {
  transition-delay: 0.6s;
}
#flow-sec .timeline .timeline-step:nth-child(5)::before,
#flow-sec .timeline .timeline-step:nth-child(5) strong,
#flow-sec .timeline .timeline-step:nth-child(5) .label {
  transition-delay: 0.8s;
}
#flow-sec .timeline .timeline-step:nth-child(6)::before,
#flow-sec .timeline .timeline-step:nth-child(6) strong,
#flow-sec .timeline .timeline-step:nth-child(6) .label {
  transition-delay: 1s;
}
#flow-sec .timeline .timeline-step:nth-child(7)::before,
#flow-sec .timeline .timeline-step:nth-child(7) strong,
#flow-sec .timeline .timeline-step:nth-child(7) .label {
  transition-delay: 1.2s;
}
#flow-sec .timeline .timeline-step:nth-child(8)::before,
#flow-sec .timeline .timeline-step:nth-child(8) strong,
#flow-sec .timeline .timeline-step:nth-child(8) .label {
  transition-delay: 1.4s;
}

#flow .section .btn-row {
  display: block;
  text-align: center;
}
#flow .section .text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #flow .section .text {
    text-align: left;
  }
}
#flow .step-list {
  display: grid;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  #flow .step-list {
    margin-top: 60px;
  }
}
#flow .step-list .step-item {
  position: relative;
  padding: 60px 0;
  margin-left: 60px;
  border-bottom: 1px solid #c5bfb2;
}
@media (max-width: 900px) {
  #flow .step-list .step-item {
    margin-left: 50px;
  }
}
#flow .step-list .step-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 1px;
  height: 101%;
  background: #c5bfb2;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s ease-out 0.3s;
}
@media (max-width: 900px) {
  #flow .step-list .step-item::before {
    left: -40px;
  }
}
#flow .step-list .step-item::after {
  content: "";
  position: absolute;
  top: 73px;
  left: -66px;
  width: 14px;
  height: 14px;
  border: 1px solid #1f1f1d;
  background: #f8f7f2;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}
@media (max-width: 900px) {
  #flow .step-list .step-item::after {
    left: -46px;
  }
}
#flow .step-list .step-item.show::before {
  transform: scaleY(1);
}
#flow .step-list .step-item.show::after {
  opacity: 1;
  transform: scale(1);
}
#flow .step-list .step-item .step-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  margin-bottom: 25px;
}
@media (max-width: 900px) {
  #flow .step-list .step-item .step-head {
    grid-template-columns: 130px 1fr;
  }
}
#flow .step-list .step-item .step-head .step-num {
  position: relative;
  color: #77736b;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 900px) {
  #flow .step-list .step-item .step-head .step-num {
    font-size: 12px;
    gap: 16px;
  }
}
#flow .step-list .step-item .step-head .step-num::after {
  content: "";
  width: 72px;
  height: 1px;
  background: #c5bfb2;
  order: 1;
}
@media (max-width: 900px) {
  #flow .step-list .step-item .step-head .step-num::after {
    width: 36px;
  }
}
#flow .step-list .step-item .step-head h3 {
  color: #77736b;
}
@media (max-width: 900px) {
  #flow .step-list .step-item .step-head h3 {
    font-size: 16px;
  }
}

#company-sec {
  background: #fffefa;
}
#company-sec .split {
  grid-template-columns: 1fr 600px;
}
@media (max-width: 900px) {
  #company-sec .split {
    grid-template-columns: 1fr;
  }
}
#company-sec .people-grid {
  margin-top: 58px;
}
#company-sec .person:nth-of-type(1) .text {
  letter-spacing: 0;
}

#company-sec .people-grid,
#company .people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) {
  #company-sec .people-grid,
  #company .people-grid {
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  #company-sec .people-grid .person,
  #company .people-grid .person {
    padding: 0 30px;
  }
}
#company-sec .people-grid .person .photo,
#company .people-grid .person .photo {
  box-shadow: 4px 4px 15px rgba(197, 191, 178, 0.5);
}
#company-sec .people-grid .person small,
#company .people-grid .person small {
  display: block;
  color: #77736b;
  margin-top: 20px;
  letter-spacing: 0.16em;
}
#company-sec .people-grid .person h3,
#company .people-grid .person h3 {
  font-size: 20px;
  font-weight: 300;
}
#company-sec .people-grid .person .qual,
#company .people-grid .person .qual {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
#company-sec .people-grid .person .text,
#company .people-grid .person .text {
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 900px) {
  #company-sec .people-grid .person .text,
  #company .people-grid .person .text {
    font-size: 13px;
  }
}

#company .people-grid {
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
#company .people-grid .flex {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
#company .table {
  margin-top: 80px;
  border-top: 1px solid #c5bfb2;
}
#company .table .table-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid #c5bfb2;
  font-weight: 400;
}
@media (max-width: 900px) {
  #company .table .table-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
#company .table .table-row dt {
  color: #77736b;
}
@media (max-width: 900px) {
  #company .table .table-row dt {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  #company .table .table-row dd {
    font-size: 13px;
  }
}
#company .company-map {
  margin-top: 80px;
}
@media (max-width: 900px) {
  #company .company-map {
    margin-top: 60px;
  }
}
#company .company-map .iframe-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 50%;
}
#company .company-map .iframe-wrap iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
}

#contact #request-fields {
  display: none;
}
#contact .cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  #contact .cta-grid {
    grid-template-columns: 1fr;
  }
}
#contact .feature-list {
  display: grid;
  gap: 22px;
  margin-top: 50px;
}
#contact .feature {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  border-top: 1px solid #c5bfb2;
  padding-top: 24px;
}
@media (max-width: 900px) {
  #contact .feature {
    grid-template-columns: 170px 1fr;
  }
}
#contact .feature h3 {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  gap: 24px;
  font-weight: 400;
}
@media (max-width: 900px) {
  #contact .feature h3 {
    font-size: 16px;
  }
}
#contact .feature h3::after {
  content: "";
  width: 72px;
  height: 1px;
  background: #c5bfb2;
  order: 1;
}
@media (max-width: 900px) {
  #contact .feature h3::after {
    width: 62px;
  }
}
#contact .feature .text {
  font-size: 13px;
}
#contact .table {
  border-top: 1px solid #c5bfb2;
  margin-top: 44px;
}
#contact .table .table-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 22px 0;
  border-bottom: 1px solid #c5bfb2;
}
#contact .table .table-row dt {
  color: #77736b;
}
#contact .form-card {
  background: #f8f7f2;
  color: #1f1f1d;
  padding: 42px;
}
@media (max-width: 900px) {
  #contact .form-card {
    padding: 0;
  }
}
#contact .form-card h3 {
  font-weight: 400;
  margin-bottom: 8px;
}
#contact .form-card label {
  display: block;
  color: #77736b;
  font-size: 12px;
  letter-spacing: 0.12em;
}
#contact .form-card input,
#contact .form-card textarea,
#contact .form-card select {
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  width: 100%;
  border-bottom: 1px solid #c5bfb2;
  padding: 12px 0;
  font-size: 12px;
  color: #1f1f1d;
}
#contact .form-card input:focus,
#contact .form-card textarea:focus,
#contact .form-card select:focus {
  outline: none;
  border-bottom: 1px solid #77736b;
}
#contact .form-card .form-select {
  position: relative;
}
#contact .form-card .form-select::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #1f1f1d;
  border-bottom: 1px solid #1f1f1d;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
#contact .form-card .form-item {
  margin-top: 22px;
}
#contact .form-card .form-item > .form-label label {
  margin-bottom: 8px;
}
#contact .form-card .flex-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
@media (max-width: 900px) {
  #contact .form-card .flex-wrap {
    gap: 12px;
  }
}
#contact .form-card .flex-wrap .form-label {
  flex: 0 0 64px;
  white-space: nowrap;
}
#contact .form-card .flex-wrap .form-label label {
  margin-bottom: 0;
}
#contact .form-card .flex-wrap .form-date {
  flex: 0 0 40%;
}
@media (max-width: 900px) {
  #contact .form-card .flex-wrap .form-date {
    flex: 0 0 37%;
  }
}
#contact .form-card .flex-wrap .form-select {
  flex: 0 0 40%;
}
@media (max-width: 900px) {
  #contact .form-card .flex-wrap .form-select {
    flex: 0 0 37%;
  }
}
#contact .form-card .form-recaptcha {
  margin-top: 40px;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 900px) {
  #contact .form-card .form-recaptcha {
    font-size: 10px;
  }
}
#contact .form-card .form-recaptcha a {
  color: #77736b;
  text-decoration: underline;
}
#contact .form-card .text-red {
  color: #e53935;
  margin-left: 2px;
}
#contact .form-card .btn-row {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  cursor: auto;
}
#contact .form-card .btn-row button {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 900px) {
  #contact .form-card .btn-row button {
    padding: 0 40px;
  }
}

.form-hosoku {
  font-size: 11px;
  color: #77736b;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
  font-size: 12px;
}

.cta-section {
  background: #20201e;
  color: #fffefa;
  padding: var(--section) 0;
}
.cta-section .text,
.cta-section .lead,
.cta-section .kicker {
  color: rgba(255, 254, 250, 0.72);
}
.cta-section .light {
  background: #1f1f1d;
  border: 1px solid #fffefa;
  color: #fffefa;
}
.cta-section .light::before {
  background: #f1efe8;
}
.cta-section .light:hover {
  color: #1f1f1d;
}
.cta-section .cta-grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .cta-section .cta-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.cta-section .right {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.cta-section .right h3 {
  font-weight: 300;
  letter-spacing: 0.2em;
}
.cta-section .right .tel a {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
.cta-section .right .btn-row {
  margin-top: 15px;
}
@media (max-width: 900px) {
  .cta-section .right .btn-row {
    display: flex;
    gap: 8px;
  }
  .cta-section .right .btn-row .btn {
    width: 50%;
    padding: 0 10px;
  }
}
@media (max-width: 900px) and (max-width: 900px) {
  .cta-section .right .btn-row .btn {
    padding: 0;
  }
}

.footer {
  padding: 80px 0 40px;
  background: #c7c6be;
}
.footer .footer-top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
}
@media (max-width: 900px) {
  .footer .footer-top {
    flex-direction: column;
    align-items: unset;
    padding: 0;
  }
}
@media (max-width: 900px) {
  .footer .footer-top .logo {
    width: 220px;
    margin: 0 auto;
  }
}
.footer .footer-top .left .add {
  margin-top: 40px;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 900px) {
  .footer .footer-top .right {
    padding: 0 20px;
  }
}
.footer .footer-top .right .footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer .footer-top .right .footer-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #fff;
}
@media (max-width: 900px) {
  .footer .footer-top .right .footer-nav {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "about    quality" "works    flow" "company  cta";
    gap: 30px;
    align-items: center;
  }
  .footer .footer-top .right .footer-nav ul {
    display: contents;
  }
  .footer .footer-top .right .footer-nav ul li:nth-child(1) {
    grid-area: about;
  }
  .footer .footer-top .right .footer-nav ul li:nth-child(2) {
    grid-area: quality;
  }
  .footer .footer-top .right .footer-nav ul li:nth-child(3) {
    grid-area: works;
  }
  .footer .footer-top .right .footer-nav ul li:nth-child(4) {
    grid-area: flow;
  }
  .footer .footer-top .right .footer-nav ul li:nth-child(5) {
    grid-area: company;
  }
  .footer .footer-top .right .footer-nav > div {
    grid-area: cta;
  }
  .footer .footer-top .right .footer-nav .nav-cta {
    font-weight: 300;
  }
}
@media (max-width: 900px) and (max-width: 900px) {
  .footer .footer-top .right .footer-nav .nav-cta {
    width: 100%;
  }
}
.footer .footer-top .right .to-top {
  position: absolute;
  top: 0;
  right: 20px;
}
@media (max-width: 900px) {
  .footer .footer-top .right .to-top {
    top: -40px;
    right: 0;
  }
}
.footer .footer-top .right .to-top a {
  position: relative;
  display: block;
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
}
.footer .footer-top .right .to-top a::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.footer .footer-bottom {
  margin-top: 60px;
  padding: 24px 20px 0;
  border-top: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
}
@media (max-width: 900px) {
  .footer .footer-bottom {
    text-align: center;
    flex-direction: column;
    padding: 24px 0 0;
  }
}
.footer .footer-bottom .sns {
  text-align: left !important;
}
.footer .footer-bottom .sns .sns li a {
  display: block;
  width: 28px;
  height: 28px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split.reverse,
  .cta-grid,
  .onestop-grid,
  .design-split,
  .profile-grid,
  .profile-card {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .works-grid,
  .people-grid,
  #concept-sec,
  #company-sec .people-grid,
  #company .people-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .feature,
  .table-row,
  .step-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}/*# sourceMappingURL=style.css.map */