@charset "UTF-8";
/*!!!! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Parisienne&display=swap");
html{
  font-size: 16px;
}
body {
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";

  color: #333333;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}
a img {
  border: none;
}

i {
  padding: 0 5px;
}

ul {
  letter-spacing: -1em;
}
ul li {
  letter-spacing: 0;
  list-style: none;
}

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

.tablet {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .tablet {
    display: none;
  }
}

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

.ssp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .ssp {
    display: block;
  }
}

/*PC改行加える*/
.br-pc {
  display: inherit;
}
@media only screen and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

/*PC改行無効*/
.br_sp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .br_sp {
    display: block;
  }
}

.br_ssp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .br_ssp {
    display: block;
  }
}

/************************************

wrapper

************************************/
.wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}


/************************************

header

************************************/
@media print {
  header {
    position: relative;
  }
}

/* ===================================
HEADER
=================================== */
.site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 100;
background: rgba(255, 255, 255, 0.97);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
height: var(--header-height);
transition: var(--transition);
border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
border-bottom-color: var(--color-gray-light);
box-shadow: 0 2px 16px rgba(0, 101, 179, 0.08);
}
.header-inner {
max-width: none;
width: auto;
margin: 0 20px;
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
}
.site-logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
padding: 4px 0;
transition: var(--transition);
}
.site-logo:hover {
opacity: 0.8;
}
.site-logo .logo-mark {
width: auto;
height: 36px;
}
.site-logo .logo-name {
font-family: var(--font-sans);
font-size: 18px;
font-weight: 600;
color: var(--color-text);
letter-spacing: 0.12em;
transition: var(--transition);
}
.nav-logo-sp {
display: none;
}
.nav-sns-sp,
.nav-banner-sp {
display: none;
}
.header-nav a.nav-logo-sp {
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
.header-nav {
display: flex;
align-items: center;
gap: 0;
}
.header-nav a {
font-size: 13px;
font-weight: 500;
color: var(--color-text);
letter-spacing: 0.04em;
padding: 8px 14px;
position: relative;
transition: var(--transition);
}
.header-nav a::after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 2px;
background: var(--color-navy);
transition: var(--transition);
transform: translateX(-50%);
}
.header-nav a:hover {
opacity: 1;
color: var(--color-navy);
}
.header-nav a:hover::after {
width: 80%;
}
.header-nav .nav-icon {
width: 16px;
height: 16px;
flex-shrink: 0;
}
.header-nav .nav-line {
display: inline-flex;
align-items: center;
gap: 6px;
background: #06C755;
color: var(--color-white) !important;
padding: 10px 20px;
border-radius: 4px;
font-size: 13px;
font-weight: 600;
margin-left: 10px;
letter-spacing: 0.06em;
}
.header-nav .nav-line::after { display: none; }
.header-nav .nav-line:hover {
background: #05b54c;
color: var(--color-white) !important;
opacity: 1;
}
.header-nav .nav-contact {
display: inline-flex;
align-items: center;
gap: 6px;
background: var(--color-navy);
color: var(--color-white) !important;
padding: 10px 20px;
border-radius: 4px;
font-size: 13px;
font-weight: 600;
margin-left: 8px;
letter-spacing: 0.06em;
}
.header-nav .nav-contact::after { display: none; }
.header-nav .nav-contact:hover {
background: var(--color-navy-light);
color: var(--color-white) !important;
opacity: 1;
}

/* 1080px 未満〜1025px: ナビが折り返さないよう文字・余白を vw で調整（1024px 以下は従来の SP ナビ） */
@media only screen and (max-width: 1079px) and (min-width: 1025px) {
  .site-logo .logo-name {
    font-size: max(14px, min(18px, 1.68vw));
  }
  .site-logo .logo-mark {
    height: clamp(30px, 3.15vw, 36px);
  }
  .header-nav a {
    font-size: max(11px, min(13px, 1.22vw));
    padding: 8px clamp(6px, 1.05vw, 14px);
  }
  .header-nav .nav-icon {
    width: clamp(14px, 1.45vw, 16px);
    height: clamp(14px, 1.45vw, 16px);
  }
  .header-nav .nav-line,
  .header-nav .nav-contact {
    font-size: max(11px, min(13px, 1.22vw));
    padding: 10px clamp(10px, 1.35vw, 20px);
  }
  .header-nav .nav-line {
    margin-left: clamp(4px, 0.75vw, 10px);
  }
  .header-nav .nav-contact {
    margin-left: clamp(4px, 0.65vw, 8px);
  }
}

