@charset "UTF-8";
/* =========================
   base / variables
   520pxで最小値、1600pxで最大値
========================= */ :root {
  --root-font-size: 100%;
  --font-size-10:
    clamp(.46875rem, calc(6.2963px + .2315vw), .625rem);
  --font-size-12:
    clamp(.5625rem, calc(7.5556px + .2778vw), .75rem);
  --font-size-13:
    clamp(.609375rem, calc(8.1852px + .3009vw), .8125rem);
  --font-size-14:
    clamp(.65625rem, calc(8.8148px + .3241vw), .875rem);
  --font-size-15:
    clamp(.703125rem, calc(9.4444px + .3472vw), .9375rem);
  --font-size-16:
    clamp(.75rem, calc(10.0741px + .3704vw), 1rem);
  --font-size-18:
    clamp(.84375rem, calc(11.3333px + .4167vw), 1.125rem);
  --font-size-20:
    clamp(.9375rem, calc(12.5926px + .463vw), 1.25rem);
  --font-size-21:
    clamp(.984375rem, calc(13.2222px + .4861vw), 1.3125rem);
  --font-size-22:
    clamp(1.03125rem, calc(13.8519px + .5093vw), 1.375rem);
  --font-size-23:
    clamp(1.078125rem, calc(14.4815px + .5324vw), 1.4375rem);
  --font-size-24:
    clamp(1.125rem, calc(15.1111px + .5556vw), 1.5rem);
  --font-size-26:
    clamp(1.21875rem, calc(16.3704px + .6019vw), 1.625rem);
  --font-size-28:
    clamp(1.3125rem, calc(17.6296px + .6481vw), 1.75rem);
  --font-size-30:
    clamp(1.40625rem, calc(18.8889px + .6944vw), 1.875rem);
  --font-size-32:
    clamp(1.5rem, calc(20.1481px + .7407vw), 2rem);
  --font-size-34:
    clamp(1.59375rem, calc(21.4074px + .787vw), 2.125rem);
  --font-size-36:
    clamp(1.6875rem, calc(22.6667px + .8333vw), 2.25rem);
  --font-size-38:
    clamp(1.78125rem, calc(23.9259px + .8796vw), 2.375rem);
  --font-size-40:
    clamp(1.875rem, calc(25.1852px + .9259vw), 2.5rem);
  --font-size-42:
    clamp(1.96875rem, calc(26.4444px + .9722vw), 2.625rem);
  --font-size-46:
    clamp(2.15625rem, calc(28.963px + 1.0648vw), 2.875rem);
  --font-size-48:
    clamp(2.25rem, calc(30.2222px + 1.1111vw), 3rem);
  --font-size-50:
    clamp(2.34375rem, calc(31.4815px + 1.1574vw), 3.125rem);
  --font-size-52:
    clamp(2.4375rem, calc(32.7407px + 1.2037vw), 3.25rem);
  --font-size-56:
    clamp(2.625rem, calc(35.2593px + 1.2963vw), 3.5rem);
  --font-size-60:
    clamp(2.8125rem, calc(37.7778px + 1.3889vw), 3.75rem);
  --font-size-64:
    clamp(3rem, calc(40.2963px + 1.4815vw), 4rem);
  --font-size-72:
    clamp(3.375rem, calc(45.3333px + 1.6667vw), 4.5rem);
  --font-size-100:
    clamp(4.6875rem, calc(62.963px + 2.3148vw), 6.25rem);
  --main-color: #253a1e;
  --main-color-light: #eff4f0;
  --text-color: #26322b;
  --border-color: #d7ddd8;
  --white: #fff;
  --content-width: 1200px;
  --section-space: clamp(4.375rem, 5vw, 6.25rem);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: var(--root-font-size);
}
body {
  margin: 0;
  color: var(--text-color);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: var(--font-size-18);
  line-height: 1.9;
  -webkit-text-size-adjust: 100%;
  overflow-wrap: anywhere;
  padding-top: clamp(120px, 12vw, 190px);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, textarea, select {
  font: inherit;
}
button {
  color: inherit;
}
#container {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
#contents {
  width: 100%;
  margin: 0;
}
.inner{
    width:min(100%,1340px);
    margin:0 auto;
    padding-inline:clamp(1rem,2.5vw,2rem);
    box-sizing:border-box;
}
/* =========================
   header
========================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background-color: #fff;
  border-bottom: solid 1px #ddd;
}
.header-message {
  display: inline-flex;
  align-items: center;
  padding:
    clamp(.7rem, 1vw, 1rem) clamp(2rem, 4vw, 6rem) clamp(.7rem, 1vw, 1rem) clamp(1.5rem, 2.5vw, 3rem);
  color: #fff;
  background: var(--main-color);
  border-radius: 0 0 .75rem 0;
  font-size: var(--font-size-18);
  margin-bottom: .5rem;
  white-space: nowrap;
}
.header-main {
  width: 100%;
  padding: 0 2.5%;
  height: clamp(72px, 7.5vw, 120px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  z-index: 9999;
  box-sizing: border-box;
}
.logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  line-height: 1.15;
}
.logo-ja {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 700;
  white-space: nowrap;
}
.logo-company {
  font-size: var(--font-size-30);
  letter-spacing: 0.1em;
}
.logo-name {
  font-size: var(--font-size-40);
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.logo-en {
  margin-top: .3rem;
  font-size: var(--font-size-16);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: .06em;
}
.global-nav ul {
  display: flex;
  align-items: center;
  gap: 70px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav a {
position:relative;
  font-size: var(--font-size-18);
  font-weight: 700;
  color: #333;
  text-decoration: none;
  transition: .3s;
}
.global-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-.35rem;
  width:100%;
  height:2px;
  background:var(--main-color);
  transform:scaleX(0);
  transform-origin:center;
  transition:.3s ease;
}
.global-nav a:hover::after{
  transform:scaleX(1);
}
.global-nav .nav-contact {
  padding: 1rem 2rem;
  color: #fff;
  background: var(--main-color);
  border-radius: .35rem;
  transition: .3s ease;
}
.global-nav .nav-contact::after {
  display: none;
}
.global-nav .nav-contact:hover{
  opacity:.75;
}
.fa-envelope {
  margin-right: 0.5rem;
}
.menu-button {
  display: none;
}
/* =========================
   hero
========================= */
.hero {
  position: relative;
  min-height: clamp(500px, 38vw, 560px);
  overflow: hidden;
  background: #ebe8df;
}
.hero > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 246, 240, .95) 0%, rgba(248, 246, 240, .84) 42%, rgba(248, 246, 240, .12) 72%);
}
.hero-copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(1.5rem, 4vw, 4rem);
}
.hero-lead {
  margin: 0 0 2rem;
  color: var(--main-color);
  font-family: serif;
  font-size: clamp(1.5rem, calc(10.667px + 3.083vw), 3.75rem);
  line-height: 1.45;
  letter-spacing: .05em;
}
.hero-text {
  margin: 0 0 4rem;
  line-height: 2;
  font-size: var(--font-size-23);
  font-weight: 400;
  letter-spacing: .1em;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(200px, 15vw, 240px);
  min-height: clamp(48px, 3.8vw, 58px);
  padding:
    clamp(.8rem, 1vw, 1.2rem) clamp(2rem, 3vw, 4rem);
  border: 1px solid var(--main-color);
  border-radius: .35rem;
  font-weight: 600;
  transition: .25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
}
.button-dark {
  color: #fff;
  background: var(--main-color);
  font-size: var(--font-size-26);
}
.button-dark i {
  margin-right: 12px;
}
.button-light{
  background:#fff;
  font-size:var(--font-size-21);
  transition:.3s ease;
}

