@media (max-width: 567px) {
  :root {
    --1px: calc(100vw / 390);
  }
}
@media (min-width: 567px) and (max-width: 1920px) {
  :root {
    --1px: calc(100vw / 1920);
  }
}
@media (min-width: 1920px) {
  :root {
    --1px: 1px;
  }
}
:root {
  /* Font Sizes */
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 40px;
  /* Shadow */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  /* Transition */
  --transition-base: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--font-size-base);
  font-weight: 400;
  color: #000000;
  background-color: #FFFFFF;
  line-height: 1.8;
  overflow-x: hidden;
  padding-top: calc(116 * var(--1px));
}
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

dd {
  margin-inline-start: 0;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.btn {
  display: inline-block;
  padding: calc(14 * var(--1px)) calc(32 * var(--1px));
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 * var(--1px));
  font-weight: 500;
  text-align: center;
  border-radius: var(--border-radius-lg);
  transition: opacity var(--transition-base);
  cursor: pointer;
  border: none;
}
@media (hover: hover) {
  .btn:hover {
    opacity: 0.85;
  }
}

.btn--primary {
  background-color: #00D226;
  color: #FFFFFF;
}

.btn--outline {
  background-color: transparent;
  color: #00D226;
  border: 2px solid #00D226;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #FFFFFF;
  transition: box-shadow var(--transition-base);
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(80 * var(--1px)) calc(120 * var(--1px)) calc(50 * var(--1px));
}
@media (max-width: 768px) {
  .header__inner {
    padding: 10px 20px;
  }
}

.header__logo-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(30 * var(--1px));
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
  transition: opacity var(--transition-base);
}
@media (hover: hover) {
  .header__logo-link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .header__logo-link {
    font-size: 15px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: calc(40 * var(--1px));
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: calc(52 * var(--1px));
}

.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: calc(8 * var(--1px));
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(20 * var(--1px));
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
  transition: color var(--transition-base);
}
@media (hover: hover) {
  .header__nav-link:hover {
    color: #00D226;
  }
  .header__nav-link:hover::before {
    opacity: 1;
  }
}

.header__nav-link::before {
  content: "";
  width: calc(10 * var(--1px));
  height: calc(10 * var(--1px));
  background-color: #00D226;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.header__contact-btn {
  display: inline-block;
  padding: calc(15 * var(--1px)) calc(24 * var(--1px));
  background-color: #00D226;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(20 * var(--1px));
  font-weight: 700;
  white-space: nowrap;
  border-radius: var(--border-radius-lg);
  transition: opacity var(--transition-base);
}
@media (hover: hover) {
  .header__contact-btn:hover {
    opacity: 0.85;
  }
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__toggle {
    display: flex;
  }
}

.header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000000;
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.header__toggle.is-open .header__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__toggle.is-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-open .header__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  width: 280px;
  max-width: 100%;
  background-color: #FFFFFF;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow-x: hidden;
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.drawer__close-bar {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #000000;
  border-radius: 2px;
}

.drawer__close-bar:nth-child(1) {
  transform: rotate(45deg);
}

.drawer__close-bar:nth-child(2) {
  transform: rotate(-45deg);
}

.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer__link {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #000000;
  padding: 16px 0;
  border-bottom: 1px solid #EEEEEE;
  transition: color var(--transition-base);
}
@media (hover: hover) {
  .drawer__link:hover {
    color: #00D226;
  }
}

.drawer__link--contact {
  display: block;
  padding: 14px 24px;
  background-color: #00D226;
  color: #FFFFFF;
  text-align: center;
  border-radius: var(--border-radius-lg);
  border-bottom: none;
  margin-bottom: 0;
  transition: opacity var(--transition-base);
}
@media (hover: hover) {
  .drawer__link--contact:hover {
    opacity: 0.85;
  }
}

.drawer__item--contact {
  padding-top: 24px;
}

.drawer__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 149;
  background-color: rgba(0, 0, 0, 0.5);
}

.drawer__overlay.is-open {
  display: block;
}

.footer {
  background-image: url("assets/images/footer/footer-bg.webp");
  background-size: cover;
  background-position: center;
  padding: calc(110 * var(--1px)) 0;
  border-radius: calc(40 * var(--1px));
}

.footer__inner {
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: calc(120 * var(--1px));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(40 * var(--1px));
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--1px));
}

.footer__logo {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(32 * var(--1px));
  font-weight: 700;
  color: #000000;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__logo:hover {
    opacity: 0.7;
  }
}