/* Hamburger */
.hamburger {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
width: 44px;
height: 44px;
cursor: pointer;
z-index: 200;
background: none;
border: none;
}
.hamburger span {
display: block;
width: 24px;
height: 2px;
background: var(--color-navy);
transition: var(--transition);
}
.hamburger span:nth-child(1) { margin-bottom: 6px; }
.hamburger span:nth-child(2) { margin-bottom: 6px; }
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media only screen and (max-width: 1024px) {
.site-header { height: var(--header-height-sp); }
.hamburger { display: flex; }
.header-nav {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 360px;
height: 100vh;
height: 100dvh;
background: var(--color-white);
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
padding: 32px 32px 40px;
gap: 0;
transition: var(--transition);
z-index: 150;
box-shadow: -4px 0 24px rgba(0,0,0,0.12);
overflow-y: auto;
}
.header-nav.is-open { right: 0; }
.nav-logo-sp {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding-bottom: 28px;
margin-bottom: 12px;
border-bottom: 1px solid var(--color-gray-light);
width: 100%;
}
.nav-logo-mark {
width: auto;
height: 32px;
}
.nav-logo-name {
font-size: 16px;
font-weight: 600;
color: var(--color-text);
letter-spacing: 0.1em;
}
.header-nav a {
font-size: 15px;
padding: 16px 0;
width: 100%;
border-bottom: 1px solid var(--color-gray-light);
}
.header-nav a::after { display: none; }
.header-nav .nav-line {
margin-left: 0;
margin-top: 20px;
width: 100%;
justify-content: center;
padding: 14px;
border-bottom: none;
}
.header-nav .nav-contact {
margin-left: 0;
margin-top: 8px;
width: 100%;
justify-content: center;
padding: 14px;
border-bottom: none;
}
.nav-banner-sp {
display: flex;
align-items: stretch;
width: auto;
max-width: 320px;
margin: 24px auto 0;
border-radius: 12px;
overflow: hidden;
background: #eef1f0;
text-decoration: none;
border-bottom: none;
padding: 0 !important;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
font-size: 13px;
}
.nav-banner-sp-photo {
width: 45%;
flex-shrink: 0;
align-self: stretch;
}
.nav-banner-sp-photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.nav-banner-sp-body {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 10px 10px;
gap: 5px;
}
.nav-banner-sp-logo {
width: 42px;
height: auto;
}
.nav-banner-sp-text {
font-size: 13px;
font-weight: 500;
color: var(--color-text);
line-height: 1.6;
text-align: center;
letter-spacing: 0.06em;
white-space: nowrap;
}
.nav-banner-sp-name {
font-size: 16px;
font-weight: 700;
font-family: var(--font-serif);
color: var(--color-navy);
letter-spacing: 0.1em;
}
.nav-sns-sp {
display: flex;
justify-content: center;
gap: 20px;
width: 100%;
margin-top: 20px;
/*padding-top: 20px;*/
/*border-top: 1px solid var(--color-gray-light);*/
}
.nav-sns-sp a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
color: var(--color-text-light);
border: none;
padding: 0;
border-bottom: none;
}
.nav-sns-sp a:hover { color: var(--color-navy); }
.nav-sns-sp svg {
width: 24px;
height: 24px;
}
.nav-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 74, 138, 0.35);
z-index: 140;
}
.nav-overlay.is-open { display: block; }
}

