/* =========================
   DESIGN TOKENS
========================= */

:root {
  --color-text: #222;
  --color-text-soft: #444;
  --color-muted: #777;
  --color-line: #e5e5e5;
  --color-bg-soft: #fafafa;
  --color-accent: #1FA4B8;

  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;

  --fz-page-title: clamp(30px, 3vw, 46px);
  --fz-section-title: clamp(22px, 2.2vw, 30px);
  --fz-lead: 18px;
  --fz-body: 17px;
  --fz-small: 14px;

  --lh-heading: 1.6;
  --lh-body: 2.2;

  --tracking-title: .14em;
  --tracking-body: .06em;

  --space-section-pc: 120px;
  --space-section-sp: 80px;
}




/* =========================
   BASE
========================= */
body {
  margin: 0;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.8;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  margin: 0;
  line-height: var(--lh-heading);
}

p {
  margin: 0;
}

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

a {
  color: inherit;
}


/* =========================
   HEADER
========================= */
.header,
.logo {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1300;
  padding: 28px 48px;
  box-sizing: border-box;
  transition: background .45s ease, padding .45s ease, backdrop-filter .45s ease;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-header-brand {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-logo {
  margin: 0;
  line-height: 1;
}

.site-logo a {
  position: relative;
  display: block;
  width: 250px;
  height: 54px;
}

.site-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity .35s ease;
}

.logo-white {
  opacity: 1;
}

.logo-color {
  opacity: 0;
}

.site-header.is-scrolled .logo-white,
body:not(.home) .site-header .logo-white {
  opacity: 0;
}

.site-header.is-scrolled .logo-color,
body:not(.home) .site-header .logo-color {
  opacity: 1;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .12em;
  white-space: nowrap;
  transition: opacity .3s ease, color .3s ease;
}

.site-nav a:hover {
  opacity: .65;
}

.site-nav-inline {
  display: none;
}

.site-nav-right {
  display: block;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  padding: 18px 48px;
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.site-header.is-scrolled .site-nav a,
body:not(.home) .site-header .site-nav a {
  color: #222;
}

/* =========================
   SP MENU
========================= */
.menu-toggle,
.sp-nav {
  display: none;
}

@media (max-width: 768px) {

  .site-nav-inline,
  .site-nav-right,
  .site-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 1600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 30px;
    height: 1px;
    background: #222;
    transition: transform .35s ease, background .35s ease;
  }

  .home .site-header:not(.is-scrolled) .menu-toggle span {
    background: #fff;
  }

  body.is-menu-open .site-header {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,.05);
  }

  body.is-menu-open .site-header .logo-white {
    opacity: 0;
  }

  body.is-menu-open .site-header .logo-color {
    opacity: 1;
  }

  body.home.is-menu-open .site-header .menu-toggle span,
  body.is-menu-open .site-header .menu-toggle span {
    background: #222;
  }

  body.is-menu-open .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(24deg);
  }

  body.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-24deg);
  }

  body.is-menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0,0,0,.24);
  }

  .sp-nav {
    position: fixed;
    top: 94px;
    left: 20px;
    right: 20px;
    z-index: 1500;
    display: block;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 18px 48px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
  }

  body.is-menu-open .sp-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sp-nav ul {
    margin: 0;
    padding: 14px 0;
    list-style: none;
    text-align: center;
  }

  .sp-nav li {
    margin: 0;
    border-bottom: 1px solid #eee;
  }

  .sp-nav li:last-child {
    border-bottom: none;
  }

  .sp-nav a {
    display: block;
    padding: 20px 28px;
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    letter-spacing: .12em;
    color: #222;
    text-decoration: none;
  }

  body.is-menu-open {
    overflow: hidden;
  }
}

/* =========================
   LAYOUT
========================= */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: var(--fz-section-title);
  font-weight: 300;
  line-height: var(--lh-heading);
  letter-spacing: var(--tracking-title);
  margin-bottom: 50px;
}