.footer__address {
  font-style: normal;
  font-size: calc(20 * var(--1px));
  color: #000000;
  line-height: 1.8;
}

.footer__tel-wrap {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--1px));
}

.footer__tel-icon {
  width: calc(64 * var(--1px));
  height: calc(64 * var(--1px));
  flex-shrink: 0;
  filter: brightness(0);
  margin-left: calc(-8 * var(--1px));
}

.footer__tel {
  font-family: "Noto Sans", sans-serif;
  font-size: calc(36 * var(--1px));
  font-weight: 700;
  color: #000000;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .footer__tel:hover {
    color: #00D226;
  }
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--1px));
}

.footer__nav-list {
  display: flex;
  align-items: center;
  gap: calc(32 * var(--1px));
  align-self: flex-start;
  margin-bottom: calc(40 * var(--1px));
}

.footer__nav-item {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--1px));
  align-self: flex-start;
}

.footer__nav-item::before {
  content: "";
  display: inline-block;
  width: calc(10 * var(--1px));
  height: calc(10 * var(--1px));
  background-color: #00D226;
  flex-shrink: 0;
}

.footer__nav-link {
  font-size: calc(20 * var(--1px));
  color: #000000;
  transition: color 0.3s ease;
  font-weight: 700;
}
@media (hover: hover) {
  .footer__nav-link:hover {
    color: #00D226;
  }
}

.footer__privacy {
  font-size: calc(20 * var(--1px));
  color: #000000;
  transition: color 0.3s ease;
  align-self: flex-start;
  margin-bottom: calc(5 * var(--1px));
}
@media (hover: hover) {
  .footer__privacy:hover {
    color: #00D226;
  }
}

.footer__copy {
  font-size: calc(14 * var(--1px));
  color: #000000;
  display: block;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
  .footer__inner {
    gap: 32px;
    padding-inline: 20px;
  }
  .footer__right {
    align-items: flex-start;
  }
  .footer__logo {
    font-size: 15px;
  }
  .footer__address {
    font-size: 13px;
  }
  .footer__tel-icon {
    width: 48px;
    height: 48px;
  }
  .footer__tel {
    font-size: 20px;
  }
  .footer__nav-list {
    gap: 24px;
  }
  .footer__nav-link {
    font-size: 14px;
  }
  .footer__privacy {
    font-size: 13px;
  }
  .footer__copy {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 32px 0;
    border-radius: 24px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-inline: 20px;
  }
  .footer__left {
    gap: 12px;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer__logo {
    font-size: 18px;
  }
  .footer__address {
    font-size: 12px;
  }
  .footer__tel-icon {
    width: 32px;
    height: 32px;
  }
  .footer__tel {
    font-size: 18px;
  }
  .footer__right {
    width: 100%;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .footer__nav-list,
  .footer__privacy {
    align-self: center;
  }
  .footer__nav-list {
    gap: 16px;
  }
  .footer__nav-link {
    font-size: 13px;
  }
  .footer__privacy {
    font-size: 12px;
  }
  .footer__copy {
    font-size: 10px;
  }
}
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/1080;
  margin-top: calc(60 * var(--1px));
  margin-bottom: calc(74 * var(--1px));
}
@media (max-width: 567px) {
  .hero {
    --1px: calc(100vw / 1920);
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 250px;
    margin-top: 0;
  }
}

.hero__gallery {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 9999px 0 0 9999px;
}
.hero__gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/images/hero/hero-gallery-bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.hero__gallery-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(12deg) scale(0.6);
  white-space: nowrap;
}

.hero__gallery-row {
  --gw: 2775;
  position: relative;
  font-size: 0;
  white-space: nowrap;
  animation: hero-gallery-l 35s linear 0s infinite;
}

.hero__gallery-row:nth-child(1) {
  animation-duration: 30s;
}

.hero__gallery-row:nth-child(3) {
  animation-duration: 40s;
}

.hero__gallery-row--rev {
  --gw: 2775;
  left: calc(var(--gw) * var(--1px) * -1);
  animation: hero-gallery-r 45s linear 0s infinite;
}

.hero__gallery-list {
  display: inline-block;
  vertical-align: top;
}

.hero__gallery-item {
  display: inline-block;
  width: calc(900 * var(--1px));
  height: calc(600 * var(--1px));
  border-radius: calc(8 * var(--1px));
  overflow: hidden;
  margin-right: calc(25 * var(--1px));
  margin-bottom: calc(25 * var(--1px));
}

.hero__gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