/* ===================================
CONTACT — full-width 3-column
=================================== */
.section-contact-wide {
background: var(--color-white);
padding: 0;
border-top: 1px solid var(--color-gray-light);
}
.contact-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
width: 100%;
}
.contact-col {
padding: 56px 3%;
text-align: center;
border-right: 1px solid var(--color-gray-light);
}
.contact-col:last-child {
border-right: none;
}
.contact-col-title {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-size: 16px;
font-weight: 700;
color: var(--color-text);
letter-spacing: 0.06em;
margin-bottom: 1.2rem;
}
.contact-icon {
width: 22px;
height: 22px;
color: var(--color-navy);
flex-shrink: 0;
}
.contact-tel {
margin-bottom: 12px;
}
.contact-tel a {
font-family: var(--font-en);
font-size: 28px;
font-weight: 700;
color: var(--color-text);
letter-spacing: 0.04em;
transition: var(--transition);
}
.contact-tel a:hover {
color: var(--color-navy);
opacity: 1;
}
.contact-note {
font-size: 13px;
color: var(--color-text-light);
letter-spacing: 0.04em;
margin-bottom: 1rem;
}
@media only screen and (max-width: 1280px) {
.contact-note {
font-size: .9vw;
}
}
@media only screen and (max-width: 1024px) {
  .contact-note {
    font-size: 13px;
  }
  }
.contact-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 32px;
font-size: 14px;
font-weight: 600;
color: var(--color-navy);
border: 1.5px solid var(--color-navy);
border-radius: 40px;
letter-spacing: 0.06em;
transition: var(--transition);
text-decoration: none;
}
.contact-btn:hover {
background: var(--color-navy);
color: var(--color-white);
opacity: 1;
}

@media only screen and (max-width: 1024px) {
.contact-grid { grid-template-columns: 1fr; }
.contact-col {
border-right: none;
border-bottom: 1px solid var(--color-gray-light);
padding: 36px 28px;
}
.contact-col:last-child { border-bottom: none; }
}
@media only screen and (max-width: 600px) {
.contact-col { padding: 32px 20px; }
.contact-tel a { font-size: 24px; }
}

/* ===================================
FOOTER — two-column layout
=================================== */
.site-footer {
border-top: none;
padding: 0;
background: var(--color-white);
}
.site-footer > .section-contact-wide:first-child {
border-top: 1px solid var(--color-gray-light);
}
.site-footer #footer-contact {
border-bottom: 1px solid var(--color-gray-light);
}
.footer-main {
max-width: var(--wrapper-width);
width: 90%;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
padding: 60px 0 48px;
}
/* ---- 左カラム ---- */
.footer-left {
text-align: left;
}
.footer-logo {
display: inline-flex;
align-items: center;
gap: 10px;
margin-bottom: 28px;
text-decoration: none;
transition: var(--transition);
}
.footer-logo:hover { opacity: 0.7; }
.footer-logo-mark {
width: auto;
height: 32px;
}
.footer-logo-text {
font-size: 18px;
font-weight: 600;
color: var(--color-text);
letter-spacing: 0.12em;
}
.footer-info {
margin-bottom: 28px;
}
.footer-info p {
font-size: 13px;
color: var(--color-text);
line-height: 2;
letter-spacing: 0.04em;
text-align: left;
}
.footer-banner {
display: flex;
align-items: stretch;
max-width: 420px;
border-radius: 12px;
overflow: hidden;
background: #eef1f0;
text-decoration: none;
transition: var(--transition);
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.footer-banner:hover {
opacity: 0.85;
box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.footer-banner-photo {
width: 45%;
flex-shrink: 0;
}
.footer-banner-photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.footer-banner-body {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px 24px;
gap: 10px;
}
.footer-banner-logo {
width: 56px;
height: auto;
}
.footer-banner-text {
font-size: 13px;
font-weight: 500;
color: var(--color-text);
line-height: 1.6;
text-align: center;
letter-spacing: 0.06em;
}
.footer-banner-name {
font-size: 22px;
font-weight: 700;
font-family: var(--font-serif);
color: var(--color-navy);
letter-spacing: 0.1em;
}
/* ---- 右カラム ---- */
.footer-right {
text-align: left;
}
.footer-nav {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
margin-bottom: 28px;
}
.footer-nav a {
font-size: 14px;
color: var(--color-text);
padding: 10px 0;
letter-spacing: 0.04em;
transition: var(--transition);
text-decoration: none;
}
.footer-nav a:hover {
color: var(--color-navy);
opacity: 1;
}
.footer-sns {
display: flex;
gap: 16px;
padding-top: 20px;
/*border-top: 1px solid var(--color-gray-light);*/
}
.footer-sns a {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
color: var(--color-text-light);
transition: var(--transition);
}
.footer-sns a:hover {
color: var(--color-navy);
opacity: 1;
}
.footer-sns svg {
width: 24px;
height: 24px;
}
/* ---- コピーライト ---- */
.footer-copy {
max-width: var(--wrapper-width);
width: 90%;
margin: 0 auto;
padding: 20px 0;
border-top: 1px solid var(--color-gray-light);
text-align: right;
}
.footer-copy small {
font-family: var(--font-en);
font-size: 11px;
color: var(--color-text-light);
letter-spacing: 0.06em;
}

@media only screen and (max-width: 600px) {
.footer-main {
grid-template-columns: 1fr;
gap: 40px;
padding: 40px 0 32px;
}
.footer-nav { grid-template-columns: 1fr; }
.footer-copy { text-align: center; }
}


/************************************

PageUP

************************************/
#pageup {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 5px;
  right: 5px;
  z-index: 10;
  font-size: 8px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#pageup.none {
  display: none;
}
#pageup a {
  width: 50px;
  padding: 36px 0 4px 0;
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 100%;
  color: #555;
}
#pageup a::before {
  position: absolute;
  top: 26px;
  left: 0px;
  right: 0;
  margin: auto;
  border-top: 1px solid #555;
  border-left: 1px solid #555;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