/* =========================
   FV
========================= */
.fv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #111;
}

.fv-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fv-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.045);
  transition:
    opacity 1.8s ease,
    transform 8s ease;
}

.fv-slide.is-active {
  opacity: 1;
  transform: scale(1.015);
}

.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.30);
}

.fv-text {
  position: relative;
  z-index: 3;
  max-width: 960px;
  padding: 0 20px;
}

.fv h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: .16em;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1.4;
  letter-spacing: .04em;
}

.fv h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateX(20px);
  animation: fvPhraseFade 1s ease forwards;
}

.fv h2 span:nth-child(1) {
  animation-delay: .35s;
}

.fv h2 span:nth-child(2) {
  animation-delay: .8s;
}

.fv h2 span:nth-child(4) {
  animation-delay: 1.25s;
}

.break-sp {
  display: none !important;
}

.fv p {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: .1em;
  opacity: 0;
  transform: translateY(8px);
  animation: fvSubFade 1.2s ease 1.9s forwards;
}

@keyframes fvPhraseFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fvSubFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   CONCEPT
========================= */
.concept {
  text-align: center;
  padding: 185px 20px 80px;
}

.concept p {
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  line-height: 2;
}


/* =========================
   WORKS TOP LIST
========================= */

.works {
  padding: 60px 20px 130px;
}

.works .inner {
  max-width: 1120px;
  padding-top: 0;
  padding-bottom: 0;
}

.works .section-title {
  margin-bottom: 28px;
}

.works-lead {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: var(--tracking-body);
  color: var(--color-text-soft);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

.works-card {
  margin: 0;
}

.works-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.works-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f1f1;
}

.works-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform .75s ease;
}

.works-card-link:hover .works-img img {
  transform: scale(1.025);
}

.works-card-body {
  margin-top: 22px;
  text-align: center;
}

.works-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: .1em;
  color: var(--color-text);
}

.works-view {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  color: var(--color-muted);
}

.works-more {
  text-align: center;
  margin-top: 72px;
}

@media (max-width: 768px) {

  .works {
    padding: 50px 20px 110px;
  }

  .works-lead {
    margin-bottom: 44px;
    font-size: 15px;
    line-height: 2;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .works-card-body {
    margin-top: 18px;
  }

  .works-title {
    font-size: 16px;
  }

  .works-more {
    margin-top: 60px;
  }
}

/* =========================
   WORKS ARCHIVE PAGE
========================= */
.works-archive {
  padding-top: 0;
}

.works-archive-hero {
  text-align: center;
  padding: 170px 20px 60px;
}

.works-archive-title {
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .14em;
  margin-bottom: 24px;
}

.works-archive-lead {
  font-size: 14px;
  color: #666;
  letter-spacing: .08em;
}

.works-archive-list {
  padding: 40px 20px 120px;
}

.works-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.works-archive-link {
  text-decoration: none;
  display: block;
}

.works-archive-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.works-archive-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transition: transform .5s ease;
}

.works-archive-link:hover img {
  transform: scale(1.05);
}

.works-archive-text {
  text-align: center;
  margin-top: 18px;
}

.works-archive-text h2 {
  font-size: 15px;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.works-archive-text p {
  font-size: 12px;
  color: #777;
}

/* =========================
   WORKS SINGLE
========================= */
.works-single {
  padding-top: 80px;
}

.works-hero {
  padding: 80px 20px 40px;
}

.works-single-title {
  text-align: center;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .12em;
  margin-bottom: 50px;
}

.works-main-image {
  max-width: 1100px;
  margin: 0 auto 80px;
}

.works-main-image img {
  width: 100%;
  height: auto;
}

.works-content {
  padding: 20px 20px 80px;
}

.works-content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.works-content-inner p {
  max-width: 700px;
  margin: 0 auto 3em;
  font-size: 15px;
}

/* =========================
   WORKS INFO
========================= */
.works-info {
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 55px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.works-info dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 80px;
  margin: 0 0 60px;
}

.works-info dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: baseline;
}