@keyframes hero-gallery-l {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translate3d(calc(var(--gw) * var(--1px) * -1), 0, 0);
  }
}
@keyframes hero-gallery-r {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translate3d(calc(var(--gw) * var(--1px)), 0, 0);
  }
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 calc(40 * var(--1px)) calc(60 * var(--1px)) calc(200 * var(--1px));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
  }
}
@media (max-width: 480px) {
  .hero__content {
    display: block;
    padding: 0;
    background: none;
  }
}

.hero__title {
  position: absolute;
  left: calc(240 * var(--1px));
  top: calc(332 * var(--1px));
  font-size: calc(96 * var(--1px));
  font-weight: 700;
  line-height: 1.3;
  background: radial-gradient(ellipse at center, #89FFDC 0%, #00D227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .hero__title {
    position: absolute;
    font-size: 32px;
    line-height: 1.4;
    background: radial-gradient(ellipse at center, #89FFDC 0%, #00D227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .hero__title {
    position: absolute;
    left: calc(240 * var(--1px));
    top: calc(332 * var(--1px));
    font-size: calc(96 * var(--1px));
    line-height: 1.3;
    margin-bottom: 0;
  }
}

.hero__lead {
  position: absolute;
  left: calc(240 * var(--1px));
  top: calc(656 * var(--1px));
  width: calc(792 * var(--1px));
  font-size: calc(32 * var(--1px));
  font-weight: 700;
  line-height: 1.6;
  color: #FFFFFF;
  text-shadow: calc(0 * var(--1px)) calc(1 * var(--1px)) calc(6.7 * var(--1px)) rgb(0, 0, 0);
}
@media (max-width: 768px) {
  .hero__lead {
    display: block;
    position: absolute;
  }
}
@media (max-width: 480px) {
  .hero__lead {
    position: absolute;
    left: calc(240 * var(--1px));
    top: calc(656 * var(--1px));
    width: calc(792 * var(--1px));
    font-size: calc(32 * var(--1px));
  }
}

.hero__lead--right {
  left: calc(1046 * var(--1px));
  top: calc(794 * var(--1px));
}
@media (max-width: 480px) {
  .hero__lead--right {
    display: block;
  }
}

.section-bg {
  background-color: #6FD1B4;
  background-image: url("assets/images/service/section-bg.webp");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  border-radius: calc(40 * var(--1px));
}

.service {
  position: relative;
  overflow-x: clip;
  padding: calc(165 * var(--1px)) 0 calc(160 * var(--1px));
}

.service__blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 210, 38, 0.4) 0%, rgba(137, 255, 220, 0.4) 100%);
  filter: blur(10px);
  pointer-events: none;
}

.service__blob--right {
  width: calc(333 * var(--1px));
  height: calc(333 * var(--1px));
  top: calc(330 * var(--1px));
  right: calc(-108 * var(--1px));
}

.service__blob--left {
  width: calc(555 * var(--1px));
  height: calc(555 * var(--1px));
  top: calc(672 * var(--1px));
  left: calc(-253 * var(--1px));
}

.service__inner {
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: calc(120 * var(--1px));
  padding-inline: calc(240 * var(--1px));
}

.service__tag {
  display: inline-flex;
  align-items: center;
  gap: calc(20 * var(--1px));
  padding: calc(10 * var(--1px)) calc(30 * var(--1px));
  background-color: #FFFFFF;
  border-radius: calc(24 * var(--1px));
  box-shadow: 0 calc(4 * var(--1px)) calc(16 * var(--1px)) rgba(0, 0, 0, 0.08);
  margin-bottom: calc(-82 * var(--1px));
}

.service__tag-en {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-size: calc(32 * var(--1px));
  font-weight: 900;
  line-height: 1.94;
  letter-spacing: 0;
  color: transparent;
  background-color: #00D226;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 10%);
  background-clip: text;
  -webkit-background-clip: text;
}

.service__tag-ja {
  font-size: calc(20 * var(--1px));
  font-weight: 900;
  color: #00D226;
  white-space: nowrap;
  flex-shrink: 0;
}

.service__layout {
  display: block;
}

.service__bottom {
  display: flex;
  align-items: flex-start;
  gap: calc(48 * var(--1px));
}

.service__content {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: calc(40 * var(--1px));
}
@media (max-width: 480px) {
  .service__content {
    flex-direction: column;
    align-items: center;
  }
}

.service__right {
  display: flex;
  align-items: flex-start;
  gap: calc(15 * var(--1px));
  flex-shrink: 0;
}

