@keyframes zoomPC {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomSD {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
:root {
  --bk: #000;
  --bk00: rgb(0 0 0 / 0);
  --bk05: rgb(0 0 0 / .05);
  --bk10: rgb(0 0 0 / .10);
  --bk15: rgb(0 0 0 / .15);
  --bk20: rgb(0 0 0 / .20);
  --bk25: rgb(0 0 0 / .25);
  --bk30: rgb(0 0 0 / .30);
  --bk35: rgb(0 0 0 / .35);
  --bk40: rgb(0 0 0 / .40);
  --bk45: rgb(0 0 0 / .45);
  --bk50: rgb(0 0 0 / .50);
  --bk55: rgb(0 0 0 / .55);
  --bk60: rgb(0 0 0 / .60);
  --bk65: rgb(0 0 0 / .65);
  --bk70: rgb(0 0 0 / .70);
  --bk75: rgb(0 0 0 / .75);
  --bk80: rgb(0 0 0 / .80);
  --bk85: rgb(0 0 0 / .85);
  --bk90: rgb(0 0 0 / .90);
  --bk95: rgb(0 0 0 / .95);
  --wh: #fff;
  --wh00: rgb(255 255 255 / 0);
  --wh05: rgb(255 255 255 / .05);
  --wh10: rgb(255 255 255 / .10);
  --wh15: rgb(255 255 255 / .15);
  --wh20: rgb(255 255 255 / .20);
  --wh25: rgb(255 255 255 / .25);
  --wh30: rgb(255 255 255 / .30);
  --wh35: rgb(255 255 255 / .35);
  --wh40: rgb(255 255 255 / .40);
  --wh45: rgb(255 255 255 / .45);
  --wh50: rgb(255 255 255 / .50);
  --wh55: rgb(255 255 255 / .55);
  --wh60: rgb(255 255 255 / .60);
  --wh65: rgb(255 255 255 / .65);
  --wh70: rgb(255 255 255 / .70);
  --wh75: rgb(255 255 255 / .75);
  --wh80: rgb(255 255 255 / .80);
  --wh85: rgb(255 255 255 / .85);
  --wh90: rgb(255 255 255 / .90);
  --wh95: rgb(255 255 255 / .95);
  --key: #55595e;
  --key00: rgb(85 89 94 / 0);
  --key05: rgb(85 89 94 / .05);
  --key10: rgb(85 89 94 / .10);
  --key15: rgb(85 89 94 / .15);
  --key20: rgb(85 89 94 / .20);
  --key25: rgb(85 89 94 / .25);
  --key30: rgb(85 89 94 / .30);
  --key35: rgb(85 89 94 / .35);
  --key40: rgb(85 89 94 / .40);
  --key45: rgb(85 89 94 / .45);
  --key50: rgb(85 89 94 / .50);
  --key55: rgb(85 89 94 / .55);
  --key60: rgb(85 89 94 / .60);
  --key65: rgb(85 89 94 / .65);
  --key70: rgb(85 89 94 / .70);
  --key75: rgb(85 89 94 / .75);
  --key80: rgb(85 89 94 / .80);
  --key85: rgb(85 89 94 / .85);
  --key90: rgb(85 89 94 / .90);
  --key95: rgb(85 89 94 / .95);
  --dark: #1e2028;
  --light: #f2f3f5;
  --border: #dde0e6;
  --sub: #5a6070;
  --silver: #b0b8c8;
  --red: #dc4040;
}

.anniversary {
  position: absolute;
  top: 6rem;
  right: 2.5rem;
  width: 15rem;
  z-index: 2;
}
.anniversary svg {
  width: 100%;
  height: auto;
  fill: var(--wh);
  opacity: 0.8;
}
@media (max-width: 768px) {
  .anniversary {
    width: 33.3333333333vw;
    top: 20vw;
    right: 5vw;
  }
}

.visual {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--key) 100%), url("../images/visual-texture.jpg") center/cover no-repeat;
  background-blend-mode: multiply;
  position: relative;
  overflow: hidden;
  padding-top: 3.75rem;
}
@media (max-width: 768px) {
  .visual {
    padding-top: 12.5vw;
  }
}
.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--wh05) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
}
.visual .visual-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}
@media (max-width: 768px) {
  .visual .visual-inner {
    padding: 16.6666666667vw 8.3333333333vw;
  }
}
.visual .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--silver);
  border: 1px solid var(--wh20);
  padding: 0.5rem 1rem;
  border-radius: 6.25rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .visual .label {
    font-size: 2.5vw;
    padding: 1.6666666667vw 3.3333333333vw;
    margin-bottom: 5vw;
  }
}
.visual h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--wh);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .visual h1 {
    font-size: 10vw;
    margin-bottom: 3.3333333333vw;
  }
}
.visual h1 span {
  display: block;
  color: var(--silver);
  font-weight: 300;
}
.visual .desc {
  font-size: 1.125rem;
  color: var(--wh70);
  line-height: 2;
  letter-spacing: 0.1em;
  max-width: 33.75rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .visual .desc {
    font-size: 3.3333333333vw;
    margin-bottom: 6.6666666667vw;
    max-width: none;
  }
}
.visual .actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .visual .actions {
    gap: 2.5vw;
    justify-content: center;
  }
}
.visual .actions .btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
@media (max-width: 768px) {
  .visual .actions .btn {
    padding: 3.3333333333vw 5.8333333333vw;
    font-size: 3.3333333333vw;
  }
}
.visual .actions .btn.primary {
  background-color: var(--wh);
  color: var(--key);
}
@media (any-hover: hover) {
  .visual .actions .btn.primary:hover, .visual .actions .btn.primary:focus-visible {
    opacity: 1;
    background-color: var(--light);
    transform: translateY(-0.125rem);
  }
}
.visual .actions .btn.outline {
  border: 1.5px solid var(--wh40);
  color: var(--wh);
}
@media (any-hover: hover) {
  .visual .actions .btn.outline:hover, .visual .actions .btn.outline:focus-visible {
    opacity: 1;
    background-color: var(--wh10);
    border-color: var(--wh70);
    transform: translateY(-0.125rem);
  }
}