.works-info dt {
  margin: 0;
  font-size: 13px;
  letter-spacing: .12em;
  color: #777;
}

.works-info dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #222;
}

.works-concept {
  text-align: center;
}

.works-concept h2 {
  font-size: 16px;
  letter-spacing: .22em;
  margin-bottom: 26px;
  color: #666;
  font-weight: 400;
}

.works-concept p {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  line-height: 2.4;
  letter-spacing: .08em;
  color: #333;
}

/* =========================
   WORKS SINGLE GALLERY
========================= */
.works-content-inner .wp-block-gallery,
.works-content-inner .wp-block-gallery.has-nested-images {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 40px !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  align-items: start !important;
}

.works-content-inner .wp-block-gallery figure,
.works-content-inner .wp-block-gallery.has-nested-images figure,
.works-content-inner .wp-block-gallery.has-nested-images figure.wp-block-image,
.works-content-inner .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image {
  width: 100% !important;
  max-width: none !important;
  flex-grow: 0 !important;
  margin: 0 !important;
}

.works-content-inner .wp-block-gallery figure.is-landscape,
.works-content-inner .wp-block-gallery.has-nested-images figure.is-landscape {
  grid-column: 1 / -1 !important;
}

.works-content-inner .wp-block-gallery figure.is-portrait,
.works-content-inner .wp-block-gallery figure.is-square,
.works-content-inner .wp-block-gallery.has-nested-images figure.is-portrait,
.works-content-inner .wp-block-gallery.has-nested-images figure.is-square {
  grid-column: auto !important;
}

.works-content-inner .wp-block-gallery figure.is-portrait-single,
.works-content-inner .wp-block-gallery.has-nested-images figure.is-portrait-single {
  grid-column: 1 / -1 !important;
  max-width: 520px !important;
  margin: 0 auto !important;
}

.works-content-inner .wp-block-gallery img,
.works-content-inner .wp-block-gallery.has-nested-images img {
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  display: block !important;
}

.works-content-inner > figure {
  max-width: 1100px;
  margin: 0 auto 70px;
}

.works-content-inner > figure img {
  width: 100%;
  height: auto;
}

.wp-element-caption {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 10px;
}

.works-back {
  text-align: center;
  padding: 60px 20px 120px;
}

/* =========================
   PDF Download
========================= */
.works-pdf {
  text-align: center;
  margin: 96px 0 64px;
}

.works-pdf a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 380px;
  padding: 22px 46px;
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 0 8px 24px rgba(0,0,0,.045);
  color: #222;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: .08em;
  line-height: 1;
  transition: all .35s ease;
}

.works-pdf a::before {
  content: "PDF";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 32px;
  background: #1FA4B8;
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
}

.works-pdf a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.09);
}

/* =========================
   Works Navigation
========================= */

.works-nav{
  max-width:1100px;
  margin:80px auto 140px;
  padding:40px 20px 0;
  border-top:1px solid #e5e5e5;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  box-sizing:border-box;
}

.works-nav-prev,
.works-nav-next{
  flex:1;
  min-width:0;
}

.works-nav-center{
  flex:0 0 auto;
}

.works-nav-prev{
  text-align:left;
}

.works-nav-next{
  text-align:right;
}

.works-nav-prev a,
.works-nav-next a{
  color:#666;
  text-decoration:none;
  font-size:14px;
  letter-spacing:.06em;
  transition:.3s;
}

.works-nav-prev a:hover,
.works-nav-next a:hover{
  color:#2db6c8;
}

@media (max-width:768px){

  .works-nav{
    flex-direction:column;
    gap:18px;
    text-align:center;
  }

  .works-nav-prev,
  .works-nav-next{
    text-align:center;
  }

}

/* =========================
   COMPANY PAGE
========================= */
.company-page {
  padding-top: 0;
}

.company-hero {
  text-align: center;
  padding: 170px 20px 70px;
}

.company-title {
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: .16em;
  margin-bottom: 32px;
}