.service__slider {
  position: relative;
  width: calc(1017 * var(--1px));
  height: calc(545 * var(--1px));
  margin-inline: auto;
  margin-bottom: calc(40 * var(--1px));
}

.service__slide {
  position: absolute;
  width: calc(559 * var(--1px));
  height: calc(353 * var(--1px));
  border-radius: calc(16 * var(--1px));
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1), top 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, z-index 0s;
}

.service__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__slide.is-pos-front {
  left: 0;
  top: calc(192 * var(--1px));
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
}

.service__slide.is-pos-2 {
  left: calc(152 * var(--1px));
  top: calc(128 * var(--1px));
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
}

.service__slide.is-pos-3 {
  left: calc(304 * var(--1px));
  top: calc(64 * var(--1px));
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.service__slide.is-pos-back {
  left: calc(458 * var(--1px));
  top: 0;
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.service__details {
  width: calc(559 * var(--1px));
  flex-shrink: 0;
}

.service__detail {
  display: none;
}

.service__detail.is-active {
  display: block;
  animation: service-fade-in 0.3s ease;
}

@keyframes service-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service__name {
  font-size: calc(24 * var(--1px));
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: calc(16 * var(--1px));
  color: #000000;
  text-align: center;
}

.service__text {
  font-size: calc(16 * var(--1px));
  font-weight: 500;
  line-height: 1.9;
  color: #000000;
}

.service__arrows {
  display: flex;
  align-self: center;
  border: 1px solid #000000;
  border-radius: calc(10 * var(--1px));
  overflow: hidden;
}

.service__arrow {
  width: calc(109 * var(--1px));
  height: calc(48 * var(--1px));
  background-color: transparent;
  border: none;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.service__arrow:active,
.service__arrow:focus-visible {
  background-color: #000000;
  color: #FFFFFF;
}

.service__arrow.is-pressed {
  background-color: #00D226;
  color: #FFFFFF;
  border-radius: calc(10 * var(--1px));
}

.service__divider {
  display: block;
  width: 1px;
  height: calc(220 * var(--1px));
  background: linear-gradient(180deg, #00d227 0%, #89ffdc 100%);
  flex-shrink: 0;
}

.service__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.service__nav-btn {
  font-size: calc(24 * var(--1px));
  font-weight: 700;
  color: #000000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  line-height: calc(50 * var(--1px));
  opacity: 0.35;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .service__nav-btn:hover {
    opacity: 0.65;
  }
}

.service__nav-item.is-active .service__nav-btn {
  opacity: 1;
}

@media (max-width: 768px) {
  .service {
    padding: 24px 0 32px;
  }
  .service__inner {
    padding-inline: 20px;
  }
  .service__tag {
    gap: 12px;
    margin-bottom: 32px;
    padding: 12px 24px;
  }
  .service__tag-en {
    font-size: 24px;
  }
  .service__tag-ja {
    font-size: 16px;
  }
  .service__bottom {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
  }
  .service__slider {
    width: 100%;
    height: auto;
    aspect-ratio: 845/473;
    margin-bottom: 24px;
  }
  .service__slide {
    width: 66%;
    height: auto;
    aspect-ratio: 559/353;
    border-radius: 10px;
  }
  .service__slide.is-pos-front {
    left: 0;
    top: 25%;
  }
  .service__slide.is-pos-2 {
    left: 11%;
    top: 17%;
  }
  .service__slide.is-pos-3 {
    left: 22%;
    top: 8%;
  }
  .service__slide.is-pos-back {
    left: 34%;
    top: 0;
  }
  .service__details {
    width: 75%;
    margin-bottom: 20px;
  }
  .service__name {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .service__text {
    font-size: 14px;
  }
  .service__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .service__right {
    align-self: auto;
    gap: 28px;
  }
  .service__arrow {
    width: 54px;
    height: 40px;
  }
  .service__divider {
    height: 120px;
  }
  .service__nav-btn {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (max-width: 480px) {
  .service {
    padding: 24px 0 32px;
  }
  .service__tag-en {
    font-size: 20px;
  }
  .service__tag-ja {
    font-size: 14px;
  }
  .service__slide {
    width: 76%;
    border-radius: 8px;
  }
  .service__slide.is-pos-front {
    left: 0;
    top: 24%;
  }
  .service__slide.is-pos-2 {
    left: 8%;
    top: 16%;
  }
  .service__slide.is-pos-3 {
    left: 16%;
    top: 8%;
  }
  .service__slide.is-pos-back {
    left: 24%;
    top: 0;
  }
  .service__arrow {
    width: 44px;
    height: 36px;
  }
  .service__name {
    font-size: 15px;
  }
  .service__text {
    font-size: 13px;
  }
  .service__nav {
    gap: 10px;
  }
  .service__nav-btn {
    font-size: 12px;
  }
}
.company {
  position: relative;
  padding: calc(80 * var(--1px)) 0 0;
  overflow-x: clip;
}

.company__blob {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 210, 38, 0.4) 0%, rgba(137, 255, 220, 0.4) 100%);
  filter: blur(10px);
  pointer-events: none;
}

.company__blob--right {
  width: calc(271 * var(--1px));
  height: calc(271 * var(--1px));
  top: calc(731 * var(--1px));
  right: calc(-135 * var(--1px));
}

.company__marquee {
  position: absolute;
  top: calc(-60 * var(--1px));
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.company__marquee-track {
  display: flex;
  will-change: transform;
  animation: company-marquee 25s linear infinite;
}

.company__marquee-set {
  display: flex;
  gap: calc(100 * var(--1px));
  padding-right: calc(100 * var(--1px));
  flex-shrink: 0;
}

.company__marquee-word {
  font-family: "Noto Sans", sans-serif;
  font-size: calc(200 * var(--1px));
  font-weight: 900;
  color: #00D226;
  opacity: 0.6;
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes company-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.company__panel {
  position: relative;
  z-index: 1;
  padding: calc(80 * var(--1px)) 0 calc(100 * var(--1px));
  margin-left: calc(120 * var(--1px));
  border-radius: calc(44 * var(--1px)) 0 0 calc(44 * var(--1px));
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #00D226, #89FFDC) border-box;
}

.company__inner {
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: calc(120 * var(--1px));
}

.company__tag {
  display: flex;
  align-items: baseline;
  gap: calc(12 * var(--1px));
  margin-bottom: calc(36 * var(--1px));
}

.company__tag-en {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-size: calc(32 * var(--1px));
  font-weight: 900;
  letter-spacing: 0.04em;
  color: transparent;
  background-color: #00D226;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 10%);
  background-clip: text;
  -webkit-background-clip: text;
}

.company__tag-ja {
  font-size: calc(20 * var(--1px));
  font-weight: 900;
  color: #00D226;
}

.company__layout {
  display: flex;
  gap: calc(206 * var(--1px));
  align-items: flex-start;
}

.company__left {
  flex: 1;
  min-width: 0;
  max-width: calc(562 * var(--1px));
  display: flex;
  flex-direction: column;
  gap: calc(48 * var(--1px));
}

.company__right {
  flex: 0 0 calc(672 * var(--1px));
}

.company__text {
  font-size: calc(16 * var(--1px));
  font-weight: 400;
  line-height: 1.9;
  color: #000000;
  margin-bottom: 0;
}

.company__rep {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: calc(28 * var(--1px));
  justify-content: flex-end;
}

.company__rep-title {
  font-size: calc(20 * var(--1px));
  color: #000000;
  line-height: 1.5;
}

.company__rep-name {
  font-size: calc(32 * var(--1px));
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.company__table {
  display: flex;
  flex-direction: column;
}

.company__row {
  display: flex;
  align-items: flex-start;
  gap: calc(40 * var(--1px));
  padding: calc(18 * var(--1px)) 0;
  border-bottom: 1px solid #000;
}

.company__term {
  flex: 0 0 calc(80 * var(--1px));
  font-size: calc(20 * var(--1px));
  font-weight: 500;
  color: #00D226;
  line-height: 1.8;
}

.company__desc {
  flex: 1;
  font-size: calc(20 * var(--1px));
  font-weight: 400;
  line-height: 1.8;
  color: #000000;
}

.company__desc a {
  color: #000000;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .company__desc a:hover {
    color: #00D226;
  }
}

@media (max-width: 768px) {
  .company {
    padding: 0px 0 0;
    padding-inline: 20px;
  }
  .company__inner {
    padding-inline: 40px;
  }
  .company__marquee {
    top: -52px;
  }
  .company__marquee-word {
    font-size: 64px;
  }
  .company__marquee-set {
    gap: 40px;
    padding-right: 40px;
  }
  .company__panel {
    margin-left: 0;
    border: none;
    background: white;
    padding: 48px 0 60px;
    border-radius: 44px;
  }
  .company__tag {
    margin-bottom: 32px;
  }
  .company__tag-en {
    font-size: 24px;
  }
  .company__tag-ja {
    font-size: 16px;
  }
  .company__layout {
    flex-direction: column;
    gap: 48px;
  }
  .company__left {
    max-width: none;
  }
  .company__right {
    flex: none;
    width: 100%;
  }
  .company__text {
    font-size: 14px;
  }
  .company__rep-title {
    font-size: 14px;
  }
  .company__rep-name {
    font-size: 24px;
  }
  .company__term {
    flex: 0 0 80px;
    font-size: 14px;
  }
  .company__desc {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .company__marquee {
    top: calc(-40 * var(--1px));
  }
  .company__marquee-word {
    font-size: 40px;
  }
  .company__marquee-set {
    gap: 24px;
    padding-right: 24px;
  }
  .company__panel {
    padding: 40px 0 48px;
  }
  .company__tag-en {
    font-size: 20px;
  }
  .company__row {
    flex-direction: column;
    gap: 8px;
  }
  .company__term {
    flex: none;
  }
  .company__rep-title {
    font-size: 13px;
  }
  .company__rep-name {
    font-size: 18px;
  }
}
.contact {
  position: relative;
  padding: calc(275 * var(--1px)) 0 calc(24 * var(--1px));
  overflow-x: clip;
}

.contact__blob {
  position: absolute;
  z-index: 0;
  width: calc(503 * var(--1px));
  height: calc(503 * var(--1px));
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 210, 38, 0.36) 0%, rgba(137, 255, 220, 0.36) 100%);
  filter: blur(10px);
  pointer-events: none;
}

.contact__blob--right {
  top: calc(136 * var(--1px));
  right: calc(-120 * var(--1px));
}

.contact__blob--left {
  top: calc(372 * var(--1px));
  left: calc(-180 * var(--1px));
}

.contact__inner {
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: calc(120 * var(--1px));
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: calc(15 * var(--1px));
}

.contact__card {
  border-radius: calc(44 * var(--1px));
}

.contact__card--heading,
.contact__card--desc,
.contact__card--form {
  border: calc(2 * var(--1px)) solid transparent;
  background: linear-gradient(#FFFFFF, #FFFFFF) padding-box, linear-gradient(to right, #00D226, #89FFDC) border-box;
  box-shadow: calc(4 * var(--1px)) calc(4 * var(--1px)) calc(4 * var(--1px)) rgba(0, 0, 0, 0.25);
}

.contact__card--form {
  box-shadow: calc(-4 * var(--1px)) calc(4 * var(--1px)) calc(4 * var(--1px)) rgba(0, 0, 0, 0.25);
}

.contact__left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: calc(11 * var(--1px));
}

.contact__card--heading {
  padding: calc(58 * var(--1px)) calc(56 * var(--1px)) calc(0 * var(--1px));
  display: flex;
  flex-direction: column;
  gap: calc(4 * var(--1px));
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact__tag-ja {
  font-size: calc(20 * var(--1px));
  font-weight: 900;
  color: #00D226;
}

.contact__tag-en {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-size: calc(96 * var(--1px));
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: calc(94 * var(--1px));
  color: transparent;
  background-color: #00D226;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 10%);
  background-clip: text;
  -webkit-background-clip: text;
}

.contact__card--desc {
  padding: calc(36 * var(--1px)) calc(48 * var(--1px)) calc(48 * var(--1px));
}

.contact__desc {
  font-size: calc(24 * var(--1px));
  font-weight: 900;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}

.contact__card--tel {
  background-color: rgba(49, 74, 54, 0.8);
  padding: calc(48 * var(--1px)) calc(48 * var(--1px));
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.contact__tel-lead {
  font-size: calc(32 * var(--1px));
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: calc(16 * var(--1px));
}

.contact__tel-sub {
  font-size: calc(24 * var(--1px));
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: calc(50 * var(--1px));
  margin-bottom: calc(32 * var(--1px));
}

.contact__tel-box {
  border: calc(3 * var(--1px)) solid #00D226;
  border-radius: calc(50 * var(--1px));
  padding: calc(12 * var(--1px)) calc(20 * var(--1px));
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.contact__tel-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.contact__tel-icon {
  width: calc(86 * var(--1px));
  height: calc(86 * var(--1px));
  flex-shrink: 0;
}

.contact__tel-num {
  font-family: "Noto Sans", sans-serif;
  font-size: calc(48 * var(--1px));
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 0;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .contact__tel-num:hover {
    opacity: 0.8;
  }
}

.contact__tel-hours {
  font-size: calc(20 * var(--1px));
  font-weight: 700;
  color: #00D226;
  margin: 0;
}

.contact__right {
  flex: 1;
  min-width: 0;
  display: flex;
}

.contact__card--form {
  width: 100%;
  background-color: #FFFFFF;
  padding: calc(79 * var(--1px)) calc(105 * var(--1px));
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: calc(40 * var(--1px));
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--1px));
}

.contact__label {
  font-size: calc(24 * var(--1px));
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  gap: calc(8 * var(--1px));
}

.contact__required {
  display: inline-block;
  width: calc(10 * var(--1px));
  height: calc(10 * var(--1px));
  background-color: #00D226;
  flex-shrink: 0;
}

.contact__input {
  width: 100%;
  height: calc(60 * var(--1px));
  padding: 0 calc(16 * var(--1px));
  background-color: #F3F3F3;
  border: 1px solid #000000;
  border-radius: calc(17 * var(--1px));
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 * var(--1px));
  color: #000000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.contact__textarea {
  width: 100%;
  height: calc(192 * var(--1px));
  padding: calc(16 * var(--1px));
  background-color: #F3F3F3;
  border: 1px solid #000000;
  border-radius: calc(17 * var(--1px));
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16 * var(--1px));
  color: #000000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: vertical;
}

.contact__consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--1px));
}

.contact__checkbox {
  width: calc(20 * var(--1px));
  height: calc(20 * var(--1px));
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #F3F3F3;
  border: 1px solid #000000;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.contact__checkbox:checked {
  background-color: #00D226;
}

.contact__checkbox:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 10l4 4 8-8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.contact__consent-label {
  font-size: calc(18 * var(--1px));
  color: #000000;
  cursor: pointer;
}

.contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(32 * var(--1px));
  width: calc(259 * var(--1px));
  height: calc(60 * var(--1px));
  background-color: #00D226;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(24 * var(--1px));
  font-weight: 700;
  border: 1px solid #000000;
  border-radius: calc(17 * var(--1px));
  cursor: pointer;
  margin-inline: auto;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .contact__submit:hover {
    opacity: 0.85;
  }
}

.contact__submit svg {
  width: calc(19 * var(--1px));
  height: calc(37 * var(--1px));
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  .contact__blob {
    display: none;
  }
  .contact__inner {
    flex-direction: column;
    gap: 24px;
    padding-inline: 20px;
  }
  .contact__left {
    gap: 16px;
  }
  .contact__card--heading {
    padding: 20px 24px 28px;
  }
  .contact__tag-en {
    font-size: 40px;
    margin-bottom: 0;
  }
  .contact__tag-ja {
    font-size: 20px;
  }
  .contact__card--desc {
    padding: 28px 24px 32px;
  }
  .contact__desc {
    font-size: 16px;
  }
  .contact__card--tel {
    padding: 32px 24px;
  }
  .contact__tel-lead {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .contact__tel-sub {
    font-size: 13px;
    margin-bottom: 24px;
  }
  .contact__tel-num {
    font-size: 28px;
  }
  .contact__tel-hours {
    font-size: 13px;
  }
  .contact__card--form {
    padding: 40px 24px;
  }
  .contact__form {
    gap: 28px;
  }
  .contact__input {
    height: 50px;
    font-size: 15px;
    border-radius: 12px;
  }
  .contact__textarea {
    height: 160px;
    font-size: 15px;
    border-radius: 12px;
  }
  .contact__label {
    font-size: 15px;
  }
  .contact__consent-label {
    font-size: 14px;
  }
  .contact__submit {
    width: 200px;
    height: 52px;
    font-size: 15px;
    border-radius: 12px;
  }
  .contact__submit svg {
    width: 15px;
    height: 28px;
  }
}
@media (max-width: 480px) {
  .contact__tag-en {
    font-size: 28px;
  }
  .contact__tel-num {
    font-size: 20px;
  }
  .contact__tel-icon {
    width: 43px;
    height: 43px;
  }
  .contact__desc {
    font-size: 14px;
  }
}
.page-hero {
  background-image: url("assets/images/service/section-bg.webp");
  background-size: cover;
  background-position: center;
  padding: calc(120 * var(--1px)) 0 calc(100 * var(--1px));
}

.page-hero__inner {
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: calc(120 * var(--1px));
  padding-inline: calc(240 * var(--1px));
}

.page-hero__label {
  font-family: "Noto Sans", sans-serif;
  font-size: calc(20 * var(--1px));
  font-weight: 900;
  color: #00D226;
  letter-spacing: 0.08em;
  margin-bottom: calc(16 * var(--1px));
}

.page-hero__title {
  font-size: calc(56 * var(--1px));
  font-weight: 700;
  line-height: 1.4;
  background: radial-gradient(ellipse at center, #89FFDC 0%, #00D227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy {
  padding: calc(100 * var(--1px)) 0 calc(140 * var(--1px));
  background-color: #FFFFFF;
}

.privacy__inner {
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: calc(120 * var(--1px));
  padding-inline: calc(240 * var(--1px));
}

.privacy__lead {
  font-size: calc(18 * var(--1px));
  line-height: 2;
  color: #000000;
  margin-bottom: calc(64 * var(--1px));
  padding-bottom: calc(64 * var(--1px));
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.privacy__section {
  margin-bottom: calc(56 * var(--1px));
  padding-bottom: calc(56 * var(--1px));
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.privacy__section:last-of-type {
  border-bottom: none;
}

.privacy__heading {
  font-size: calc(24 * var(--1px));
  font-weight: 700;
  color: #00D226;
  margin-bottom: calc(24 * var(--1px));
  line-height: 1.5;
}

.privacy__text {
  font-size: calc(16 * var(--1px));
  line-height: 2;
  color: #000000;
}

.privacy__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(12 * var(--1px));
}

.privacy__text:has(+ .privacy__list) {
  margin-bottom: calc(16 * var(--1px));
}

.privacy__list-item {
  font-size: calc(16 * var(--1px));
  line-height: 1.8;
  color: #000000;
  padding-left: calc(20 * var(--1px));
  position: relative;
}

.privacy__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: calc(8 * var(--1px));
  height: calc(8 * var(--1px));
  border-radius: 50%;
  background-color: #00D226;
}

.privacy__contact-box {
  padding: calc(32 * var(--1px)) calc(40 * var(--1px));
  background-color: #F3F3F3;
  border-radius: calc(16 * var(--1px));
  border-left: calc(4 * var(--1px)) solid #00D226;
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--1px));
}

.privacy__text:has(+ .privacy__contact-box) {
  margin-bottom: calc(24 * var(--1px));
}

.privacy__contact-name {
  font-size: calc(18 * var(--1px));
  font-weight: 700;
  color: #000000;
  margin-bottom: calc(4 * var(--1px));
}

.privacy__contact-info {
  font-size: calc(16 * var(--1px));
  line-height: 1.8;
  color: #000000;
}

.privacy__contact-tel {
  color: #00D226;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .privacy__contact-tel:hover {
    opacity: 0.7;
  }
}