.main {
  position: relative;
  z-index: 10;
}
.main .anchor {
  position: absolute;
  top: -3.75rem;
  left: 0;
}
@media (max-width: 768px) {
  .main .anchor {
    top: 0;
  }
}
.main a[href^="tel:"] {
  color: var(--key);
  text-decoration: none;
  pointer-events: none;
}
@media (max-width: 768px) {
  .main a[href^="tel:"] {
    pointer-events: all;
    text-decoration: underline;
  }
}

.section {
  position: relative;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 16.6666666667vw 0;
  }
}
.section .subject {
  margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .section .subject {
    margin-bottom: 8.3333333333vw;
  }
}
.section .subject h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .section .subject h2 {
    font-size: 6.6666666667vw;
    margin-bottom: 1.25vw;
  }
}
.section .subject p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section.services {
  background-color: var(--light);
}
.section.services .subject h2 {
  color: var(--bk);
}
.section.services .subject p {
  color: var(--key);
}
.section.services .contents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .section.services .contents {
    gap: 5vw;
  }
}
.section.services .contents > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .section.services .contents > ul {
    grid-template-columns: 1fr;
    gap: 3.3333333333vw;
  }
}
.section.services .contents > ul > .item {
  transition-delay: 0s;
}
.section.services .contents > ul > .item:nth-child(3n+2) {
  transition-delay: 0.1s;
}
.section.services .contents > ul > .item:nth-child(3n+3) {
  transition-delay: 0.2s;
}
@media (max-width: 768px) {
  .section.services .contents > ul > .item {
    transition-delay: 0s;
  }
  .section.services .contents > ul > .item:nth-child(3n+2), .section.services .contents > ul > .item:nth-child(3n+3) {
    transition-delay: 0s;
  }
}
.section.services .group-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--key);
  letter-spacing: 0.1em;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--key);
}
@media (max-width: 768px) {
  .section.services .group-label {
    font-size: 2.5vw;
  }
}
.section.services .item {
  background-color: var(--wh);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
@media (max-width: 768px) {
  .section.services .item {
    padding: 5vw 5vw;
  }
}
@media (any-hover: hover) {
  .section.services .item:hover {
    border-color: var(--key50);
    box-shadow: 0 0.5rem 2rem var(--key10);
    transform: translateY(-0.25rem);
  }
}
.section.services .item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--key);
}
@media (max-width: 768px) {
  .section.services .item h3 {
    font-size: 3.3333333333vw;
  }
}
.section.services .item p {
  font-size: 0.875rem;
  color: var(--sub);
  line-height: 1.9;
}
@media (max-width: 768px) {
  .section.services .item p {
    font-size: 2.9166666667vw;
  }
}