.company-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: .08em;
}

.company-overview {
  padding: 60px 20px 80px;
}

.company-info {
  max-width: 900px;
  margin: 0 auto;
  padding: 55px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.company-info dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 80px;
  margin: 0;
}

.company-info dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
}

.company-info dt {
  font-size: 13px;
  letter-spacing: .12em;
  color: #777;
}

.company-info dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.company-access {
  padding: 60px 20px 100px;
}

.company-map {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
}

.company-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.company-address {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: .08em;
  color: #555;
}

.company-contact {
  text-align: center;
  padding: 80px 20px 140px;
}

.company-contact p {
  margin-bottom: 32px;
  font-family: var(--font-serif);
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  letter-spacing: var(--tracking-body);
  color: var(--color-text-soft);
}

/* =========================
   COMPANY MESSAGE
========================= */

.company-message {
  padding: 90px 20px 80px;
}

.company-message-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
}

.company-message-label {
  margin-bottom: 18px;
  text-align: center;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--color-accent);
}

.company-message-title {
  margin-bottom: 72px;
  text-align: center;
  font-size: var(--fz-page-title);
  line-height: var(--lh-heading);
  letter-spacing: var(--tracking-title);
}

.company-message-text {
  max-width: 760px;
  margin: 0 auto;
}

.company-message-text p {
  margin: 0 0 1.65em;
  font-family: var(--font-serif);
  font-size: var(--fz-body);
  line-height: 2.35;
  letter-spacing: var(--tracking-body);
  color: var(--color-text-soft);
  text-align: left;
}

.company-message-sign {
  margin-top: 56px !important;
  text-align: right;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  line-height: 2 !important;
  letter-spacing: .06em;
  color: #333 !important;
}

@media (max-width: 768px) {
  .company-message {
    padding: 70px 20px 60px;
  }

  .company-message-title {
    margin-bottom: 38px;
    font-size: 24px;
  }

  .company-message-text {
    max-width: none;
  }

  .company-message-text p {
    font-size: 15px;
    line-height: 2.15;
  }

  .company-message-sign {
    text-align: left;
  }
}

/* =========================
   CONTACT PAGE
========================= */
.contact-page {
  padding-top: 0;
}

.contact-hero {
  text-align: center;
  padding: 170px 20px 70px;
}

.contact-title {
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .12em;
  margin-bottom: 32px;
}

.contact-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: .08em;
}

.contact-form-section {
  padding: 40px 20px 150px;
}

.contact-form-inner {
  max-width: 1000px;
}

.contact-form {
  padding: 70px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.form-section {
  margin-bottom: 72px;
}

.form-section:last-of-type {
  margin-bottom: 58px;
}

.form-section h2 {
  font-size: 19px;
  letter-spacing: .18em;
  margin-bottom: 38px;
  color: #333;
}

.form-label {
  margin: 0 0 16px;
  font-size: 14px;
  letter-spacing: .08em;
  color: #333;
}

.form-label span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  background: #1FA4B8;
  color: #fff;
  font-size: 10px;
  letter-spacing: .08em;
  vertical-align: middle;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 28px;
  padding: 15px 17px;
  border: 1px solid #ececec;
  border-radius: 0;
  background: #f6f6f6;
  color: #222;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.7;
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.contact-form textarea {
  min-height: 230px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: #1FA4B8;
  box-shadow: 0 0 0 3px rgba(31,164,184,.12);
}

.contact-form .wpcf7-form-control-wrap[data-name="request-type"],
.contact-form .wpcf7-form-control-wrap[data-name="land-status"],
.contact-form .wpcf7-form-control-wrap[data-name="budget"] {
  display: block;
  padding: 24px 28px 12px;
  margin: 0 0 32px;
  background: #fafafa;
  border: 1px solid #eee;
}

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

.wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: .04em;
}

.contact-form input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #1FA4B8;
}

.form-submit {
  text-align: center;
  margin-top: 78px;
}

