@charset "UTF-8";
.is-pc {
  display: none !important;
}
.is-sp {
  display: block !important;
}
.is-show {
  display: block;
}
.is-hidden {
  display: none;
}
.bg-beige {
  background-color: var(--bg-beige);
}
:root {
  --white-color: #fff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-50: rgba(255, 255, 255, 0.5);
  --text-color: #615d5d;
  --brown-lv1: #b2a8a8;
  --brown-lv2: #615d5d;
  --brown-lv3: #474040;
  --beige-lv3: #e3e1dd;
  --border-color: #ebe9e4;
  --bg-beige: #f5f4f2;
  --dark-gray: #3c3535;
  --gray: #707070;
  --divider-color: #d9d9d9;
  --gradient-start: #028c5c;
  --gradient-end: #006240;
  --green-lv2: #ebf7f2;
  --green-lv3: #cae4db;
  --green-lv5: #008654;
  --video-bg: rgba(0, 0, 0, 0.3);
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}
input,
button,
textarea,
select {
  font: inherit;
}
dialog {
  border: none;
  padding: 0;
}
a {
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
a:hover,
button:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
img,
picture {
  width: 100%;
  display: block;
  max-width: 100%;
  height: auto;
}
html {
  font-family:
    游ゴシック体,
    Yu Gothic,
    游ゴシック,
    ヒラギノ角ゴシック Pro,
    Hiragino Kaku Gothic Pro,
    Hiragino Sans,
    メイリオ,
    Meiryo,
    Noto Sans CJK JP,
    Noto Sans JP,
    sans-serif;
  color: var(--text-color);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@supports (-webkit-touch-callout: none) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.skip-link {
  display: none;
}
@-webkit-keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInFromTop {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.header {
  height: 48px;
  padding: 12px 16px;
  background-color: var(--white-color);
  border-bottom: 1px solid var(--border-color);
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-animation: slideInFromTop 0.3s ease forwards;
  animation: slideInFromTop 0.3s ease forwards;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header__logo img {
  width: 74px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__nav {
  position: fixed;
  top: 48px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-beige);
  padding: 32px 20px;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  z-index: 10;
}
.header__nav.is-open {
  -webkit-transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  opacity: 1;
  visibility: visible;
  height: 100vh;
  height: 100dvh;
}
.header__nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  max-width: 500px;
  margin: 0 auto;
}
.header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top: 1px solid var(--border-color);
}
.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--brown-lv3);
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1.28px;
}
.header__link:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(/agent/images/header/chevron_right_brown.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header__link.show-sp {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.header__link.is-current {
  color: var(--green-lv5);
  font-weight: 600;
}
.header-links__divider {
  display: none;
}
.header__menu-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 18px;
  height: 24px;
  padding: 5px 0;
  cursor: pointer;
  position: relative;
}
.header__menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--gradient-start)),
    to(var(--gradient-end))
  );
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-transition: none;
  transition: none;
}
.header__menu-trigger span:not(:first-of-type) {
  margin-top: 4px;
}
.header__menu-trigger.is-open {
  padding-top: 11px;
}
.header__menu-trigger.is-open span {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0;
}
.header__menu-trigger.is-open span:nth-child(1) {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.header__menu-trigger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__menu-trigger.is-open span:nth-child(3) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
.header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 16px;
  margin-bottom: 32px;
}
.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1.28px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background-color: var(--white-color);
  border: 1px solid var(--text-color);
  color: var(--text-color);
}
.header__btn:focus-visible {
  outline-offset: -4px;
}
.header__btn:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(/agent/images/header/materials_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header__btn--green {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--gradient-start)),
    to(var(--gradient-end))
  );
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  border: none;
  color: var(--white-color);
}
.header__btn--green:before {
  background-image: url(/agent/images/header/mail_icon.svg);
}
.header__btn.is-current {
  color: var(--green-lv5);
  font-weight: 600;
}
.header__btn.is-current:before {
  background-image: url(/agent/images/header/materials_current_icon.svg);
}
.footer {
  position: relative;
  padding-bottom: 68px;
}
.footer__catalog {
  position: relative;
  padding: 48px 0;
  background-image: url(/agent/images/footer/catalog_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer__catalog-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px;
  background-color: var(--white-50);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.footer__catalog-title {
  font-weight: 400;
  color: var(--brown-lv3);
  text-align: center;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 1.92px;
}
.footer__catalog-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 60px;
  padding: 16px;
  background-color: var(--text-color);
  color: var(--white-color);
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.footer__catalog-btn:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(/agent/images/footer/chevron_right_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer__contact {
  padding: 32px 0;
  background-color: var(--bg-beige);
}
.footer__contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}
.footer__contact-text {
  text-align: center;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
}
.footer__contact-text .show-sp {
  display: block;
}
.footer__contact-text .show-pc {
  display: none;
}
.footer__contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 60px;
  min-height: 60px;
  padding: 16px;
  background-color: transparent;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.footer__contact-btn:after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(/agent/images/footer/chevron_right_brown.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  background-color: var(--border-color);
}
.footer__company-name {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.footer__company-address {
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.96px;
}
.footer__bottom {
  padding: 16px 0;
  background-color: var(--dark-gray);
}
.footer__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  color: var(--white-color);
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link-item {
  position: relative;
}
.footer__link {
  color: var(--white-color);
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.96px;
  text-decoration: none;
  cursor: pointer;
}
.footer__copyright {
  color: var(--white-color);
  font-size: 11px;
  line-height: 140%;
  letter-spacing: 0.88px;
}
.main-visual {
  position: relative;
  height: 498px;
  overflow: hidden;
}
.main-visual__carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.main-visual__carousel:before {
  content: "";
  display: block;
  position: absolute;
  top: 55px;
  left: 0;
  border-style: solid;
  border-width: 65px 270px 0 0;
  border-color: var(--white-color) transparent transparent transparent;
  height: 0;
  width: 0;
  z-index: 1;
}
.main-visual__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  padding-top: 56px;
}
.main-visual__slide--active {
  opacity: 1;
}
.main-visual__slide-image {
  width: 100%;
  height: 442px;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-visual__pc-image {
  display: none;
}
.main-visual__pc-image:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 85px 370px 0 0;
  border-color: var(--white-color) transparent transparent transparent;
  height: 0;
  width: 0;
  z-index: 1;
}
.main-visual__pc-image-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main-visual__deco-text {
  position: absolute;
  top: 18px;
  left: 8px;
  z-index: 1;
}
.main-visual__deco-text-img {
  width: 100%;
  height: 100%;
}
.main-visual__content {
  position: absolute;
  top: calc(100% - 76px);
  left: 9px;
  z-index: 2;
}
.main-visual__company {
  position: relative;
  padding: 16px 16px 16px 26px;
  left: -20px;
  max-width: 100%;
}
.main-visual__company:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-90);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  z-index: -1;
}
.main-visual__company-text {
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 1.6px;
  color: var(--brown-lv3);
}
.main-visual__scroll {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 14px;
  height: 109px;
  z-index: 2;
}
.main-visual__scroll picture img {
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.breadcrumbs {
  width: 100%;
  margin: 8px auto;
  padding: 0 20px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumbs::-webkit-scrollbar {
  display: none;
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 24px;
}
.breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.breadcrumbs__link,
.breadcrumbs__text {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.12px;
  color: var(--brown-lv2);
}
.breadcrumbs__link {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.breadcrumbs__link:hover {
  opacity: 0.7;
}
.breadcrumbs__separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.88px;
  color: var(--brown-lv2);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.breadcrumbs__separator-icon {
  display: block;
  width: 11px;
  height: 11px;
}
.button-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--gradient-start)),
    to(var(--gradient-end))
  );
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: var(--white-color);
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1.28px;
  font-weight: 600;
  white-space: nowrap;
  width: 100%;
}
.button-entry:before {
  content: "";
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url(/agent/images/button/mail_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button-detail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--brown-lv2);
  color: var(--brown-lv2);
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 1.28px;
  font-weight: 600;
  width: 100%;
}
.button-detail:after {
  content: "";
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url(/agent/images/button/chevron_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button-external-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 16px;
  min-height: 30px;
  border: 1px solid var(--brown-lv2);
  background-color: transparent;
  color: var(--brown-lv2);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.96px;
  font-weight: 600;
}
.button-external-link:after {
  content: "";
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url(/agent/images/button/open_in_new.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button-text-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  height: 60px;
  width: calc(50% - 8px);
  background-color: var(--white-color);
  border: 3px solid var(--bg-beige);
  border-radius: 8px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 1.28px;
  font-weight: 500;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.button-text-link:active,
.button-text-link:hover {
  background-color: var(--bg-beige);
  border-color: var(--bg-beige);
  opacity: 1;
  -webkit-transition-duration: initial;
  transition-duration: initial;
}
.button-text-link__text {
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 140%;
}
.button-text-link__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.button-text-link__icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.button-text-link-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.button-text-link-group.is-sp {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.floating-entry {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 20px;
  background-color: #ffffffc2;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.floating-entry.is-show {
  opacity: 1;
  pointer-events: auto;
}
.floating-entry__inner {
  width: 100%;
}
.floating-entry .button-entry {
  max-width: 456px;
  margin: 0 auto;
  min-height: 52px;
  padding: 8px 16px;
}
.page-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  border: 1px solid var(--brown-lv2);
  background-color: var(--white-50);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
}
.page-top.is-show {
  opacity: 1;
  pointer-events: auto;
}
.page-top:hover {
  opacity: 0.7;
}
.page-top__icon {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  position: relative;
  margin-bottom: 24px;
}
.section-title:after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--brown-lv1);
  margin-top: 20px;
}
.section-title__text {
  text-align: center;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 2.24px;
  font-weight: 400;
}
.section-title__image-text {
  display: inline-block;
  height: 16px;
  width: auto;
  margin-top: 4px;
}
.internal-title {
  position: relative;
}
.internal-title:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--beige-lv3);
  margin-top: 20px;
}
.internal-title__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 20px;
  gap: 6px;
}
.internal-title__text {
  text-align: center;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 2.24px;
  font-weight: 400;
}
.internal-title__image-text {
  display: inline-block;
  height: 16px;
  width: auto;
  margin-top: 4px;
}
.internal-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  position: relative;
}
.internal-section-title:after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--brown-lv1);
  margin-top: 20px;
}
.internal-section-title__text {
  text-align: center;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 2.24px;
  font-weight: 400;
}
.internal-section-title__image-text {
  display: inline-block;
  height: 16px;
  width: auto;
  margin-top: 4px;
}
.topics-list .topic-item {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}
.topics-list .topic-item:first-of-type {
  border-top: 1px solid var(--border-color);
}
.topic-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.topic-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}
.topic-item__date {
  color: var(--gray);
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
  font-weight: 600;
}
.topic-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  color: var(--brown-lv2);
}
.topic-item__title {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
  font-weight: 600;
}
.topic-item__description {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
  font-weight: 400;
}
.topic-item__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.first-topics {
  background-color: var(--bg-beige);
  padding: 32px 0;
}
.first-topics__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--bg-beige);
}
.first-topics__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.first-topics__header-image {
  height: 22px;
}
.first-topics__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  color: var(--brown-lv2);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.96px;
  font-weight: 600;
  text-decoration: none;
}
.first-topics__link:after {
  content: "";
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url(/agent/images/icon/topics-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.first-topics__link.is-sp {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.first-topics__list {
  width: 100%;
  max-width: 568px;
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.service-contents__action {
  margin-bottom: 24px;
}
.service-contents__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.service-contents__body {
  padding: 40px 16px;
}
.service-contents__lead {
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 1.76px;
  color: var(--text-color);
  text-align: center;
  margin: 24px 0;
}
.service-contents__text {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
  color: var(--text-color);
  margin-bottom: 32px;
}
.service-content-item {
  background-color: var(--white-color);
  padding: 24px;
}
.service-content-item:not(:last-child) {
  margin-bottom: 16px;
}
.service-content-item__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.service-content-item__image {
  width: 100%;
}
.service-content-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.service-content-item__title {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
  font-weight: 500;
  color: var(--text-color);
}
.service-content-item__description p {
  color: var(--text-color);
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
  margin: 0;
}
.service-content-item__description p:not(:last-child) {
  margin-bottom: 16px;
}
.service-content-item__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.service-content-item__tags .tag {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.service-carousel__container {
  position: relative;
}
.service-carousel__control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 37px;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
}
.service-carousel__control--next {
  right: -27px;
}
.service-carousel__control--prev {
  left: -27px;
}
.service-carousel__slide img {
  aspect-ratio: 303/201;
  -o-object-fit: contain;
  object-fit: contain;
}
.service-images__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-images__inner--masonry {
  grid-template-rows: repeat(2, 300px);
}
.service-images__item {
  background-color: var(--white-color);
  overflow: hidden;
}
.service-images__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.service-images__item--span-2 {
  grid-row: span 2;
}
.service-contents__cta {
  margin-top: 56px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.service-contents__cta .button-entry {
  max-width: 456px;
}
.service-contents__cta.is-pc {
  display: none !important;
}
.tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2px 8px;
  background-color: var(--bg-beige);
  color: var(--brown-lv2);
  white-space: nowrap;
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.96px;
}
.tag--interview {
  background-color: var(--green-lv2);
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.step-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.step-item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  isolation: isolate;
}
.step-item__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background-color: var(--brown-lv2);
  border-radius: 9999px;
  margin-bottom: -48px;
  padding-bottom: 2px;
  z-index: 2;
}
.step-item__badge-label {
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.96px;
  color: var(--white-color);
  text-align: center;
}
.step-item__badge-number {
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 2.24px;
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
}
.step-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 64px 16px 24px;
  background-color: var(--white-color);
  z-index: 1;
}
.step-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.step-item__image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.step-item__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.step-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.step-item__title {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
  font-weight: 500;
  color: var(--brown-lv2);
}
.step-item__description {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
  color: var(--brown-lv2);
}
.step-item__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 216px;
  width: 100%;
}
.step-item:not(:last-of-type):after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 84px;
  height: 33px;
  margin: -8px auto;
  background-image: url(/agent/images/icon/flow_down_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.button-entry-min {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 16px;
  min-height: 30px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--gradient-start)),
    to(var(--gradient-end))
  );
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  color: var(--white-color);
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.96px;
  font-weight: 600;
  width: 100%;
}
.button-entry-min:before {
  content: "";
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-image: url(/agent/images/button/mail_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.tab-triggers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.tab-triggers__button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  padding: 0;
  background-color: var(--white-color);
  border: 3px solid var(--bg-beige);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  color: var(--text-color);
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1.28px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition-duration: initial;
  transition-duration: initial;
}
.tab-triggers__button:hover {
  opacity: 1;
  -webkit-transition-duration: initial;
  transition-duration: initial;
}
.tab-triggers__button.is-active {
  background-color: var(--bg-beige);
  border-color: var(--bg-beige);
}
.tab-triggers__button--beige-bg {
  background-color: var(--bg-beige);
  border-color: var(--white-color);
}
.tab-triggers__button--beige-bg.is-active {
  background-color: var(--white-color);
  border-color: var(--white-color);
}
.video-frame {
  display: none;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.video-frame.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
}
.video-frame:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--video-bg);
  position: absolute;
  top: 0;
  left: 0;
}
.video-frame__inner {
  position: relative;
  height: auto;
  width: 85%;
}
.video-frame__close-button {
  width: 32px;
  height: 32px;
  background-image: url(/agent/images/icon/close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -38px;
  right: 0;
}
.works-list {
  margin: 48px auto 0;
  padding: 20px;
  background-color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  max-width: 528px;
}
.works-list-item__text {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.44px;
  color: var(--text-color);
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
}
.works-list-item__tag-list {
  padding: 0;
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}
.works-detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--white-color);
}
.works-detail-item__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 302/201;
}
.works-detail-item__info {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.works-detail-item__title {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
  color: var(--text-color);
}
.works-detail-item__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.works-detail-item__tags .tag {
  font-size: 12px;
  line-height: 170%;
  letter-spacing: 0.96px;
}
.works-detail-item__button {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.works-detail-item__button .button-detail {
  width: 268px;
}
.works-detail-list {
  max-width: 568px;
  margin: 0 auto;
}
.works-detail-list__block {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  padding: 32px 20px;
  background-color: var(--white-color);
}
.works-detail-list__block.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service-list {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.service-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.service-list-item__title {
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 1.76px;
  font-weight: 600;
  color: var(--brown-lv2);
  position: relative;
  padding-bottom: 27px;
  width: 100%;
}
.service-list-item__title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  width: 100%;
  height: 11px;
  background-image: url(/agent/images/icon/text-label.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.service-list-item__desc {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 1.44px;
  color: var(--brown-lv2);
  margin-top: 8px;
}
.service-list-item__rate {
  font-weight: 600;
  margin: 0 8px;
}
.service-list-item__note {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 3.2px;
  font-weight: 600;
  display: inline-block;
  color: var(--gradient-start);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--gradient-start)),
    to(var(--gradient-end))
  );
  background: linear-gradient(
    to right,
    var(--gradient-start),
    var(--gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.about-title__text {
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 1.76px;
  color: var(--brown-lv2);
  white-space: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.about-title__line {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background-color: #008654;
}
.about-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 40px;
  padding: 32px 0;
}
.about-list-item:nth-child(odd) {
  background-color: var(--bg-beige);
}
.about-list-item__content,
.about-list-item__image {
  max-width: 568px;
  margin: 0 auto;
}
.about-list-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
}
.about-list-item__text-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.about-list-item__subtitle {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1.28px;
  color: var(--brown-lv2);
  font-weight: 600;
}
.about-list-item__description {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
  color: var(--brown-lv2);
}
.about-list-item__image {
  padding: 0 20px;
}
.about-list-item__image picture,
.about-list-item__image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-list-item__image img {
  background-color: var(--white-color);
}
.point-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 12px;
  background-color: var(--bg-beige);
  color: var(--text-color);
  white-space: nowrap;
  width: 100%;
}
.point-label__text {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
}
.point-label__number {
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 1.76px;
  font-weight: 600;
}
.point-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--brown-lv1);
  position: relative;
}
.point-heading__label-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 112px;
  position: relative;
}
.point-heading__top-line {
  width: 6px;
  height: 8px;
  background-color: var(--bg-beige);
}
.point-heading__label {
  width: 100%;
}
.point-heading__bottom-line {
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  width: 6px;
  height: 16px;
  background-color: var(--bg-beige);
}
.point-heading__title {
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 1.76px;
  color: var(--text-color);
  text-align: center;
  width: 100%;
}
.point-heading__bottom-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%);
  width: 6px;
  height: 15px;
  background-color: var(--bg-beige);
}
.land-search-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}
.land-search-point-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.land-search-point-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.land-search-point-item__image {
  width: 100%;
}
.land-search-point-item__image picture {
  display: block;
  width: 100%;
}
.land-search-point-item__image img {
  width: 100%;
  height: auto;
  display: block;
}
.land-search-point-item__text {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
  color: var(--text-color);
  width: 100%;
}
.merit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}
.merit-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 112px;
}
.merit-label__triangle {
  width: 100%;
  height: 8px;
}
.merit-label__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 12px;
  background-color: var(--bg-beige);
  width: 100%;
  white-space: nowrap;
}
.merit-label__text {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
  color: var(--text-color);
}
.merit-label__number {
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 1.76px;
  font-weight: 500;
  color: var(--text-color);
}
.merit-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--brown-lv1);
}
.merit-heading__title {
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 1.76px;
  color: var(--text-color);
  text-align: center;
}
.merit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.merit-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.merit-item__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.merit-item__description {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
  color: var(--text-color);
}
.merit-item__supplement {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
}
.merit-item__supplement:not(:first-of-type) {
  margin-top: 8px;
}
.merit-item__supplement:before {
  content: "※";
}
.voice-list {
  margin-top: 32px;
  position: relative;
}
.voice-list-carousel__control {
  position: absolute;
  top: 45%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  z-index: 1;
  width: 20px;
  height: 38px;
  cursor: pointer;
}
.voice-list-carousel__control--prev {
  left: 0;
}
.voice-list-carousel__control--next {
  right: -20px;
}
.voice-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.voice-icon__image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: var(--green-lv2);
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.voice-icon__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.voice-icon__label-item {
  display: block;
  font-size: 13px;
  line-height: 140%;
  letter-spacing: 1.04px;
  text-align: center;
}
.voice-text {
  height: 142px;
  margin-left: 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.voice-text__title {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1.28px;
  font-weight: 500;
  color: var(--brown-lv2);
}
.voice-text__description {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
  color: var(--brown-lv2);
  margin-top: 8px;
}
.voice-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.voice-item__card {
  padding: 16px;
  background-color: var(--white-color);
  border: 2px solid var(--green-lv3);
  border-radius: 16px;
  margin-bottom: -2px;
}
.voice-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}
.voice-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.voice-item__description {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
  color: var(--brown-lv2);
}
.voice-item__tail {
  width: 40px;
  height: 23.5px;
  margin-bottom: -2px;
}
.voice-item__tail img {
  display: block;
  width: 100%;
  height: 100%;
}
.works-item-list {
  max-width: 568px;
  margin: 48px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}