/************************************

main

************************************/
main {
  display: block;
}


/* ===================================
   SECTION COMMON
   =================================== */
.section {
  padding: var(--section-padding) 0;
}
.section-inner {
  max-width: var(--wrapper-width);
  width: 90%;
  margin: 0 auto;
}
.section-title-left {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  text-align: left;
  position: relative;
  padding-bottom: 14px;
}
.section-title-left::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}
.section-header-group {
  text-align: center;
  margin-bottom: 56px;
}
.section-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}
.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: 20px auto 0;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
  margin-top: var(--header-height);
  background: var(--color-white);
  padding: 20px 20px 0;
}
.page-header-frame {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 5;
}
.page-header-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-header-photo-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header-photo-placeholder::after {
  content: "PHOTO";
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.2em;
}
.page-header-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 80px;
  background: var(--color-white);
  border-radius: 0 60px 0 0;
  z-index: 1;
}
.page-header-curve::before,
.page-header-curve::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 10;
  background-size: cover;
}
.page-header-curve::before {
  left: 0;
  top: -20px;
  background-image: url(../images/common_top/wkado_lb20.png);
}
.page-header-curve::after {
  right: -20px;
  bottom: 0;
  background-image: url(../images/common_top/wkado_lb20.png);
}
.page-header-title-area {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding: 0 28px 40px;
}
.page-header-title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 5.5vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0.08em;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
#kanri .page-header-title,
#chosa .page-header-title,
#estate .page-header-title {
  flex-direction: column;
  gap: 8px;
}
.page-header-title small {
  font-size: 20px;
}
.page-header-title-en {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}
.page-header-title-en::before {
  content: "●";
  font-size: 8px;
  margin-right: 4px;
  vertical-align: middle;
}

/* ===================================
   INTRO
   =================================== */
