@charset "UTF-8";
:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
}

/* ---------------------------------------------
   CSS Reset（normalize.cssベース簡易版）
--------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
}

html {
  font-size: 100%;
  box-sizing: border-box;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #343a40;
  background: #ffffff;
  min-height: 100vh;
  margin: 0;
}

a {
  color: #000000;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  z-index: 100;
  background: #ffffff;
  border-radius: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .logo {
    height: 113px;
    width: 110px;
    border-radius: 0 20px 20px 0;
  }
}
.logo .atag {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
.logo .logo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo .logo-l {
  width: 54px;
  height: 88px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translate(0, -10px);
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .logo .logo-l {
    width: 33px;
    height: 54px;
    transform: translate(0, -6px);
  }
}
.logo .logo-text {
  width: 58px;
  height: 7px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translate(2px, 45px);
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .logo .logo-text {
    width: 35px;
    height: 4px;
    transform: translate(0px, 27px);
  }
}
.logo--scrolled {
  background: none;
  transform: translateY(-10px) translateX(-10px);
}
@media (max-width: 767px) {
  .logo--scrolled {
    height: 73px;
  }
}
.logo--scrolled .logo-l {
  width: 33px;
  height: 54px;
  transform: translate(-10px, -5px);
}
@media (max-width: 767px) {
  .logo--scrolled .logo-l {
    width: 22px;
    height: 36px;
    transform: translate(-20px, -5px);
  }
}
.logo--scrolled .logo-text {
  width: 64px;
  height: 10px;
  transform: translate(37px, -10px);
}
@media (max-width: 767px) {
  .logo--scrolled .logo-text {
    width: 42px;
    height: 6px;
    transform: translate(15px, -8px);
  }
}

.menu {
  width: 76px;
  height: 83px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 170;
  background: #ffffff;
  border-radius: 0 10px 10px 0;
  background: rgba(196, 196, 196, 0.5);
  backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .menu {
    width: 52px;
    height: 47px;
    left: auto;
    right: 0;
    top: 5px;
    bottom: auto;
    border-radius: 10px 0 0 10px;
    opacity: 1;
    visibility: visible;
  }
}
.menu:hover {
  background: rgba(196, 196, 196, 0.7);
}
.menu .in-line {
  width: 23px;
  height: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.menu .in-line .line {
  width: 100%;
  height: 1px;
  background: #000000;
  transition: all 0.3s ease-in-out;
}
.menu .in-line .line1 {
  transform: translate(0, 7px);
}
.menu .in-line .line2 {
  transform: translate(0, 0);
}
.menu .in-line .line3 {
  transform: translate(0, -7px);
}

.close {
  width: 76px;
  height: 83px;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 200;
  margin: auto;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .close {
    width: 52px;
    height: 47px;
    left: auto;
    right: 0;
    top: 5px;
    bottom: auto;
  }
}

.close--open {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 90vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 150;
  overflow-y: auto;
  will-change: transform, opacity;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0 20px 20px 0;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .menu-overlay {
    width: 100%;
    height: 100vh;
    border-radius: 0;
    left: auto;
    right: 0;
  }
}
.menu-overlay__nav {
  width: 100%;
  max-width: calc(800 / var(--base-vw) * 100vw);
  margin: 0 auto;
  padding: 0 calc(80 / var(--base-vw) * 100vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .menu-overlay__nav {
    max-width: none;
    padding: 0;
  }
}
.menu-overlay__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-overlay__nav-item {
  margin-bottom: 5px;
  position: relative;
}
@media (max-width: 767px) {
  .menu-overlay__nav-item {
    margin-bottom: 10px;
  }
}
.menu-overlay__nav-item:last-child {
  margin-bottom: 0;
}
.menu-overlay__nav-item::before {
  content: "・";
  position: absolute;
  top: calc(8 / var(--base-vw) * 100vw);
  left: calc(-30 / var(--base-vw) * 100vw);
  width: 10px;
  height: 10px;
  z-index: 100;
  color: #ffffff;
  font-size: clamp(15.4px, 22 / var(--base-vw) * 100vw, 22px);
  opacity: 0;
  transform: translate(5px, 0px);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .menu-overlay__nav-item::before {
    font-size: 16px;
    transform: translate(5px, 4px);
  }
}
.menu-overlay__nav-item:hover::before {
  transform: translate(0, 0);
  opacity: 1;
}
@media (max-width: 767px) {
  .menu-overlay__nav-item:hover::before {
    transform: translate(-12px, 4px);
  }
}
.menu-overlay__nav-link {
  display: block;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .menu-overlay__nav-link {
    display: flex;
  }
}
.menu-overlay__nav-link:hover {
  opacity: 0.8;
}
.menu-overlay__nav-link--sub {
  padding-left: calc(40 / var(--base-vw) * 100vw);
  margin-top: calc(15 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .menu-overlay__nav-link--sub {
    padding-left: 0px;
    margin-top: 0px;
  }
}
.menu-overlay__nav-title {
  display: inline-block;
  font-size: clamp(25.2px, 36 / var(--base-vw) * 100vw, 36px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: calc(8 / var(--base-vw) * 100vw);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .menu-overlay__nav-title {
    font-size: 28px;
    margin-bottom: calc(6 / var(--base-vw) * 100vw);
  }
}
.menu-overlay__nav-subtitle {
  display: inline-block;
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .menu-overlay__nav-subtitle {
    font-size: 12px;
    top: 15px;
    padding-left: 8px;
    position: relative;
    letter-spacing: 0.05rem;
  }
}
.menu-overlay__nav-sublist {
  list-style: none;
  margin: 10px 0 25px 0;
  padding: 0;
}
@media (max-width: 767px) {
  .menu-overlay__nav-sublist {
    margin-top: 0px;
    padding-left: 0px;
    margin: 0;
    padding-bottom: 25px;
  }
}
.menu-overlay__nav-sublist li {
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
}
.menu-overlay__nav-sublist li span {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
}
@media (max-width: 767px) {
  .menu-overlay__nav-sublist li span {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .menu-overlay__nav-sublist li {
    margin-bottom: 8px;
    font-size: 20px;
  }
}
.menu-overlay__nav-sublist li:last-child {
  margin-bottom: 0;
}

.com-cv-btn {
  border-radius: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 10;
}
@media (max-width: 767px) {
  .com-cv-btn {
    right: 70px;
    top: 15px;
  }
}
.com-cv-btn p span {
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  padding: 15px 30px;
  color: #ffffff;
  border-radius: 26px;
  background: rgba(0, 77, 255, 0.5);
  backdrop-filter: blur(22px);
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.6px;
}
@media (max-width: 767px) {
  .com-cv-btn p span {
    font-size: 12px;
    padding: 10px 20px;
  }
}

.nav {
  width: auto;
  max-width: 560px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
  border-radius: 0 0 15px 15px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
@media (max-width: 767px) {
  .nav {
    display: none;
  }
}
.nav__main {
  width: 100%;
  background: rgba(50, 50, 50, 0.7);
  backdrop-filter: blur(2px);
  border-radius: 0 0 15px 15px;
  position: relative;
  z-index: 10;
}
.nav__main-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0;
  border-radius: 0 0 15px 15px;
}
.nav__main-item {
  text-align: center;
  position: relative;
  flex: 1;
}
.nav__main-item a {
  display: block;
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 15px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.nav__main-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.nav__submenu {
  width: 100%;
  background: rgba(60, 60, 60, 0.7);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: -50px;
  padding-top: 50px;
}
.nav:has(.nav__main-item--has-submenu:hover) .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0;
  flex-wrap: nowrap;
}
.nav__submenu-item {
  text-align: center;
  flex: 1;
}
.nav__submenu-item a {
  display: block;
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.01em;
  padding: 12px 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.nav__submenu-item a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer {
  background: url(../../dist/images/common/pattern.webp);
  position: relative;
  padding-top: 50px;
  border-radius: 30px 30px 0 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 20px;
    margin-top: 100px;
  }
}
.footer__copyright {
  color: #999;
  font-family: "DM Sans", sans-serif;
  text-align: right;
  width: 90%;
  border-top: 1px solid #999;
  margin: auto;
  padding: 40px 0 60px 0;
}
@media (max-width: 767px) {
  .footer__copyright {
    text-align: center;
    padding: 20px 0 30px 0;
  }
}
.footer__copyright p {
  font-size: calc(12 / var(--base-vw) * 100vw);
  margin: 0;
}
@media (max-width: 767px) {
  .footer__copyright p {
    font-size: 9px;
  }
}
.footer__contact {
  width: 90%;
  padding: 4rem 0;
  margin: auto;
  position: relative;
}
.footer__contact-svg {
  max-width: 837px;
  width: 60%;
}
@media (max-width: 767px) {
  .footer__contact-svg {
    width: 100%;
  }
}
.footer__contact-text {
  position: absolute;
  left: 54%;
  bottom: 58px;
}
@media (max-width: 767px) {
  .footer__contact-text {
    position: relative;
    left: 0;
    bottom: 0;
  }
}
.footer__contact-text-title {
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .footer__contact-text-title {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 12px;
  }
}
.footer__contact-text-description {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  color: #333;
  line-height: 1.8;
  margin: 0;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767px) {
  .footer__contact-text-description {
    font-size: 14px;
    line-height: 218%;
  }
}
.footer__contact-container {
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 767px) {
  .footer__contact-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 0.8rem;
  }
}
.footer__contact-left {
  flex: 0 0 40%;
}
@media (max-width: 767px) {
  .footer__contact-left {
    flex: none;
  }
}
.footer__contact-right {
  flex: 0 0 60%;
}
@media (max-width: 767px) {
  .footer__contact-right {
    flex: none;
  }
}
.footer__contact-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin: 0;
  font-family: "DM Sans", sans-serif;
}
.footer__contact-description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
.footer__main {
  padding: 4rem 0 2rem;
}
@media (max-width: 767px) {
  .footer__main {
    padding: 1rem 0 1rem;
  }
}
.footer__container {
  width: 90%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: start;
  gap: 4rem;
  padding-bottom: 30px;
  padding-left: 150px;
}
@media (max-width: 767px) {
  .footer__container {
    width: 85%;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
}
.footer__company {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
.footer__company-logo {
  position: absolute;
  left: -110px;
  top: 0;
}
@media (max-width: 767px) {
  .footer__company-logo {
    width: 55px;
    margin: auto;
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 45px;
  }
}
.footer__logo-icon {
  width: 4rem;
  height: 4rem;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}
.footer__logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  font-family: "DM Sans", sans-serif;
}
.footer__company-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .footer__company-info {
    gap: 1.2rem;
  }
}
.footer__company-description, .footer__company-location, .footer__company-phone, .footer__company-email {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  color: #666;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .footer__company-description, .footer__company-location, .footer__company-phone, .footer__company-email {
    font-size: 12px;
    line-height: 1.5;
  }
}
.footer__services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .footer__services {
    display: none;
  }
}
.footer__services-title {
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: 700;
  color: #333;
  margin: 0;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767px) {
  .footer__services-title {
    display: none;
  }
}
.footer ol {
  width: 180px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .footer ol {
    display: none;
  }
}
.footer ol > li {
  min-width: 210px;
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  color: #666;
  line-height: 1.8;
  position: relative;
}
.footer ol > li::before {
  content: "・";
  width: 10px;
  height: 10px;
}
.footer__services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
}
.footer__services-item {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.5;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .footer__nav {
    align-items: flex-start;
  }
}
.footer__nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer__nav-links {
    justify-content: flex-start;
    gap: 1.5rem;
  }
}
.footer__nav-link {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #666;
}
.footer__page-top {
  position: absolute;
  top: -50px;
  right: 2rem;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #000000;
  color: #fff;
  border: none;
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
@media (max-width: 767px) {
  .footer__page-top {
    width: 108px;
    height: 108px;
    font-size: 1rem;
    top: -54px;
    right: 0;
    left: 0;
    margin: auto;
  }
}

.main-container {
  opacity: 0;
  visibility: hidden;
}
.main-container--visible {
  opacity: 1;
  visibility: visible;
}

/**
 * ローディング画面コンポーネント
 * 
 * @package LIVMO
 * @version 1.0.0
 */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
}
@media (max-width: 767px) {
  .loading-screen {
    height: 90vh;
    padding-bottom: 10vh;
  }
}
.loading-screen {
  opacity: 0;
  visibility: hidden;
}
.loading-screen--active {
  opacity: 1;
  visibility: visible;
}
.loading-screen--fadeout {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.loading-screen__indicator {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(112px, 160 / var(--base-vw) * 100vw, 160px);
  color: #cccccc;
  letter-spacing: 0.1em;
  z-index: 10;
}
@media (max-width: 767px) {
  .loading-screen__indicator {
    font-size: 100px;
    top: 1rem;
  }
}

.loading-screen__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.loading-screen__background--top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #000000;
  transform-origin: top;
  will-change: transform;
}
.loading-screen__background--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #000000;
  transform-origin: bottom;
  will-change: transform;
}

.loading-screen__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  z-index: 5;
}

.loading-screen__text-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  text-align: center;
}
@media (max-width: 767px) {
  .loading-screen__text-container {
    max-width: 90%;
    padding: 0 20px;
  }
}

.loading-screen__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(77px, 110 / var(--base-vw) * 100vw, 110px);
  font-weight: bold;
  color: #000000;
  white-space: nowrap;
  will-change: transform, opacity;
  opacity: 0;
  visibility: hidden;
}
.loading-screen__text--active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1001px) {
  .loading-screen__text {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .loading-screen__text {
    font-size: 40px;
  }
}
.loading-screen__text span {
  display: inline-block;
  will-change: transform, opacity;
  opacity: 0;
  transform: translateY(-100px) rotateX(90deg);
}
@media (max-width: 767px) {
  .loading-screen__text span {
    transform: translateY(-60px) rotateX(90deg);
  }
}
@media (max-width: 430px) {
  .loading-screen__text span {
    transform: translateY(-40px) rotateX(90deg);
  }
}
.loading-screen__text span--visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}
.loading-screen__text span--hidden {
  opacity: 0;
  transform: translateY(100px) rotateX(-90deg);
}
@media (max-width: 767px) {
  .loading-screen__text span--hidden {
    transform: translateY(60px) rotateX(-90deg);
  }
}
@media (max-width: 430px) {
  .loading-screen__text span--hidden {
    transform: translateY(40px) rotateX(-90deg);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px) rotateX(90deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateX(0deg);
  }
}
@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0) rotateX(0deg);
  }
  to {
    opacity: 0;
    transform: translateX(50px) rotateX(-90deg);
  }
}
@media (max-width: 767px) {
  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-30px) rotateX(90deg);
    }
    to {
      opacity: 1;
      transform: translateX(0) rotateX(0deg);
    }
  }
  @keyframes slideOutToRight {
    from {
      opacity: 1;
      transform: translateX(0) rotateX(0deg);
    }
    to {
      opacity: 0;
      transform: translateX(30px) rotateX(-90deg);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .loading-screen__background--top, .loading-screen__background--bottom {
    transition: none;
  }
  .loading-screen__text span {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.loading-screen__background--top, .loading-screen__background--bottom, .loading-screen__text, .loading-screen__text span {
  backface-visibility: hidden;
  perspective: 1000px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (min-width: 1002px) {
  .hero {
    border-radius: 24px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 90vh;
  }
}
.hero__slider {
  width: 95%;
  height: 97.5%;
  margin: auto;
  border-radius: 0 0 16px 16px;
  margin-top: -2.5%;
}
@media (max-width: 767px) {
  .hero__slider {
    width: 93%;
  }
}
.hero__slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  will-change: transform;
  display: block;
  backface-visibility: hidden;
  transform-origin: center center;
  transform: translateZ(0);
}
.hero__copy {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  color: #000000;
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
@media (min-width: 768px) {
  .hero__copy {
    bottom: 10px;
    left: 60px;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .hero__copy {
    display: block;
  }
}
.hero__copy-en {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(133px, 190 / var(--base-vw) * 100vw, 190px);
  font-weight: bold;
  margin: 0;
  letter-spacing: -4.8px;
}
@media (max-width: 767px) {
  .hero__copy-en {
    font-size: 80px;
    letter-spacing: 0;
    line-height: 0.9;
  }
}
.hero__copy-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 3.5vw, 18px);
  font-weight: normal;
  margin: 0;
  position: relative;
  top: -33px;
  font-weight: bold;
  letter-spacing: 5px;
}
@media (min-width: 1002px) {
  .hero__copy-ja {
    font-size: clamp(14px, 2.2vw, 28px);
  }
}
@media (max-width: 767px) {
  .hero__copy-ja {
    font-size: 25px;
    letter-spacing: 0;
    line-height: 1;
    top: 0;
    left: -10px;
    margin-top: 10px;
    margin-bottom: 50px;
  }
}
.hero__copy--prepared {
  will-change: opacity, transform;
}
.hero__copy-letters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: baseline;
  white-space: pre-wrap;
}
.hero__copy-letter {
  display: inline-block;
  min-width: 0.02em;
  backface-visibility: hidden;
  transform-origin: center bottom;
}
.hero__copy-letter--space {
  width: 0.4em;
}
.hero__copy-letter--break {
  width: 100%;
  height: 0;
}
.hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30vh;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.85));
  z-index: 5;
  pointer-events: none;
}
.hero__pager {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  width: 80px;
  height: 80px;
  display: block;
}
@media (max-width: 767px) {
  .hero__pager {
    width: 40px;
    height: 40px;
    right: 30px;
    bottom: 60px;
  }
}
.hero__pager::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50px;
  width: 100px;
  height: 3px;
  background: #000000;
  transform: rotate(-45deg);
  transform-origin: left center;
}
@media (max-width: 767px) {
  .hero__pager::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    margin: auto;
    transform-origin: center center;
  }
}
.hero__pager-current {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 16px;
  line-height: 1;
  will-change: transform, opacity;
}
@media (max-width: 767px) {
  .hero__pager-current {
    width: 10px;
    height: 10px;
    left: 2px;
    top: 2px;
    font-size: 15px;
  }
}
.hero__pager-total {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 16px;
  line-height: 1;
  opacity: 1;
}
@media (max-width: 767px) {
  .hero__pager-total {
    width: 10px;
    height: 10px;
    right: 5px;
    bottom: 5px;
    font-size: 15px;
  }
}
.hero__pager-sep {
  display: none;
}
@media (min-width: 768px) {
  .hero__pager {
    bottom: 24px;
    right: 75px;
    width: 90px;
    height: 90px;
  }
  .hero__pager::before {
    left: 10px;
    top: 55px;
    width: 110px;
    height: 3px;
  }
  .hero__pager-current {
    top: 10px;
    left: 10px;
    font-size: 18px;
  }
  .hero__pager-total {
    right: 10px;
    bottom: 10px;
    font-size: 18px;
  }
}
@media (min-width: 1002px) {
  .hero__pager {
    width: 40px;
    height: 40px;
  }
  .hero__pager::before {
    left: 12px;
    top: 60px;
    width: 100%;
    height: 1px;
  }
  .hero__pager-current {
    top: 29px;
    left: 9px;
    font-size: 11px;
  }
  .hero__pager-total {
    right: -2px;
    bottom: -23px;
    font-size: 11px;
  }
}
.hero__copyright {
  position: absolute;
  top: 50%;
  right: 0.5%;
  transform: translateY(-50%) rotate(180deg);
  z-index: 10;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: normal;
  opacity: 0.7;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .hero__copyright {
    font-size: 6px;
    right: 3px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slider .swiper-slide img {
    will-change: auto;
  }
  .hero__pager-current {
    will-change: auto;
  }
  .hero__copy {
    will-change: auto;
  }
  .hero__copy-letters, .hero__copy-letter {
    will-change: auto;
  }
}

.hero .swiper-button-next,
.hero .swiper-button-prev,
.hero .swiper-pagination {
  display: none !important;
}

.wwd__carousel-right,
.wwd__carousel-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  min-height: 270px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .wwd__carousel-right,
  .wwd__carousel-left {
    height: auto;
    min-height: 150px;
  }
}
@media (min-width: 768px) {
  .wwd__carousel-right,
  .wwd__carousel-left {
    height: auto;
    min-height: 180px;
  }
}
@media (min-width: 1002px) {
  .wwd__carousel-right,
  .wwd__carousel-left {
    height: 270px;
  }
}

.wwd__carousel-right {
  top: 10%;
}
@media (max-width: 767px) {
  .wwd__carousel-right {
    top: 2%;
  }
}

.wwd__carousel-left {
  bottom: 10%;
  top: auto;
}
@media (max-width: 767px) {
  .wwd__carousel-left {
    bottom: -2%;
  }
}

.wwd__carousel-track {
  display: flex;
  align-items: center;
  height: auto;
  min-height: 150px;
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: left center;
}
@media (max-width: 767px) {
  .wwd__carousel-track {
    min-height: 150px;
  }
}
@media (min-width: 768px) {
  .wwd__carousel-track {
    min-height: 180px;
  }
}