.works-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.works-item__thumbnail {
  position: relative;
  cursor: pointer;
}
.works-item__thumbnail:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.works-item__thumbnail:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background-image: url(/agent/images/icon/thumbnail_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.works-item__tags {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.works-item__content {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.works-item__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
}
.works-item__description {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.works-detail-divider {
  width: 120px;
  height: 1px;
  margin: 48px auto;
  background-color: var(--brown-lv1);
}
.works-detail-section-title {
  font-weight: 400;
  color: var(--text-color);
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
}
.works-detail-title-with-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.works-detail-title-with-tags__title {
  color: var(--text-color);
  text-align: center;
  font-size: 22px;
  line-height: 140%;
  letter-spacing: 1.76px;
  font-weight: 400;
}
.works-detail-title-with-tags__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.works-detail-title-with-tags__tags .tag {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.works-detail-single-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.works-detail-single-image__picture img {
  width: 100%;
  height: auto;
  aspect-ratio: 335/223;
}
.works-detail-single-image__description {
  color: var(--text-color);
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.works-detail-full-width-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.works-detail-full-width-content__picture img {
  width: 100%;
  height: auto;
  aspect-ratio: 335/223;
}
.works-detail-full-width-content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.works-detail-full-width-content__title {
  font-weight: 400;
  color: var(--text-color);
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
}
.works-detail-full-width-content__description {
  color: var(--text-color);
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.works-detail-image-right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.works-detail-image-right-content__picture {
  margin-left: auto;
  width: 70%;
}
.works-detail-image-right-content__picture img {
  width: 100%;
  height: auto;
  aspect-ratio: 234/351;
}
.works-detail-image-right-content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.works-detail-image-right-content__title {
  font-weight: 400;
  color: var(--text-color);
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
}
.works-detail-image-right-content__description {
  color: var(--text-color);
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.works-detail-image-left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.works-detail-image-left-content__picture {
  margin-right: auto;
  width: 70%;
}
.works-detail-image-left-content__picture img {
  width: 100%;
  height: auto;
  aspect-ratio: 234/351;
}
.works-detail-image-left-content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.works-detail-image-left-content__title {
  font-weight: 400;
  color: var(--text-color);
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
}
.works-detail-image-left-content__description {
  color: var(--text-color);
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.works-detail-multi-images-content,
.works-detail-multi-images-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.works-detail-multi-images-content__picture img {
  width: 100%;
  height: auto;
  aspect-ratio: 335/223;
}
.works-detail-multi-images-content__description {
  color: var(--text-color);
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
  margin-bottom: 16px;
}
.works-detail-back-to-list-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 33px;
}
.works-detail-back-to-list-button__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  padding: 8px 16px;
  border: 1px solid var(--brown-lv2);
  color: var(--brown-lv2);
  text-decoration: none;
  max-width: 456px;
}
.works-detail-back-to-list-button__text {
  font-weight: 600;
  white-space: nowrap;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1.28px;
}
.works-detail-back-to-list-button__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.question {
  margin-top: 48px;
}
.question-item {
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
}
.question-item:first-of-type {
  padding-top: 0;
}
.question-item:first-of-type .question-item__trigger {
  padding-top: 0;
}
.question-item__trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
}
.question-item__trigger:hover {
  opacity: 1;
}
.question-item__trigger.is-show .question-item__icon {
  background-image: url(/agent/images/icon/remove-circle-icon.svg);
}
.question-item__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-image: url(/agent/images/icon/add-circle-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.question-item__content {
  display: none;
  padding-top: 4px;
}
.question__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  gap: 8px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.question__label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
  font-weight: 500;
  color: var(--text-color);
}
.question__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
  font-weight: 600;
  color: var(--text-color);
}
.answer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.answer__label {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
  font-weight: 400;
  color: var(--text-color);
}
.answer__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
  font-weight: 400;
  color: var(--text-color);
}
.catalog-list {
  width: 100%;
  margin-top: 56px;
}
.catalog-item {
  padding: 32px 0;
  width: 100%;
}
.catalog-item:nth-child(odd) {
  background-color: var(--bg-beige);
}
.catalog-item:nth-child(2n) {
  background-color: var(--white-color);
}
.catalog-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  max-width: 568px;
  padding: 0 20px;
  margin: 0 auto;
}
.catalog-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.catalog-title__text {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
  font-weight: 600;
  color: var(--brown-lv2);
  white-space: nowrap;
  max-width: 400px;
}
.catalog-title__line {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background-color: var(--brown-lv1);
}
.catalog-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
}
.catalog-content__image {
  width: 104px;
  height: 139px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.catalog-content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.catalog-content__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.catalog-content__subtitle {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 1.12px;
  font-weight: 600;
  color: var(--brown-lv2);
}
.catalog-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.catalog-content__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.catalog-content__list-marker {
  color: var(--brown-lv1);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.catalog-content__list-text {
  color: var(--brown-lv2);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.catalog-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 8px 16px;
  background-color: var(--brown-lv2);
  border: none;
  cursor: pointer;
}
.catalog-button:hover {
  opacity: 0.8;
}
.catalog-button__text {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 1.12px;
  font-weight: 600;
  color: var(--white-color);
  white-space: nowrap;
}
.catalog-button__icon {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.agent-section {
  padding: 64px 0;
}
.agent-section--works .agent-section__contents {
  gap: 16px;
}
.agent-section--works .agent-section__catch-text {
  margin-top: 16px;
}
.agent-section__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.agent-section__inner {
  max-width: 568px;
  margin: 0 auto;
}
.agent-section__text-wrapper {
  margin-top: 16px;
}
.agent-section__text {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.44px;
  padding: 0 16px;
}
p + .agent-section__text {
  margin-top: 16px;
}
.agent-section__catch-text {
  text-align: center;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 1.28px;
  margin-top: 24px;
}
.agent-section__intro-text {
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 1.76px;
  padding: 0 16px;
}
.agent-section__sub-text {
  margin-top: 16px;
  padding: 0 16px;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.agent-section__works-text {
  padding: 0 16px;
  margin: 24px 0 8px;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 1.28px;
}
.agent-section__works-sub-text {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.44px;
  padding: 0 16px;
  text-align: center;
}
.agent-section__image {
  margin-bottom: 24px;
}
p + .agent-section__image {
  margin-top: 48px;
}
.agent-cta {
  margin-top: 48px;
  padding: 0 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.agent-cta--center .button-entry {
  width: 100%;
}
.agent-cta--row {
  padding: 0;
}
.agent-cta--row .button-entry {
  width: 100%;
}
.agent-cta__text {
  text-align: center;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.44px;
}
.agent-cta__text:before,
.agent-cta__text:after {
  content: "";
  display: block;
  width: 1px;
  height: 27px;
  background-color: var(--brown-lv2);
  position: absolute;
  bottom: 0;
}
.agent-cta__text:before {
  left: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.agent-cta__text:after {
  right: -10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.agent-decoration-image {
  padding-top: 16px;
}
.agent-decoration-image--ease .agent-decoration-image__text {
  top: -40px;
  left: 30px;
}
.agent-decoration-image--home .agent-decoration-image__text {
  top: -60px;
  left: 30px;
}
.agent-decoration-image__inner {
  position: relative;
}
.agent-decoration-image__text {
  width: auto;
  height: 100px;
  position: absolute;
}
.agent-decoration-image__picture img {
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.agent-section__video {
  cursor: pointer;
  position: relative;
}
.agent-section__video:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.agent-section__video + p {
  margin-top: 16px;
}
.agent-section__video:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background-image: url(/agent/images/icon/thumbnail_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.internal-section {
  padding: 64px 0;
}
.internal-section:first-of-type {
  padding: 0 0 60px;
}
.internal-section--land-search.bg-beige {
  position: relative;
}
.internal-section--land-search.bg-beige:before,
.internal-section--land-search.bg-beige:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 138px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.internal-section--land-search.bg-beige:before {
  top: 0;
  background-image: url(/agent/images/agent/land_search/section-separator-white.svg);
}
.internal-section--land-search.bg-beige:after {
  bottom: -24px;
  background-image: url(/agent/images/agent/land_search/section-separator-beige.svg);
}
.internal-section--about:last-of-type,
.internal-section--catalog:last-of-type {
  padding-bottom: 0;
}
.internal-section__contents {
  max-width: 568px;
  margin: 0 auto;
}
.internal-section__contents--catch {
  padding-top: 56px;
}
.internal-section__block {
  margin-top: 24px;
}
.internal-section__intro-text {
  padding: 0 16px;
  text-align: center;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 1.76px;
}
.internal-section__text {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
}
.internal-section__sub-text-wrap {
  padding: 0 16px;
}
.internal-section__sub-text {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.internal-section__sub-text + .internal-section__sub-text {
  margin-top: 4px;
}
.internal-cta {
  margin: 48px 0;
  padding: 0 34px;
}
.internal-cta.is-pc {
  display: none !important;
}
.internal-cta .button-entry {
  max-width: 456px;
}
.internal-step-flow {
  margin-top: 24px;
}
.land-search__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
  margin: 0 auto;
}
.land-search__intro-text {
  text-align: center;
  font-size: 22px;
  line-height: 170%;
  letter-spacing: 1.76px;
}
.land-search__text {
  text-align: center;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
}
.land-search__cta-text {
  text-align: center;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 1.44px;
}
.land-search-flow {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.land-search__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 32px;
}
.land-search__cta .button-entry {
  max-width: 456px;
}
.about__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
  margin: 0 auto;
}
.about__intro-text {
  text-align: center;
  font-size: 22px;
  line-height: 170%;
  letter-spacing: 1.76px;
}
.about__text {
  text-align: center;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
}
.about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  margin-top: 64px;
}
.catalog__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
  margin: 0 auto;
}
.catalog__text {
  text-align: center;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 1.28px;
}
.catalog-precautions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  padding: 24px;
  margin: 64px auto 0;
  border: 1px solid var(--brown-lv1);
  color: var(--brown-lv2);
}
.catalog-precautions__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.catalog-precautions__title {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1.28px;
  font-weight: 600;
}
.catalog-precautions__text {
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 1.12px;
}
.works__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 0 16px;
  margin: 0 auto;
}
.works__intro-text {
  text-align: center;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 1.76px;
}
.works-list-heading {
  background-color: var(--white-color);
  padding: 32px 16px 8px;
}
.works-list-heading__title {
  text-align: center;
  font-size: 28px;
  line-height: 140%;
  letter-spacing: 2.24px;
}
.works-detail-section {
  padding-top: 64px;
  max-width: 568px;
  margin: 0 auto;
}
.works-detail-section__inner {
  margin-bottom: 48px;
}
.works-detail-section__content {
  margin-bottom: 32px;
}
.works-detail-section__content:last-of-type {
  margin-bottom: 0;
}
.works-detail-section__divider {
  margin: 48px 0;
}
.works-detail-section__button {
  margin-top: 64px;
}
.first-view {
  position: relative;
  width: 100%;
}
.company-id {
  background-color: var(--bg-beige);
}
.company-id__inner {
  padding: 16px 20px 0;
  text-align: right;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1.28px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 0;
  }
  .footer__catalog {
    padding: 64px 0;
  }
  .footer__catalog-content {
    max-width: 568px;
    gap: 16px;
    padding: 32px 56px;
    margin: 0 auto;
  }
  .footer__catalog-title {
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 2.88px;
  }
  .footer__catalog-btn {
    width: 456px;
    height: 64px;
    min-height: 64px;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 1.6px;
  }
  .footer__contact {
    padding: 32px 0;
  }
  .footer__contact-inner {
    gap: 16px;
  }
  .footer__contact-text {
    font-size: 22px;
    line-height: 170%;
    letter-spacing: 1.76px;
  }
  .footer__contact-text .show-sp {
    display: none;
  }
  .footer__contact-text .show-pc {
    display: block;
  }
  .footer__contact-btn {
    max-width: 456px;
    height: 64px;
    min-height: 64px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 1.6px;
  }
  .footer__company {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__company-name {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
    font-weight: 600;
  }
  .footer__company-address {
    width: 100%;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 1.12px;
  }
  .footer__bottom-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
  }
  .footer__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 32px;
  }
  .footer__link-item:not(:last-child):after {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--divider-color);
  }
  .footer__copyright {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
  }
  .button-entry {
    padding: 16px;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 1.44px;
    max-width: 320px;
  }
  .button-entry:before {
    width: 22px;
    height: 22px;
  }
  .button-detail {
    padding: 16px;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 1.44px;
    max-width: 320px;
  }
  .button-detail:after {
    width: 22px;
    height: 22px;
  }
  .topic-item__content {
    gap: 4px;
  }
  .topic-item__title {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
  }
  .video-frame__inner {
    width: 70vw;
    max-height: 75vh;
    max-width: 1264px;
  }
}
@media screen and (min-width: 1120px) {
  .is-pc {
    display: block !important;
  }
  .is-sp {
    display: none !important;
  }
  .container {
    max-width: 1064px;
  }
  .container--expansion {
    max-width: 1440px;
    padding: 0;
  }
  .skip-link {
    display: block;
    background-color: var(--white-color);
  }
  .skip-link a {
    position: absolute;
    left: -9999px;
    padding: 4px 16px;
    min-height: 30px;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 1.12px;
    font-weight: 500;
    text-decoration: none;
    color: var(--brown-lv2);
    white-space: nowrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .skip-link a:focus {
    position: static;
    margin: 16px 0 8px 32px;
    outline: 2px solid var(--brown-lv2);
    outline-offset: 2px;
  }
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100px;
    padding: 0;
  }
  .header__inner {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }
  .header__logo {
    padding-left: 32px;
    margin-right: auto;
  }
  .header__logo img {
    width: 108px;
    height: 36px;
  }
  .header__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: static;
    background-color: transparent;
    padding: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: none;
    transition: none;
  }
  .header__nav-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .header-links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: none;
    padding: 0;
    margin: 0 16px 0 auto;
  }
  .header__link:after {
    display: none;
  }
  .header__link {
    padding: 0;
    border-bottom: none;
    font-size: 14px;
  }
  .header__link.show-sp {
    display: none !important;
  }
  .header-links__divider {
    display: block;
    width: 1px;
    height: 20px;
    background-color: var(--border-color);
  }
  .header__menu-trigger {
    display: none;
  }
  .header__cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 0;
    gap: 0;
    height: 100%;
  }
  .header__btn {
    height: 100%;
    min-height: auto;
    padding: 0 16px;
    gap: 10px;
    background-color: var(--bg-beige);
    border: none;
  }
  .header__btn:before {
    width: 22px;
    height: 22px;
  }
  .header__btn--green {
    color: var(--white-color);
  }
  .main-visual {
    height: 660px;
  }
  .main-visual__carousel {
    display: none;
  }
  .main-visual__pc-image {
    display: block;
    position: absolute;
    right: 80px;
    top: 64px;
    width: 960px;
    height: 594px;
  }
  .main-visual__deco-text {
    top: 25px;
    left: initial;
    right: 740px;
  }
  .main-visual__content {
    top: 302px;
    left: 80px;
  }
  .main-visual__company {
    max-width: 790px;
    padding: 0;
  }
  .main-visual__company:before {
    display: none;
  }
  .main-visual__company-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 112px;
    padding: 8px 16px;
    font-size: 34px;
    line-height: 140%;
    letter-spacing: 2.72px;
  }
  .main-visual__company-text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-90);
    -webkit-filter: blur(5px);
    filter: blur(5px);
    z-index: -1;
  }
  .main-visual__scroll {
    bottom: auto;
    top: 433px;
    left: 24px;
    width: 18px;
    height: 137px;
  }
  .breadcrumbs {
    max-width: 1440px;
    padding: 0 32px;
  }
  .floating-entry {
    display: none;
  }
  .page-top {
    width: 64px;
    height: 64px;
    right: 48px;
    bottom: 48px;
    margin: auto;
  }
  .page-top__icon {
    width: 20px;
    height: 20px;
  }
  .section-title {
    margin-bottom: 32px;
    gap: 16px;
  }
  .section-title__text {
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 2.88px;
  }
  .section-title__image-text {
    height: 22px;
  }
  .internal-title__inner {
    gap: 16px;
  }
  .internal-title__text {
    font-size: 42px;
    line-height: 140%;
    letter-spacing: 3.36px;
  }
  .internal-title__image-text {
    height: 22px;
  }
  .internal-section-title {
    gap: 16px;
  }
  .internal-section-title__text {
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 2.88px;
  }
  .internal-section-title__image-text {
    height: 22px;
  }
  .first-topics__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 56px;
  }
  .first-topics__header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
  }
  .first-topics__header-image {
    height: 24px;
  }
  .first-topics__link {
    -ms-flex-item-align: start;
    align-self: flex-start;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 1.12px;
  }
  .first-topics__link.is-sp {
    display: none !important;
  }
  .first-topics__link.is-pc {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .first-topics__list {
    max-width: none;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-left: 1px solid var(--brown-lv1);
    margin-top: 0;
    padding-left: 57px;
  }
  .service-contents__action {
    margin-bottom: 0;
  }
  .service-contents__body {
    display: none;
    padding: 56px 40px;
  }
  .service-contents__body.is-active {
    display: block;
  }
  .service-contents__lead {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 2.56px;
    margin: 32px 0;
  }
  .service-contents__text {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
    margin-bottom: 40px;
    text-align: center;
  }
  .service-contents__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-content-item:not(:last-child) {
    margin-bottom: 0;
  }
  .service-content-item {
    width: calc(50% - 20px);
  }
  .service-content-item__images {
    margin-bottom: 32px;
  }
  .service-content-item__content {
    gap: 24px;
  }
  .service-content-item__title {
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 1.76px;
  }
  .service-content-item__description {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
  }
  .service-content-item__tags {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .service-content-item__tags .tag {
    background-color: var(--bg-beige);
  }
  .service-carousel {
    padding: 32px;
  }
  .service-carousel__controls {
    display: none;
  }
  .service-contents__cta.is-pc {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .tag {
    background-color: var(--white-color);
  }
  .tag--interview {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
    background-color: var(--green-lv2);
  }
  .step-flow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 48px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    position: relative;
  }
  .step-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    position: relative;
  }
  .step-item__wrapper {
    height: 100%;
  }
  .step-item__badge {
    width: 96px;
    height: 96px;
  }
  .step-item__badge-label {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 1.28px;
  }
  .step-item__badge-number {
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 2.88px;
  }
  .step-item__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 64px 24px 24px;
  }
  .step-item__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .step-item__image-wrapper {
    width: 117px;
    height: 104px;
  }
  .step-item__text {
    width: 100%;
  }
  .step-item__title {
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 1.76px;
    text-align: center;
  }
  .step-item__description {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
  }
  .step-item__button {
    max-width: none;
  }
  .step-item:not(:last-of-type):after {
    position: absolute;
    right: -40.5px;
    top: 50%;
    -webkit-transform: translateY(calc(-50% + 24px));
    transform: translateY(calc(-50% + 24px));
    width: 33px;
    height: 84px;
    margin: 0;
    background-image: url(/agent/images/icon/flow_right_icon.svg);
  }
  .button-entry-min {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 1.12px;
  }
  .tab-triggers {
    gap: 16px;
  }
  .tab-triggers__button {
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 1.6px;
  }
  .works-list {
    background-color: var(--bg-beige);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 50px;
    padding: 0;
    max-width: 100%;
    margin-top: 56px;
  }
  .works-list-item {
    width: 304px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .works-detail-item {
    width: 288px;
  }
  .works-detail-item__image img {
    aspect-ratio: 335/223;
  }
  .works-detail-item__info {
    gap: 16px;
    margin: 24px 0;
  }
  .works-detail-item__title {
    text-align: left;
    min-height: 62px;
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
  }
  .works-detail-item__tags {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .works-detail-item__tags .tag {
    background-color: var(--bg-beige);
  }
  .works-detail-item__button {
    margin-top: auto;
  }
  .works-detail-item__button .button-detail {
    width: 288px;
  }
  .works-detail-list {
    max-width: 100%;
  }
  .works-detail-list__block {
    padding: 56px 40px;
    gap: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .service-list-item {
    width: 226px;
  }
  .service-list-item--middle .service-list-item__title,
  .service-list-item--wide .service-list-item__title {
    font-size: 28px;
    line-height: 140%;
    letter-spacing: 2.24px;
  }
  .service-list-item--middle .service-list-item__desc,
  .service-list-item--wide .service-list-item__desc {
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 1.76px;
  }
  .service-list-item--middle .service-list-item__note,
  .service-list-item--wide .service-list-item__note {
    font-size: 46px;
    line-height: 1;
    letter-spacing: 3.68px;
  }
  .service-list-item--middle {
    width: 315px;
  }
  .service-list-item--middle .service-list-item__title:after {
    height: 15px;
  }
  .service-list-item--wide {
    width: 344px;
  }
  .service-list-item--wide .service-list-item__title:after {
    height: 17px;
  }
  .service-list-item__title {
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 1.6px;
  }
  .service-list-item__desc {
    margin-top: 16px;
  }
  .about-title__text {
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 2.88px;
  }
  .about-title__line {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(var(--gradient-start)),
      to(var(--gradient-end))
    );
    background: linear-gradient(
      to right,
      var(--gradient-start),
      var(--gradient-end)
    );
  }
  .about-list-item:nth-child(odd) {
    background-color: transparent;
  }
  .about-list-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 56px;
    padding: 0;
  }
  .about-list-item__content,
  .about-list-item__image {
    max-width: 100%;
  }
  .about-list-item__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 32px;
    padding: 0;
  }
  .about-list-item__text-content {
    gap: 16px;
  }
  .about-list-item__subtitle {
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 1.6px;
  }
  .about-list-item__description {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
  }
  .about-list-item__image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0;
  }
  .about-list-item__image img {
    background-color: transparent;
  }
  .point-label__text {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
  }
  .point-label__number {
    font-size: 26px;
    line-height: 140%;
    letter-spacing: 2.08px;
  }
  .point-heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 24px;
    padding-bottom: 24px;
  }
  .point-heading__label-wrapper {
    width: 124px;
  }
  .point-heading__bottom-line {
    bottom: -23px;
    height: 23px;
    left: 59px;
    -webkit-transform: none;
    transform: none;
  }
  .point-heading__title {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 2.56px;
    text-align: left;
    width: auto;
  }
  .point-heading__bottom-bar {
    display: none;
  }
  .land-search-points {
    gap: 40px;
    margin-top: 64px;
  }
  .land-search-point-item {
    gap: 32px;
  }
  .land-search-point-item__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 56px;
  }
  .land-search-point-item__image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
  }
  .land-search-point-item__text {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
  }
  .merit-label {
    width: 124px;
  }
  .merit-label__content {
    gap: 8px;
  }
  .merit-label__text {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
  }
  .merit-label__number {
    font-size: 26px;
    line-height: 140%;
    letter-spacing: 2.08px;
  }
  .merit-heading {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 24px;
    padding-bottom: 24px;
  }
  .merit-heading__title {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 2.56px;
    text-align: left;
  }
  .merit-item {
    gap: 32px;
  }
  .merit-item__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 56px;
  }
  .merit-item__picture {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 484px;
  }
  .merit-item__description {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
  }
  .voice-list {
    margin-top: 56px;
  }
  .voice-list .voice-list-carousel__slide {
    width: 1024px;
  }
  .voice-list-carousel__control {
    top: calc(50% - 46px);
    left: 0;
    margin: auto;
    width: 44px;
    height: 44px;
  }
  .voice-list-carousel__control--prev {
    right: 0;
    left: -1046px;
  }
  .voice-list-carousel__control--next {
    left: 0;
    right: -1130px;
  }
  .voice-icon {
    gap: 16px;
  }
  .voice-icon__image {
    width: 196px;
    height: 196px;
  }
  .voice-icon__label-item {
    display: inline-block;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 1.28px;
  }
  .voice-icon__label-item + .voice-icon__label-item {
    margin-left: 1em;
  }
  .voice-text {
    margin-left: 0;
    display: block;
    height: auto;
  }
  .voice-text__title {
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 1.76px;
  }
  .voice-text__description {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
    margin-top: 16px;
  }
  .voice-item__card {
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 64px;
  }
  .voice-item__header {
    gap: 64px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .voice-item__header .voice-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 196px;
  }
  .voice-item__description {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
  }
  .voice-item__tail {
    width: 80px;
    height: 47px;
  }
  .works-item-list {
    max-width: 100%;
    margin: 64px auto 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 56px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .works-item {
    width: 492px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .works-item__thumbnail:before {
    width: 70px;
    height: 70px;
  }
  .works-item__tags {
    margin-top: 24px;
  }
  .works-item__content {
    margin-top: 16px;
  }
  .works-item__title {
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 1.76px;
  }
  .works-item__description {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
  }
  .works-detail-divider {
    width: 320px;
    margin: 80px auto;
  }
  .works-detail-section-title {
    font-size: 30px;
    line-height: 140%;
    letter-spacing: 2.4px;
  }
  .works-detail-title-with-tags {
    gap: 24px;
  }
  .works-detail-title-with-tags__title {
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 2.88px;
  }
  .works-detail-title-with-tags__tags .tag {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
    background-color: var(--bg-beige);
  }
  .works-detail-single-image__description {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
  }
  .works-detail-full-width-content {
    gap: 32px;
  }
  .works-detail-full-width-content__text {
    gap: 16px;
  }
  .works-detail-full-width-content__title {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 2.56px;
  }
  .works-detail-full-width-content__description {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
  }
  .works-detail-image-right-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 56px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .works-detail-image-right-content__picture {
    margin-left: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 424px;
  }
  .works-detail-image-right-content__picture img {
    aspect-ratio: 424/636;
  }
  .works-detail-image-right-content__text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .works-detail-image-right-content__title {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 2.56px;
  }
  .works-detail-image-right-content__description {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
  }
  .works-detail-image-left-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 56px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .works-detail-image-left-content__picture {
    margin-right: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 424px;
  }
  .works-detail-image-left-content__picture img {
    aspect-ratio: 424/636;
  }
  .works-detail-image-left-content__text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .works-detail-image-left-content__title {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 2.56px;
  }
  .works-detail-image-left-content__description {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
  }
  .works-detail-multi-images-content {
    gap: 32px;
  }
  .works-detail-multi-images-content__description {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
    margin-bottom: 24px;
  }
  .works-detail-back-to-list-button__link {
    width: 456px;
    min-height: 64px;
    padding: 16px;
  }
  .works-detail-back-to-list-button__text {
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 1.6px;
  }
  .works-detail-back-to-list-button__icon {
    width: 22px;
    height: 22px;
  }
  .question {
    margin-top: 32px;
  }
  .question-item {
    padding: 24px 0;
  }
  .question-item__trigger {
    gap: 16px;
  }
  .question-item__icon {
    width: 36px;
    height: 36px;
  }
  .question-item__content {
    padding-top: 8px;
  }
  .question__label,
  .question__text {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
  }
  .answer__label,
  .answer__text {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
  }
  .catalog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 56px;
    padding: 0 20px;
    max-width: 1064px;
    margin: 64px auto 0;
  }
  .catalog-item:nth-child(odd) {
    background-color: var(--white-color);
  }
  .catalog-item {
    padding: 0;
    width: calc(50% - 28px);
  }
  .catalog-item__inner {
    gap: 24px;
    max-width: 484px;
    padding: 0;
  }
  .catalog-title__text {
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 1.76px;
  }
  .catalog-content {
    gap: 24px;
  }
  .catalog-content__image {
    width: 180px;
    height: 240px;
  }
  .catalog-content__text-wrap {
    gap: 24px;
  }
  .catalog-content__subtitle,
  .catalog-content__list-item {
    font-size: 16px;
    line-height: 170%;
    letter-spacing: 1.28px;
  }
  .catalog-button {
    min-height: 50px;
  }
  .catalog-button__text {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 1.28px;
  }
  .agent-section {
    padding: 120px 0;
  }
  .agent-section .section-title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .agent-section--service .section-title,
  .agent-section--about .section-title,
  .agent-section--topics .section-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .agent-section--vision .agent-section__video {
    width: 472px;
  }
  .agent-section--works .agent-section__contents {
    gap: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .agent-section--works .agent-section__catch-text {
    margin-top: 10px;
  }
  .agent-section--works .agent-section__video {
    width: 512px;
  }
  .agent-section--about .agent-section__image {
    width: 100%;
    max-width: 1024px;
  }
  .agent-section--event .agent-section__video {
    width: 472px;
  }
  .agent-section__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 80px;
  }
  .agent-section__inner {
    width: 100%;
    max-width: 100%;
  }
  .agent-section__text-wrapper {
    margin-top: 10px;
  }
  .agent-section__text {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
    padding: 0;
  }
  .agent-section__catch-text {
    font-size: 22px;
    line-height: 170%;
    letter-spacing: 1.76px;
    text-align: left;
  }
  .agent-section__catch-text--center {
    text-align: center;
  }
  .agent-section__intro-text {
    text-align: center;
    font-size: 24px;
    line-height: 170%;
    letter-spacing: 1.76px;
    padding: 0;
  }
  .agent-section__sub-text {
    padding: 0;
  }
  .agent-section__works-text {
    padding: 0;
    font-size: 22px;
    line-height: 170%;
    letter-spacing: 1.76px;
  }
  .agent-section__works-sub-text {
    font-size: 18px;
    line-height: 170%;
    letter-spacing: 1.44px;
    padding: 0;
    text-align: left;
  }
  .agent-section__image {
    margin-bottom: 0;
    width: 512px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .agent-section__image--land-search {
    width: 472px;
    height: 472px;
  }
  p + .agent-section__image {
    margin-top: 56px;
  }
  .agent-cta {
    margin-top: 56px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
  }
  .agent-cta--center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .agent-cta--center .button-entry {
    max-width: 456px;
  }
  .agent-cta--text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .agent-cta--row .button-entry {
    max-width: 320px;
  }
  .agent-cta__text {
    font-size: 22px;
    line-height: 170%;
    letter-spacing: 1.76px;
    margin-bottom: -16px;
  }
  .agent-cta__text:before,
  .agent-cta__text:after {
    top: 0;
    margin: auto;
  }
  .agent-cta__text:before {
    left: -20px;
  }
  .agent-cta__text:after {
    right: -20px;
  }
  .agent-decoration-image {
    padding: 0 0 120px;
  }
  .agent-decoration-image--ease .agent-decoration-image__text {
    height: 130px;
    top: 135px;
    left: 88px;
  }
  .agent-decoration-image--ease .agent-decoration-image__picture img {
    margin-left: auto;
  }
  .agent-decoration-image--home .agent-decoration-image__text {
    top: 105px;
    left: 90px;
  }
  .agent-decoration-image--home .agent-decoration-image__picture img {
    margin-left: auto;
  }
  .agent-decoration-image__inner {
    max-width: 1440px;
    margin: 0 auto;
  }
  .agent-decoration-image__text {
    height: 130px;
  }
  .agent-decoration-image__picture img {
    max-width: 1120px;
    height: auto;
  }
  .agent-section__video:before {
    width: 70px;
    height: 70px;
  }
  .internal-section {
    padding: 80px 0;
  }
  .internal-section:first-of-type {
    padding: 0 0 80px;
  }
  .internal-section--land-search.bg-beige {
    padding: 120px 0;
    margin-bottom: 40px;
  }
  .internal-section--land-search.bg-beige:before,
  .internal-section--land-search.bg-beige:after {
    width: 320px;
    height: 56px;
  }
  .internal-section--land-search.bg-beige:after {
    bottom: -56px;
  }
  .internal-section__contents {
    max-width: 100%;
  }
  .internal-section__contents--catch {
    padding-top: 80px;
  }
  .internal-section__intro-text {
    font-size: 24px;
    line-height: 170%;
    letter-spacing: 1.76px;
    padding: 0;
  }
  .internal-section__sub-text {
    text-align: center;
  }
  .internal-cta {
    margin: 64px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .internal-cta.is-pc {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .internal-step-flow {
    margin-top: 56px;
  }
  .land-search__intro-text {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 2.56px;
  }
  .land-search__text,
  .land-search__cta-text {
    font-size: 22px;
    line-height: 170%;
    letter-spacing: 1.76px;
  }
  .land-search-flow {
    padding: 0 20px;
  }
  .about__intro-text {
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 2.88px;
  }
  .about__text {
    text-align: left;
    font-size: 22px;
    line-height: 170%;
    letter-spacing: 1.76px;
    max-width: 920px;
    margin: 0 auto;
  }
  .about-list {
    max-width: 1024px;
    margin: 80px auto 0;
    gap: 80px;
  }
  .catalog__text {
    font-size: 22px;
    line-height: 170%;
    letter-spacing: 1.76px;
    max-width: 920px;
    margin: 0 auto;
  }
  .works__intro-text {
    font-size: 24px;
    line-height: 170%;
    letter-spacing: 1.92px;
  }
  .works-list-heading {
    padding: 56px 40px 0;
    margin-bottom: -16px;
  }
  .works-list-heading__title {
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 2.88px;
  }
  .works-detail-section {
    padding-top: 80px;
    max-width: 100%;
  }
  .works-detail-section__inner {
    margin-bottom: 64px;
  }
  .works-detail-section__content {
    margin-bottom: 56px;
  }
  .works-detail-section__divider {
    margin: 80px 0;
  }
  .works-detail-section__button {
    margin-top: 80px;
  }
  .first-view--agent {
    max-width: 1440px;
    margin: 0 auto;
  }
  .company-id__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 80px 0;
    font-size: 22px;
    line-height: 170%;
    letter-spacing: 1.76px;
  }
}
@media screen and (min-width: 1264px) {
  .header-links {
    gap: 16px;
    margin: 0 32px 0 auto;
  }
  .header__btn {
    padding: 0 32px;
  }
}
@media screen and (min-width: 1328px) {
  .header__link {
    font-size: 16px;
  }
}
@media (max-width: 1119px) {
  .voice-item__header .voice-icon {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  -webkit-transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translateZ(0);
}
.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property:
    height,
    -webkit-transform;
  transition-property:
    height,
    -webkit-transform;
  transition-property: transform, height;
  transition-property:
    transform,
    height,
    -webkit-transform;
}
.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(to left, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(to right, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(to top, #00000080, #0000);
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(to bottom, #00000080, #0000);
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
