@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Inter:wght@300;400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;1,500&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP&family=Roboto:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho&family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');

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

/* reset styles */
html,body,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,img,object,table,caption,tbody,tfoot,thead,tr,th,td,address,iframe,code,pre,strong,em,
fieldset,form,input,select,optgroup,option,textarea,button,legend,label,span{margin:0;padding:0;border:0;background:none;outline:0;font-size:100%;font-style:normal;}
body{line-height:1.8;-webkit-text-size-adjust:none;}
button{line-height:1.6;}
ul,ol{list-style:none;}
img{vertical-align:bottom; /*-webkit-transform: translateZ(0);*/ -webkit-backface-visibility: hidden;}
a,object{outline:0;}
table{border-collapse:collapse;border-spacing:0;}
input,select,button{vertical-align:middle;}
th,td{text-align:left;}

*, *:before, *:after {-webkit-box-sizing: border-box;box-sizing: border-box;}


  :root {
--black:       #000;
--white:       #ffffff;
--gray-bg:     #f0f0f0;
--gray-light:  #f8f8f8;
--gray-mid:    #999999;
--gray-dark:   #555555;
--orange:      #e8500a;
--blue:        #1a5fa8;
--header-h:    52px;
--font-body:   "zen-kaku-gothic-antique", sans-serif, 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
}
html {
scroll-behavior: auto; /* jQuery handles smooth scroll */
font-size: 16px;
}
body {
font-family: var(--font-body);
color: var(--black);
background: var(--white);
line-height: 1.8;
overflow-x: hidden;
}
img {
display: block;
max-width: 100%;
height: auto;
}
a {
color: inherit;
text-decoration: none;
}
/* ─── FADE-IN ANIMATION ─── */
.fade-in {
opacity: 0;
transform: translateY(32px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
.fade-in-left {
opacity: 0;
transform: translateX(-32px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible {
opacity: 1;
transform: translateX(0);
}
.fade-in-right {
opacity: 0;
transform: translateX(32px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible {
opacity: 1;
transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
/* ─── HEADER ─── */
.site-header {
position: sticky;
top: 0;
z-index: 100;
background: var(--white);
border-bottom: 1px solid #e0e0e0;
height: var(--header-h);
display: flex;
align-items: center;
padding: 0 32px;
justify-content: space-between;
}
.site-header__logo {
font-size: 0.875rem;
font-weight: 700;
letter-spacing: 0.05em;
white-space: nowrap;
}
.site-header__nav {
display: flex;
align-items: center;
gap: 28px;
}
.site-header__nav a {
font-size: 0.75rem;
font-weight: 500;
color: var(--black);
transition: color 0.2s;
white-space: nowrap;
}
.site-header__nav a:hover {
color: var(--orange);
}
/* ─── HERO ─── */
.hero {
background: #b9c6ce;
position: relative;
overflow: hidden;
min-height: 400px;
height: 100%;
display: flex;
align-items: flex-end;
align-items: stretch;
padding-top: 77px;
margin-top: 0;
margin-bottom: 60px;
overflow: visible;
}
.hero__inner {
position: relative;
z-index: 2;
width: 100%;
max-width: 1100px;
margin: 0 auto;
/* padding: 0 48px 0; */
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 32px;
height: 400px;
}
.hero__text {
flex: 1;
padding-bottom: min(6vw, 90px);
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: center;
flex-wrap: wrap;
text-align: left;
align-content: center;
}
.hero__heading {
font-size: clamp(1.5rem, 3.2vw, 2.375rem);
font-weight: 900;
line-height: 1.45;
/* letter-spacing: -0.01em; */
letter-spacing: 0.03em;
margin-bottom: 20px;
color: var(--black);
/* font-family: "Zen Kaku Gothic New", sans-serif; */
}
.hero__client {
font-size: 1.2rem;
font-weight: 500;
/* color: var(--gray-dark); */
}
.hero__person {
flex-shrink: 0;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0;
/* font-family: "Zen Kaku Gothic New", sans-serif; */
margin-bottom: 10px;
font-weight: 900;
letter-spacing: 0.18em;
position: relative;
}
.hero__person-role {
font-size: 0.65rem;
/* color: var(--gray-dark); */
/* margin-bottom: 2px; */
text-align: right;
}
.hero__person-name {
font-size: 1.2rem;
font-weight: 700;
text-align: right;
margin-bottom: 0;
}
.hero__photo {
/* width: clamp(220px, 36%, 400px); */
align-self: flex-end;
display: flex;
/* flex-direction: row-reverse; */
align-items: flex-end;
/* width: clamp(220px, 77%, 840px); */
width: clamp(220px, 55%, 600px);
position: absolute;
/* gap: 20px; */
}
.hero__photo-1 {
right: 60%;
flex-direction: row;
}
.hero__photo-2 {
left: 60%;
flex-direction: row-reverse;
}
.hero__photo img {
width: 100%;
object-fit: cover;
position: relative;
}
.hero__photo-1 .hero__person {
margin-left: -90px;
}
.hero__photo-2 .hero__person {
margin-right: -90px;
}
/* ─── MAIN CONTENT WRAPPER ─── */
.content-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 50px;
}
/* ─── SECTION: SPLIT (image + text) ─── */
.split-section {
padding: 65px 0;
/* border-bottom: 1px solid #e8e8e8; */
}
.split-section__inner {
display: grid;
grid-template-columns: 1fr 1fr;
/* gap: 60px; */
gap: 45px;
align-items: start;
}
.split-section--reverse .split-section__inner {
direction: rtl;
}
.split-section--reverse .split-section__inner > * {
direction: ltr;
}
.split-section__img {
position: relative;
}
.split-section__img img {
width: 100%;
border-radius: 4px;
}
.split-section__img-caption {
/* margin-top: 12px; */
text-align: center;
/* position: absolute; */
position: absolute;
bottom: 15px;
left: 15px;
text-align: left;
color: var(--black);
}
.split-section__img-caption .role {
font-size: 0.5rem;
/* color: var(--gray-mid); */
display: block;
/* margin-bottom: 2px; */
}
.split-section__img-caption .name {
font-size: 0.9rem;
font-weight: 700;
}
.split-section__heading {
font-size: clamp(1.1rem, 2vw, 1.65rem);
font-weight: 900;
line-height: 1.5;
margin-bottom: 20px;
color: #0679ab;
}
.split-section__text p {
font-size: 0.95rem;
line-height: 2;
color: #244a65;
margin-bottom: 20px;
}
.split-section__text p:last-child {
margin-bottom: 0;
}
.section1 .split-section__inner {
/* grid-template-columns: 490px 1fr; */
grid-template-columns: min(40.5vw, 490px) 1fr;
gap: 40px;
/* align-items: end; */
}
.section2 .split-section__inner {
/* grid-template-columns: 400px 1fr; */
grid-template-columns: min(33.5vw, 400px) 1fr;
gap: 40px;
}
.section3 .split-section__inner {
/* grid-template-columns: 390px 1fr; */
grid-template-columns: min(32.5vw, 390px) 1fr;
gap: 80px;
}
.split-section.section4 {
padding: 80px 0 150px;
}
.section4 .split-section__inner {
/* grid-template-columns: 390px 1fr; */
grid-template-columns: min(32.5vw, 390px) 1fr;
gap: 80px;
}
/* ─── SECTION: TEXT-ONLY (centered) ─── */
.text-section__heading {
font-size: clamp(1.1rem, 2vw, 1.375rem);
font-weight: 900;
line-height: 1.5;
margin-bottom: 32px;
padding-bottom: 16px;
border-bottom: 3px solid var(--black);
}
.text-section__text p {
font-size: 0.9rem;
line-height: 2;
color: #244a65;
margin-bottom: 20px;
}
.text-section__text p:last-child { margin-bottom: 0; }
.text-section__img img {
width: 100%;
border-radius: 4px;
}
/* other-link */
.other-link {
margin: 0 auto 90px;
}
/* ─── FOOTER ─── */
.site-footer {
background: #222;
color: #888;
text-align: center;
padding: 24px 16px;
font-size: 0.72rem;
}
/* ─── FLOATING CTA ─── */
.float-cta {
position: fixed;
bottom: 28px;
right: 28px;
background: var(--orange);
color: var(--white);
font-size: 0.8rem;
font-weight: 700;
padding: 14px 18px;
border-radius: 8px;
text-align: center;
line-height: 1.5;
cursor: pointer;
z-index: 200;
box-shadow: 0 4px 20px rgba(232,80,10,0.35);
transition: transform 0.2s, box-shadow 0.2s;
}
.float-cta:hover {
transform: translateY(-2px);
box-shadow: 0 8px 28px rgba(232,80,10,0.45);
}
/* ─── RESPONSIVE: MOBILE (≤750px) ─── */
@media (max-width: 750px) {
  :root { --header-h: 52px; }
  .site-header { padding: 0 16px; }
  .site-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 80%;
  max-width: 300px;
  background: var(--white);
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 80px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 200;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  overflow-y: auto;
  }
  .site-header__nav.is-active {
  transform: translateX(0);
  }
  .site-header__nav a {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  }
  span.hero-item {
  transform: translateY(0) translateX(0);
  }
  /* hero mobile */
  .hero { 
  min-height: auto;
  padding-top: 15vw;
  margin-bottom: 0;
  overflow: hidden;
  }
  .hero__inner {
  flex-direction: column;
  align-items: flex-start;
  padding: 0 16px 0;
  gap: 24px;
  height: 82vw;
  }
  .hero__text { 
  justify-content: flex-start;
  padding-bottom: 0;
  padding-top: 8vw;
  }
  .hero__heading {
  margin-bottom: 2.7vw;
  font-size: 5vw;
  letter-spacing: .25vw;
  }
  .hero__client {
  font-size: 2.7vw;
  }
  .hero__photo {
  width: 100%;
  align-self: stretch;
  /* left: 27%; */
  gap: 20px;
  bottom: 0;
  width: 83vw;
  }
  .hero__photo-1 {
  left: -10vw;
  }
  .hero__photo-2 {
  left: 34vw;
  width: 75vw;
  }
  .hero__person { 
  align-items: flex-start;
  margin-bottom: 10.85vw;
  justify-content: center;
  }
  .hero__photo-2 .hero__person {
  margin-bottom: 22.85vw;
  margin-right: -40vw;
  }
  .hero__photo-1 .hero__person {
  margin-bottom: 33.85vw;
  margin-left: -45vw;
  }
  .hero__person-role,
  .hero__person-name { text-align: left; }
  .hero__person-role {
  font-size: 1.8vw;
  }
  .hero__person-name {
  font-size: 3.2vw;
  }
  /* content */
  .content-wrapper { padding: 0 16px; }
  .split-section { 
  padding: 6vw 0; 
  }
  .text-section  { 
  padding: 6vw 0; 
  }
  .split-section__inner {
  grid-template-columns: 1fr;
  /* gap: 24px; */
  gap: 8vw;
  }
  .split-section__img-caption {
  bottom: 3vw;
  left: 3vw;
  }
  .split-section__img-caption .role {
  font-size: 1.8vw;
  }
  .split-section__img-caption .name {
  font-size: 3.2vw;
  }
  .split-section--reverse .split-section__inner {
  direction: ltr;
  grid-template-columns: 1fr;
  }
  .section2 .split-section__inner {
  grid-template-columns: 1fr;
  }
  .section1 .split-section__img {
  width: 78vw;
  }
  .section3 .split-section__inner {
  grid-template-columns: 1fr;
  align-items: end;
  }
  .section3 .split-section__img {
  margin: 0 auto;
  }
  .section2 .split-section__img {
  margin: 0 auto;
  }
  .section2 .split-section__img {
  width: 78vw;
  margin: 0 auto;
  }
  .section4 .split-section__inner {
  grid-template-columns: 1fr;
  }
  .split-section.section4 {
  padding: 6vw 0 0;
  }
  .split-section__img {
  order: 1;
  margin: 0 auto;
  width: 78vw;
  }
  .split-section__heading {
  font-size: 3.7vw;
  margin-bottom: 4vw;
  }
  .text-section__text p,
  .split-section__text p {
  font-size: 2.5vw;
  margin-bottom: 7vw;
  }
  .other-link {
  margin: 18vw auto 14vw;
  }
  header nav {
  height: 100vh;
  }
  footer {
  padding: 4vw 0 18vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-left, .fade-in-right {
  opacity: 1;
  transform: none;
  transition: none;
  }
}