.contact-form input[type="submit"] {
  min-width: 320px;
  padding: 18px 48px;
  border: none;
  background: #1FA4B8;
  color: #fff;
  font-size: 16px;
  letter-spacing: .14em;
  cursor: pointer;
  transition: opacity .3s ease, transform .3s ease;
}

.contact-form input[type="submit"]:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
  margin-top: -18px;
  margin-bottom: 20px;
  font-size: 12px;
}

.wpcf7-response-output {
  margin: 40px 0 0 !important;
  padding: 16px 20px !important;
  border-color: #1FA4B8 !important;
  font-size: 14px;
  text-align: center;
}

/* =========================
   THANKS PAGE
========================= */
.thanks-page {
  padding-top: 0;
}

.thanks-hero {
  text-align: center;
  padding: 190px 20px 150px;
}

.thanks-title {
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: .14em;
  margin-bottom: 36px;
}

.thanks-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: .08em;
  margin-bottom: 44px;
}

.thanks-copy {
  max-width: 720px;
  margin: 0 auto 54px;
}

.thanks-copy p {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  line-height: 2.3;
  color: #555;
  letter-spacing: .06em;
}

.thanks-note {
  max-width: 720px;
  margin: 0 auto 56px;
  padding: 34px 40px;
  background: #fcfcfc;
  border: 1px solid #efefef;
  box-shadow: 0 8px 26px rgba(0,0,0,.03);
}

.thanks-note p {
  font-size: 14px;
  line-height: 2;
  color: #555;
  letter-spacing: .06em;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
  margin-top: 12px;
}

.thanks-link {
  font-size: 14px;
  letter-spacing: .08em;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #aaa;
  padding-bottom: 4px;
  transition: opacity .3s ease;
}

.thanks-link:hover {
  opacity: .6;
}

/* =========================
   ABOUT
========================= */
.about {
  padding: 80px 20px;
}

.about-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-wrap img {
  width: 320px;
}

.about h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* =========================
   SERVICE
========================= */
.service {
  text-align: center;
  padding: 60px 20px;
}

.service p {
  font-size: 18px;
  margin-bottom: 10px;
}

/* =========================
   CONTACT CTA
========================= */

.contact {
  text-align: center;
  padding: 120px 20px 150px;
}

.contact p {
  margin: 0 0 42px;
  font-family: var(--font-serif);
  font-size: var(--fz-body);
  line-height: 2.2;
  letter-spacing: var(--tracking-body);
  color: var(--color-text-soft);
}

.contact .btn {
  min-width: 180px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: #1FA4B8;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(31,164,184,.18);
  transition: all .35s ease;
}

.btn:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(31,164,184,.24);
}

/* =========================
   FOOTER
========================= */
.footer {
  display: none;
}

.site-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 80px 20px 40px;
  text-align: center;
}

.site-footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 28px;
}

.footer-logo img {
  width: 220px;
  height: auto;
  margin: 0 auto;
}

.footer-info {
  margin-bottom: 34px;
  font-size: 13px;
  line-height: 2;
  color: #555;
  letter-spacing: .06em;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 46px;
}

.footer-nav a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  letter-spacing: .08em;
  transition: opacity .3s ease;
}

.footer-nav a:hover {
  opacity: .6;
}