.section-intro {
  background: var(--color-white);
  padding-top: 60px;
}
.intro-heading {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.9;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}
#chosa .intro-heading {
  margin-bottom: 1.5rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.intro-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.intro-text {
  max-width: none;
  margin: 0;
}
.intro-text p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-align: left;
}
.intro-text p + p {
  margin-top: 20px;
}
.intro-text-link {
  display: inline;
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.intro-text-link:hover {
  color: var(--color-navy-light);
  opacity: 0.85;
}
.intro-right {
  display: flex;
  align-items: start;
}
.intro-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.intro-photo-placeholder {
  width: 100%;
  aspect-ratio: 5 / 4;
  background: var(--color-gray-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-photo-placeholder::after {
  content: "PHOTO";
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.2em;
}
.intro-left > .intro-banner {
  display: flex;
  align-items: stretch;
  max-width: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef1f0;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.intro-left > .intro-banner:hover {
  opacity: 0.85;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.intro-banner-photo {
  width: 45%;
  flex-shrink: 0;
}
.intro-banner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-banner-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  gap: 10px;
}
.intro-banner-logo {
  width: 56px;
  height: auto;
}
.intro-banner-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.06em;
}
.intro-banner-name {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-navy);
  letter-spacing: 0.1em;
}

/* ===================================
   BUTTON
   =================================== */
.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 16px 48px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.btn-detail::after {
  content: "→";
  display: inline-block;
  font-size: 16px;
  transition: transform 0.3s ease;
}
.btn-detail:hover {
  background: var(--color-navy-light);
  color: var(--color-white);
  opacity: 1;
}
.btn-detail:hover::after {
  transform: translateX(4px);
}

/* ===================================
   BREADCRUMB
   =================================== */
.breadcrumb {
  margin-top: var(--header-height);
  padding: 20px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
}
.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 13px;
  color: var(--color-text-light);
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
}
.breadcrumb-list li + li::before {
  content: "/";
  margin: 0 10px;
  color: var(--color-gray);
}
.breadcrumb-list a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb-list a:hover {
  color: var(--color-navy);
}

/* ===================================
   PILLAR（サービスページ共通カード）
   =================================== */
.pillar-grid {
  display: grid;
  gap: 20px;
}
#kanri .pillar-grid {
  grid-template-columns: repeat(3, 1fr);
}
#chosa .pillar-grid,
#estate .pillar-grid {
  grid-template-columns: repeat(2, 1fr);
}
.pillar-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 101, 179, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pillar-card:hover {
  box-shadow: 0 12px 40px rgba(0, 101, 179, 0.1);
  transform: translateY(-4px);
}
.pillar-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pillar-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-photo-placeholder::after {
  content: "PHOTO";
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray);
  letter-spacing: 0.2em;
}
.pillar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pillar-card:hover .pillar-card-img img {
  transform: scale(1.05);
}
.pillar-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,74,138,0.70), transparent);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.pillar-img-label .label-text {
  font-size: 11px;
}
.pillar-img-label .label-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.pillar-card-body {
  padding: 24px 20px 29px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pillar-card-body h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 13px;
  letter-spacing: 0.06em;
  text-align: center;
}
.pillar-card-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em;
}
.pillar-card-body p + p {
  margin-top: 10px;
}
.pillar-card-body strong {
  color: var(--color-navy);
  font-weight: 700;
  background: linear-gradient(transparent 55%, var(--color-offwhite) 55%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ===================================
   FAQ
   =================================== */
.section-faq {
  background: var(--color-offwhite);
}
.section-faq-heading {
  margin-bottom: 58px;
}
.section-faq .section-faq-en {
  margin-bottom: 12px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.faq-item.is-open {
  border-color: var(--color-accent);
  box-shadow: 0 4px 28px rgba(0, 160, 233, 0.24);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 24px 26px;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background 0.25s ease;
}
.faq-q:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}
.faq-q:hover {
  background: rgba(0, 160, 233, 0.04);
}
.faq-label {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  border-radius: 7px;
  line-height: 1;
}
.faq-label-q {
  background: #dde3eb;
  color: var(--color-text);
}
.faq-q-text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
  line-height: 1.85;
  padding-top: 5px;
}
.faq-toggle-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  margin-left: 5px;
  border-radius: 7px;
  background: #eef1f5;
  position: relative;
  transition: background 0.25s ease;
}
.faq-toggle-icon::before {
  content: "\FF0B";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  transition: transform 0.3s ease, color 0.25s ease;
}
.faq-item.is-open .faq-toggle-icon::before {
  content: "\2212";
  font-size: 26px;
}
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.is-open .faq-a-wrap {
  grid-template-rows: 1fr;
}
.faq-a-inner {
  min-height: 0;
  overflow: hidden;
}
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin: 0;
  padding: 22px 26px 26px;
  border-top: 1px solid var(--color-gray-light);
}
.faq-label-a {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  font-weight: 800;
  font-size: 23px;
}
.faq-a p {
  flex: 1;
  margin: 0;
  font-size: 17px;
  line-height: 2.1;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  padding-top: 5px;
}

/* ===================================
   CTA
   =================================== */
.section-cta {
  position: relative;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}