.button-light:hover{
  box-shadow:none;
}

/* =========================
   common section
========================= */
.section {
  padding: var(--section-space) 0;
}
.sec1 {
  padding-top: 3rem;
}
.section-heading {
  margin-bottom: 2rem;
}
.section-heading h2 {
  margin: 0;
  color: var(--main-color);
  font-family: serif;
  font-size: var(--font-size-40);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .05em;
}
.section-heading span {
  display: block;
  margin-top: .35rem;
  font-size: var(--font-size-16);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: .06em;
}
.small-heading {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}
.section-intro {
  margin: -.5rem 0 1.5rem;
  font-size: var(--font-size-20);
  font-weight: 700;
}
h3 {
  font-size: var(--font-size-30);
}
/* =========================
   business
========================= */
.business-list {
  display: flex;
  gap: 1.5rem;
}
.business-card{
  display:flex;
  align-items:center;
  flex:1 1 0;
  gap:clamp(1rem,2vw,1.75rem);
  min-width:0;
  padding:clamp(1.5rem,3vw,4rem);
  border:3px solid #ddd;
  border-radius:.35rem;
  box-shadow:0 1px 4px rgba(0,0,0,.04);
}
.business-card img {
  flex: 0 0 100px;
  width: 100px;
}
.business-card h3 {
  margin: 0 0 .6rem;
  color: var(--main-color);
  font-family: serif;
  font-size: var(--font-size-30);
  font-weight: 500;
}
.business-card p {
  margin: 0;
  font-size: var(--font-size-18);
}
/* =========================
   profile / accordion
========================= */
.sec2 {
  background-color: #f6f8f6;
  width: 100%;
}
.profile-row {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.profile-copy, .contact-box {
  flex: 1 1 0;
  min-width: 0;
}
.profile-copy p, .contact-box p {
  margin: 0 0 1.5rem;
  font-size: var(--font-size-20);
}
.profile-photo{
  width:clamp(240px,26vw,350px);
  margin:0;
  flex-shrink:0;
}

.profile-photo .profile-main{
  display:block;
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}

.profile-sub{
  display:flex;
  gap:clamp(.5rem,1vw,.75rem);
  margin-top:clamp(.5rem,1vw,.75rem);
}

.profile-sub img{
  display:block;
  width:calc((100% - clamp(.5rem,1vw,.75rem)) / 2);
  aspect-ratio:1/1;
  object-fit:cover;
}

@media(max-width:960px) and (min-width:641px){

  .profile-photo{
    order:2;
    width:clamp(220px,24vw,300px);
    flex-shrink:0;
  }

}

@media(max-width:640px){

  .profile-photo{
    width:min(280px,80%);
    margin:2rem auto;
    order:4;
  }

}
.career-button {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .3rem 0;
  border: 0;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  font-size: var(--font-size-21);
}
.career-button span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
  background: var(--main-color);
  border-radius: 50%;
  line-height: 1;
  transition: .25s ease;
}
.career-button[aria-expanded="true"] span{
  transform:none;
}
.contact-box h3 {
  margin: 0 0 1rem;
  color: var(--main-color);
  font-family: serif;
  font-size: var(--font-size-34);
  font-weight: 500;
}
.contact-tel {
  display: block;
  margin-bottom: 1rem;
  color: var(--main-color);
  font-size: var(--font-size-34);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.contact-box .button {
  width: 100%;
  min-width: 0;
}
.contact-box .button-dark {
font-size: var(--font-size-21);
transition:.3s ease;
}
.contact-box .button-dark:hover{
  opacity:.75;
  box-shadow:none;
}
.career-wrap[hidden] {
  display: none;
}
.career-wrap.is-open {
  animation: careerFade .35s ease;
}
@keyframes careerFade {
  from {
    opacity: 0;
    transform: translateY(-10px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
/*=========================
  Career
=========================*/
.career-list {
  border-radius: .5rem;
  background-color: #fff;
}
.career-item {
  padding: 2rem;
  border-bottom: 1px solid #ddd;
}
.career-item:last-child {
  border-bottom: none;
}
/* 上段 */
.career-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
/* 左 */
.career-company {
  margin: 0;
  padding: 1.4rem 1rem;
  background: #f5f6f4;
  text-align: center;
  font-size: var(--font-size-18);
}
/* 右 */
.career-head h3 {
  margin: 0;
  color: var(--main-color);
  font-size: var(--font-size-20);
}
/* 下段 */
.career-text {
  margin: 0;
  font-size: var(--font-size-18);
  line-height: 2;
}
/* =========================
   achievements
========================= */
.achievement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}
.achievement-list li {
  position: relative;
  flex: 1 1 320px;
  padding: 1rem 1.25rem 1rem 4rem;
  border: 3px solid #ddd;
  border-radius: .35rem;
  font-family: serif;
  font-size: var(--font-size-24);
}
.achievement-list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  color: #fff;
  background: var(--main-color);
  border-radius: .2rem;
  transform: translateY(-50%);
  font-size: var(--font-size-20);
}
#sec3 .note {
  margin: 0;
  font-size: var(--font-size-20);
}
/* =========================
   company table
========================= */
.sec4 {
  padding-top: 1rem;
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
}
.company-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: var(--font-size-18);
}
.company-table th, .company-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
  text-align: left;
}
.company-table tr:first-child th, .company-table tr:first-child td {
  border-top: 1px solid var(--border-color);
}
.company-table th {
  width: 20%;
  background-color: #f6f8f6;
}
.company-table ol {
  margin: 0;
  padding-left: 1.4rem;
}
/* =========================
   access
========================= */
.sec5 {
  margin-bottom: 1rem;
}
.office-list {
  display: flex;
  gap: 1.5rem;
}
.office-card {
  flex: 1 1 0;
  min-width: 0;
}
.office-card h3 {
  margin: 0 0 .5rem;
  font-size: var(--font-size-24);
}
.office-card p {
  margin: 0 0 1rem;
  font-size: var(--font-size-20);
}
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8.5;
  overflow: hidden;
  border: 2px solid #76896e;
  border-radius: .35rem;
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* =========================
   contact