.footer-copy {
  font-size: 11px;
  color: #999;
  letter-spacing: .06em;
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  .fv::before,
  .fv h2,
  .fv p {
    animation: none;
  }

  .fv h2,
  .fv p {
    opacity: 1;
    transform: none;
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  .inner {
    padding: 60px 20px;
  }

  .site-header {
    padding: 18px 20px;
  }

  .site-header.is-scrolled,
  body:not(.home) .site-header {
    padding: 14px 20px;
  }

  .site-header-inner {
    justify-content: space-between;
  }

.site-logo a {
  width: 300px;
  height: 78px;
}

  .site-nav-inline,
  .site-nav-right,
  .site-nav {
    display: none;
  }

  .fv {
    height: 80vh;
  }

  .fv h2 {
    flex-wrap: wrap;
    gap: .12em;
    font-size: 32px;
    line-height: 1.6;
  }

  .break-sp {
    display: block !important;
    flex-basis: 100%;
    height: 0;
  }

  .fv p {
    font-size: 12px;
  }

  .concept p {
    font-size: 18px;
  }

  .works-grid,
  .works-archive-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .works-archive-hero,
  .company-hero,
  .contact-hero {
    padding: 130px 20px 50px;
  }

  .works-info {
    padding: 40px 0;
    margin-bottom: 70px;
  }

  .works-info dl {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 50px;
  }

  .works-info dl div,
  .company-info dl div {
    grid-template-columns: 90px 1fr;
    gap: 14px;
  }

  .works-info dt,
  .company-info dt {
    font-size: 12px;
  }

  .works-info dd,
  .company-info dd {
    font-size: 14px;
  }

  .works-concept h2 {
    font-size: 14px;
  }

  .works-concept p {
    font-size: 16px;
    line-height: 2.2;
  }

  .works-content-inner .wp-block-gallery,
  .works-content-inner .wp-block-gallery.has-nested-images {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .works-content-inner .wp-block-gallery figure.is-landscape,
  .works-content-inner .wp-block-gallery figure.is-portrait,
  .works-content-inner .wp-block-gallery figure.is-square,
  .works-content-inner .wp-block-gallery figure.is-portrait-single,
  .works-content-inner .wp-block-gallery.has-nested-images figure.is-landscape,
  .works-content-inner .wp-block-gallery.has-nested-images figure.is-portrait,
  .works-content-inner .wp-block-gallery.has-nested-images figure.is-square,
  .works-content-inner .wp-block-gallery.has-nested-images figure.is-portrait-single {
    grid-column: auto !important;
    max-width: none !important;
  }

  .works-pdf a {
    min-width: auto;
    width: 100%;
    max-width: 340px;
    padding: 18px 24px;
    font-size: 14px;
  }

  .company-lead,
  .contact-lead,
  .thanks-lead {
    font-size: 16px;
  }

  .company-info {
    padding: 40px 0;
  }

  .company-info dl {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .company-map {
    aspect-ratio: 4 / 3;
  }

  .contact-form-section {
    padding: 30px 20px 120px;
  }

  .contact-form {
    padding: 42px 0;
  }

  .form-section {
    margin-bottom: 52px;
  }

  .form-section h2 {
    font-size: 16px;
  }

  .contact-form .wpcf7-form-control-wrap[data-name="request-type"],
  .contact-form .wpcf7-form-control-wrap[data-name="land-status"],
  .contact-form .wpcf7-form-control-wrap[data-name="budget"] {
    padding: 20px 18px 8px;
  }

  .wpcf7-list-item label {
    align-items: flex-start;
  }

  .contact-form input[type="submit"] {
    width: 100%;
    max-width: 340px;
    min-width: auto;
  }

  .thanks-hero {
    padding: 150px 20px 110px;
  }

  .thanks-copy p {
    font-size: 16px;
  }

  .thanks-note {
    padding: 26px 22px;
  }

  .thanks-actions {
    flex-direction: column;
    gap: 22px;
  }

  .about-wrap {
    flex-direction: column;
    text-align: center;
  }

  .about-wrap img {
    width: 100%;
  }

  .site-footer {
    padding: 64px 20px 36px;
  }

  .footer-logo img {
    width: 190px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
}


/* =========================
   STANDARD PAGE
========================= */

.page-standard {
  padding-top: 0;
}

.page-standard-hero {
  text-align: center;
  padding: 170px 20px 80px;
}

.page-standard-title {
  font-size: var(--fz-page-title);
  line-height: var(--lh-heading);
  letter-spacing: var(--tracking-title);
}

.page-standard-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px 140px;
}

.page-standard-body h2 {
  margin: 72px 0 28px;
  font-size: var(--fz-section-title);
  line-height: var(--lh-heading);
  letter-spacing: var(--tracking-title);
}

.page-standard-body h3 {
  margin: 52px 0 18px;
  font-size: 20px;
  line-height: var(--lh-heading);
  letter-spacing: .12em;
}

.page-standard-body p,
.page-standard-body li {
  font-family: var(--font-serif);
  font-size: var(--fz-body);
  line-height: 2.25;
  letter-spacing: var(--tracking-body);
  color: var(--color-text-soft);
}

.page-standard-body p {
  margin: 0 0 1.8em;
}

.page-standard-body ul,
.page-standard-body ol {
  margin: 0 0 2em 1.4em;
  padding: 0;
}

.page-standard-body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 768px) {
  .page-standard-hero {
    padding: 130px 20px 60px;
  }

  .page-standard-body {
    padding: 10px 20px 100px;
  }

  .page-standard-body h2 {
    margin: 56px 0 24px;
  }

  .page-standard-body h3 {
    margin: 42px 0 16px;
    font-size: 18px;
  }

  .page-standard-body p,
  .page-standard-body li {
    font-size: 16px;
    line-height: 2.15;
  }
}

/* ========================================
   FLOWER WINDOW
======================================== */

.flower-window-section {
  padding: 90px 20px 120px;
  background: #fff;
  text-align: center;
}

.flower-window {
  max-width: 1100px;
  margin: 0 auto;
}

.flower-window-visual {
  --block-size: clamp(170px, 11vw, 240px);

  position: relative;
  display: grid;
  grid-template-columns: repeat(3, var(--block-size));
  width: calc(var(--block-size) * 3);
  height: var(--block-size);
  margin: 0 auto 56px;
  overflow: hidden;
}

.flower-window-bg {
  position: absolute;
  inset: -12%;
  z-index: 1;
  background-image: url('../images/scene/scene-01.webp');
  background-size: cover;
  background-position: center center;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.08);
}

.flower-window-cell {
  position: relative;
  z-index: 2;
  width: var(--block-size);
  height: var(--block-size);
  overflow: hidden;
}

.flower-window-cell img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.flower-window-copy {
  max-width: 760px;
  margin: 0 auto;
}

.flower-window-copy h2 {
  margin: 0 0 48px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.7;
  letter-spacing: var(--tracking-title);
  color: var(--color-text);
}

.flower-window-copy p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--fz-body);
  line-height: 2.35;
  letter-spacing: var(--tracking-body);
  color: var(--color-text-soft);
}