.wwd__carousel-slide {
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 12px;
  background: #f5f5f5;
  overflow: hidden;
  width: auto;
  min-width: 200px;
}
@media (max-width: 767px) {
  .wwd__carousel-slide {
    max-width: 150px;
  }
}
.wwd__carousel-slide:nth-child(1) {
  width: 280px;
  height: 180px;
}
@media (max-width: 767px) {
  .wwd__carousel-slide:nth-child(1) {
    width: 200px;
    height: 120px;
  }
}
.wwd__carousel-slide:nth-child(2) {
  width: 320px;
  height: 200px;
}
@media (max-width: 767px) {
  .wwd__carousel-slide:nth-child(2) {
    width: 240px;
    height: 140px;
  }
}
.wwd__carousel-slide:nth-child(3) {
  width: 240px;
  height: 160px;
}
@media (max-width: 767px) {
  .wwd__carousel-slide:nth-child(3) {
    width: 180px;
    height: 110px;
  }
}
.wwd__carousel-slide:nth-child(4) {
  width: 300px;
  height: 220px;
}
@media (max-width: 767px) {
  .wwd__carousel-slide:nth-child(4) {
    width: 220px;
    height: 150px;
  }
}
.wwd__carousel-slide:nth-child(5) {
  width: 260px;
  height: 190px;
}
@media (max-width: 767px) {
  .wwd__carousel-slide:nth-child(5) {
    width: 190px;
    height: 130px;
  }
}
.wwd__carousel-slide:nth-child(6) {
  width: 350px;
  height: 170px;
}
@media (max-width: 767px) {
  .wwd__carousel-slide:nth-child(6) {
    width: 260px;
    height: 115px;
  }
}
@media (max-width: 767px) {
  .wwd__carousel-slide:nth-child(7) {
    width: 200px;
    height: 120px;
  }
}
.wwd__carousel-slide:nth-child(8) {
  width: 320px;
  height: 200px;
}
@media (max-width: 767px) {
  .wwd__carousel-slide:nth-child(8) {
    width: 240px;
    height: 140px;
  }
}
.wwd__carousel-slide:nth-child(9) {
  width: 280px;
  height: 180px;
}
@media (max-width: 767px) {
  .wwd__carousel-slide {
    margin-right: 15px;
    border-radius: 8px;
  }
}
@media (min-width: 768px) {
  .wwd__carousel-slide {
    margin-right: 18px;
    border-radius: 10px;
  }
}
@media (min-width: 1002px) {
  .wwd__carousel-slide {
    margin-right: 20px;
    border-radius: 12px;
  }
}
.wwd__carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media (max-width: 767px) {
  .wwd__carousel-slide img {
    border-radius: 8px;
  }
}
@media (min-width: 768px) {
  .wwd__carousel-slide img {
    max-height: 144px;
    border-radius: 10px;
  }
}
@media (min-width: 1002px) {
  .wwd__carousel-slide img {
    max-height: 260px;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wwd__carousel-right .wwd__carousel-track,
  .wwd__carousel-left .wwd__carousel-track {
    transform: none !important;
  }
}
.wa {
  width: 100%;
  background: #ffffff;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.wa__container {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.wa__head {
  margin: 0 auto;
  padding: 0 20px;
  background: url("../../dist/images/index/wa-pattern.webp") repeat center center;
  background-size: 100px 115px;
  padding: 150px 0;
  position: relative;
}
.wa__head::before {
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.wa__head::after {
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  right: 0;
  top: 0;
}
.wa__content {
  position: relative;
  height: 100vh !important;
  background: #000000;
  overflow: hidden;
  z-index: 10;
  width: 100vw !important;
  max-width: 100vw !important;
  min-height: 100vh !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: block;
  clip-path: inset(0 0 0 0);
  left: 0 !important;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}
.wa__content[style*="position: fixed"], .wa__content--pinned {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 767px) {
  .wa__content[style*="position: fixed"], .wa__content--pinned {
    width: 100% !important;
  }
}
.wa::after {
  content: "";
  display: block;
  height: var(--scroll-height, 3600px);
  width: 100%;
}
.wa__fixed-left, .wa__fixed-right {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  pointer-events: none;
}
.wa__fixed-left .atag, .wa__fixed-right .atag {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  color: #ffffff;
  text-decoration: none;
}
.wa__fixed-left {
  left: 9vw;
  text-align: left;
}
@media (max-width: 767px) {
  .wa__fixed-left {
    left: 1rem;
    display: none;
  }
}
.wa__fixed-right {
  right: 6vw;
  text-align: right;
  pointer-events: all !important;
}
@media (max-width: 767px) {
  .wa__fixed-right {
    right: 1rem;
    display: none;
  }
}
.wa__fixed-right:hover .wa__works-list {
  opacity: 0.8;
}
.wa__keep-scrolling {
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-orientation: mixed;
}
.wa__works-list {
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(17px);
  color: #ffffff;
  padding: 1rem 3.5rem;
  border-radius: 100px;
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-orientation: mixed;
  transition: opacity 0.3s ease-in-out;
}
.wa__scroll-area {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.wa__pager {
  width: 90px;
  position: fixed;
  z-index: 10;
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  color: #ffffff;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.1em;
  margin: auto;
}
.wa__pager-current, .wa__pager-separator, .wa__pager-total {
  display: inline-block;
}
.wa__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.wa__item:first-child {
  opacity: 1;
}
.wa__item--active {
  opacity: 1;
  pointer-events: all;
}
.wa__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  backdrop-filter: blur(10px);
}
.wa__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 623px;
  min-width: 623px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .wa__overlay {
    min-width: auto;
    padding: 1.5rem 1rem;
    max-width: 92.5%;
  }
}
.wa__title-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .wa__title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.wa__backgrounds {
  position: relative;
  width: 100%;
  height: 100%;
}
.wa__images {
  position: relative;
  width: 100%;
  height: clamp(200px, 40vw, 290px);
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .wa__images {
    height: 180px;
    margin-bottom: 0;
  }
}
.wa__backgrounds > .wa__background, .wa__images > .wa__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.wa__backgrounds > .wa__background.is-active, .wa__backgrounds > .wa__background.wa__background--active, .wa__images > .wa__image.is-active, .wa__images > .wa__image.wa__image--active {
  opacity: 1;
}
.wa__image-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wa__image-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wa .wa__image.wa__image--active {
  position: absolute;
  inset: 0;
  height: 100%;
}
.wa__title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(15.4px, 19 / var(--base-vw) * 100vw, 19px);
  font-weight: bold;
  color: #ffffff;
  line-height: 140%;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .wa__title {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 0%;
    padding-right: 20%;
  }
}
.wa__title span {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  line-height: 1.4em;
  height: 1.4em;
}
.wa__title span b {
  display: inline-block;
  will-change: transform;
}
.wa__title span.wa__title-bold {
  font-weight: bold;
}
.wa__title span.wa__title-bold b {
  font-weight: bold;
}
@media (max-width: 767px) {
  .wa__title span.wa__title-bold {
    display: inline-block;
    width: 100%;
    height: auto;
    white-space: normal;
    overflow: visible;
    line-height: 1.4em;
  }
  .wa__title span.wa__title-bold > span {
    display: inline !important;
    height: auto !important;
  }
}
.wa__title span.wa__title-normal {
  font-weight: bold;
}
.wa__title span.wa__title-normal b {
  font-weight: bold;
}
@media (max-width: 767px) {
  .wa__title span.wa__title-normal b {
    font-size: 15px;
    font-weight: normal;
  }
}
@media (max-width: 767px) {
  .wa__title span.wa__title-normal {
    display: inline-block;
    width: 100%;
    height: auto;
    white-space: normal;
    overflow: visible;
    line-height: 1.4em;
  }
  .wa__title span.wa__title-normal > span {
    display: inline !important;
    height: auto !important;
  }
}
.wa__title span.wa__title-space {
  width: 0.5em;
}
@media (max-width: 767px) {
  .wa__title span.wa__title-space {
    display: block;
    width: 100%;
    height: 0;
  }
}
.wa__image {
  border-radius: 0.5rem;
  overflow: hidden;
}
.wa__image img {
  width: 100%;
  height: auto;
  display: block;
}
.wa__description {
  font-size: clamp(14px, 15 / var(--base-vw) * 100vw, 15px);
  font-weight: 400;
  color: #ffffff;
  line-height: 2;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (max-width: 767px) {
  .wa__description {
    font-size: 13px;
  }
}
.wa__description--last {
  margin-bottom: 30px;
}
.wa__description span {
  display: flex;
  justify-content: center;
  overflow: hidden;
  vertical-align: baseline;
  line-height: 1;
  height: 18px;
}
.wa__description span b {
  display: inline-block;
  will-change: transform;
}
.wa__pager {
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 0;
  z-index: 10;
  left: auto !important;
  right: 0;
  top: 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .wa__pager {
    width: 35px;
    height: 35px;
    margin-top: 0;
    align-self: flex-end;
    top: 12.5px;
  }
}
.wa__pager-current, .wa__pager-total {
  position: absolute;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  line-height: 1;
}
.wa__pager-current {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  top: 0;
  left: 0;
  transform: translate(-15%, -10%);
}
@media (max-width: 767px) {
  .wa__pager-current {
    font-size: 14px;
  }
}
.wa__pager-total {
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  bottom: 0;
  right: 0;
  color: rgba(255, 255, 255, 0.75);
  transform: translate(15%, 15%);
}
@media (max-width: 767px) {
  .wa__pager-total {
    font-size: 14px;
  }
}
.wa__pager-separator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 1px;
  margin: 0;
  display: block;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}
@media (max-width: 767px) {
  .wa__pager-separator {
    width: 140%;
    height: 1.5px;
  }
}
.wa__pager-separator::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
}
.wa__button {
  max-width: calc(250 / var(--base-vw) * 100vw);
  display: block;
  margin: 0 auto;
  padding: 0.75rem 3rem;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  text-align: center;
}
@media (max-width: 767px) {
  .wa__button {
    max-width: 80%;
    padding: 0.75rem 1.5rem;
    font-size: 16px;
    border: none;
    position: absolute;
    bottom: -25px;
    margin: auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(47px);
    left: 0;
    right: 0;
    z-index: 10;
  }
}
.wa__button:hover {
  background: #ffffff;
  color: #000000;
}

.common-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .common-btn {
    font-size: 12px;
    padding: 7px 40px;
    border-radius: 100px;
    margin: auto;
  }
}
.common-btn p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: calc(8 / var(--base-vw) * 100vw);
  position: relative;
  z-index: 1;
  padding: calc(12 / var(--base-vw) * 100vw) calc(70 / var(--base-vw) * 100vw);
}
.common-btn span {
  display: inline-block;
}
.common-btn b {
  display: inline-block;
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  transition: transform 0.3s ease;
  position: absolute;
  right: 15px;
  line-height: 1;
}
@media (max-width: 767px) {
  .common-btn b {
    font-size: 14px;
    right: -20px;
  }
}
.common-btn b::before {
  content: "→";
}
.common-btn[target=_blank] b, .common-btn[href^=http]:not([href*=livmo]) b {
  width: calc(19 / var(--base-vw) * 100vw);
  height: calc(19 / var(--base-vw) * 100vw);
  background-image: url("../images/common/blank.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 767px) {
  .common-btn[target=_blank] b, .common-btn[href^=http]:not([href*=livmo]) b {
    width: 19px;
    height: 19px;
  }
}
.common-btn[target=_blank] b::before, .common-btn[href^=http]:not([href*=livmo]) b::before {
  content: "";
}
.common-btn:hover {
  border-color: #000000;
  background-color: #000000;
  color: #ffffff;
}
.common-btn:hover b {
  transform: translateX(calc(5 / var(--base-vw) * 100vw));
}
.common-btn:focus {
  outline: none;
}
.common-btn--black {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.common-btn--black:hover {
  background-color: #ffffff;
  color: #000000;
}
.common-btn--black:hover b {
  transform: translateX(calc(5 / var(--base-vw) * 100vw));
}

.service-related-achievements {
  position: relative;
  background-color: #ffffff;
  padding: calc(100 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .service-related-achievements {
    padding: 60px 0;
  }
}
.service-related-achievements__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.service-related-achievements__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-related-achievements__header {
    flex-direction: column;
    gap: calc(30 / var(--base-vw) * 100vw);
    margin-bottom: calc(40 / var(--base-vw) * 100vw);
  }
}
.service-related-achievements__title {
  font-size: clamp(56px, 80 / var(--base-vw) * 100vw, 80px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .service-related-achievements__title {
    font-size: 30px;
    letter-spacing: -0.75px;
  }
}
.service-related-achievements__button {
  position: relative;
  top: 30px;
}
.service-related-achievements__subtitle {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin-left: calc(20 / var(--base-vw) * 100vw);
  font-weight: normal;
  display: inline;
}
@media (max-width: 767px) {
  .service-related-achievements__subtitle {
    font-size: 16px;
    margin-left: 0;
    display: block;
    margin-top: 3px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .service-related-achievements__button {
    width: 100%;
    text-align: center;
  }
}
.service-related-achievements__link {
  display: inline-block;
  padding: calc(12 / var(--base-vw) * 100vw) calc(50 / var(--base-vw) * 100vw);
  background-color: #f5f5f5;
  color: #000000;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-related-achievements__link:hover {
  color: #ffffff;
  background-color: #000000;
}
@media (max-width: 767px) {
  .service-related-achievements__link {
    border-radius: 100px;
    font-size: 12px;
    padding: 15px 65px;
  }
}
.service-related-achievements__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgb(0, 0, 0);
}
.service-related-achievements__item {
  display: grid;
  grid-template-columns: 0.5fr 1.25fr 1.5fr;
  gap: calc(40 / var(--base-vw) * 100vw);
  padding: calc(40 / var(--base-vw) * 100vw) 0;
  border-bottom: 1px solid rgb(0, 0, 0);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}
.service-related-achievements__item:last-child {
  border-bottom: none;
}
.service-related-achievements__item:hover .service-related-achievements__image img {
  transform: scale(1.08);
}
@media (max-width: 767px) {
  .service-related-achievements__item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 30px 0;
  }
}
.service-related-achievements__column {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 767px) {
  .service-related-achievements__column {
    gap: 5px;
  }
  .service-related-achievements__column--left {
    flex-direction: row;
    justify-content: flex-start;
  }
  .service-related-achievements__column--right {
    order: -1;
  }
}
.service-related-achievements__date {
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0 0 calc(15 / var(--base-vw) * 100vw) 0;
  line-height: 1.5;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .service-related-achievements__date {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 200;
  }
}
.service-related-achievements__tag {
  display: inline-block;
  padding: calc(4 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  background-color: transparent;
  color: #999;
  border: 1px solid #e5e5e5;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  font-size: clamp(8.4px, 12 / var(--base-vw) * 100vw, 12px);
  font-family: "DM Sans", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .service-related-achievements__tag {
    font-size: 8px;
    padding: 2px 10px 0 10px;
    margin-bottom: auto;
    line-height: 2;
    color: #000000;
    border-color: #C3C3C3;
    position: relative;
    top: 2px;
    white-space: nowrap;
  }
}
.service-related-achievements__item-title {
  font-size: clamp(25.2px, 36 / var(--base-vw) * 100vw, 36px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif, "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .service-related-achievements__item-title {
    font-size: 40px;
  }
}
.service-related-achievements__item-subtitle {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .service-related-achievements__item-subtitle {
    font-size: 23px;
    line-height: 1.8;
  }
}
.service-related-achievements__item-description {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .service-related-achievements__item-description {
    font-size: 14px;
    line-height: 2.2;
    text-align: justify;
    letter-spacing: 0.05em;
    font-weight: 300;
  }
}
.service-related-achievements__read-more {
  margin-top: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-related-achievements__read-more {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.service-related-achievements__read-more-btn {
  display: inline-block;
  padding: calc(10 / var(--base-vw) * 100vw) calc(30 / var(--base-vw) * 100vw);
  background-color: transparent;
  color: #000000;
  border: 1px solid #e5e5e5;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-related-achievements__item:hover .service-related-achievements__read-more-btn {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
@media (max-width: 767px) {
  .service-related-achievements__read-more-btn {
    font-size: 12px;
    padding: 8px 55px;
  }
}
.service-related-achievements__image {
  width: 100%;
  height: calc(400 / var(--base-vw) * 100vw);
  overflow: hidden;
  border-radius: calc(8 / var(--base-vw) * 100vw);
}
.service-related-achievements__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  transition: transform 1.2s ease;
}
@media (max-width: 767px) {
  .service-related-achievements__image {
    height: 200px;
  }
}

.mouse-stalker {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mouse-stalker--on-link {
  width: 50px;
  height: 50px;
}
.mouse-stalker--active {
  opacity: 1;
  visibility: visible;
}
@media (hover: none) {
  .mouse-stalker {
    display: none;
  }
}

.mouse-stalker__circle {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: rgba(50, 50, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  will-change: transform;
  transition: width 0.3s ease, height 0.3s ease;
}
@supports (backdrop-filter: blur(3px)) {
  .mouse-stalker__circle {
    backdrop-filter: blur(3px);
  }
}
@supports not (backdrop-filter: blur(3px)) {
  .mouse-stalker__circle {
    background: rgba(50, 50, 50, 0.15);
  }
}
.mouse-stalker--on-link .mouse-stalker__circle {
  width: 50px;
  height: 50px;
  background: rgba(50, 50, 50, 0.03);
}
@supports not (backdrop-filter: blur(3px)) {
  .mouse-stalker--on-link .mouse-stalker__circle {
    background: rgba(50, 50, 50, 0.05);
  }
}

.mouse-stalker__plus {
  position: relative;
  width: 12px;
  height: 12px;
  transform: translateZ(0);
  will-change: transform;
}
.mouse-stalker__plus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: #ffffff;
  transform: translateY(-50%);
}
.mouse-stalker__plus::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.5px;
  height: 100%;
  background: #ffffff;
  transform: translateX(-50%);
}

.ix-title {
  text-align: center;
  position: relative;
  z-index: 10;
}
.ix-title h2 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-weight: 700;
  color: #000000;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .ix-title h2 {
    font-size: 15px;
  }
}
.ix-title h3 {
  font-size: clamp(44.8px, 64 / var(--base-vw) * 100vw, 64px);
  font-weight: 900;
  color: #000000;
  line-height: 130%;
  letter-spacing: 3.2px;
}
@media (max-width: 767px) {
  .ix-title h3 {
    font-size: 33px;
    letter-spacing: 0;
    text-align: center;
    position: relative;
  }
}
.ix-title > img {
  width: 90%;
  margin: auto;
}
.ix-title h4 {
  width: 70%;
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: 400;
  color: #000000;
  line-height: 240%;
  letter-spacing: 0.01em;
  margin: auto;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .ix-title h4 {
    font-size: 15px;
    width: 85%;
    text-align: left;
    letter-spacing: 0;
    line-height: 220%;
  }
}

.wwd {
  width: 100%;
  min-height: 100vh;
  padding: 500px 0;
  background: url(../../dist/images/common/pattern.webp);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .wwd {
    padding: 300px 0 220px 0;
  }
}
.wwd__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.wwd__cardList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .wwd__cardList {
    flex-direction: row;
    gap: 20px;
  }
}
.wwd__card {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f2f2f2;
  box-shadow: 5px 4px 17px 0 #fff inset, 0 4px 14px 0 rgba(185, 185, 185, 0.05);
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .wwd__card {
    padding: 60px 30px;
  }
}
@media (min-width: 768px) {
  .wwd__card {
    flex: 1;
    padding: 50px 40px;
  }
}
.wwd__card-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 48px;
  font-weight: 400;
  color: #cccccc;
  line-height: 1;
  z-index: 1;
  font-family: "DM Sans", sans-serif;
}
.wwd__card-content {
  position: relative;
  z-index: 2;
}
.wwd__card-title {
  font-size: clamp(15.4px, 22 / var(--base-vw) * 100vw, 22px);
  font-weight: 700;
  color: #000000;
  line-height: 170%;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .wwd__card-title {
    font-size: 20px;
    margin-top: 10px;
  }
}
.wwd__card-text {
  font-size: clamp(14px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: 400;
  color: #000000;
  line-height: 200%;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .wwd__card-text {
    font-size: 14px;
  }
}
.wwd__card--1 {
  transform: rotate(-7.655deg);
}
.wwd__card--2 {
  transform: rotate(6.212deg);
  position: relative;
}
@media (max-width: 767px) {
  .wwd__card--2 {
    transform: translateY(-30px) rotate(6.212deg);
  }
}
.wwd__card--3 {
  transform: rotate(-3.618deg);
}
@media (max-width: 767px) {
  .wwd__card--3 {
    transform: translateY(-70px) rotate(-3.618deg);
  }
}

.wa {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  position: relative;
  z-index: 1;
}
.wa__head {
  margin: 0 auto;
  padding: 0 20px;
  background: url("../../dist/images/index/wa-pattern.webp") repeat center center;
  background-size: 100px 115px;
  padding: 135px 0;
  position: relative;
}
@media (max-width: 767px) {
  .wa__head {
    padding: 80px 0;
  }
}
.wa__head::before {
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  position: absolute;
  left: 0;
  top: 0;
}
.wa__head::after {
  content: "";
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  right: 0;
  top: 0;
}

.as {
  padding: 8rem 0;
  background: #fff;
}
@media (max-width: 767px) {
  .as {
    padding: 3rem 0;
  }
}
.as__container {
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .as__container {
    padding: 0;
  }
}
.as__head {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .as__head {
    margin-bottom: 3rem;
  }
}
.as__head-content {
  display: flex;
  align-items: start;
}
@media (max-width: 767px) {
  .as__head-content {
    grid-template-columns: 1fr;
    gap: 0;
    display: block;
  }
}
.as__head-left {
  width: 20%;
}
@media (max-width: 767px) {
  .as__head-left {
    width: 100%;
  }
}
.as__head-right {
  width: 80%;
}
@media (max-width: 767px) {
  .as__head-right {
    width: 100%;
  }
}
.as__label {
  display: inline-block;
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767px) {
  .as__label {
    font-size: 20px;
  }
}
.as__title {
  font-size: clamp(28px, 40 / var(--base-vw) * 100vw, 40px);
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin: 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .as__title {
    font-size: 38px;
    position: relative;
    left: -22px;
  }
}
.as__description {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 220%;
  color: #666;
  margin: 0;
}
@media (max-width: 767px) {
  .as__description {
    font-size: 14px;
  }
}
.as__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  gap: 5px;
}
@media (max-width: 767px) {
  .as__services {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.as__service {
  position: relative;
  width: 100%;
  aspect-ratio: 720/273;
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  padding: 2rem;
  transition: transform 0.3s ease;
  border: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
  .as__service {
    aspect-ratio: 1.5;
    padding: 1.5rem;
    border-radius: 0.5rem;
  }
}
.as__service .atag {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.as__service:hover .as__service-number {
  color: #ffffff;
}
.as__service:hover .as__service-content {
  transform: translate(0, 50px);
}
@media (max-width: 767px) {
  .as__service:hover .as__service-content {
    transform: translate(0, 0);
  }
}
.as__service:hover .as__service-title {
  color: #ffffff;
}
.as__service:hover .as__service-subtitle {
  opacity: 1;
  visibility: visible;
  color: #ffffff;
}
.as__service:hover .as__service-image {
  opacity: 1;
}
.as__service:hover .as__service-image-overlay {
  opacity: 1;
}
.as__service-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  overflow: hidden;
}
@media (max-width: 767px) {
  .as__service-image {
    opacity: 1;
  }
}
.as__service-image-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 10;
}
@media (max-width: 767px) {
  .as__service-image-overlay {
    opacity: 1;
  }
}
.as__service-image img {
  width: 140%;
  max-width: none;
  height: 120%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: translate(-10%, 0%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .as__service-image img {
    transform: translate(0%, 0%);
  }
}
.as__service-number {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: auto;
  position: absolute;
  left: 2vw;
  top: 2vw;
  font-family: "DM Sans", sans-serif;
  transition: color 0.3s ease-in-out;
  z-index: 10;
}
@media (max-width: 767px) {
  .as__service-number {
    font-size: 2.8rem;
    color: #ffffff;
  }
}
.as__service-content {
  margin: auto;
  margin-top: auto;
  text-align: center;
  transform: translate(0, 90px);
  transition: transform 0.3s ease-in-out;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .as__service-content {
    transform: translate(0, 0);
  }
}
.as__service-title {
  font-size: clamp(32px, 36 / var(--base-vw) * 100vw, 36px);
  font-weight: 700;
  text-align: center;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .as__service-title {
    font-size: 25px;
    color: #ffffff;
  }
}
.as__service-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(14px, 15 / var(--base-vw) * 100vw, 15px);
  font-weight: 400;
  opacity: 0.8;
  margin: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .as__service-subtitle {
    font-size: 14px;
    color: #ffffff;
    visibility: visible;
    opacity: 1;
  }
}

.news {
  padding: 8rem 0;
  background: #f5f5f5;
}
@media (max-width: 767px) {
  .news {
    padding: 3rem 0;
  }
}
.news__container {
  width: 85%;
  margin: 0 auto;
}
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .news__header {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}
.news__title {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .news__title {
    padding-left: 0;
  }
}
.news__title-en {
  font-size: clamp(35px, 50 / var(--base-vw) * 100vw, 50px);
  font-weight: 700;
  color: #333;
  margin: 0;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767px) {
  .news__title-en {
    font-size: 35px;
  }
}
.news__title-ja {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-weight: 500;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  top: -2px;
}
@media (max-width: 767px) {
  .news__title-ja {
    font-size: 15px;
  }
}
.news__more-btn {
  padding: 0.7rem 3rem;
  border: 1px solid #c3c3c3;
  border-radius: 200px;
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  color: #000000;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .news__more-btn {
    font-size: 14px;
    margin: 20px auto;
  }
}
.news__more-btn:hover {
  background: #000000;
  color: #fff;
}
.news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e5e5;
  transition: background-color 0.3s ease;
  cursor: pointer;
  position: relative;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
  }
}
.news__item:last-child {
  border-bottom: none;
}
.news__item:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.news__item-link {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 767px) {
  .news__item-link {
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.news__item-image {
  flex: 0 0 18rem;
  aspect-ratio: 16/9;
  border-radius: 0.8rem;
  overflow: hidden;
}
.news__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news__item:hover .news__item-image img {
  transform: scale(1.05);
}
.news__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  top: -20px;
}
@media (max-width: 767px) {
  .news__item-content {
    width: 100%;
  }
}
.news__item-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.news__item-date {
  font-size: clamp(11.9px, 17 / var(--base-vw) * 100vw, 17px);
  color: #333;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767px) {
  .news__item-date {
    font-size: 14px;
  }
}
.news__item-category {
  padding: 3px 25px 2px 25px;
  background: #f5f5f5;
  border: 1px solid #c3c3c3;
  border-radius: 100px;
  font-size: 10px;
  color: #333;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767px) {
  .news__item-category {
    font-size: 8px;
  }
}
.news__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 20px;
}
.news__item-description {
  font-size: clamp(14px, 18 / var(--base-vw) * 100vw, 18px);
  line-height: 2;
  color: #666;
  margin: 0;
}
@media (max-width: 767px) {
  .news__item-description {
    font-size: 14px;
  }
}
.news__item-arrow {
  flex: 0 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(17.5px, 25 / var(--base-vw) * 100vw, 25px);
  color: #333;
  transition: transform 0.3s ease;
  position: absolute;
  right: 20px;
  top: 20px;
}
@media (max-width: 767px) {
  .news__item-arrow {
    align-self: flex-end;
    top: 10px;
    right: 25px;
  }
}
.news__item:hover .news__item-arrow {
  transform: translateX(0.5rem);
}