========================= */
#contact {
padding-top: 4rem;
}
#contact .section-heading {
text-align: center;
}
#contact .section-heading span {
margin-bottom: 2rem;
}
#contact .note {
font-size: var(--font-size-23);
font-weight: 600;
}
#contact .note span {
display: inline;
color: #ff6600;
font-size: var(--font-size-23);
}

/* =========================
   footer
========================= */
#footer{
  position:relative;
  padding:1.5rem 1rem 2rem;
  color:#fff;
  background:var(--main-color);
  text-align:center;
}

.footer-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.7rem 1.5rem;
  margin-bottom:3rem;
}

.footer-nav a{
  font-size:var(--font-size-20);
}

.footer-nav a + a::before{
  content:"/";
  margin-right:1.5rem;
  opacity:.5;
}

#footer .copyright{
  margin:0;
  opacity:.55;
  font-size:var(--font-size-16);
}

.footer-photos{
  position:absolute;
  top:50%;
  right:1.5rem;
  display:flex;
  gap:.6rem;
  transform:translateY(-50%);
}

.footer-photos img{
  display:block;
  width:clamp(60px,5vw,80px);
  aspect-ratio:1/1;
  object-fit:cover;
  opacity:1;
  border-radius:.2rem;
}

/* smartphone */
@media(max-width:640px){

  .footer-photos{
    position:static;
    justify-content:center;
    margin-top:1rem;
    gap:.4rem;
    transform:none;
  }

  .footer-photos img{
    width:50px;
  }
  
  #footer{
  padding-bottom: 6rem;
  }
  

}
.page-top {
  position: absolute;
  right: 0;
  bottom: 100%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: #708472;
}
/* =========================
   responsive : tablet
========================= */
@media (max-width:960px) {
  .header-main {
    min-height: 82px;
  }
  .global-nav {
    display: none;
  }
  .profile-row {
    flex-wrap: wrap;
  }
  .profile-copy, .contact-box {
    flex: 1 1 42%;
  }

  .career-item {
    grid-template-columns: 1fr;
  }
  .career-company {
    grid-row: auto;
    text-align: left;
  }
}