.flower-window-copy .btn {
  margin-top: 68px;
}

@media (max-width: 768px) {

  .flower-window-section {
    padding: 70px 20px 100px;
  }

  .flower-window-visual {
    --block-size: min(30vw, 112px);
    margin-bottom: 46px;
  }

  .flower-window-copy h2 {
    margin-bottom: 38px;
    font-size: clamp(24px, 6vw, 30px);
    line-height: 1.5;
    letter-spacing: .06em;
    white-space: nowrap;
  }

  .flower-window-copy p {
    font-size: 16px;
    line-height: 2.15;
    letter-spacing: .05em;
  }

  .flower-window-copy .btn {
    margin-top: 58px;
  }
}

/* =========================
   GLIGHTBOX CUSTOM
========================= */

.glightbox-container {
  font-family: var(--font-sans);
}

.glightbox-clean .gslide-description {
  display: none;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  opacity: .85;
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  opacity: 1;
}

/* =========================
   WORKS SINGLE SP FIX
========================= */
@media (max-width: 768px) {

  .works-single .works-info {
    width: auto;
    max-width: none;
    margin: 0 24px 90px;
    padding: 48px 0;
  }

  .works-single .works-info dl {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
    max-width: 420px;
    margin: 0 auto 48px;
  }

  .works-single .works-info dl div {
    display: grid;
    grid-template-columns: 6em 1fr !important;
    gap: 0 18px;
    align-items: start;
  }

}