.privacy__date {
  font-size: calc(14 * var(--1px));
  color: rgba(0, 0, 0, 0.45);
  text-align: right;
}

.privacy__section:has(+ .privacy__date) {
  margin-bottom: calc(104 * var(--1px));
}

@media (max-width: 768px) {
  .page-hero {
    padding: 64px 0 56px;
  }
  .page-hero__inner {
    padding-inline: 20px;
  }
  .page-hero__label {
    font-size: 14px;
  }
  .page-hero__title {
    font-size: 32px;
  }
  .privacy {
    padding: 60px 0 80px;
  }
  .privacy__inner {
    padding-inline: 20px;
  }
  .privacy__lead {
    font-size: 15px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .privacy__section {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .privacy__heading {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .privacy__text {
    font-size: 14px;
  }
  .privacy__list-item {
    font-size: 14px;
  }
  .privacy__contact-box {
    padding: 24px;
    gap: 6px;
  }
  .privacy__contact-name {
    font-size: 15px;
  }
  .privacy__contact-info {
    font-size: 14px;
  }
  .page-hero__label {
    margin-bottom: 12px;
  }
  .privacy__list {
    gap: 8px;
  }
  .privacy__list-item {
    padding-left: 16px;
  }
  .privacy__list-item::before {
    width: 6px;
    height: 6px;
  }
  .privacy__contact-box {
    border-radius: 12px;
    border-left-width: 3px;
  }
  .privacy__contact-name {
    margin-bottom: 4px;
  }
  .privacy__date {
    font-size: 12px;
  }
  .privacy__text:has(+ .privacy__list) {
    margin-bottom: 12px;
  }
  .privacy__text:has(+ .privacy__contact-box) {
    margin-bottom: 16px;
  }
  .privacy__section:has(+ .privacy__date) {
    margin-bottom: 72px;
  }
}
@media (max-width: 480px) {
  .page-hero {
    padding: 48px 0 40px;
  }
  .page-hero__title {
    font-size: 26px;
  }
  .privacy__heading {
    font-size: 16px;
  }
  .privacy__contact-box {
    padding: 20px;
    border-radius: 12px;
  }
}