@media (max-width:960px) and (min-width:641px){

  .profile-row{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:clamp(1.5rem,3vw,3rem);
  }

  .profile-copy{
    order:1;
    flex:1 1 0;
    min-width:0;
  }



  .contact-box{
    order:3;
    flex:0 0 100%;
    width:100%;
  }
  
  #career-panel{
  scroll-margin-top:170px;
}

}


/* =========================
   responsive : smartphone
========================= */
@media (max-width:640px) {
  .header-message {
    width: auto;
    min-width: 0;
    padding:
      .35rem 1.5rem .35rem 1rem;
    white-space: nowrap;
  }
  .header-main {
    gap: 1rem;
    min-height: 72px;
    padding: .75rem 1rem;
  }
  .logo-company {
    font-size: var(--font-size-22);
  }
  .logo-name {
    font-size: var(--font-size-30);
  }
  .logo-en {
    font-size: var(--font-size-12);
  }
  .hero {
    min-height: 600px;
  }
  .hero > img {
    object-position: 65% center;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(248, 246, 240, .88) 0%, rgba(248, 246, 240, .84) 58%, rgba(248, 246, 240, .45) 100%);
  }
  .hero-copy {
    top: 46%;
    left: 1.25rem;
    width: calc(100% - 2.5rem);
  }
  .hero-lead {
    font-size: var(--font-size-36);
    font-weight: 600;
  }
  .hero-text br {
    display: none;
  }
  .hero-buttons, .button {
    width: 100%;
  }
  .button {
    min-width: 0;
  }
  .section {
    padding: 3.75rem 1.25rem;
  }
  .business-list, .office-list {
    flex-direction: column;
  }
  .business-card {
    align-items: flex-start;
    padding: 1.5rem;
  }
  .business-card img {
    flex-basis: 58px;
    width: 58px;
  }
  .career-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }
  .career-company {
    flex: none;
    width: 100%;
    padding: 0;
  }
  .career-head h3 {
    font-size: var(--font-size-24);
  }
  .career-text {
    font-size: var(--font-size-18);
  }
  .profile-row {
    display: flex;
    flex-direction: column;
  }
  .profile-copy {
    display: contents;
  }
  /* 担当者紹介 */
  .profile-copy .section-heading {
    order: 1;
  }
  /* 説明文 */
  .profile-copy > p {
    order: 2;
  }
  /* 経歴ボタン */
  .career-button {
    order: 3;
  }
  #career-panel{
    scroll-margin-top:150px;
}

  .career-wrap {
    order: 5;
  }
  /* お問い合わせ */
  .contact-box {
    order: 6;
  }
  .career-list {
    padding: 0;
  }
  .career-item {
   padding: 1.25rem;
  }
  .company-table {
    min-width: 90%;
  }