.section.about {
  background-color: var(--wh);
}
.section.about .subject h2 {
  color: var(--bk);
}
.section.about .subject p {
  color: var(--key);
}
.section.about .contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1280px) {
  .section.about .contents {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .section.about .contents {
    grid-template-columns: 1fr;
    gap: 8.3333333333vw;
  }
}
.section.about .map .embed {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0.75rem;
  overflow: hidden;
}
.section.about .map .embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.section.about .text .lead {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bk);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .section.about .text .lead {
    font-size: 3.75vw;
  }
}
.section.about .text p {
  font-size: 1rem;
  color: var(--sub);
  line-height: 1.9;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section.about .text p {
    font-size: 3.3333333333vw;
  }
}
.section.about .text table {
  width: 100%;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .section.about .text table {
    margin-top: 5vw;
  }
}
.section.about .text table tr {
  border-bottom: 1px solid var(--border);
}
.section.about .text table th {
  width: 7.5rem;
  padding: 1rem 1rem 1rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--silver);
  vertical-align: top;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .section.about .text table th {
    font-size: 2.5vw;
    padding: 3.3333333333vw 3.3333333333vw 3.3333333333vw 0;
  }
}
.section.about .text table td {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--bk);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .section.about .text table td {
    font-size: 2.9166666667vw;
    padding: 3.3333333333vw 0;
  }
}
.section.about .text table td a {
  color: var(--key);
}
.section.about .stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .section.about .stats {
    gap: 3.3333333333vw;
  }
}
.section.about .stat {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--light);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 2rem;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
@media (max-width: 768px) {
  .section.about .stat {
    padding: 5vw 5vw;
    gap: 5vw;
  }
}
@media (any-hover: hover) {
  .section.about .stat:hover {
    border-color: var(--key50);
    box-shadow: 0 0.25rem 1.25rem var(--key10);
    transform: translateX(0.25rem);
  }
}
.section.about .stat .num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--key);
  line-height: 1;
  min-width: 5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .section.about .stat .num {
    font-size: 7.5vw;
  }
}
.section.about .stat .num span {
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .section.about .stat .num span {
    font-size: 2.9166666667vw;
  }
}
.section.about .stat .label {
  font-size: 0.75rem;
  color: var(--sub);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .section.about .stat .label {
    font-size: 2.5vw;
  }
}

.section.strengths {
  background-color: var(--light);
}
.section.strengths .subject h2 {
  color: var(--bk);
}
.section.strengths .subject p {
  color: var(--key);
}
.section.strengths .contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .section.strengths .contents {
    grid-template-columns: 1fr;
    gap: 5vw;
  }
}
.section.strengths .contents > .item {
  transition-delay: 0s;
}
.section.strengths .contents > .item:nth-child(2n) {
  transition-delay: 0.12s;
}
@media (max-width: 768px) {
  .section.strengths .contents > .item {
    transition-delay: 0s;
  }
  .section.strengths .contents > .item:nth-child(2n) {
    transition-delay: 0s;
  }
}
.section.strengths .item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .section.strengths .item {
    gap: 3.3333333333vw;
  }
}
.section.strengths .item .num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  min-width: 3.75rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .section.strengths .item .num {
    font-size: 8.3333333333vw;
  }
}
.section.strengths .item .body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .section.strengths .item .body h3 {
    font-size: 3.3333333333vw;
  }
}
.section.strengths .item .body p {
  font-size: 0.875rem;
  color: var(--sub);
  line-height: 1.9;
}
@media (max-width: 768px) {
  .section.strengths .item .body p {
    font-size: 2.9166666667vw;
  }
}

.section.cta {
  background-color: var(--key);
}
.section.cta .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .section.cta .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6.6666666667vw;
  }
}
.section.cta .text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--wh);
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section.cta .text h2 {
    font-size: 5vw;
  }
}
.section.cta .text p {
  color: var(--wh70);
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .section.cta .text p {
    font-size: 3.3333333333vw;
  }
}
.section.cta .actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
@media (max-width: 768px) {
  .section.cta .actions {
    align-items: flex-start;
    gap: 3.3333333333vw;
  }
}
.section.cta .btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background-color: var(--wh);
  color: var(--key);
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}
@media (max-width: 768px) {
  .section.cta .btn {
    padding: 3.3333333333vw 6.6666666667vw;
    font-size: 3.3333333333vw;
  }
}
@media (any-hover: hover) {
  .section.cta .btn:hover, .section.cta .btn:focus-visible {
    opacity: 1;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.5rem var(--bk20);
  }
}
.section.cta .tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}
@media (max-width: 768px) {
  .section.cta .tel {
    align-items: flex-start;
  }
}
.section.cta .tel .label {
  font-size: 0.75rem;
  color: var(--wh60);
}
@media (max-width: 768px) {
  .section.cta .tel .label {
    font-size: 2.5vw;
  }
}
.section.cta .tel .num {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wh);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section.cta .tel .num {
    font-size: 5vw;
  }
}