.recruit {
  padding: 8rem 0;
  background: #ffffff;
}
@media (max-width: 767px) {
  .recruit {
    padding: 3rem 0;
  }
}
.recruit__container {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .recruit__container {
    gap: 0.5rem;
  }
}
.recruit__image {
  width: 100%;
  /* height: 350px; */
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 15px;
}
.recruit__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.recruit__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .recruit__content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0;
  }
}
.recruit__title {
  flex: 0.25;
}
@media (max-width: 767px) {
  .recruit__title {
    flex: 2;
  }
}
.recruit__title-text {
  font-size: clamp(25.2px, 36 / var(--base-vw) * 100vw, 36px);
  font-weight: 700;
  color: #333;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .recruit__title-text {
    font-size: 18px;
  }
}
.recruit__separator {
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}
@media (max-width: 767px) {
  .recruit__separator {
    width: 100%;
    margin: 0;
    top: 15px;
    position: relative;
  }
}
.recruit__more-btn {
  flex: 0 0 auto;
  padding: 0.5rem 2rem;
  background: transparent;
  border: 1px solid #c3c3c3;
  border-radius: 100px;
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-weight: 500;
  color: #333;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .recruit__more-btn {
    align-self: flex-end;
    font-size: 14px;
    padding: 0;
    border: none;
    position: relative;
    top: -5px;
  }
}
.recruit__more-btn:hover {
  background: #000000;
  color: #fff;
}

@media (max-width: 767px) {
  .home-news__item-image {
    flex: none !important;
    width: 118px !important;
    height: auto !important;
    margin-top: 15px;
  }
}

.simple-header {
  padding: 200px 0 40px 0;
}
@media (max-width: 767px) {
  .simple-header {
    padding: 122px 0 10px 0;
  }
}
.simple-header__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.simple-header__title {
  font-size: clamp(56px, 80 / var(--base-vw) * 100vw, 80px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
}
@media (max-width: 767px) {
  .simple-header__title {
    font-size: 60px;
  }
}
.simple-header__subtitle {
  font-size: clamp(17.5px, 25 / var(--base-vw) * 100vw, 25px);
  position: absolute;
  top: 45px;
  right: 0;
}
@media (max-width: 767px) {
  .simple-header__subtitle {
    display: none;
  }
}

.section-title {
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0 0 calc(60 / var(--base-vw) * 100vw) 0;
  font-weight: normal;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 300;
    padding: 10px 0;
  }
}
.section-title span {
  display: inline-block;
  font-size: clamp(7px, 10 / var(--base-vw) * 100vw, 10px);
  margin-right: calc(5 / var(--base-vw) * 100vw);
  position: relative;
  top: -2px;
}
@media (max-width: 767px) {
  .section-title span {
    font-size: 8px;
    margin-right: 5px;
    top: -3px;
  }
}
.section-title b {
  font-size: clamp(15.4px, 22 / var(--base-vw) * 100vw, 22px);
  font-weight: bold;
}
@media (max-width: 767px) {
  .section-title b {
    font-size: 18px;
    font-weight: 200;
    position: relative;
    top: 0px;
  }
}
.service-header .section-title {
  margin: 0 0 calc(10 / var(--base-vw) * 100vw) 0;
  z-index: 2;
}

.section {
  padding: 4rem 0;
}
.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4CB847;
  margin-bottom: 1rem;
  text-align: center;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 2rem;
  }
}
.section__subtitle {
  font-size: 1.5rem;
  color: #144E40;
  margin-bottom: 3rem;
  text-align: center;
}
.section--bg-gray {
  background-color: #F2F2F2;
}

.content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.content-area--narrow {
  max-width: 800px;
}
.content-area--wide {
  max-width: 1400px;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid--2cols {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .grid--2cols {
    grid-template-columns: 1fr;
  }
}
.grid--3cols {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .grid--3cols {
    grid-template-columns: 1fr;
  }
}
.grid--4cols {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .grid--4cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 430px) {
  .grid--4cols {
    grid-template-columns: 1fr;
  }
}

.card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
.card__title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #4CB847;
  margin-bottom: 1rem;
}
.card__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #343a40;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn--primary {
  background: #4CB847;
  color: white;
}
.btn--primary:hover {
  background: #144E40;
}
.btn--outline {
  background: transparent;
  color: #4CB847;
  border: 2px solid #4CB847;
}
.btn--outline:hover {
  background: #4CB847;
  color: white;
}
.btn--large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}
.btn--small {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
}

.list {
  list-style: none;
  padding: 0;
}
.list--check li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #343a40;
}
.list--check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CB847;
  font-weight: bold;
}
.list--bullet li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #343a40;
}
.list--bullet li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4CB847;
  font-weight: bold;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #F2F2F2;
}
.table th {
  background-color: #F2F2F2;
  font-weight: bold;
  color: #4CB847;
}
.table td {
  color: #343a40;
}