.section-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/kanri/cta-bg.webp") center / cover no-repeat;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(252, 253, 255, 0.9) 38%,
    rgba(245, 250, 255, 0.86) 100%
  );
  pointer-events: none;
}
.section-cta .section-inner,
.section-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  width: 90%;
  margin: 0 auto;
}
.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin: 0 0 28px;
  color: var(--color-text);
}
.cta-heading-lead,
.cta-heading-accent {
  color: var(--color-text);
}
.cta-heading-lead {
  display: inline;
}
.cta-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 2.05;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin: 0 auto 40px;
  max-width: 880px;
  width: 100%;
  text-align: left;
  opacity: 0.96;
}
#estate .cta-sub {
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(100%, 280px);
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 160, 233, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}
.cta-btn-pill:hover {
  opacity: 1;
  background: var(--color-navy-light);
  box-shadow: 0 6px 22px rgba(0, 101, 179, 0.35);
  transform: translateY(-2px);
}
.cta-btn-pill:focus-visible {
  outline: 3px solid var(--color-white);
  outline-offset: 3px;
}
.cta-btn-pill-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: block;
}
.cta-btn-pill-icon-line {
  width: 24px;
  height: 24px;
}
.cta-btn-pill-text {
  flex: 0 1 auto;
  text-align: center;
}

/* ===================================
   SHARED LAYOUT — RESPONSIVE
   =================================== */
@media only screen and (max-width: 1024px) {
  .section {
    padding: var(--section-padding-sp) 0;
  }
  .section-header-group {
    margin-bottom: 36px;
  }
  .page-header {
    margin-top: var(--header-height-sp);
    padding: 14px 14px 0;
  }
  .page-header-frame {
    border-radius: 14px;
    aspect-ratio: 16 / 7;
  }
  .page-header-curve {
    height: 60px;
    width: 75%;
    border-radius: 0 40px 0 0;
  }
  .page-header-title-area {
    padding: 16px 20px 32px;
  }
  .page-header-title {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px 16px;
  }
  .page-header-title-en {
    display: block;
    width: 100%;
    margin-top: 4px;
  }
  .section-intro {
    padding-top: 40px;
  }
  .cta-sub {
    font-size: 14px;
    line-height: 2;
  }
  .faq-q-text,
  .faq-a p {
    line-height: 1.6;
  }
  .section-cta {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-right {
    order: -1;
  }
}

@media only screen and (max-width: 600px) {
  .page-header {
    padding: 8px 8px 0;
  }
  .page-header-frame {
    border-radius: 12px;
    aspect-ratio: 4 / 3;
  }
  .page-header-curve {
    height: 48px;
    width: 80%;
    border-radius: 0 32px 0 0;
  }
  .page-header-title-area {
    padding: 12px 16px 24px;
  }
  .page-header-title small {
    font-size: 3.5vw;
  }
  .intro-left {
    gap: 10px;
  }
  .intro-text {
    margin-bottom: 40px;
  }
  .btn-detail {
    font-size: 14px;
    padding: 14px 28px;
  }
  .faq-q {
    padding: 19px 17px;
    gap: 12px;
  }
  .faq-a {
    margin: 0;
    padding: 17px 17px 22px;
    gap: 12px;
  }
  .faq-label {
    width: 41px;
    height: 41px;
    font-size: 18px;
  }
  .faq-toggle-icon {
    width: calc(41px * 0.8);
    height: calc(41px * 0.8);
  }
  .faq-label-a {
    font-size: 20px;
  }
  .faq-toggle-icon::before {
    font-size: calc(20px * 0.8);
  }
  .faq-item.is-open .faq-toggle-icon::before {
    font-size: calc(24px * 0.8);
  }
  .faq-q-text {
    font-size: 17px;
  }
  .faq-a p {
    font-size: 16px;
  }
  .cta-btn-pill {
    width: 100%;
    min-width: auto;
    justify-content: center;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 480px) {
  .cta-heading {
    font-size: 4.2vw;
  }
}

@media only screen and (max-width: 400px) {
  #kanri .page-header-title,
  #chosa .page-header-title,
  #estate .page-header-title {
    font-size: 5.5vw;
  }
}

/* ===================================
ANIMATIONS
=================================== */
.fade-trigger {
opacity: 0;
transform: translateY(40px);
transition: opacity 0.8s, transform 0.8s;
transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-trigger.is-visible {
opacity: 1;
transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/*ズームイン表示*/
.zoomin {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
}

.mv01 {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

/*フェードイン表示*/
.fadein {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
}

.fadein:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv02 {
  opacity: 1;
}

/*移動＋フェードイン表示*/
.fadeup {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.fadeup:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv07 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

@media print {
  .zoomin, .fadein, .fadeup {
    opacity: 1;
  }
}