.company-table td,
  .company-table th{
  display: block;
  }
  .company-table th{
  width: 100%;
  }
  .office-card + .office-card {
    margin-top: 2rem;
  }
  .office-card p {
    min-height: 0;
  }
  .map-wrap {
    aspect-ratio: 4/3;
  }
  .footer-nav a + a::before {
    display: none;
  }
}
/* =========================
   browser zoom / accessibility
========================= */
@media (max-width:400px) {
  .business-card {
    display: block;
  }
  .business-card img {
    margin-bottom: 1rem;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width:640px) {
.sphd {
display: none
}
}
@media (min-width:641px) {
.pchd {
display: none
}
}

@media (min-width:961px){
  a[href^="tel:"]{
    pointer-events:none;
    cursor:default;
  }
}

[id]:not(#header) {
  scroll-margin-top: clamp(120px, 12vw, 190px);
}

/* =========================
   フッターボタン
========================= */

#footerbtn{
  display:none;
}

@media(max-width:640px){

  #footerbtn{
    position:fixed;
    left:0;
    bottom:0;
    z-index:9998;
    display:block;
    width:100%;
    padding:.5rem;
    opacity:0;
    transform:translateY(100%);
    background:rgba(255,255,255,.95);
    box-sizing:border-box;
    pointer-events:none;
    transition:opacity .6s ease, transform .6s ease;
  }

  #footerbtn.is-visible{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }

  #footerbtn ul{
    display:flex;
    gap:.5rem;
    margin:0;
    padding:0;
    list-style:none;
  }

  #footerbtn li{
    flex:1;
    min-width:0;
  }

  #footerbtn a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.6rem;
    width:100%;
    min-height:52px;
    padding:.7rem .5rem;
    color:#fff;
    background:var(--main-color);
    border-radius:.3rem;
    font-size:var(--font-size-16);
    font-weight:700;
    text-align:center;
    box-sizing:border-box;
  }

  #footerbtn a i{
    font-size:1.1em;
  }

}