.image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.image--cover {
  -o-object-fit: cover;
  object-fit: cover;
  height: 400px;
}
.image--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.company-header {
  position: relative;
  height: 750px;
  background: url("../../dist/images/company/campany-header-bk.webp") no-repeat center center;
  background-size: cover;
  background-position: center center;
  padding-top: calc(300 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-header {
    height: 700px;
    min-height: auto;
    padding-top: 75%;
    background: url("../../dist/images/company/campany-header-bk-sp.webp") no-repeat center center;
    background-size: cover;
    background-position: center center;
  }
}
.company-header__head {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.company-header__head h2 {
  width: 85%;
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  display: block;
  margin: auto;
  position: relative;
  top: calc(50 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-header__head h2 {
    font-size: 16px;
  }
}
.company-header__head h2 span {
  font-size: clamp(10.5px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "DM Sans", sans-serif;
  padding-right: 5px;
}
@media (max-width: 767px) {
  .company-header__head h2 span {
    font-size: 12px;
  }
}
.company-header__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.company-header__container::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  content: "";
  background: #ffffff;
}
.company-header__textSlide {
  width: 100%;
  position: relative;
  line-height: 1.6;
  overflow: hidden;
}
.company-header__textSlide.swiper {
  overflow: hidden;
}
.company-header__textSlide .swiper-wrapper {
  display: flex;
  align-items: center;
  will-change: transform;
}
.company-header__textSlide .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.company-header__textSlide p {
  font-size: clamp(126px, 180 / var(--base-vw) * 100vw, 180px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .company-header__textSlide p {
    font-size: 120px;
    line-height: 1.2;
  }
}
.company-header__title {
  font-size: clamp(56px, 80 / var(--base-vw) * 100vw, 80px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
}
@media (max-width: 767px) {
  .company-header__title {
    font-size: 60px;
  }
}
.company-header__box {
  width: 100%;
  padding-top: 40px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .company-header__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
}
.company-header__box-left {
  width: 35%;
  position: relative;
}
@media (max-width: 767px) {
  .company-header__box-left {
    width: 100%;
  }
}
.company-header__box-left h3 {
  font-size: clamp(35px, 50 / var(--base-vw) * 100vw, 50px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
}
@media (max-width: 767px) {
  .company-header__box-left h3 {
    font-size: 24px;
  }
  .company-header__box-left h3 span {
    position: relative;
    left: -10px;
  }
}
.company-header__box-right {
  width: 65%;
  position: relative;
}
@media (max-width: 767px) {
  .company-header__box-right {
    width: 100%;
  }
}
.company-header__box-right p {
  font-size: clamp(14px, 15 / var(--base-vw) * 100vw, 15px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 250%;
}
@media (max-width: 767px) {
  .company-header__box-right p {
    font-size: 12px;
  }
}

.company-vision {
  position: relative;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .company-vision {
    padding: 60px 0;
  }
}
.company-vision__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.company-vision__head {
  position: relative;
  margin-bottom: calc(40 / var(--base-vw) * 100vw);
}
.company-vision__head h2 {
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  display: block;
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .company-vision__head h2 {
    font-size: 16px;
  }
}
.company-vision__head h2 span {
  font-size: clamp(10.5px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "DM Sans", sans-serif;
  padding-right: 5px;
}
@media (max-width: 767px) {
  .company-vision__head h2 span {
    font-size: 12px;
  }
}
.company-vision__head::after {
  content: "";
  display: block;
  width: 470px;
  height: 1px;
  background: #000000;
  margin-top: calc(10 / var(--base-vw) * 100vw);
  position: absolute;
  top: 30px;
  left: 0;
}
@media (max-width: 767px) {
  .company-vision__head::after {
    width: 30%;
  }
}
.company-vision__head::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e2e2e2;
  margin-top: calc(10 / var(--base-vw) * 100vw);
  position: absolute;
  top: 30px;
  left: 0;
}
@media (max-width: 767px) {
  .company-vision__head::before {
    width: 100%;
  }
}
.company-vision__box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(60 / var(--base-vw) * 100vw);
  padding: calc(60 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .company-vision__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
}
.company-vision__box-left {
  width: 40%;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .company-vision__box-left {
    width: 100%;
  }
}
.company-vision__box-left h3 {
  font-size: clamp(28px, 40 / var(--base-vw) * 100vw, 40px);
  font-weight: 900;
  line-height: 200%; /* 82px */
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .company-vision__box-left h3 {
    font-size: 25px;
    line-height: 2;
    padding: 10px 0;
  }
}
.company-vision__box-right {
  width: 55%;
  position: relative;
  flex: 1;
}
@media (max-width: 767px) {
  .company-vision__box-right {
    width: 100%;
  }
}
.company-vision__box-right p {
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 260%; /* 52px */
  margin: 0;
}
@media (max-width: 767px) {
  .company-vision__box-right p {
    font-size: 15px;
    padding-top: 10px;
    line-height: 250%;
  }
}

.company-value {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(390 / var(--base-vw) * 100vw) 0 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company-value {
    padding: 0;
    min-height: 300px;
  }
}
.company-value__bk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 650px;
  background: url("../../dist/images/company/company-value__bk.webp") no-repeat center center;
  background-size: 120% auto;
  background-position: center center;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company-value__bk {
    height: 450px;
    background: url("../../dist/images/company/company-value__bk-sp.webp") no-repeat center center;
    background-size: 120% auto;
    background-position: center center;
  }
}
.company-value__container {
  position: relative;
  width: 96.5%;
  margin-left: auto;
  z-index: 1;
  background: url(../../dist/images/common/pattern.webp);
  padding: calc(60 / var(--base-vw) * 100vw) calc(80 / var(--base-vw) * 100vw) calc(100 / var(--base-vw) * 100vw) calc(80 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-value__container {
    padding: 40px 30px 60px 30px;
    margin-top: 130px;
  }
}
.company-value__head {
  position: relative;
  margin-bottom: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-value__head {
    margin-bottom: 0px;
  }
}
.company-value__head h2 {
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  display: block;
  margin: 0 0 calc(15 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .company-value__head h2 {
    font-size: 16px;
    margin: 0;
  }
}
.company-value__head h2 span {
  font-size: clamp(10.5px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "DM Sans", sans-serif;
  padding-right: 5px;
}
@media (max-width: 767px) {
  .company-value__head h2 span {
    font-size: 12px;
  }
}
.company-value__box {
  position: relative;
  padding-bottom: calc(350 / var(--base-vw) * 100vw);
}
.company-value__box h3 {
  font-size: clamp(56px, 80 / var(--base-vw) * 100vw, 80px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  line-height: 1.3;
  margin: 0 0 calc(25 / var(--base-vw) * 100vw) 0;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .company-value__box h3 {
    font-size: 40px;
    line-height: 2;
    padding: 0;
    margin: 0 0 10px 0;
  }
}
.company-value__box h3 span {
  font-size: clamp(18.9px, 27 / var(--base-vw) * 100vw, 27px);
  font-weight: 700;
  display: inline;
  margin-left: calc(10 / var(--base-vw) * 100vw);
  line-height: 200%; /* 54px */
  letter-spacing: 1.35px;
}
@media (max-width: 767px) {
  .company-value__box h3 span {
    display: block;
    font-size: 17px;
    line-height: 2;
    margin-left: 0;
    line-height: 1;
  }
}
.company-value__box p {
  font-size: clamp(18.9px, 27 / var(--base-vw) * 100vw, 27px);
  font-weight: 700;
  line-height: 200%; /* 54px */
  letter-spacing: 1.35px;
  color: #000000;
}
@media (max-width: 767px) {
  .company-value__box p {
    font-size: 18px;
    line-height: 200%;
    letter-spacing: 0;
    padding-top: 15px;
  }
}

.company-map {
  width: 92.5%;
  height: 750px;
  margin-left: auto;
  position: relative;
  margin-top: calc(-380 / var(--base-vw) * 100vw);
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company-map {
    width: 90%;
    height: 400px;
    margin-top: -80px;
  }
}
.company-map__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  filter: grayscale(100%);
  overflow: hidden;
}
.company-map__wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  transform-origin: center center;
}
.company-map__container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.company-map__image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
}

.company-information {
  position: relative;
  background-color: #ffffff;
  padding: calc(100 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .company-information {
    padding: 60px 0;
  }
}
.company-information__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.company-information__head {
  position: relative;
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-information__head {
    margin-bottom: 40px;
  }
}
.company-information__head h2 {
  font-size: clamp(35px, 50 / var(--base-vw) * 100vw, 50px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  display: block;
  margin: 0;
}
@media (max-width: 767px) {
  .company-information__head h2 {
    font-size: 35px;
  }
}
.company-information__head h2 span {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  display: inline;
  margin-top: calc(10 / var(--base-vw) * 100vw);
  padding-left: 5px;
}
@media (max-width: 767px) {
  .company-information__head h2 span {
    font-size: 18px;
    margin-top: 5px;
  }
}
.company-information__box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(80 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-information__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
}
.company-information__box-left, .company-information__box-right {
  width: 48%;
  position: relative;
}
@media (max-width: 767px) {
  .company-information__box-left, .company-information__box-right {
    width: 100%;
  }
}
.company-information__box dl {
  margin: 0 0 calc(30 / var(--base-vw) * 100vw) 0;
  padding: 0;
}
.company-information__box dl:last-child {
  margin-bottom: 0;
}
.company-information__box dt {
  font-size: clamp(13px, 14 / var(--base-vw) * 100vw, 14px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin-bottom: calc(8 / var(--base-vw) * 100vw);
  display: block;
}
@media (max-width: 767px) {
  .company-information__box dt {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.company-information__box dd {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .company-information__box dd {
    font-size: 15px;
    line-height: 170%;
    margin-bottom: 20px;
  }
}

.company-member {
  position: relative;
  background-color: #e9e9e9;
  padding: calc(100 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .company-member {
    padding: 60px 0;
  }
}
.company-member__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .company-member__container {
    width: 100%;
  }
}
.company-member__head {
  position: relative;
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-member__head {
    width: 85%;
    margin: auto;
    margin-bottom: 10px;
  }
}
.company-member__head h2 {
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  display: block;
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .company-member__head h2 {
    font-size: 15px;
    margin: 0 0 10px 0;
  }
}
.company-member__head h2 span {
  font-size: clamp(10.5px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "DM Sans", sans-serif;
  padding-right: 5px;
}
@media (max-width: 767px) {
  .company-member__head h2 span {
    font-size: 10px;
    position: relative;
    top: -1px;
  }
}
.company-member__item {
  position: relative;
  margin-bottom: calc(100 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-member__item {
    margin-bottom: 60px;
  }
}
.company-member__item:last-child {
  margin-bottom: 0;
}
.company-member__item-main {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(60 / var(--base-vw) * 100vw);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .company-member__item-main {
    width: 90%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    margin: auto;
    padding-right: 5%;
  }
}
.company-member__item-main--reverse {
  flex-direction: row-reverse;
}
.company-member__item-image {
  width: 46%;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .company-member__item-image {
    width: 100%;
  }
}
.company-member__item-image--bottom {
  width: 45%;
  margin-top: calc(40 / var(--base-vw) * 100vw);
  align-items: flex-start;
}
@media (max-width: 767px) {
  .company-member__item-image--bottom {
    width: 100%;
    margin-top: 20px;
  }
}
.company-member__image-placeholder {
  width: 100%;
  padding-top: 100%;
  background-color: #d0d0d0;
  position: relative;
  overflow: hidden;
}
.company-member__image-placeholder--square {
  padding-top: 100%;
}
.company-member__image-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.2);
  will-change: transform;
}
.company-member__item-content {
  width: 45%;
  position: relative;
  flex: 1;
  padding-top: 170px;
}
@media (max-width: 767px) {
  .company-member__item-content {
    width: 100%;
    padding-top: 40px;
  }
}
.company-member__item-content--full {
  width: 45%;
  padding-top: 0;
}
@media (max-width: 767px) {
  .company-member__item-content--full {
    width: 100%;
    padding-top: 0;
  }
}
.company-member__item-title {
  font-size: clamp(8.4px, 12 / var(--base-vw) * 100vw, 12px);
  font-weight: normal;
  color: #000000;
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-member__item-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.company-member__item-name {
  font-size: clamp(14.7px, 21 / var(--base-vw) * 100vw, 21px);
  color: #000000;
  margin-bottom: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-member__item-name {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.company-member__item-name span {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: normal;
  color: #000000;
  margin-left: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-member__item-name span {
    font-size: 14px;
    margin-left: 5px;
  }
}
.company-member__item-intro {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  margin: 0 0 calc(45 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .company-member__item-intro {
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 2;
  }
}
.company-member__item-profile-title {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0 0 calc(15 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .company-member__item-profile-title {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}
.company-member__item-profile {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  margin: 0 0 calc(45 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .company-member__item-profile {
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 2;
  }
}
.company-member__item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company-member__item-list li {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  padding-left: calc(20 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .company-member__item-list li {
    font-size: 14px;
    line-height: 2;
    padding-left: 20px;
  }
}
.company-member__item-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.company-member__item-secondary {
  width: 46%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-right: 0;
  margin-top: calc(50 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .company-member__item-secondary {
    position: absolute;
    width: 148px;
    right: 0;
    top: 0;
    margin-top: 270px;
  }
}
.company-member__item-secondary--horizontal {
  width: 100%;
  margin-top: calc(40 / var(--base-vw) * 100vw);
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .company-member__item-secondary--horizontal {
    width: 148px;
    margin-top: 270px;
  }
}
.company-member__item-secondary--bottom {
  width: 50%;
  height: calc(300 / var(--base-vw) * 100vw);
  margin-top: 30px;
  margin-left: auto;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .company-member__item-secondary--bottom {
    width: 148px;
    height: 148px;
    margin-top: 270px;
  }
}
.company-member__item-secondary--bottom-image {
  width: calc(300 / var(--base-vw) * 100vw);
  height: calc(300 / var(--base-vw) * 100vw);
  margin-left: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company-member__item-secondary--bottom-image {
    width: 100%;
    height: 148px;
  }
}
.company-member__item-secondary--bottom-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.7);
  will-change: transform;
  transform-origin: center center;
}
.company-member__secondary-image-placeholder {
  width: calc(300 / var(--base-vw) * 100vw);
  height: calc(300 / var(--base-vw) * 100vw);
  margin-left: auto;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .company-member__secondary-image-placeholder {
    width: 300px;
    height: 148px;
  }
}
.company-member__secondary-image-placeholder--horizontal {
  width: 46%;
  height: calc(300 / var(--base-vw) * 100vw);
  margin-left: 0;
}
@media (max-width: 767px) {
  .company-member__secondary-image-placeholder--horizontal {
    width: 300px;
    height: 148px;
  }
}
.company-member__secondary-image-placeholder--horizontal-image {
  width: calc(300 / var(--base-vw) * 100vw);
  height: 100%;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  background-color: #c0c0c0;
}
@media (max-width: 767px) {
  .company-member__secondary-image-placeholder--horizontal-image {
    width: 100%;
  }
}
.company-member__secondary-image-placeholder--horizontal-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.45);
  will-change: transform;
  transform-origin: center center;
}
.company-member__secondary-image-placeholder--square {
  width: calc(300 / var(--base-vw) * 100vw);
  height: calc(300 / var(--base-vw) * 100vw);
  margin-left: auto;
}
.company-member__secondary-image-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.45);
  will-change: transform;
  transform-origin: center center;
}

@media (max-width: 767px) {
  .order1 {
    order: 2;
  }
  .order2 {
    order: 1;
  }
}
.news-list {
  position: relative;
  background-color: #ffffff;
  padding: calc(80 / var(--base-vw) * 100vw) 0;
}
.news-list__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(60 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-list__container {
    width: 85%;
    margin: auto;
    flex-direction: column;
    gap: 0;
  }
}
.news-list__sidebar {
  width: 20%;
  position: relative;
  flex-shrink: 0;
  border-top: 1px solid #000000;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .news-list__sidebar {
    width: 100%;
    padding-top: 0;
  }
}
.news-list__category {
  position: relative;
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-list__category {
    margin-bottom: 20px;
  }
}
.news-list__category-title {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news-list__category-title {
    font-size: 18px;
    margin: 0 0 0 0;
    padding-top: 15px;
  }
}
.news-list__category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list__category-item {
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-list__category-item {
    margin-bottom: 0px;
  }
}
.news-list__category-link {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  text-decoration: none;
  display: block;
  position: relative;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .news-list__category-link {
    font-size: 16px;
  }
}
.news-list__category-link::before {
  font-size: clamp(18.2px, 26 / var(--base-vw) * 100vw, 26px);
  content: "・";
  display: inline-block;
  margin-right: calc(5 / var(--base-vw) * 100vw);
  opacity: 0;
  line-height: 0.8;
  top: 2px;
  transform: translateX(calc(-10 / var(--base-vw) * 100vw));
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .news-list__category-link::before {
    font-size: 26px;
    margin-right: 5px;
  }
}
.news-list__category-link--active::before {
  opacity: 1;
  transform: translateX(0);
}
.news-list__category-link:hover {
  color: #afafaf;
}
.news-list__category-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.news-list__year {
  position: relative;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .news-list__year {
    padding-bottom: 20px;
  }
}
.news-list__year-title {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news-list__year-title {
    font-size: 18px;
    margin: 0 0 10px 0;
  }
}
.news-list__year-select {
  width: 100%;
  padding: calc(10 / var(--base-vw) * 100vw) calc(15 / var(--base-vw) * 100vw);
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(15 / var(--base-vw) * 100vw) center;
  background-size: calc(12 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  cursor: pointer;
  transition: border-color 0.3s ease;
}
@media (max-width: 767px) {
  .news-list__year-select {
    font-size: 16px;
    padding: 10px 15px;
    background-size: 12px 12px;
    background-position: right 15px center;
  }
}
.news-list__year-select:hover {
  border-color: #afafaf;
}
.news-list__year-select:focus {
  outline: none;
  border-color: #000000;
}
.news-list__content {
  width: 75%;
  position: relative;
  flex: 1;
  border-top: 1px solid #d0d0d0;
}
@media (max-width: 767px) {
  .news-list__content {
    width: 100%;
    padding-top: 20px;
  }
}
.news-list__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(10 / var(--base-vw) * 100vw);
  margin-top: calc(60 / var(--base-vw) * 100vw);
  padding-top: calc(40 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-list__pagination {
    margin-top: 40px;
    padding-top: 20px;
  }
}
.news-list__pagination .page-numbers {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  text-decoration: none;
  padding: calc(8 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  min-width: calc(40 / var(--base-vw) * 100vw);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 767px) {
  .news-list__pagination .page-numbers {
    font-size: 16px;
    padding: 8px 12px;
    min-width: 40px;
  }
}
.news-list__pagination .page-numbers:hover {
  background-color: #f5f5f5;
}
.news-list__pagination .page-numbers.current {
  background-color: #e5e5e5;
  font-weight: bold;
  cursor: default;
}
.news-list__pagination .page-numbers.prev, .news-list__pagination .page-numbers.next {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  padding: calc(8 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  min-width: auto;
}
@media (max-width: 767px) {
  .news-list__pagination .page-numbers.prev, .news-list__pagination .page-numbers.next {
    font-size: 18px;
    padding: 8px 12px;
  }
}
.news-list__pagination .page-numbers.prev:hover, .news-list__pagination .page-numbers.next:hover {
  background-color: transparent;
  color: #afafaf;
}
.news-list__pagination .page-numbers.dots {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  padding: calc(8 / var(--base-vw) * 100vw) calc(5 / var(--base-vw) * 100vw);
  min-width: auto;
  background-color: transparent;
  cursor: default;
}
@media (max-width: 767px) {
  .news-list__pagination .page-numbers.dots {
    font-size: 16px;
    padding: 8px 5px;
  }
}
.news-list__pagination .page-numbers.dots:hover {
  background-color: transparent;
}
.news-list__pagination-arrow {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  color: #000000;
  text-decoration: none;
  padding: calc(8 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .news-list__pagination-arrow {
    font-size: 18px;
    padding: 8px 12px;
  }
}
.news-list__pagination-arrow:hover {
  color: #afafaf;
}
.news-list__pagination-arrow--prev, .news-list__pagination-arrow--next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-list__pagination-number {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  text-decoration: none;
  padding: calc(8 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  min-width: calc(40 / var(--base-vw) * 100vw);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
  .news-list__pagination-number {
    font-size: 16px;
    padding: 8px 12px;
    min-width: 40px;
  }
}
.news-list__pagination-number:hover {
  background-color: #f5f5f5;
}
.news-list__pagination-number--active {
  background-color: #e5e5e5;
  font-weight: bold;
}
.news-list__pagination-ellipsis {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  color: #000000;
  padding: calc(8 / var(--base-vw) * 100vw) calc(5 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-list__pagination-ellipsis {
    font-size: 16px;
    padding: 8px 5px;
  }
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news__item {
  display: flex;
  align-items: flex-start;
  gap: calc(30 / var(--base-vw) * 100vw);
  padding: calc(30 / var(--base-vw) * 100vw) 0;
  border-bottom: 1px solid #e5e5e5;
  transition: background-color 0.3s ease;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .news__item {
    gap: 20px;
    margin-bottom: 30px;
  }
}
.news__item:last-child {
  border-bottom: none;
}
.news__item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
@media (max-width: 767px) {
  .news__archive-item .news__item-link {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .news__archive-item .news__item-arrow {
    display: none !important;
  }
}
.news__item-image {
  flex: 0 0 calc(300 / var(--base-vw) * 100vw);
  width: calc(180 / var(--base-vw) * 100vw);
  height: calc(180 / var(--base-vw) * 100vw);
  border-radius: calc(4 / var(--base-vw) * 100vw);
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news__item-image {
    flex: 0 0 250px;
    width: 100%;
    height: 250px;
  }
}
.news__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news__item:hover .news__item-image img {
  transform: scale(1.05);
}
.news__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(12 / var(--base-vw) * 100vw);
  padding-top: 30px;
}
.news__item-meta {
  display: flex;
  align-items: center;
  gap: calc(12 / var(--base-vw) * 100vw);
  margin-bottom: calc(8 / var(--base-vw) * 100vw);
}
.news__item-date {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  color: #000000;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767px) {
  .news__item-date {
    font-size: 15px;
  }
}
.news__item-category {
  padding: calc(3 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
  background: #f5f5f5;
  border: 1px solid #c3c3c3;
  border-radius: 100px;
  font-size: clamp(7px, 10 / var(--base-vw) * 100vw, 10px);
  color: #000000;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767px) {
  .news__item-category {
    font-size: 8px;
    padding: 1px 5px;
    margin-left: 10px;
    line-height: 1;
    position: relative;
    top: -1px;
  }
}
.news__item-title {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.7;
  margin: 0 0 calc(8 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news__item-title {
    font-size: 18px;
  }
}
.news__item-text {
  display: flex;
  flex-direction: column;
  gap: calc(8 / var(--base-vw) * 100vw);
  padding-right: 0;
}
.news__item-description {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 1.8;
  color: #666;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .news__item-description {
    font-size: 14px;
  }
}
.news__item-arrow {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  color: #000000;
  flex-shrink: 0;
  padding: calc(10 / var(--base-vw) * 100vw);
  transition: transform 0.3s ease;
  align-self: flex-start;
  margin-top: 0;
}
@media (max-width: 767px) {
  .news__item-arrow {
    font-size: 14px;
  }
}
.news__item:hover .news__item-arrow {
  transform: translateX(calc(5 / var(--base-vw) * 100vw));
}

.news-single {
  position: relative;
  background-color: #ffffff;
  padding: calc(200 / var(--base-vw) * 100vw) 0 calc(120 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news-single {
    padding: 150px 0 60px 0;
  }
}
.news-single__container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .news-single__container {
    width: 90%;
  }
}
.news-single__header {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: calc(40 / var(--base-vw) * 100vw);
  align-items: flex-start;
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
  padding-bottom: calc(40 / var(--base-vw) * 100vw);
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
  .news-single__header {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
}
.news-single__header-col {
  display: flex;
  align-items: flex-start;
}
.news-single__header-col--title {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news-single__header-col--title {
    width: 100%;
  }
}
.news-single__header-col--date, .news-single__header-col--category {
  flex-shrink: 0;
  padding-top: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-single__header-col--date, .news-single__header-col--category {
    padding-top: 0;
  }
}
.news-single__header-col--nav {
  justify-content: flex-end;
  margin-left: auto;
}
@media (max-width: 767px) {
  .news-single__header-col--nav {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.news-single__title {
  font-size: clamp(56px, 80 / var(--base-vw) * 100vw, 80px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .news-single__title {
    font-size: 40px;
  }
}
.news-single__date-wrapper, .news-single__category-wrapper {
  display: flex;
  flex-direction: column;
  gap: calc(4 / var(--base-vw) * 100vw);
  align-items: flex-start;
}
@media (max-width: 767px) {
  .news-single__date-wrapper, .news-single__category-wrapper {
    gap: 4px;
  }
}
.news-single__date-label, .news-single__category-label {
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  color: #000000;
  font-weight: normal;
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .news-single__date-label, .news-single__category-label {
    font-size: 14px;
  }
}
.news-single__date {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  color: #000000;
  font-weight: normal;
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .news-single__date {
    font-size: 16px;
  }
}
.news-single__category {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  color: #000000;
  font-weight: normal;
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .news-single__category {
    font-size: 16px;
  }
}
.news-single__navigation {
  display: flex;
  gap: 5px;
}
.news-single__nav-btn {
  display: flex;
  align-items: center;
  gap: calc(8 / var(--base-vw) * 100vw);
  padding: calc(10 / var(--base-vw) * 100vw) calc(18 / var(--base-vw) * 100vw);
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: 500;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  min-width: calc(80 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-single__nav-btn {
    font-size: 14px;
    padding: 10px 18px;
    min-width: 80px;
    border-radius: 100px;
  }
}
.news-single__nav-btn:hover {
  background-color: #333;
  opacity: 0.9;
}
.news-single__nav-btn--prev .news-single__nav-arrow {
  order: 1;
}
.news-single__nav-btn--prev .news-single__nav-text {
  order: 2;
}
.news-single__nav-btn--next .news-single__nav-arrow {
  order: 2;
}
.news-single__nav-btn--next .news-single__nav-text {
  order: 1;
}
.news-single__nav-arrow {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .news-single__nav-arrow {
    font-size: 14px;
    padding: 0 5px;
  }
}
.news-single__nav-text {
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .news-single__nav-text {
    font-size: 14px;
  }
}
.news-single__content {
  position: relative;
}
.news-single__post-title {
  font-size: clamp(17.5px, 25 / var(--base-vw) * 100vw, 25px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6;
  margin: 0 0 calc(50 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news-single__post-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.news-single__post-subtitle {
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6;
  margin: 0 0 calc(40 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news-single__post-subtitle {
    font-size: 18px;
  }
}
.news-single__image {
  width: 100%;
  margin: 0 0 calc(40 / var(--base-vw) * 100vw) 0;
  background-color: #f5f5f5;
  border-radius: calc(8 / var(--base-vw) * 100vw);
  overflow: hidden;
}
@media (max-width: 767px) {
  .news-single__image {
    margin: 0 0 20px 0;
    border-radius: 4px;
  }
}
.news-single__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-single__body {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 1.8;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .news-single__body {
    font-size: 14px;
  }
}
.news-single__body h1,
.news-single__body h2,
.news-single__body h3,
.news-single__body h4,
.news-single__body h5,
.news-single__body h6 {
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin: calc(40 / var(--base-vw) * 100vw) 0 calc(20 / var(--base-vw) * 100vw) 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .news-single__body h1,
  .news-single__body h2,
  .news-single__body h3,
  .news-single__body h4,
  .news-single__body h5,
  .news-single__body h6 {
    margin: 30px 0 10px 0;
  }
}
.news-single__body h1:first-child,
.news-single__body h2:first-child,
.news-single__body h3:first-child,
.news-single__body h4:first-child,
.news-single__body h5:first-child,
.news-single__body h6:first-child {
  margin-top: 0;
}
.news-single__body h1 {
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  color: #000000;
  position: relative;
  padding-left: calc(20 / var(--base-vw) * 100vw);
  margin: calc(40 / var(--base-vw) * 100vw) 0 calc(20 / var(--base-vw) * 100vw) 0;
  padding-bottom: calc(20 / var(--base-vw) * 100vw);
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 767px) {
  .news-single__body h1 {
    font-size: 18px;
    padding: 0 10px;
    padding-bottom: 10px;
    margin: 30px 0 10px 0;
  }
}
.news-single__body h1::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  color: #000000;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .news-single__body h1::before {
    font-size: 18px;
  }
}
.news-single__body h2 {
  width: 100%;
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  color: #000000;
  display: inline-block;
  padding: calc(12 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
  background-color: #f5f5f5;
  border-radius: 0;
  margin: calc(40 / var(--base-vw) * 100vw) 0 calc(20 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news-single__body h2 {
    font-size: 18px;
    padding: 10px 15px;
    margin: 30px 0 10px 0;
  }
}
.news-single__body h3 {
  width: 100%;
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  color: #ffffff;
  display: inline-block;
  padding: calc(12 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
  background-color: #666666;
  border-radius: 0;
  margin: calc(40 / var(--base-vw) * 100vw) 0 calc(20 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news-single__body h3 {
    font-size: 18px;
    padding: 10px 15px;
    margin: 30px 0 10px 0;
  }
}
.news-single__body h4 {
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  color: #000000;
  margin: calc(35 / var(--base-vw) * 100vw) 0 calc(18 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news-single__body h4 {
    font-size: 18px;
    margin: 25px 0 12px 0;
  }
}
.news-single__body h5 {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  color: #000000;
  margin: calc(30 / var(--base-vw) * 100vw) 0 calc(15 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news-single__body h5 {
    font-size: 16px;
    margin: 20px 0 10px 0;
  }
}
.news-single__body h6 {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  color: #000000;
  margin: calc(25 / var(--base-vw) * 100vw) 0 calc(12 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .news-single__body h6 {
    font-size: 14px;
    margin: 18px 0 8px 0;
  }
}
.news-single__body p {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .news-single__body p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.03em;
    margin: 0 0 15px 0;
  }
}
.news-single__body ul {
  list-style: disc;
  margin: calc(20 / var(--base-vw) * 100vw) 0;
  padding-left: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-single__body ul {
    margin: 15px 0;
    padding-left: 20px;
  }
}
.news-single__body ul li {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 1.8;
  color: #000000;
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .news-single__body ul li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
  }
}
.news-single__body a {
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  padding-right: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-single__body a {
    padding-right: 15px;
  }
}
.news-single__body a:hover {
  color: #afafaf;
}
.news-single__body a[target=_blank]::after, .news-single__body a[href^="http://"]:not([href*=livmo]):not([href*=localhost])::after, .news-single__body a[href^="https://"]:not([href*=livmo]):not([href*=localhost])::after {
  content: "";
  display: inline-block;
  width: calc(14 / var(--base-vw) * 100vw);
  height: calc(14 / var(--base-vw) * 100vw);
  background-image: url("../../dist/images/service/blank.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-left: calc(6 / var(--base-vw) * 100vw);
  position: relative;
  top: calc(-1 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-single__body a[target=_blank]::after, .news-single__body a[href^="http://"]:not([href*=livmo]):not([href*=localhost])::after, .news-single__body a[href^="https://"]:not([href*=livmo]):not([href*=localhost])::after {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    top: -1px;
  }
}
.news-single__body a[href$=".pdf"]::after, .news-single__body a[href$=".doc"]::after, .news-single__body a[href$=".docx"]::after, .news-single__body a[href$=".xls"]::after, .news-single__body a[href$=".xlsx"]::after, .news-single__body a[href$=".zip"]::after, .news-single__body a[href$=".rar"]::after, .news-single__body a[href$=".ppt"]::after, .news-single__body a[href$=".pptx"]::after {
  content: "";
  display: inline-block;
  width: calc(14 / var(--base-vw) * 100vw);
  height: calc(14 / var(--base-vw) * 100vw);
  background-image: url("../../dist/images/service/document.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-left: calc(6 / var(--base-vw) * 100vw);
  position: relative;
  top: calc(-1 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .news-single__body a[href$=".pdf"]::after, .news-single__body a[href$=".doc"]::after, .news-single__body a[href$=".docx"]::after, .news-single__body a[href$=".xls"]::after, .news-single__body a[href$=".xlsx"]::after, .news-single__body a[href$=".zip"]::after, .news-single__body a[href$=".rar"]::after, .news-single__body a[href$=".ppt"]::after, .news-single__body a[href$=".pptx"]::after {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    top: -1px;
  }
}
.news-single__body .news-single__button {
  display: inline-block;
  padding: calc(12 / var(--base-vw) * 100vw) calc(100 / var(--base-vw) * 100vw);
  background-color: #f5f5f5;
  color: #000000;
  text-decoration: none;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  margin: calc(20 / var(--base-vw) * 100vw) 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 767px) {
  .news-single__body .news-single__button {
    padding: 10px 60px;
    font-size: 14px;
    border-radius: 100px;
    margin: 15px 0;
  }
}
.news-single__body .news-single__button:hover {
  background-color: #e5e5e5;
  color: #000000;
}
.news-single__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: calc(80 / var(--base-vw) * 100vw);
  padding: calc(40 / var(--base-vw) * 100vw) 0;
  position: relative;
}
@media (max-width: 767px) {
  .news-single__footer {
    width: 100%;
    margin: auto;
    margin-top: 60px;
    padding: 30px 0;
  }
}
.news-single__footer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e5e5e5;
  z-index: 0;
}
@media (max-width: 767px) {
  .news-single__footer::before {
    height: 1px;
    background-color: #000000;
    z-index: 0;
    opacity: 0.2;
  }
}
.news-single__index-btn {
  display: flex;
  align-items: center;
  gap: calc(12 / var(--base-vw) * 100vw);
  padding: calc(35 / var(--base-vw) * 100vw) calc(150 / var(--base-vw) * 100vw);
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: 500;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .news-single__index-btn {
    padding: 22px 100px;
    font-size: 14px;
    border-radius: 100px;
  }
}
.news-single__index-btn:hover {
  background-color: #333;
  opacity: 0.9;
}
.news-single__index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: calc(4 / var(--base-vw) * 100vw);
  width: calc(20 / var(--base-vw) * 100vw);
  height: calc(20 / var(--base-vw) * 100vw);
  position: absolute;
  left: calc(50 / var(--base-vw) * 100vw);
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .news-single__index-grid {
    width: 20px;
    height: 20px;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
  }
}
.news-single__index-grid span {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: block;
}
.news-single__index-text {
  font-weight: bold;
  font-size: clamp(24.5px, 35 / var(--base-vw) * 100vw, 35px);
  line-height: 1;
}
@media (max-width: 767px) {
  .news-single__index-text {
    font-size: 25px;
  }
}

.contact-form {
  padding: 0 0 calc(150 / var(--base-vw) * 100vw) 0;
  background-color: #ffffff;
}
.contact-form__container {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(80 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__container {
    width: 85%;
    flex-direction: column;
    gap: 20px;
  }
}
.contact-form__left {
  width: 35%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact-form__left {
    width: 100%;
  }
}
.contact-form__progress {
  max-width: calc(250 / var(--base-vw) * 100vw);
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
  display: flex;
  flex-direction: column;
  gap: calc(15 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__progress {
    max-width: 157px;
    margin-bottom: 30px;
    gap: 10px;
  }
}
.contact-form__progress-bar {
  width: 100%;
  height: calc(12 / var(--base-vw) * 100vw);
  background-color: #d0d0d0;
  border-radius: calc(10 / var(--base-vw) * 100vw);
  position: relative;
  overflow: visible;
}
@media (max-width: 767px) {
  .contact-form__progress-bar {
    height: 8px;
    border-radius: 100px;
  }
}
.contact-form__progress-dot {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(12 / var(--base-vw) * 100vw);
  height: calc(12 / var(--base-vw) * 100vw);
  border-radius: 50%;
  background-color: #000000;
  z-index: 1;
  transition: left 0.3s ease, transform 0.3s ease;
}
@media (max-width: 767px) {
  .contact-form__progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
  }
}
.contact-form__progress-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-form__progress-labels {
    width: 106%;
    left: -5px;
  }
}
.contact-form__progress-label {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #d0d0d0;
  font-weight: normal;
  text-align: center;
  flex: 1;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form__progress-label {
    font-size: 10px;
  }
}
.contact-form__progress-label:first-child {
  text-align: left;
  flex: 0 0 auto;
  min-width: calc(40 / var(--base-vw) * 100vw);
}
.contact-form__progress-label:nth-child(2) {
  text-align: center;
}
.contact-form__progress-label:last-child {
  text-align: right;
  flex: 0 0 auto;
  min-width: calc(40 / var(--base-vw) * 100vw);
}
.contact-form__progress-label--active {
  color: #000000;
  font-weight: bold;
}
.contact-form__intro p {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .contact-form__intro p {
    font-size: 16px;
  }
}
.contact-form__intro p:last-child {
  margin-bottom: 0;
}
.contact-form__right {
  width: 60%;
  flex: 1;
}
@media (max-width: 767px) {
  .contact-form__right {
    width: 100%;
    padding-top: 40px;
  }
}
.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__form {
    gap: 30px;
  }
}
.contact-form__field-group {
  display: flex;
  gap: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__field-group {
    gap: 30px;
    flex-direction: column;
  }
}
.contact-form__field-group--2cols > .contact-form__field {
  flex: 1;
}
.contact-form__field {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: calc(20 / var(--base-vw) * 100vw);
  border-bottom: 1px solid #d0d0d0;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form__field {
    gap: 10px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.contact-form__field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: calc(12 / var(--base-vw) * 100vw);
  border-bottom: none;
  padding-left: calc(120 / var(--base-vw) * 100vw);
  padding-top: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__field--checkbox {
    padding-left: 0px;
    padding-top: 20px;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
  }
}
.contact-form__label {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: calc(5 / var(--base-vw) * 100vw);
  flex-shrink: 0;
  min-width: calc(100 / var(--base-vw) * 100vw);
  padding-left: 15px;
}
@media (max-width: 767px) {
  .contact-form__label {
    font-size: 16px;
    min-width: 100%;
    padding-left: 0px;
  }
}
.contact-form__required {
  color: #ff0000;
  font-size: clamp(8.4px, 12 / var(--base-vw) * 100vw, 12px);
  display: inline-block;
  line-height: 1;
  margin-left: calc(4 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__required {
    font-size: 14px;
    margin-left: 0px;
    position: relative;
    top: -7px;
  }
}
.contact-form__input, .contact-form__select, .contact-form__textarea {
  flex: 1;
  padding: calc(18 / var(--base-vw) * 100vw) calc(15 / var(--base-vw) * 100vw);
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background-color: #f5f5f5;
  border: none;
  border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 767px) {
  .contact-form__input, .contact-form__select, .contact-form__textarea {
    width: 100%;
    font-size: 16px;
    padding: 10px 15px;
  }
}
.contact-form__input:focus, .contact-form__select:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #000000;
  background-color: #ffffff;
}
.contact-form__input::-moz-placeholder, .contact-form__select::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #999;
}
.contact-form__input::placeholder, .contact-form__select::placeholder, .contact-form__textarea::placeholder {
  color: #999;
}
.contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(15 / var(--base-vw) * 100vw) center;
  background-size: calc(12 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  padding-right: calc(40 / var(--base-vw) * 100vw);
  cursor: pointer;
}
@media (max-width: 767px) {
  .contact-form__select {
    width: 100%;
    background-size: 8px 8px;
    padding-right: 15px;
  }
}
.contact-form__textarea {
  resize: vertical;
  min-height: calc(200 / var(--base-vw) * 100vw);
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .contact-form__textarea {
    width: 100%;
    min-height: 150px;
  }
}
.contact-form__field-with-note {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(5 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__field-with-note {
    width: 100%;
  }
}
.contact-form__note {
  font-size: clamp(8.4px, 12 / var(--base-vw) * 100vw, 12px);
  font-family: "Noto Sans JP", sans-serif;
  color: #666;
  margin: 0;
  text-align: right;
  margin-top: calc(-5 / var(--base-vw) * 100vw);
  position: absolute;
  right: 0;
  bottom: -25px;
}
@media (max-width: 767px) {
  .contact-form__note {
    font-size: 12px;
    margin-top: 5px;
    bottom: -30px;
  }
}
.contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: calc(12 / var(--base-vw) * 100vw);
  cursor: pointer;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-form__checkbox-label {
    gap: 10px;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
  }
}
.contact-form__checkbox {
  width: calc(40 / var(--base-vw) * 100vw);
  height: calc(40 / var(--base-vw) * 100vw);
  margin-top: calc(2 / var(--base-vw) * 100vw);
  flex-shrink: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .contact-form__checkbox {
    width: 30px;
    height: 30px;
    margin-top: 0px;
  }
}
.contact-form__checkbox:checked {
  background-color: #000000;
  border-color: #000000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M10 3L4.5 8.5 2 6' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(10 / var(--base-vw) * 100vw) calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__checkbox:checked {
    background-size: 8px 8px;
  }
}
.contact-form__checkbox:focus {
  outline: none;
  border-color: #000000;
}
.contact-form__checkbox-text {
  font-size: clamp(14px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.6;
  flex: 1;
  position: relative;
  top: 8px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  .contact-form__checkbox-text {
    font-size: 12px;
    top: 2px;
    line-height: 1.8;
    flex: 1;
    width: calc(100% - 40px);
  }
}
.contact-form__privacy-link {
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.contact-form__privacy-link:hover {
  color: #666;
}
.contact-form__submit {
  margin-top: calc(10 / var(--base-vw) * 100vw);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: calc(120 / var(--base-vw) * 100vw);
  font-size: 0;
}
@media (max-width: 767px) {
  .contact-form__submit {
    margin-top: 30px;
    padding-left: 0;
    justify-content: center;
  }
}
.contact-form__submit > *:not(.wpcf7-submit):not(.wpcf7-spinner) {
  display: none !important;
}
.contact-form__submit .wpcf7-submit,
.contact-form__submit .wpcf7-spinner {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
}
@media (max-width: 767px) {
  .contact-form__submit .wpcf7-submit,
  .contact-form__submit .wpcf7-spinner {
    font-size: 16px;
  }
}
.contact-form__submit-btn {
  padding: calc(12 / var(--base-vw) * 100vw) calc(60 / var(--base-vw) * 100vw);
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}
@media (max-width: 767px) {
  .contact-form__submit-btn {
    padding: 10px 60px;
    font-size: 16px;
    border-radius: 100px;
    margin: 0;
  }
}
.contact-form__submit-btn:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.contact-form__submit-btn:focus {
  outline: none;
}
.contact-form .wpcf7-form-control-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.contact-form__field--checkbox .contact-form .wpcf7-form-control-wrap {
  flex: 0 0 auto;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .contact-form__field--checkbox .contact-form .wpcf7-form-control-wrap {
    flex: 0 0 auto;
    display: inline-block;
    width: auto;
  }
}
.contact-form .wpcf7-form-control {
  width: 100%;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: clamp(8.4px, 12 / var(--base-vw) * 100vw, 12px);
  color: #dc3545;
  padding: calc(10 / var(--base-vw) * 100vw) 0;
  display: block !important;
  position: relative;
  width: 100%;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .contact-form .wpcf7-not-valid-tip {
    font-size: 12px;
  }
}
.contact-form .wpcf7-form-control-wrap[data-name=category] {
  position: relative;
  display: flex;
  flex-direction: column;
}
.contact-form .wpcf7-form-control-wrap[data-name=category] .wpcf7-not-valid-tip {
  position: relative;
  margin-top: calc(5 / var(--base-vw) * 100vw);
  width: 100%;
  display: block !important;
}
@media (max-width: 767px) {
  .contact-form .wpcf7-form-control-wrap[data-name=category] .wpcf7-not-valid-tip {
    margin-top: 5px;
  }
}
.contact-form .wpcf7-not-valid {
  border-color: #dc3545 !important;
}
.contact-form select.wpcf7-not-valid {
  border-color: #dc3545 !important;
}
.contact-form .wpcf7-response-output {
  margin-top: calc(20 / var(--base-vw) * 100vw);
  padding: calc(15 / var(--base-vw) * 100vw);
  border: 1px solid #d0d0d0;
  border-radius: calc(4 / var(--base-vw) * 100vw);
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
}
@media (max-width: 767px) {
  .contact-form .wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    font-size: 14px;
  }
}
.contact-form .wpcf7-form-control-wrap[data-name*=honeypot] {
  display: none !important;
}
.contact-form .contact-form__submit {
  text-align: right;
  font-size: 0;
}
.contact-form .contact-form__submit > :not(.wpcf7-submit):not(.wpcf7-spinner) {
  display: none !important;
}
.contact-form .contact-form__submit .wpcf7-submit,
.contact-form .contact-form__submit .wpcf7-spinner {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
}
@media (max-width: 767px) {
  .contact-form .contact-form__submit .wpcf7-submit,
  .contact-form .contact-form__submit .wpcf7-spinner {
    font-size: 16px;
  }
}
.contact-form .wpcf7-spinner {
  display: none;
}
.contact-form .wpcf7-acceptance {
  display: inline-block;
  flex-shrink: 0;
}
.contact-form .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.contact-form .contact-form__field--checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-form .contact-form__field--checkbox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
  }
}
.contact-form .contact-form__field--checkbox .wpcf7-form-control-wrap {
  flex: 0 0 auto;
  display: inline-block;
  width: auto;
  margin-right: 0;
}
@media (max-width: 767px) {
  .contact-form .contact-form__field--checkbox .wpcf7-form-control-wrap {
    flex-shrink: 0;
    display: inline-block;
    width: auto;
    margin-right: 0;
  }
}
.contact-form .contact-form__field--checkbox .wpcf7-acceptance {
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact-form .contact-form__field--checkbox .wpcf7-acceptance {
    display: inline-block;
    flex-shrink: 0;
  }
}
.contact-form .contact-form__field--checkbox .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
@media (max-width: 767px) {
  .contact-form .contact-form__field--checkbox .wpcf7-list-item {
    display: inline-block;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .contact-form .contact-form__field--checkbox .contact-form__checkbox-label {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    width: 100% !important;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .contact-form .contact-form__field--checkbox .contact-form__checkbox-text {
    flex: 1;
    width: auto;
    display: block;
    max-width: calc(100% - 40px);
  }
}
.contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form .wpcf7-form {
    gap: 30px;
  }
}
.contact-form .screen-reader-response {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form__confirm {
  width: 100%;
}
.contact-form__confirm-content {
  display: flex;
  flex-direction: column;
  gap: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__confirm-content {
    gap: 30px;
  }
}
.contact-form__confirm-title {
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0 0 calc(10 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .contact-form__confirm-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.contact-form__confirm-description {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .contact-form__confirm-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.contact-form__confirm-fields {
  display: flex;
  flex-direction: column;
  gap: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__confirm-fields {
    gap: 20px;
  }
}
.contact-form__confirm-field-group {
  display: flex;
  gap: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__confirm-field-group {
    gap: 20px;
    flex-direction: column;
  }
}
.contact-form__confirm-field-group--2cols > .contact-form__confirm-field {
  flex: 1;
}
.contact-form__confirm-field {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: calc(20 / var(--base-vw) * 100vw);
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: calc(15 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__confirm-field {
    gap: 10px;
    flex-direction: column;
    padding-bottom: 15px;
  }
}
.contact-form__confirm-label {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-weight: 500;
  flex-shrink: 0;
  min-width: calc(100 / var(--base-vw) * 100vw);
  padding-left: 15px;
}
@media (max-width: 767px) {
  .contact-form__confirm-label {
    font-size: 16px;
    min-width: 100%;
    padding-left: 0;
  }
}
.contact-form__confirm-value {
  flex: 1;
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  padding: calc(10 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .contact-form__confirm-value {
    font-size: 16px;
    padding: 10px 0;
  }
}
.contact-form__confirm-value--textarea {
  white-space: pre-wrap;
  word-wrap: break-word;
}
.contact-form__confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: calc(20 / var(--base-vw) * 100vw);
  margin-top: calc(30 / var(--base-vw) * 100vw);
  padding-left: calc(120 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__confirm-actions {
    gap: 20px;
    margin-top: 30px;
    padding-left: 0;
    justify-content: center;
  }
}
.contact-form__confirm-back, .contact-form__confirm-submit {
  padding: calc(12 / var(--base-vw) * 100vw) calc(60 / var(--base-vw) * 100vw);
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .contact-form__confirm-back, .contact-form__confirm-submit {
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 100px;
  }
}
.contact-form__confirm-back:hover, .contact-form__confirm-submit:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
.contact-form__confirm-back:focus, .contact-form__confirm-submit:focus {
  outline: none;
}
.contact-form__confirm-back {
  background-color: #f5f5f5;
}
.contact-form__confirm-back:hover {
  background-color: #e0e0e0;
  color: #000000;
  border-color: #d0d0d0;
}

.contact-form__complete-link {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s ease;
  display: inline-block;
  padding: calc(10 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .contact-form__complete-link {
    font-size: 16px;
    padding: 10px 20px;
  }
}
.contact-form__complete-link:hover {
  color: #666;
}

.service-header {
  position: relative;
  background-color: #ffffff;
}
.service-header__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.service-header__hero {
  position: relative;
  min-height: calc(700 / var(--base-vw) * 100vw);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  padding: calc(480 / var(--base-vw) * 100vw) 0 0 0;
}
@media (max-width: 767px) {
  .service-header__hero {
    min-height: 530px;
    padding: 350px 0 0 0;
  }
}
@media (max-width: 767px) {
  .service-header__hero[style*="hero-accommodation.webp"] {
    background-image: url("../../dist/images/service/hero-accommodation-sp.webp") !important;
  }
  .service-header__hero[style*="hero_creating.webp"] {
    background-image: url("../../dist/images/service/hero_creating-sp.webp") !important;
  }
  .service-header__hero[style*="hero_renovation.webp"] {
    background-image: url("../../dist/images/service/hero_renovation-sp.webp") !important;
  }
  .service-header__hero[style*="hero_real_estaten.webp"] {
    background-image: url("../../dist/images/service/hero_real_estaten-sp.webp") !important;
  }
}
.service-header__hero::before {
  width: 100%;
  height: 75%;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgb(255, 255, 255) 22%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.service-header__content {
  position: relative;
  z-index: 2;
  margin-bottom: calc(40 / var(--base-vw) * 100vw);
}
.service-header__title {
  font-size: clamp(56px, 80 / var(--base-vw) * 100vw, 80px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  line-height: 1;
  margin: calc(20 / var(--base-vw) * 100vw) 0 calc(20 / var(--base-vw) * 100vw) 0;
  display: inline;
}
@media (max-width: 767px) {
  .service-header__title {
    font-size: 39px;
    line-height: 1.2;
  }
}
.service-header__title-part1 {
  color: #000000;
}
.service-header__title-part2 {
  color: #d4a574;
}
.service-header--accommodation .service-header__title-part2 {
  color: #ff8c42;
}
.service-header--housing .service-header__title-part2 {
  color: #7ec8e3;
}
.service-header--planning .service-header__title-part2 {
  color: #98e4d6;
}
.service-header--realestate .service-header__title-part2 {
  color: #ffd700;
}
.service-header__text {
  font-size: clamp(19.6px, 28 / var(--base-vw) * 100vw, 28px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #000000;
  line-height: 1.6;
  margin: 0;
  display: inline-block;
  z-index: 2;
  padding-left: 15px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .service-header__text {
    font-size: 17px;
    display: block;
    padding-left: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.service-header__nav {
  position: absolute;
  top: calc(40 / var(--base-vw) * 100vw);
  right: 0;
  display: flex;
  gap: calc(10 / var(--base-vw) * 100vw);
  z-index: 2;
}
@media (max-width: 767px) {
  .service-header__nav {
    display: none;
  }
}
.service-header__nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(12 / var(--base-vw) * 100vw) calc(50 / var(--base-vw) * 100vw);
  background-color: #040000;
  color: #ffffff;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}
.service-header__nav-item span {
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  transition: transform 0.3s ease;
  position: absolute;
  right: 10px;
}
.service-header__nav-item:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.service-header__nav-item:hover span {
  transform: translateX(calc(5 / var(--base-vw) * 100vw));
}
.service-header__description {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(40 / var(--base-vw) * 100vw);
  border-top: 1px solid #d0d0d0;
  padding-top: calc(25 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .service-header__description {
    display: block;
    padding-top: 10px;
  }
}
.service-header__description::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 20%;
  height: 1px;
  background-color: #000000;
}
.service-header__description-text {
  flex: 1;
  font-size: clamp(14px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 260%; /* 46.8px */
  margin: 0;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .service-header__description-text {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.service-header__airbnb {
  flex-shrink: 0;
  width: calc(200 / var(--base-vw) * 100vw);
  height: auto;
  padding: 25px;
}
@media (max-width: 767px) {
  .service-header__airbnb {
    width: 85%;
    padding: 35px 0;
    margin: auto;
  }
}
.service-header__airbnb img {
  width: 100%;
  height: auto;
  display: block;
}
.service-header__button {
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
  text-align: left;
}
@media (max-width: 767px) {
  .service-header__button {
    text-align: center;
  }
}
.service-header__tags {
  margin-bottom: calc(80 / var(--base-vw) * 100vw);
}
.service-header__tags ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-header__tags ul {
    padding: 25px 0;
    gap: 15px 10px;
  }
}
.service-header__tags li {
  display: inline-block;
  padding: calc(12 / var(--base-vw) * 100vw) calc(18 / var(--base-vw) * 100vw);
  background-color: #f5f5f5;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  font-size: clamp(10.5px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1;
}
@media (max-width: 767px) {
  .service-header__tags li {
    font-size: 13px;
    padding: 10px 15px;
  }
}
.service-header__tags li span {
  color: #999;
  margin-right: calc(2 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-header__tags li span {
    margin-right: 10px;
  }
}

.service-flow {
  position: relative;
  background-color: #ffffff;
  padding: calc(100 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .service-flow {
    padding: 50px 0;
  }
}
.service-flow__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.service-flow__steps {
  display: flex;
  align-items: flex-start;
  gap: calc(30 / var(--base-vw) * 100vw);
  position: relative;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .service-flow__steps {
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
  }
}
.service-flow__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(15 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .service-flow__step {
    gap: 10px;
    width: 100%;
  }
}
.service-flow__step-title-wrapper {
  display: inline-flex;
  flex-direction: column;
  gap: calc(8 / var(--base-vw) * 100vw);
  align-items: flex-start;
}
.service-flow__step-title-en {
  font-size: clamp(22.4px, 32 / var(--base-vw) * 100vw, 32px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.2;
  display: inline-block;
}
@media (max-width: 767px) {
  .service-flow__step-title-en {
    font-size: 35px;
    padding-bottom: 5px;
  }
}
.service-flow__step-line {
  width: 100%;
  height: calc(10 / var(--base-vw) * 100vw);
  background-color: #000000;
  margin: 0;
}
@media (max-width: 767px) {
  .service-flow__step-line {
    height: 5px;
  }
}
.service-flow__step-title-ja {
  font-size: clamp(15.4px, 22 / var(--base-vw) * 100vw, 22px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .service-flow__step-title-ja {
    font-size: 18px;
    padding-top: 10px;
  }
}
.service-flow__step-description {
  font-size: clamp(14px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 2.2;
  margin: 0;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .service-flow__step-description {
    font-size: 15px;
    padding-top: 5px;
  }
}
.service-flow__arrow {
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  flex-shrink: 0;
  padding: calc(20 / var(--base-vw) * 100vw) calc(10 / var(--base-vw) * 100vw) 0 0;
  align-self: flex-start;
  position: absolute;
  right: 0;
  top: calc(-15 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-flow__arrow {
    font-size: 18px;
    padding: 10px 5px 0 0;
    top: 5px;
    transform: rotate(90deg);
  }
}

.service-concept {
  position: relative;
  z-index: 1;
  margin-top: calc(-200 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-concept {
    margin-top: -150px;
  }
}
.service-concept__container {
  width: 95%;
  background: url("../../dist/images/common/pattern.webp");
  margin-left: auto;
  position: relative;
  padding: calc(100 / var(--base-vw) * 100vw) calc(80 / var(--base-vw) * 100vw);
}
.service-concept__items {
  display: flex;
  flex-direction: column;
  gap: calc(40 / var(--base-vw) * 100vw);
  padding-left: 100px;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .service-concept__items {
    padding-left: 10px;
    padding-top: 40px;
    gap: 35px;
  }
}
.service-concept__item {
  display: flex;
  align-items: center;
  gap: calc(30 / var(--base-vw) * 100vw);
  background-color: #ffffff;
  border-radius: calc(8 / var(--base-vw) * 100vw);
  padding: calc(40 / var(--base-vw) * 100vw) calc(50 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .service-concept__item {
    gap: 20px;
    padding: 20px 15px;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .service-concept__item:nth-of-type(3) .service-concept__item-title {
    padding-top: 35px;
    padding-bottom: 20px;
  }
}
.service-concept__item-number {
  font-size: clamp(40.6px, 58 / var(--base-vw) * 100vw, 58px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  line-height: 1;
  flex-shrink: 0;
  min-width: calc(100 / var(--base-vw) * 100vw);
  position: absolute;
  left: calc(25 / var(--base-vw) * 100vw);
  top: calc(-30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-concept__item-number {
    font-size: 40px;
    margin-bottom: 8px;
    min-width: 80px;
    left: 15px;
    top: -20px;
  }
}
.service-concept__item-icon {
  width: calc(220 / var(--base-vw) * 100vw);
  height: calc(220 / var(--base-vw) * 100vw);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: calc(20 / var(--base-vw) * 100vw);
  border-radius: 500px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-concept__item-icon {
    width: 120px;
    height: 120px;
    margin-left: 0;
    position: absolute;
    left: -10px;
    top: 45px;
  }
}
.service-concept__item-icon img {
  width: 100%;
  height: 100%;
}
.service-concept__item-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #000000;
  background-color: #ffffff;
  z-index: 0;
}
.service-concept__item-icon img {
  position: relative;
  z-index: 1;
}
.service-concept__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(20 / var(--base-vw) * 100vw);
  padding-left: calc(50 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-concept__item-content {
    padding-left: 0;
    gap: 15px;
  }
}
.service-concept__item-title {
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .service-concept__item-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 36px */
    padding-bottom: 40px;
    padding-left: 125px;
    padding-top: 45px;
  }
}
.service-concept__item-description {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767px) {
  .service-concept__item-description {
    font-size: 14px;
    padding: 0 15px;
    padding-bottom: 20px;
    line-height: 200%; /* 30px */
    text-align: justify;
  }
}

.service-overview, .service-real-estate-overview {
  position: relative;
  background: url("../../dist/images/common/pattern.webp");
  padding: calc(100 / var(--base-vw) * 100vw) 0 0 0;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .service-overview, .service-real-estate-overview {
    padding: 30px 0 0 0;
  }
}
.service-overview__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.service-overview::before, .service-real-estate-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, transparent 0, transparent calc(12.5% - 0.5px), rgba(255, 255, 255, 0.3) calc(12.5% - 0.5px), rgba(255, 255, 255, 0.3) calc(12.5% + 0.5px), transparent calc(12.5% + 0.5px)), linear-gradient(to right, transparent 0, transparent calc(25% - 0.5px), rgba(255, 255, 255, 0.3) calc(25% - 0.5px), rgba(255, 255, 255, 0.3) calc(25% + 0.5px), transparent calc(25% + 0.5px)), linear-gradient(to right, transparent 0, transparent calc(37.5% - 0.5px), rgba(255, 255, 255, 0.3) calc(37.5% - 0.5px), rgba(255, 255, 255, 0.3) calc(37.5% + 0.5px), transparent calc(37.5% + 0.5px)), linear-gradient(to right, transparent 0, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.3) calc(50% - 0.5px), rgba(255, 255, 255, 0.3) calc(50% + 0.5px), transparent calc(50% + 0.5px)), linear-gradient(to right, transparent 0, transparent calc(62.5% - 0.5px), rgba(255, 255, 255, 0.3) calc(62.5% - 0.5px), rgba(255, 255, 255, 0.3) calc(62.5% + 0.5px), transparent calc(62.5% + 0.5px)), linear-gradient(to right, transparent 0, transparent calc(75% - 0.5px), rgba(255, 255, 255, 0.3) calc(75% - 0.5px), rgba(255, 255, 255, 0.3) calc(75% + 0.5px), transparent calc(75% + 0.5px)), linear-gradient(to right, transparent 0, transparent calc(87.5% - 0.5px), rgba(255, 255, 255, 0.3) calc(87.5% - 0.5px), rgba(255, 255, 255, 0.3) calc(87.5% + 0.5px), transparent calc(87.5% + 0.5px));
  background-size: 100% 100%;
  background-position: center;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.service-overview__head {
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
}
.service-overview__content {
  display: flex;
  gap: calc(60 / var(--base-vw) * 100vw);
  margin-bottom: calc(80 / var(--base-vw) * 100vw);
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .service-overview__content {
    flex-direction: column;
    gap: 20px;
  }
}
.service-overview__column {
  flex: 1;
  position: relative;
  padding-top: calc(30 / var(--base-vw) * 100vw);
}
.service-overview__column-title {
  font-size: clamp(35px, 50 / var(--base-vw) * 100vw, 50px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: rgba(0, 0, 0, 0.1);
  margin: 0 0 calc(30 / var(--base-vw) * 100vw) 0;
  line-height: 1;
  position: relative;
  top: calc(5 / var(--base-vw) * 100vw);
  left: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .service-overview__column-title {
    font-size: 50px;
  }
}
.service-overview__column-heading {
  display: flex;
  align-items: center;
  gap: calc(15 / var(--base-vw) * 100vw);
  margin-bottom: calc(20 / var(--base-vw) * 100vw);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .service-overview__column-heading {
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 15px;
  }
}
.service-overview__column-line {
  display: block;
  width: calc(40 / var(--base-vw) * 100vw);
  height: 1px;
  background-color: #000000;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .service-overview__column-line {
    width: 20px;
  }
}
.service-overview__column-heading-text {
  font-size: clamp(22.4px, 32 / var(--base-vw) * 100vw, 32px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .service-overview__column-heading-text {
    font-size: 20px;
  }
}
.service-overview__column-intro {
  font-size: clamp(14px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  margin: 0 0 calc(40 / var(--base-vw) * 100vw) 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .service-overview__column-intro {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.service-overview__items {
  display: flex;
  flex-direction: column;
  gap: calc(30 / var(--base-vw) * 100vw);
  position: relative;
  z-index: 1;
}
.service-overview__item {
  display: flex;
  flex-direction: column;
  gap: calc(15 / var(--base-vw) * 100vw);
}
.service-overview__item-box {
  width: 100%;
  display: block;
  padding: calc(12 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
  background-color: #000000;
  color: #ffffff;
  border-radius: calc(4 / var(--base-vw) * 100vw);
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .service-overview__item-box {
    font-size: 14px;
    padding: 5px 15px;
    text-align: center;
  }
}
.service-overview__item-description {
  font-size: clamp(14px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  padding-left: 15px;
}
@media (max-width: 767px) {
  .service-overview__item-description {
    font-size: 14px;
    padding: 10px 0;
    padding-left: 0;
  }
}
.service-overview__background {
  position: relative;
  width: 100%;
  height: calc(500 / var(--base-vw) * 100vw);
  margin-top: calc(80 / var(--base-vw) * 100vw);
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 767px) {
  .service-overview__background {
    height: 300px;
    margin-top: 40px;
  }
}
.service-overview__background-image {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 150%;
  background: url("../../dist/images/service/overview-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
@media (max-width: 767px) {
  .service-overview__background-image {
    height: 150%;
  }
}

.service-faq {
  position: relative;
  background-color: #292929;
  padding: calc(100 / var(--base-vw) * 100vw) 0;
  color: #ffffff;
}
@media (max-width: 767px) {
  .service-faq {
    padding: 50px 0;
  }
}
.service-faq__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.service-faq__header {
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
}
.service-faq__title {
  font-size: clamp(35px, 50 / var(--base-vw) * 100vw, 50px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  margin: 0 0 calc(10 / var(--base-vw) * 100vw) 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .service-faq__title {
    font-size: 32px;
    margin: 0 0 35px 0;
  }
}
.service-faq__subtitle {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  margin: 0;
  display: inline;
  font-weight: normal;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .service-faq__subtitle {
    font-size: 16px;
    padding-left: 10px;
  }
}
.service-faq__content {
  display: flex;
  gap: calc(60 / var(--base-vw) * 100vw);
  align-items: stretch;
}
@media (max-width: 767px) {
  .service-faq__content {
    flex-direction: column;
    gap: calc(40 / var(--base-vw) * 100vw);
    align-items: flex-start;
  }
}
.service-faq__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}
.service-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: calc(30 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .service-faq__item {
    padding: 20px 0;
  }
}
.service-faq__item:first-child {
  padding-top: 0;
}
.service-faq__question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: calc(20 / var(--base-vw) * 100vw);
  background: none;
  border: none;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .service-faq__question {
    gap: 15px;
  }
}
.service-faq__question:hover {
  opacity: 0.8;
}
.service-faq__question[aria-expanded=true] .service-faq__icon {
  transform: rotate(0deg);
}
.service-faq__question[aria-expanded=true] .service-faq__icon::before {
  opacity: 1;
  transform: rotate(0deg);
}
.service-faq__question[aria-expanded=true] .service-faq__icon::after {
  opacity: 0;
  transform: rotate(90deg);
}
.service-faq__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(30 / var(--base-vw) * 100vw);
  height: calc(30 / var(--base-vw) * 100vw);
  flex-shrink: 0;
  position: relative;
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: normal;
  line-height: 1;
  margin-top: calc(2 / var(--base-vw) * 100vw);
  color: #ffffff;
}
@media (max-width: 767px) {
  .service-faq__icon {
    font-size: 18px;
    width: 20px;
    height: 20px;
    font-weight: 200;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.service-faq__icon::before {
  content: "+";
  position: absolute;
  opacity: 1;
  transform: rotate(0deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-faq__icon::after {
  content: "−";
  position: absolute;
  opacity: 0;
  transform: rotate(90deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-faq__question[aria-expanded=true] .service-faq__icon::before {
  opacity: 0;
  transform: rotate(-90deg);
}
.service-faq__question[aria-expanded=true] .service-faq__icon::after {
  opacity: 1;
  transform: rotate(0deg);
}
.service-faq__question-text {
  flex: 1;
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  padding-top: calc(5 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-faq__question-text {
    font-size: 15px;
    padding-top: 5px;
    line-height: 200%; /* 30px */
  }
}
.service-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: calc(50 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-faq__answer {
    padding-left: 35px;
  }
}
.service-faq__item[data-open=true] .service-faq__answer {
  max-height: 2000px;
  padding-top: calc(20 / var(--base-vw) * 100vw);
  padding-bottom: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-faq__item[data-open=true] .service-faq__answer {
    padding-top: 20px;
    padding-bottom: 5px;
  }
}
.service-faq__answer-text {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  line-height: 2.5;
  margin: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .service-faq__answer-text {
    font-size: 13px;
    line-height: 220%; /* 28.6px */
    padding-bottom: 10px;
  }
}

.service-contact {
  position: relative;
  padding: calc(120 / var(--base-vw) * 100vw) 0;
  color: #ffffff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service-contact {
    padding: 100px 0;
  }
}
.service-contact__bg {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url("../../dist/images/service/contact-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}
.service-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
@media (max-width: 767px) {
  .service-contact::before {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.service-contact__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.service-contact__content {
  max-width: calc(800 / var(--base-vw) * 100vw);
  position: relative;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .service-contact__content {
    max-width: 100%;
  }
}
.service-contact__title {
  font-size: clamp(56px, 80 / var(--base-vw) * 100vw, 80px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 767px) {
  .service-contact__title {
    font-size: 50px;
    margin: 0 0 0 0;
  }
}
.service-contact__subtitle {
  font-size: clamp(17.5px, 25 / var(--base-vw) * 100vw, 25px);
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  margin: 0 0 calc(30 / var(--base-vw) * 100vw) 0;
  font-weight: normal;
  text-align: center;
}
@media (max-width: 767px) {
  .service-contact__subtitle {
    font-size: 18px;
    margin: 0 0 10px 0;
  }
}
.service-contact__description {
  font-size: clamp(14px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  line-height: 1.8;
  margin: 0 0 calc(50 / var(--base-vw) * 100vw) 0;
  text-align: center;
}
@media (max-width: 767px) {
  .service-contact__description {
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 200%; /* 30px */
  }
}
.service-contact__button {
  margin-top: calc(40 / var(--base-vw) * 100vw);
  text-align: center;
}
.service-contact__button .common-btn {
  color: #ffffff;
  background-color: transparent;
  border-color: #ffffff;
}
.service-contact__button .common-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.service-housing-business {
  position: relative;
  background: url("../../dist/images/common/pattern.webp");
  padding: 0;
  width: 92.5%;
  margin-left: auto;
  margin-top: 150px;
}
.service-housing-business::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  opacity: 0;
}
@media (max-width: 767px) {
  .service-housing-business::before {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .service-housing-business {
    padding: 0;
    margin-top: 150px;
    width: 100%;
  }
}
.service-housing-business__container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.service-housing-business__tabs {
  display: flex;
  gap: calc(20 / var(--base-vw) * 100vw);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  top: calc(-67 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-housing-business__tabs {
    width: 90%;
    position: relative;
    top: -165px;
    flex-direction: column;
    gap: 5px;
    margin: auto;
    display: none;
  }
}
.service-housing-business__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(20 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
  background-color: #000000;
  border: none;
  cursor: pointer;
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  min-width: 368px;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .service-housing-business__tab {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    font-size: 18px;
    text-align: center;
    justify-content: center;
    margin: auto;
    font-weight: bold;
  }
}
.service-housing-business__tab[aria-selected=true] {
  background-color: #000000;
  color: #ffffff;
  font-weight: bold;
}
.service-housing-business__tab[aria-selected=false] {
  background-color: #000000;
  color: #ffffff;
}
.service-housing-business__tab:hover {
  background-color: #666 !important;
  color: #ffffff !important;
}
.service-housing-business__tab-number {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  margin-right: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-housing-business__tab-number {
    position: relative;
    left: 10px;
  }
}
.service-housing-business__tab-text {
  font-family: "Noto Sans JP", sans-serif;
  flex: 1;
  text-align: center;
}
.service-housing-business__tab-arrow {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  color: #ffffff;
  margin-left: calc(10 / var(--base-vw) * 100vw);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .service-housing-business__tab-arrow {
    font-size: 16px;
    position: relative;
    right: 10px;
  }
}
.service-housing-business__anchors {
  display: none;
  flex-direction: column;
  gap: calc(15 / var(--base-vw) * 100vw);
  margin-bottom: calc(40 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-housing-business__anchors {
    width: 90%;
    margin: auto;
    display: flex;
    position: relative;
    top: -105px;
    gap: 5px;
  }
}
.service-housing-business__anchor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(20 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.3s ease;
  position: relative;
  min-width: 368px;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .service-housing-business__anchor {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    font-size: 18px;
    text-align: center;
    justify-content: center;
    margin: auto;
    font-weight: bold;
    width: 90%;
  }
}
.service-housing-business__anchor:hover {
  background-color: #666 !important;
  color: #ffffff !important;
}
.service-housing-business__content {
  position: relative;
}
@media (max-width: 767px) {
  .service-housing-business__content {
    top: -100px;
  }
}
.service-housing-business__panel {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(20 / var(--base-vw) * 100vw));
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.service-housing-business__panel[hidden] {
  display: none;
}
@media (max-width: 767px) {
  .service-housing-business__panel[hidden] {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.service-housing-business__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.service-housing-business__panel-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: calc(120 / var(--base-vw) * 100vw);
  align-items: start;
}
@media (max-width: 767px) {
  .service-housing-business__panel-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.service-housing-business__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: calc(80 / var(--base-vw) * 100vw);
}
.service-housing-business__heading {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0 0 calc(40 / var(--base-vw) * 100vw) 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .service-housing-business__heading {
    margin-bottom: 25px;
    padding: 15px 0;
  }
}
.service-housing-business__heading-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(26.6px, 38 / var(--base-vw) * 100vw, 38px);
  font-weight: bold;
  color: #ffffff;
  background-color: #000000;
  width: calc(80 / var(--base-vw) * 100vw);
  height: calc(70 / var(--base-vw) * 100vw);
  margin-right: calc(16 / var(--base-vw) * 100vw);
  line-height: 1;
  flex-shrink: 0;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767px) {
  .service-housing-business__heading-number {
    font-size: 24px;
    width: 50px;
    height: 50px;
    margin-right: 12px;
  }
}
.service-housing-business__heading-text {
  font-size: clamp(17.5px, 25 / var(--base-vw) * 100vw, 25px);
  font-weight: bold;
  line-height: 1.2;
  padding-left: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-housing-business__heading-text {
    font-size: 18px;
  }
}
.service-housing-business__headline {
  font-size: clamp(23.1px, 33 / var(--base-vw) * 100vw, 33px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-housing-business__headline {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    left: -10px;
  }
}
.service-housing-business__description {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0 0 calc(60 / var(--base-vw) * 100vw) 0;
  line-height: 2.4;
}
@media (max-width: 767px) {
  .service-housing-business__description {
    font-size: 16px;
    line-height: 260%; /* 41.6px */
    margin-bottom: 35px;
  }
}
.service-housing-business__points {
  margin-top: 0;
}
.service-housing-business__points-title {
  display: flex;
  align-items: center;
  font-size: clamp(15.4px, 22 / var(--base-vw) * 100vw, 22px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0 0 calc(36 / var(--base-vw) * 100vw) 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .service-housing-business__points-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.service-housing-business__points-title::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: calc(12 / var(--base-vw) * 100vw);
  background: repeating-linear-gradient(to right, #000000 0, #000000 calc(4 / var(--base-vw) * 100vw), transparent calc(4 / var(--base-vw) * 100vw), transparent calc(8 / var(--base-vw) * 100vw));
}
@media (max-width: 767px) {
  .service-housing-business__points-title::after {
    margin-left: 12px;
    background: repeating-linear-gradient(to right, #000000 0, #000000 2px, transparent 2px, transparent 4px);
  }
}
@media (max-width: 767px) {
  .service-housing-business__points-title {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.service-housing-business__point {
  margin-bottom: calc(45 / var(--base-vw) * 100vw);
}
.service-housing-business__point:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .service-housing-business__point {
    margin-bottom: 30px;
  }
}
.service-housing-business__point-title {
  display: inline-block;
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  background-color: #000000;
  padding: calc(8 / var(--base-vw) * 100vw) calc(16 / var(--base-vw) * 100vw);
  margin: 0 0 calc(18 / var(--base-vw) * 100vw) 0;
  line-height: 1.4;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .service-housing-business__point-title {
    font-size: 16px;
    padding: 6px 20px;
    margin-bottom: 12px;
  }
}
.service-housing-business__point-text {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 2.4;
}
@media (max-width: 767px) {
  .service-housing-business__point-text {
    font-size: 16px;
    line-height: 2.2;
  }
}
.service-housing-business__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.service-housing-business__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .service-housing-business__image {
    height: 400px;
    order: -1;
  }
}
.service-housing-business__image-text-wrapper {
  position: absolute;
  right: calc(25 / var(--base-vw) * 100vw);
  top: 0;
  bottom: 0;
  width: calc(150 / var(--base-vw) * 100vw);
  overflow: hidden;
  pointer-events: none;
}
@media (max-width: 767px) {
  .service-housing-business__image-text-wrapper {
    width: 58px;
    right: 18px;
  }
}
.service-housing-business__image-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
  position: relative;
  width: 100%;
  height: auto;
  animation: service-housing-text-slide var(--slide-duration, 20s) linear infinite;
}
@keyframes service-housing-text-slide {
  0% {
    transform: translate3d(0, calc(-1 * var(--slide-height, 0px)), 0);
  }
  100% {
    transform: translate3d(0, calc(-2 * var(--slide-height, 0px)), 0);
  }
}
.service-housing-business__text-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin-bottom: calc(100 / var(--base-vw) * 100vw);
  flex-shrink: 0;
}
.service-housing-business__text-image:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .service-housing-business__text-image {
    margin-bottom: calc(60 / var(--base-vw) * 100vw);
  }
}
.service-housing-business__image-text span {
  display: block;
  white-space: nowrap;
  line-height: 1.2;
  margin-bottom: calc(100 / var(--base-vw) * 100vw);
  flex-shrink: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(39.2px, 56 / var(--base-vw) * 100vw, 56px);
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  color: #ffffff;
}
.service-housing-business__image-text span:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .service-housing-business__image-text span {
    font-size: clamp(26.6px, 38 / var(--base-vw) * 100vw, 38px);
    margin-bottom: calc(60 / var(--base-vw) * 100vw);
  }
}

.service-renovation {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(350 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-renovation {
    overflow: visible;
    margin-bottom: 70px;
  }
}
.service-renovation .wwd__carousel-right {
  z-index: 10;
  top: calc(60 / var(--base-vw) * 100vw);
}
.service-renovation__container {
  width: 92.5%;
  margin-left: auto;
  background: url("../../dist/images/common/pattern.webp");
  padding: calc(300 / var(--base-vw) * 100vw) calc(80 / var(--base-vw) * 100vw) calc(100 / var(--base-vw) * 100vw) calc(80 / var(--base-vw) * 100vw);
  position: relative;
  z-index: 2;
  top: calc(250 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-renovation__container {
    top: 150px;
    padding: 100px 25px 50px 25px;
  }
}
.service-renovation__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(30 / var(--base-vw) * 100vw);
  padding-top: 70px;
}
@media (max-width: 767px) {
  .service-renovation__items {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-top: 40px;
    gap: 45px;
  }
}
.service-renovation__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc(20 / var(--base-vw) * 100vw);
  background-color: #ffffff;
  border-radius: calc(8 / var(--base-vw) * 100vw);
  padding: calc(80 / var(--base-vw) * 100vw) calc(30 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .service-renovation__item {
    padding: 30px 20px;
    gap: 15px;
  }
}
.service-renovation__item-number {
  font-size: clamp(33.6px, 48 / var(--base-vw) * 100vw, 48px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  line-height: 1;
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
  position: absolute;
  left: calc(25 / var(--base-vw) * 100vw);
  top: calc(-22 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-renovation__item-number {
    font-size: 40px;
    margin-bottom: 8px;
    left: 10px;
    top: -20px;
  }
}
.service-renovation__item-icon {
  width: calc(180 / var(--base-vw) * 100vw);
  height: calc(180 / var(--base-vw) * 100vw);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: center;
  margin-bottom: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-renovation__item-icon {
    width: 150px;
    height: 150px;
  }
}
.service-renovation__item-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.service-renovation__item-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 0;
}
.service-renovation__item-icon img {
  position: relative;
  z-index: 1;
}
.service-renovation__item-icon-placeholder {
  position: relative;
  z-index: 1;
}
.service-renovation__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(15 / var(--base-vw) * 100vw);
  width: 100%;
}
@media (max-width: 767px) {
  .service-renovation__item-content {
    gap: 12px;
  }
}
.service-renovation__item-title {
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  padding-bottom: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-renovation__item-title {
    font-size: 18px;
  }
}
.service-renovation__item-description {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  padding-left: calc(20 / var(--base-vw) * 100vw);
  list-style: none;
}
@media (max-width: 767px) {
  .service-renovation__item-description {
    font-size: 14px;
    padding: 0 15px;
  }
}
.service-renovation__item-description li {
  position: relative;
  padding-left: calc(15 / var(--base-vw) * 100vw);
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-renovation__item-description li {
    padding-left: 12px;
    margin-bottom: 8px;
  }
}
.service-renovation__item-description li:last-child {
  margin-bottom: 0;
}
.service-renovation__item-description li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #000000;
}

.service-real-estate-overview {
  padding: 0;
}
.service-real-estate-overview .service-overview__background {
  margin-top: 0;
}
.service-real-estate-overview .service-overview__background-image {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url("../../dist/images/service/service-real-estate-overview.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

.service-real-estate-concept {
  position: relative;
  z-index: 10;
  margin-top: calc(-200 / var(--base-vw) * 100vw);
  margin-bottom: calc(125 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-real-estate-concept {
    margin-top: -150px;
    margin-bottom: 50px;
  }
}
.service-real-estate-concept__container {
  width: 95%;
  background: url("../../dist/images/common/pattern.webp");
  margin-left: auto;
  position: relative;
  padding: calc(100 / var(--base-vw) * 100vw) calc(80 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-real-estate-concept__container {
    padding: 30px 25px 50px 25px;
  }
}
.service-real-estate-concept__header {
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-real-estate-concept__header {
    padding-left: 0;
    padding-top: 0px;
    margin-bottom: 20px;
  }
}
.service-real-estate-concept__title {
  font-size: clamp(33.6px, 48 / var(--base-vw) * 100vw, 48px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.4;
  margin: 0 0 calc(30 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .service-real-estate-concept__title {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 165%; /* 54px */
    letter-spacing: 0.5px;
  }
}
.service-real-estate-concept__description {
  font-size: clamp(18.9px, 27 / var(--base-vw) * 100vw, 27px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #000000;
  line-height: 2;
  margin: 0;
}
@media (max-width: 767px) {
  .service-real-estate-concept__description {
    font-size: 16px;
    line-height: 200%; /* 36px */
  }
}
.service-real-estate-concept__items {
  display: flex;
  flex-direction: column;
  gap: calc(40 / var(--base-vw) * 100vw);
  padding-left: 0;
  padding-top: calc(50 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-real-estate-concept__items {
    padding-left: 0;
    padding-top: calc(30 / var(--base-vw) * 100vw);
    gap: calc(30 / var(--base-vw) * 100vw);
  }
}
.service-real-estate-concept__item {
  display: grid;
  grid-template-columns: auto 0.4fr 1fr;
  align-items: center;
  gap: calc(40 / var(--base-vw) * 100vw);
  background-color: #ffffff;
  border-radius: calc(8 / var(--base-vw) * 100vw);
  padding: calc(60 / var(--base-vw) * 100vw) calc(50 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .service-real-estate-concept__item {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 20px;
  }
}
.service-real-estate-concept__item-number {
  font-size: clamp(24.5px, 35 / var(--base-vw) * 100vw, 35px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .service-real-estate-concept__item-number {
    font-size: 32px;
    position: absolute;
    left: 28px;
    top: 30px;
  }
}
.service-real-estate-concept__item-title {
  font-size: clamp(21px, 30 / var(--base-vw) * 100vw, 30px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .service-real-estate-concept__item-title {
    font-size: 18px;
    padding-left: 70px;
    padding-top: 2px;
  }
}
.service-real-estate-concept__item-description {
  font-size: clamp(14px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .service-real-estate-concept__item-description {
    font-size: 14px;
    line-height: 200%; /* 36px */
  }
}
.service-real-estate-concept__item-description li {
  position: relative;
  padding-left: calc(20 / var(--base-vw) * 100vw);
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .service-real-estate-concept__item-description li {
    padding-left: 15px;
    margin-bottom: 8px;
  }
}
.service-real-estate-concept__item-description li:last-child {
  margin-bottom: 0;
}
.service-real-estate-concept__item-description li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #000000;
}

.recruit-header {
  position: relative;
  height: 880px;
  background: url("../../dist/images/recruit/recruit-header-bk.webp") no-repeat center center;
  background-size: cover;
  background-position: center center;
  padding-top: calc(450 / var(--base-vw) * 100vw);
  z-index: 1;
}
@media (max-width: 767px) {
  .recruit-header {
    height: 700px;
    min-height: auto;
    padding-top: 100%;
    background: url("../../dist/images/recruit/recruit-header-bk-sp.webp") no-repeat center center;
    background-size: cover;
    background-position: center center;
  }
}
.recruit-header__head {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.recruit-header__head h2 {
  width: 85%;
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .recruit-header__head h2 {
    font-size: 16px;
  }
}
.recruit-header__head h2 span {
  font-size: clamp(10.5px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "DM Sans", sans-serif;
  padding-right: 5px;
}
@media (max-width: 767px) {
  .recruit-header__head h2 span {
    font-size: 12px;
  }
}
.recruit-header__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.recruit-header__container::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  margin: auto;
  content: "";
  background: #ffffff;
}
.recruit-header__textSlide {
  width: 100%;
  position: relative;
  line-height: 1.6;
  overflow: hidden;
}
.recruit-header__textSlide.swiper {
  overflow: hidden;
}
.recruit-header__textSlide .swiper-wrapper {
  display: flex;
  align-items: center;
  will-change: transform;
}
.recruit-header__textSlide .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.recruit-header__textSlide p {
  font-size: clamp(126px, 180 / var(--base-vw) * 100vw, 180px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .recruit-header__textSlide p {
    font-size: 120px;
    line-height: 1.2;
  }
}
.recruit-header__title {
  font-size: clamp(56px, 80 / var(--base-vw) * 100vw, 80px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
}
@media (max-width: 767px) {
  .recruit-header__title {
    font-size: 60px;
  }
}
.recruit-header__box {
  width: 100%;
  padding-top: 40px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recruit-header__box-left {
  width: 100%;
  position: relative;
}
.recruit-header__box-left h3 {
  font-size: clamp(21px, 30 / var(--base-vw) * 100vw, 30px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
}
@media (max-width: 767px) {
  .recruit-header__box-left h3 {
    font-size: 24px;
  }
  .recruit-header__box-left h3 span {
    position: relative;
    left: -10px;
  }
}

.recruit-job {
  position: relative;
  background-color: #ffffff;
  padding: calc(100 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .recruit-job {
    padding: 60px 0;
  }
}
.recruit-job__container {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
.recruit-job__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .recruit-job__header {
    flex-direction: column;
    gap: calc(30 / var(--base-vw) * 100vw);
    margin-bottom: 25px;
  }
}
.recruit-job__title-wrapper {
  flex: 1;
  position: relative;
}
.recruit-job__title-wrapper .section-title {
  margin-bottom: 0;
}
.recruit-job__title-en {
  margin-top: calc(15 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .recruit-job__title-en {
    margin-top: 10px;
  }
}
.recruit-job__title-en-text {
  font-size: clamp(35px, 50 / var(--base-vw) * 100vw, 50px);
  font-weight: 200;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0 0 calc(8 / var(--base-vw) * 100vw) 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .recruit-job__title-en-text {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 15px;
  }
}
.recruit-job__title-line {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 0;
}
@media (max-width: 767px) {
  .recruit-job__title-line {
    display: none;
  }
}
.recruit-job__tabs {
  display: flex;
  gap: calc(10 / var(--base-vw) * 100vw);
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 1px;
}
@media (max-width: 767px) {
  .recruit-job__tabs {
    width: 100%;
    justify-content: flex-start;
    position: relative;
    right: auto;
    border-bottom: 1px solid #8c8c8c;
    display: flex;
    justify-content: center;
  }
}
.recruit-job__tab {
  padding: calc(15 / var(--base-vw) * 100vw) calc(30 / var(--base-vw) * 100vw);
  background-color: #c0c0c0;
  border: none;
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #7d7d7d;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: normal;
}
.recruit-job__tab[aria-selected=true] {
  background-color: #ededed;
  color: #000000;
}
.recruit-job__tab:hover {
  background-color: #343a40;
  color: #ffffff;
}
@media (max-width: 767px) {
  .recruit-job__tab {
    width: 33%;
    font-size: 13px;
    min-height: 60px;
  }
}
.recruit-job__panel {
  display: block;
}
.recruit-job__panel[hidden] {
  display: none;
}
.recruit-job__list {
  display: flex;
  flex-direction: column;
  gap: calc(60 / var(--base-vw) * 100vw);
  margin-bottom: calc(80 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .recruit-job__list {
    gap: 15px;
    margin-bottom: 50px;
  }
}
.recruit-job__card {
  background-color: #ffffff;
  width: 100%;
}
.recruit-job__card-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: calc(120 / var(--base-vw) * 100vw);
  align-items: flex-start;
}
@media (max-width: 767px) {
  .recruit-job__card-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.recruit-job__card-header {
  background-color: #F2F2F2;
  padding: calc(20 / var(--base-vw) * 100vw) calc(30 / var(--base-vw) * 100vw);
  border-radius: calc(4 / var(--base-vw) * 100vw);
  min-width: calc(300 / var(--base-vw) * 100vw);
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .recruit-job__card-header {
    padding: 15px 20px;
    min-width: auto;
    width: 100%;
  }
}
.recruit-job__card-title {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .recruit-job__card-title {
    font-size: 18px;
  }
}
.recruit-job__card-content {
  padding: 0;
}
.recruit-job__card-description {
  margin-bottom: calc(30 / var(--base-vw) * 100vw);
}
.recruit-job__card-description p {
  font-size: clamp(14px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 2.2;
  margin: 0;
}
@media (max-width: 767px) {
  .recruit-job__card-description p {
    font-size: 14px;
    line-height: 1.8;
  }
}
.recruit-job__card-description p b {
  font-weight: bold;
}
.recruit-job__card-conditions {
  margin-top: calc(30 / var(--base-vw) * 100vw);
  text-align: center;
}
@media (max-width: 767px) {
  .recruit-job__card-conditions {
    margin-top: 20px;
  }
}
.recruit-job__conditions-title {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0 auto calc(20 / var(--base-vw) * 100vw) auto;
  padding: calc(10 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
  background-color: #F2F2F2;
  display: inline-block;
  border-radius: calc(4 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .recruit-job__conditions-title {
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 3px;
  }
}
.recruit-job__conditions-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.recruit-job__condition-item {
  margin-bottom: calc(20 / var(--base-vw) * 100vw);
  display: flex;
  flex-direction: column;
  gap: calc(5 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .recruit-job__condition-item {
    margin-bottom: 15px;
  }
}
.recruit-job__condition-label {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
}
@media (max-width: 767px) {
  .recruit-job__condition-label {
    font-size: 14px;
  }
}
.recruit-job__condition-value {
  font-size: clamp(14px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 767px) {
  .recruit-job__condition-value {
    font-size: 14px;
  }
}
.recruit-job__benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.recruit-job__benefits-list li {
  font-size: clamp(14px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 1.8;
  padding-left: calc(20 / var(--base-vw) * 100vw);
  position: relative;
}
.recruit-job__benefits-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  .recruit-job__benefits-list li {
    font-size: 14px;
    padding-left: 15px;
  }
}
.recruit-job__entry {
  text-align: center;
  margin-top: calc(60 / var(--base-vw) * 100vw);
  position: relative;
}
.recruit-job__entry::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background-color: #8c8c8c;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media (max-width: 767px) {
  .recruit-job__entry {
    margin-top: 40px;
  }
}
.recruit-job__entry-button {
  display: inline-block;
  padding: calc(20 / var(--base-vw) * 100vw) calc(80 / var(--base-vw) * 100vw);
  background-color: #ffffff;
  color: #000000;
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
  border-radius: calc(50 / var(--base-vw) * 100vw);
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #000000;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.recruit-job__entry-button:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}
@media (max-width: 767px) {
  .recruit-job__entry-button {
    padding: 15px 60px;
    font-size: 16px;
    border-radius: 40px;
  }
}

.recruit-resources {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  background-color: #000000;
}
@media (max-width: 767px) {
  .recruit-resources {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 70px;
  }
}
.recruit-resources__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.recruit-resources__bg-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.recruit-resources__blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
}
.recruit-resources__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(140px, 200 / var(--base-vw) * 100vw, 200px);
  font-weight: 300;
  font-family: "DM Sans", sans-serif;
  color: rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767px) {
  .recruit-resources__bg-text {
    font-size: clamp(56px, 80 / var(--base-vw) * 100vw, 80px);
  }
}
.recruit-resources__container {
  position: relative;
  z-index: 3;
  width: 92.5%;
  margin-left: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .recruit-resources__container {
    padding: calc(60 / var(--base-vw) * 100vw) 0;
  }
}
.recruit-resources__header {
  margin-bottom: calc(80 / var(--base-vw) * 100vw);
  position: relative;
  margin-top: calc(-40 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .recruit-resources__header {
    margin-bottom: 60px;
    margin-top: -40px;
  }
}
.recruit-resources__header .section-title {
  color: #000000;
  margin-bottom: calc(20 / var(--base-vw) * 100vw);
}
.recruit-resources__textSlide {
  width: 100%;
  position: absolute;
  line-height: 1.6;
  overflow: hidden;
  margin-top: calc(20 / var(--base-vw) * 100vw);
  color: #ffffff;
  top: calc(100 / var(--base-vw) * 100vw);
}
.recruit-resources__textSlide.swiper {
  overflow: hidden;
}
.recruit-resources__textSlide .swiper-wrapper {
  display: flex;
  align-items: center;
  will-change: transform;
}
.recruit-resources__textSlide .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.recruit-resources__textSlide p {
  font-size: clamp(126px, 180 / var(--base-vw) * 100vw, 180px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #ffffff;
  white-space: nowrap;
  margin: 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .recruit-resources__textSlide p {
    font-size: 80px;
    line-height: 1;
  }
}
.recruit-resources__cards {
  width: 100%;
  overflow: visible;
  padding: calc(150 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .recruit-resources__cards {
    padding-top: 100px;
    padding-right: 33.333%;
    padding-bottom: 0;
    padding-left: 0;
  }
}
.recruit-resources__cards .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .recruit-resources__cards .swiper-wrapper {
    gap: 30px;
  }
}
.recruit-resources__cards .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
}
.recruit-resources__card {
  padding: calc(40 / var(--base-vw) * 100vw) calc(50 / var(--base-vw) * 100vw) calc(40 / var(--base-vw) * 100vw) calc(0 / var(--base-vw) * 100vw);
  width: calc(450 / var(--base-vw) * 100vw);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .recruit-resources__card {
    width: 100%;
    padding: 0;
  }
}
.recruit-resources__card-number {
  font-size: clamp(24.5px, 35 / var(--base-vw) * 100vw, 35px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
  line-height: 1;
}
@media (max-width: 767px) {
  .recruit-resources__card-number {
    font-size: 35px;
  }
}
.recruit-resources__card-line {
  width: 70%;
  height: 1px;
  border-top: 1px dashed #000000;
  margin-bottom: calc(20 / var(--base-vw) * 100vw);
  position: absolute;
  right: 12%;
  top: 50px;
}
@media (max-width: 767px) {
  .recruit-resources__card-line {
    width: 70%;
    margin-bottom: 15px;
    top: 17px;
    right: 0;
  }
}
.recruit-resources__card-title {
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: calc(30 / var(--base-vw) * 100vw) 0 calc(40 / var(--base-vw) * 100vw) 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .recruit-resources__card-title {
    min-height: 70px;
    font-size: 20px;
    margin-bottom: 15px;
    padding: 10px 0;
    display: flex;
    justify-content: left;
    align-items: center;
    line-height: 1.8;
  }
}
.recruit-resources__card-description {
  font-size: clamp(14px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 2.5;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 767px) {
  .recruit-resources__card-description {
    text-align: justify;
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.03em;
  }
}

.recruit-overview {
  position: relative;
  background-color: #ffffff;
  padding: calc(150 / var(--base-vw) * 100vw) 0;
  min-height: 105vh;
  z-index: 1;
}
@media (max-width: 767px) {
  .recruit-overview {
    padding: 250px 0 550px 0;
  }
}
.recruit-overview__container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.recruit-overview__pattern {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  transform: translateY(10%);
  width: 100%;
  height: 354px;
  background: url("../../dist/images/index/wa-pattern.webp") repeat center center;
  background-size: 100px 115px;
  z-index: 0;
  pointer-events: none;
  margin: auto;
}
.recruit-overview__images {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 1;
  top: calc(-220 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .recruit-overview__images {
    min-height: 600px;
  }
}
.recruit-overview__image {
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center center;
  transition: none;
}
.recruit-overview__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.recruit-overview__image--top-left {
  top: 5%;
  left: 2%;
  width: clamp(330px, 400 / var(--base-vw) * 100vw, 450px);
  aspect-ratio: 16/10;
}
.recruit-overview__image--middle-left {
  top: 4%;
  left: 40%;
  width: clamp(210px, 210 / var(--base-vw) * 100vw, 300px);
  aspect-ratio: 16/11;
}
.recruit-overview__image--top-right {
  top: 12%;
  right: 4%;
  left: auto;
  width: clamp(170px, 320 / var(--base-vw) * 100vw, 450px);
  aspect-ratio: 4/5;
}
.recruit-overview__image--bottom-left {
  bottom: 15%;
  left: 4%;
  top: auto;
  width: clamp(80px, 250 / var(--base-vw) * 100vw, 250px);
  aspect-ratio: 12/16;
}
.recruit-overview__image--bottom-right {
  bottom: 6%;
  right: 0%;
  left: auto;
  top: auto;
  width: clamp(220px, 420 / var(--base-vw) * 100vw, 600px);
  aspect-ratio: 16/10;
}
.recruit-overview__image.is-visible {
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: none;
}
@media (max-width: 767px) {
  .recruit-overview__image--top-left {
    top: -170px;
    left: -20px;
    width: 240px;
  }
  .recruit-overview__image--middle-left {
    top: -60px;
    left: auto;
    right: 20px;
    width: 90px;
  }
  .recruit-overview__image--top-right {
    top: auto;
    bottom: -280px;
    right: 30px;
    width: 130px;
  }
  .recruit-overview__image--bottom-left {
    bottom: -240px;
    left: 30px;
    width: 150px;
  }
  .recruit-overview__image--bottom-right {
    top: auto;
    bottom: -460px;
    right: 30px;
    width: 230px;
  }
}
.recruit-overview__content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(calc(30 / var(--base-vw) * 100vw));
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
  padding-top: calc(100 / var(--base-vw) * 100vw);
}
.recruit-overview__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .recruit-overview__content {
    margin-top: calc(60 / var(--base-vw) * 100vw);
  }
}
.recruit-overview__text {
  max-width: calc(800 / var(--base-vw) * 100vw);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .recruit-overview__text {
    max-width: 100%;
  }
}
.recruit-overview__title-en {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: 300;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .recruit-overview__title-en {
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 0;
  }
}
.recruit-overview__title-ja {
  font-size: clamp(28px, 40 / var(--base-vw) * 100vw, 40px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0 0 calc(50 / var(--base-vw) * 100vw) 0;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .recruit-overview__title-ja {
    font-size: 27px;
    margin-bottom: 15px;
  }
}
.recruit-overview__description {
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .recruit-overview__description {
    width: 85%;
    margin: auto;
    padding-top: 50px;
  }
  .recruit-overview__description::before {
    content: "";
    display: block;
    width: 30%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.recruit-overview__description p {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 2.2;
  margin: 0 0 calc(30 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .recruit-overview__description p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: calc(20 / var(--base-vw) * 100vw);
  }
}
@media (max-width: 767px) {
  .recruit-overview__description {
    margin-bottom: calc(40 / var(--base-vw) * 100vw);
  }
}
.recruit-overview__target {
  margin-top: calc(60 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .recruit-overview__target {
    margin-top: calc(40 / var(--base-vw) * 100vw);
  }
}
.recruit-overview__target-title {
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0 0 calc(30 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .recruit-overview__target-title {
    font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
    margin-bottom: calc(20 / var(--base-vw) * 100vw);
  }
}
.recruit-overview__target-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recruit-overview__target-list li {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  line-height: 2;
  padding-left: calc(30 / var(--base-vw) * 100vw);
  position: relative;
  margin-bottom: calc(15 / var(--base-vw) * 100vw);
}
.recruit-overview__target-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .recruit-overview__target-list li {
    font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
    padding-left: calc(20 / var(--base-vw) * 100vw);
    margin-bottom: calc(10 / var(--base-vw) * 100vw);
  }
}

.archive-page {
  background-color: #ffffff;
}

.archive-hero {
  position: relative;
  padding: calc(160 / var(--base-vw) * 100vw) 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f7f7 0%, #fefefe 100%);
}
@media (max-width: 767px) {
  .archive-hero {
    padding: 120px 0 70px 0;
  }
}
.archive-hero__bgText {
  position: absolute;
  inset: 0;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(154px, 220 / var(--base-vw) * 100vw, 220px);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  text-transform: lowercase;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .archive-hero__bgText {
    font-size: 90px;
    letter-spacing: 0;
  }
}
.archive-hero__inner {
  position: relative;
  width: 100%;
  max-width: calc(1200 / var(--base-vw) * 100vw);
  margin: 0 auto;
  z-index: 1;
}
.archive-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(18 / var(--base-vw) * 100vw) calc(70 / var(--base-vw) * 100vw);
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #000000;
}
@media (max-width: 767px) {
  .archive-hero__badge {
    font-size: 25px;
    padding: calc(22 / var(--base-vw) * 100vw) calc(90 / var(--base-vw) * 100vw);
    letter-spacing: 0.15em;
  }
}

.archive-content {
  position: relative;
  padding-bottom: calc(120 / var(--base-vw) * 100vw);
  margin-top: calc(40 / var(--base-vw) * 100vw);
  background: linear-gradient(180deg, rgb(233, 233, 233) 0%, rgba(255, 255, 255, 0) 100%);
  padding-top: calc(50 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-content {
    padding-bottom: 10px;
    padding-top: 50px;
  }
}
.archive-content .service-related-achievements {
  background-color: transparent;
  padding: 0;
}
.archive-content .service-related-achievements__container {
  width: min(88%, 1460px);
}
.archive-content .service-related-achievements__header {
  display: none;
}
.archive-content .service-related-achievements__list {
  border-top: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.archive-content .service-related-achievements__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.archive-content .service-related-achievements__item:last-child {
  border-bottom: none;
}

.archive-controls {
  width: 100%;
  max-width: calc(1460 / var(--base-vw) * 100vw);
  margin: 0 auto calc(40 / var(--base-vw) * 100vw);
  padding: 0 calc(40 / var(--base-vw) * 100vw);
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: calc(40 / var(--base-vw) * 100vw);
  top: calc(-30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-controls {
    right: 0;
    top: -20px;
    padding: 0 20px;
    max-width: 100%;
    width: 200px;
  }
}
.archive-controls__sort {
  display: flex;
  flex-direction: column;
  gap: calc(10 / var(--base-vw) * 100vw);
  position: relative;
}
@media (max-width: 767px) {
  .archive-controls__sort {
    width: 100%;
    align-items: center;
    padding: 0;
    gap: 10px;
  }
}
.archive-controls__label {
  font-size: clamp(10.5px, 15 / var(--base-vw) * 100vw, 15px);
  font-family: "DM Sans", sans-serif;
  color: rgba(0, 0, 0, 0.5);
  position: absolute;
  font-weight: bold;
  top: calc(20 / var(--base-vw) * 100vw);
  left: calc(-140 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-controls__label {
    font-size: 20px;
    top: 5px;
    left: -165px;
  }
}
.archive-controls__select {
  position: relative;
  width: calc(260 / var(--base-vw) * 100vw);
}
.archive-controls__select select {
  width: 100%;
  padding: calc(16 / var(--base-vw) * 100vw) calc(45 / var(--base-vw) * 100vw) calc(16 / var(--base-vw) * 100vw) calc(24 / var(--base-vw) * 100vw);
  border: none;
  border-bottom: 1px solid #C6C6C6;
  background-color: #F5F5F5;
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media (max-width: 767px) {
  .archive-controls__select select {
    font-size: 16px;
    padding: 10px 20px 10px 15px;
  }
}
.archive-controls__select select:hover {
  border-color: #000000;
}
.archive-controls__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(20 / var(--base-vw) * 100vw);
  width: calc(12 / var(--base-vw) * 100vw);
  height: calc(12 / var(--base-vw) * 100vw);
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
@media (max-width: 767px) {
  .archive-controls__select::after {
    width: 12px;
    height: 12px;
    right: 15px;
    top: 50%;
  }
}
@media (max-width: 767px) {
  .archive-controls__select {
    width: 100%;
  }
  .archive-controls__select select {
    font-size: 16px;
  }
}

.archive-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(10 / var(--base-vw) * 100vw);
  margin-top: calc(60 / var(--base-vw) * 100vw);
  padding-top: calc(40 / var(--base-vw) * 100vw);
  margin-bottom: calc(120 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-pagination {
    margin-top: 40px;
    padding-top: 20px;
    margin-bottom: 140px;
  }
}
.archive-pagination .page-numbers {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  text-decoration: none;
  padding: calc(8 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  min-width: calc(40 / var(--base-vw) * 100vw);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 767px) {
  .archive-pagination .page-numbers {
    font-size: 16px;
    padding: 8px 12px;
    min-width: 40px;
  }
}
.archive-pagination .page-numbers:hover {
  background-color: #f5f5f5;
}
.archive-pagination .page-numbers.current {
  background-color: #e5e5e5;
  font-weight: bold;
  cursor: default;
}
.archive-pagination .page-numbers.prev, .archive-pagination .page-numbers.next {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  padding: calc(8 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  min-width: auto;
}
@media (max-width: 767px) {
  .archive-pagination .page-numbers.prev, .archive-pagination .page-numbers.next {
    font-size: 18px;
    padding: 8px 12px;
  }
}
.archive-pagination .page-numbers.prev:hover, .archive-pagination .page-numbers.next:hover {
  background-color: transparent;
  color: #afafaf;
}
.archive-pagination .page-numbers.dots {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  padding: calc(8 / var(--base-vw) * 100vw) calc(5 / var(--base-vw) * 100vw);
  min-width: auto;
  background-color: transparent;
  cursor: default;
}
@media (max-width: 767px) {
  .archive-pagination .page-numbers.dots {
    font-size: 16px;
    padding: 8px 5px;
  }
}
.archive-pagination .page-numbers.dots:hover {
  background-color: transparent;
}
.archive-pagination__arrow {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  color: #000000;
  text-decoration: none;
  padding: calc(8 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .archive-pagination__arrow {
    font-size: 18px;
    padding: 8px 12px;
  }
}
.archive-pagination__arrow:hover {
  color: #afafaf;
}
.archive-pagination__arrow--prev, .archive-pagination__arrow--next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-pagination__number {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  text-decoration: none;
  padding: calc(8 / var(--base-vw) * 100vw) calc(12 / var(--base-vw) * 100vw);
  min-width: calc(40 / var(--base-vw) * 100vw);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
  .archive-pagination__number {
    font-size: 16px;
    padding: 8px 12px;
    min-width: 40px;
  }
}
.archive-pagination__number:hover {
  background-color: #f5f5f5;
}
.archive-pagination__number--active {
  background-color: #e5e5e5;
  font-weight: bold;
}
.archive-pagination__ellipsis {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  color: #000000;
  padding: calc(8 / var(--base-vw) * 100vw) calc(5 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-pagination__ellipsis {
    font-size: 16px;
    padding: 8px 5px;
  }
}

.archive-content .service-related-achievements__read-more-btn {
  border-color: #C3C3C3;
}
.archive-content .service-related-achievements__tag {
  border-color: #C3C3C3;
}

.archive-single-hero {
  position: relative;
  min-height: 100vh;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .archive-single-hero {
    padding-top: 120px;
    height: auto;
  }
}
.archive-single-hero__textSlide {
  position: absolute;
  top: calc(150 / var(--base-vw) * 100vw);
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.5;
}
.archive-single-hero__textSlide.swiper {
  overflow: hidden;
  position: absolute;
}
@media (max-width: 767px) {
  .archive-single-hero__textSlide.swiper {
    height: 100px;
    position: absolute;
    top: 220px;
  }
}
.archive-single-hero__textSlide .swiper-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  will-change: transform;
  position: absolute;
  right: 0;
  top: 0;
}
.archive-single-hero__textSlide .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.archive-single-hero__textSlide p {
  font-size: clamp(126px, 180 / var(--base-vw) * 100vw, 180px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  margin: 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .archive-single-hero__textSlide p {
    font-size: 100px;
  }
}
.archive-single-hero__container {
  position: relative;
  z-index: 2;
  width: 82.5%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: calc(60 / var(--base-vw) * 100vw);
  align-items: start;
}
@media (max-width: 767px) {
  .archive-single-hero__container {
    position: static;
    width: 100%;
    margin: 0 auto;
    display: block;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    padding: 0;
  }
}
.archive-single-hero__left {
  display: flex;
  flex-direction: column;
  gap: calc(30 / var(--base-vw) * 100vw);
  padding: calc(200 / var(--base-vw) * 100vw) 0 0 0;
}
@media (max-width: 767px) {
  .archive-single-hero__left {
    width: 85%;
    margin: 0 auto;
    padding: 0;
    gap: 5px;
    padding-bottom: 50px;
  }
}
.archive-single-hero__title {
  font-size: clamp(56px, 80 / var(--base-vw) * 100vw, 80px);
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .archive-single-hero__title {
    font-size: 35px;
    padding-top: 30px;
  }
}
.archive-single-hero__subtitle {
  font-size: clamp(19.6px, 28 / var(--base-vw) * 100vw, 28px);
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .archive-single-hero__subtitle {
    font-size: 14px;
    line-height: 2;
    padding-top: 7px;
  }
}
.archive-single-hero__subtitle-en {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .archive-single-hero__subtitle-en {
    font-size: 12px;
  }
}
.archive-single-hero__info {
  margin-top: calc(40 / var(--base-vw) * 100vw);
}
.archive-single-hero__info-title {
  font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  font-family: "DM Sans", sans-serif;
  color: #000000;
  margin: 0 0 calc(10 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .archive-single-hero__info-title {
    font-size: 16px;
    margin: 20px 0 10px 0;
  }
}
.archive-single-hero__info-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: calc(12 / var(--base-vw) * 100vw) calc(30 / var(--base-vw) * 100vw);
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
  border-left: 1px dotted #000000;
  align-items: start;
  padding: calc(20 / var(--base-vw) * 100vw) 0;
  padding-left: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-single-hero__info-list {
    grid-template-columns: 1fr;
    gap: 5px;
    margin: 0 0 5px 0;
    padding: 0;
    padding-left: 0;
    border-left: none;
    padding-left: 20px;
    border-left: 1px solid #000000;
  }
}
.archive-single-hero__info-list dt {
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .archive-single-hero__info-list dt {
    font-size: 12px;
  }
}
.archive-single-hero__info-list dd {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .archive-single-hero__info-list dd {
    font-size: 14px;
  }
}
.archive-single-hero__info-note {
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .archive-single-hero__info-note {
    font-size: 12px;
    margin-top: 5px;
  }
}
.archive-single-hero__center {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  height: 60vh;
}
@media (max-width: 767px) {
  .archive-single-hero__center {
    width: 90px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 436px;
    display: block;
    justify-content: right;
    text-align: center;
  }
}
.archive-single-hero__next-btn {
  display: flex;
  align-items: center;
  gap: calc(12 / var(--base-vw) * 100vw);
  padding: calc(12 / var(--base-vw) * 100vw) calc(54 / var(--base-vw) * 100vw);
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: 500;
  border: 1px solid #C7C7C7;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .archive-single-hero__next-btn {
    font-size: 14px;
    display: block;
  }
}
.archive-single-hero__next-btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.archive-single-hero__next-text {
  font-size: clamp(10.5px, 15 / var(--base-vw) * 100vw, 15px);
  line-height: 1;
  font-weight: bold;
}
@media (max-width: 767px) {
  .archive-single-hero__next-text {
    font-weight: 500;
    font-size: 12px;
  }
}
.archive-single-hero__next-arrow {
  width: 10px;
  height: 12px;
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 1;
  position: absolute;
  right: calc(15 / var(--base-vw) * 100vw);
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .archive-single-hero__next-arrow {
    width: 5px;
    height: 10px;
    font-size: 12px;
    right: 15px;
  }
}
.archive-single-hero__right {
  width: calc(700 / var(--base-vw) * 100vw);
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: calc(80 / var(--base-vw) * 100vw);
  top: 0;
}
@media (max-width: 767px) {
  .archive-single-hero__right {
    width: 100%;
    right: 0;
  }
}
@media (max-width: 767px) {
  .archive-single-hero__right {
    width: 100%;
    right: 0;
    position: relative;
  }
}
.archive-single-hero__carousel {
  width: 100%;
  max-width: calc(700 / var(--base-vw) * 100vw);
  height: 100vh;
  padding: calc(80 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .archive-single-hero__carousel {
    height: auto;
    padding: 0;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }
}
.archive-single-hero__carousel.swiper {
  overflow: hidden;
}
.archive-single-hero__carousel .swiper-wrapper {
  display: flex;
  flex-direction: column;
  will-change: transform;
}
@media (max-width: 767px) {
  .archive-single-hero__carousel .swiper-wrapper {
    flex-direction: row;
  }
}
.archive-single-hero__carousel .swiper-slide {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .archive-single-hero__carousel .swiper-slide {
    width: auto !important;
    height: 150px !important;
    min-width: 100%;
  }
}
.archive-single-hero__carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.archive-single-content {
  position: relative;
  background: linear-gradient(180deg, #E9E9E9 0%, #FFF 100%);
  padding: calc(80 / var(--base-vw) * 100vw) 0 calc(120 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .archive-single-content {
    padding: 60px 0 80px 0;
  }
}
.archive-single-content__container {
  width: 82.5%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .archive-single-content__container {
    width: 90%;
  }
}
.archive-single-content .section-title {
  margin-bottom: calc(60 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-single-content .section-title {
    margin-bottom: 30px;
  }
}
.archive-single-content__body {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .archive-single-content__body {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.03em;
  }
}
.archive-single-content__body h1, .archive-single-content__body h2, .archive-single-content__body h3, .archive-single-content__body h6 {
  font-size: clamp(22.4px, 32 / var(--base-vw) * 100vw, 32px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  text-align: left;
  margin: calc(60 / var(--base-vw) * 100vw) 0 calc(20 / var(--base-vw) * 100vw) 0;
  padding: 0;
  position: relative;
  line-height: 1.4;
  padding-bottom: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-single-content__body h1, .archive-single-content__body h2, .archive-single-content__body h3, .archive-single-content__body h6 {
    font-size: 24px;
    margin: 40px 0 15px 0;
    line-height: 1.5;
    padding-bottom: 10px;
  }
}
.archive-single-content__body h1:first-child, .archive-single-content__body h2:first-child, .archive-single-content__body h3:first-child, .archive-single-content__body h6:first-child {
  margin-top: 0;
}
.archive-single-content__body h1::after, .archive-single-content__body h2::after, .archive-single-content__body h3::after, .archive-single-content__body h6::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #000000 0%, #000000 10%, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.1) 100%);
}
.archive-single-content__body h4 {
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  text-align: left;
  margin: calc(60 / var(--base-vw) * 100vw) 0 calc(20 / var(--base-vw) * 100vw) 0;
  padding: calc(12 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
  background-color: #f5f5f5;
  border-radius: 0;
  line-height: 1.4;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .archive-single-content__body h4 {
    font-size: 20px;
    margin: 40px 0 15px 0;
    padding: 10px 15px;
    line-height: 1.5;
  }
}
.archive-single-content__body h5 {
  font-size: clamp(16.8px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  text-align: left;
  margin: calc(60 / var(--base-vw) * 100vw) 0 calc(20 / var(--base-vw) * 100vw) 0;
  padding: calc(12 / var(--base-vw) * 100vw) calc(20 / var(--base-vw) * 100vw);
  background-color: #f5f5f5;
  border-radius: 0;
  line-height: 1.4;
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .archive-single-content__body h5 {
    font-size: 20px;
    margin: 40px 0 15px 0;
    padding: 10px 15px;
    line-height: 1.5;
  }
}
.archive-single-content__body p {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0 0 calc(30 / var(--base-vw) * 100vw) 0;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  position: relative;
}
@media (max-width: 767px) {
  .archive-single-content__body p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.03em;
    margin: 0 0 20px 0;
    padding-bottom: 20px;
  }
}
.archive-single-content__body img {
  display: inline-block;
  width: calc(50% - 10 / var(--base-vw) * 100vw);
  max-width: calc(50% - 10 / var(--base-vw) * 100vw);
  height: auto;
  margin: calc(20 / var(--base-vw) * 100vw) calc(10 / var(--base-vw) * 100vw) calc(30 / var(--base-vw) * 100vw) 0;
  vertical-align: top;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: calc(4 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-single-content__body img {
    width: calc(50% - 5px);
    max-width: calc(50% - 5px);
    margin: 15px 5px 20px 0;
    border-radius: 2px;
  }
}
.archive-single-content__body img:nth-child(even) {
  margin-right: 0;
}
.archive-single-content__body ul {
  list-style: disc;
  margin: calc(20 / var(--base-vw) * 100vw) 0;
  padding-left: calc(30 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-single-content__body ul {
    margin: 15px 0;
    padding-left: 20px;
  }
}
.archive-single-content__body ul li {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 1.8;
  color: #000000;
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .archive-single-content__body ul li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
  }
}
.archive-single-content__body__numbered-list {
  list-style: decimal;
  margin: calc(20 / var(--base-vw) * 100vw) 0 calc(40 / var(--base-vw) * 100vw) 0;
  padding-left: calc(30 / var(--base-vw) * 100vw);
  counter-reset: list-counter;
}
@media (max-width: 767px) {
  .archive-single-content__body__numbered-list {
    margin: 15px 0 30px 0;
    padding-left: 20px;
  }
}
.archive-single-content__body__numbered-list li {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #000000;
  margin-bottom: calc(15 / var(--base-vw) * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  padding-left: calc(10 / var(--base-vw) * 100vw);
  text-align: left;
}
@media (max-width: 767px) {
  .archive-single-content__body__numbered-list li {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    padding-left: 8px;
  }
}
.archive-single-content__body a {
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  padding-right: calc(20 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-single-content__body a {
    padding-right: 15px;
  }
}
.archive-single-content__body a:hover {
  color: #afafaf;
}
.archive-single-content__body a[target=_blank]::after, .archive-single-content__body a[href^="http://"]:not([href*=livmo]):not([href*=localhost])::after, .archive-single-content__body a[href^="https://"]:not([href*=livmo]):not([href*=localhost])::after {
  content: "";
  display: inline-block;
  width: calc(14 / var(--base-vw) * 100vw);
  height: calc(14 / var(--base-vw) * 100vw);
  background-image: url("../../dist/images/service/blank.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-left: calc(6 / var(--base-vw) * 100vw);
  position: relative;
  top: calc(-1 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-single-content__body a[target=_blank]::after, .archive-single-content__body a[href^="http://"]:not([href*=livmo]):not([href*=localhost])::after, .archive-single-content__body a[href^="https://"]:not([href*=livmo]):not([href*=localhost])::after {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    top: -1px;
  }
}
.archive-single-content__body a[href$=".pdf"]::after, .archive-single-content__body a[href$=".doc"]::after, .archive-single-content__body a[href$=".docx"]::after, .archive-single-content__body a[href$=".xls"]::after, .archive-single-content__body a[href$=".xlsx"]::after, .archive-single-content__body a[href$=".zip"]::after, .archive-single-content__body a[href$=".rar"]::after, .archive-single-content__body a[href$=".ppt"]::after, .archive-single-content__body a[href$=".pptx"]::after {
  content: "";
  display: inline-block;
  width: calc(14 / var(--base-vw) * 100vw);
  height: calc(14 / var(--base-vw) * 100vw);
  background-image: url("../../dist/images/service/document.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-left: calc(6 / var(--base-vw) * 100vw);
  position: relative;
  top: calc(-1 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .archive-single-content__body a[href$=".pdf"]::after, .archive-single-content__body a[href$=".doc"]::after, .archive-single-content__body a[href$=".docx"]::after, .archive-single-content__body a[href$=".xls"]::after, .archive-single-content__body a[href$=".xlsx"]::after, .archive-single-content__body a[href$=".zip"]::after, .archive-single-content__body a[href$=".rar"]::after, .archive-single-content__body a[href$=".ppt"]::after, .archive-single-content__body a[href$=".pptx"]::after {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    top: -1px;
  }
}

.archive-single-footer {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: calc(80 / var(--base-vw) * 100vw);
  padding: calc(40 / var(--base-vw) * 100vw) 0;
  position: relative;
}
@media (max-width: 767px) {
  .archive-single-footer {
    width: 90%;
    margin: auto;
    margin-top: 60px;
    padding: 30px 0;
  }
}
.archive-single-footer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e5e5e5;
  z-index: 0;
}
@media (max-width: 767px) {
  .archive-single-footer::before {
    height: 1px;
    background-color: #000000;
    z-index: 0;
    opacity: 0.2;
  }
}
.archive-single-footer__index-btn {
  display: flex;
  align-items: center;
  gap: calc(12 / var(--base-vw) * 100vw);
  padding: calc(35 / var(--base-vw) * 100vw) calc(150 / var(--base-vw) * 100vw);
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: calc(100 / var(--base-vw) * 100vw);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(9.8px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: 500;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .archive-single-footer__index-btn {
    padding: 22px 100px;
    font-size: 14px;
    border-radius: 100px;
  }
}
.archive-single-footer__index-btn:hover {
  background-color: #333;
  opacity: 0.9;
}
.archive-single-footer__index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: calc(4 / var(--base-vw) * 100vw);
  width: calc(20 / var(--base-vw) * 100vw);
  height: calc(20 / var(--base-vw) * 100vw);
  position: absolute;
  left: calc(50 / var(--base-vw) * 100vw);
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .archive-single-footer__index-grid {
    width: 20px;
    height: 20px;
    left: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
  }
}
.archive-single-footer__index-grid span {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: block;
}
.archive-single-footer__index-text {
  font-weight: bold;
  font-size: clamp(24.5px, 35 / var(--base-vw) * 100vw, 35px);
  line-height: 1;
}
@media (max-width: 767px) {
  .archive-single-footer__index-text {
    font-size: 25px;
  }
}

.policy-content {
  position: relative;
  background: linear-gradient(180deg, #E9E9E9 0%, #FFF 100%);
  padding: calc(80 / var(--base-vw) * 100vw) 0 calc(120 / var(--base-vw) * 100vw) 0;
}
@media (max-width: 767px) {
  .policy-content {
    padding: calc(60 / var(--base-vw) * 100vw) 0 calc(100 / var(--base-vw) * 100vw) 0;
  }
}
.policy-content__container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .policy-content__container {
    width: 90%;
  }
}
.policy-content__inner {
  width: 100%;
}
.policy-content__text {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .policy-content__text {
    font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  }
}
.policy-content__text h2 {
  font-size: clamp(22.4px, 32 / var(--base-vw) * 100vw, 32px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  text-align: left;
  margin: calc(60 / var(--base-vw) * 100vw) 0 calc(20 / var(--base-vw) * 100vw) 0;
  padding: 0;
  position: relative;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .policy-content__text h2 {
    font-size: clamp(25.2px, 36 / var(--base-vw) * 100vw, 36px);
    margin: calc(50 / var(--base-vw) * 100vw) 0 calc(18 / var(--base-vw) * 100vw) 0;
  }
}
.policy-content__text h2:first-child {
  margin-top: 0;
}
.policy-content__text p {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0 0 calc(30 / var(--base-vw) * 100vw) 0;
  padding-bottom: calc(30 / var(--base-vw) * 100vw);
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  position: relative;
}
@media (max-width: 767px) {
  .policy-content__text p {
    font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
    margin: 0 0 calc(25 / var(--base-vw) * 100vw) 0;
    padding-bottom: calc(25 / var(--base-vw) * 100vw);
  }
}
.policy-content__text p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #000000 0%, #000000 10%, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.1) 100%);
}
.policy-content__text p:last-child::after {
  display: none;
}
.policy-content__text ol {
  list-style: decimal;
  margin: calc(20 / var(--base-vw) * 100vw) 0 calc(30 / var(--base-vw) * 100vw) 0;
  padding-left: calc(30 / var(--base-vw) * 100vw);
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .policy-content__text ol {
    font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
    padding-left: calc(35 / var(--base-vw) * 100vw);
  }
}
.policy-content__text ol li {
  margin-bottom: calc(15 / var(--base-vw) * 100vw);
  padding-left: calc(10 / var(--base-vw) * 100vw);
}
.policy-content__text ol li ol {
  margin-top: calc(15 / var(--base-vw) * 100vw);
  margin-bottom: calc(15 / var(--base-vw) * 100vw);
}
.policy-content__text ul {
  list-style: disc;
  margin: calc(20 / var(--base-vw) * 100vw) 0 calc(30 / var(--base-vw) * 100vw) 0;
  padding-left: calc(30 / var(--base-vw) * 100vw);
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .policy-content__text ul {
    font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
    padding-left: calc(35 / var(--base-vw) * 100vw);
  }
}
.policy-content__text ul li {
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
  padding-left: calc(10 / var(--base-vw) * 100vw);
}
.policy-content__text__contact {
  margin: calc(40 / var(--base-vw) * 100vw) 0 calc(30 / var(--base-vw) * 100vw) 0;
  padding: calc(30 / var(--base-vw) * 100vw);
  background-color: #f5f5f5;
  border-radius: calc(4 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .policy-content__text__contact {
    padding: calc(25 / var(--base-vw) * 100vw);
  }
}
.policy-content__text__contact dt {
  font-size: clamp(11.2px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  margin-top: calc(20 / var(--base-vw) * 100vw);
  margin-bottom: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .policy-content__text__contact dt {
    font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  }
}
.policy-content__text__contact dt:first-child {
  margin-top: 0;
}
.policy-content__text__contact dd {
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 0 calc(20 / var(--base-vw) * 100vw) 0;
  padding: 0;
}
@media (max-width: 767px) {
  .policy-content__text__contact dd {
    font-size: clamp(12.6px, 18 / var(--base-vw) * 100vw, 18px);
  }
}
.policy-content__text__contact dd a {
  color: #000000;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.policy-content__text__contact dd a:hover {
  opacity: 0.7;
}

[pc-only] {
  display: block !important;
}

[sp-only] {
  display: none !important;
}

@media (max-width: 767px) {
  [pc-only] {
    display: none !important;
  }
  [sp-only] {
    display: block !important;
  }
}
/*# sourceMappingURL=main.css.map */
