@charset "UTF-8";
body.is-loading {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  -webkit-transition: opacity 0.9s ease, visibility 0.9s ease;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-screen__inner {
  text-align: center;
  padding: 0 32px;
}
.loading-screen__logo {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto 32px;
}
.loading-screen__line {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", Georgia, serif;
  color: #1a1a1a;
  letter-spacing: 0.12em;
  line-height: 1.9;
}
.loading-screen__line--1 {
  font-size: clamp(20px, 3.2vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}
.loading-screen__line--2 {
  font-size: clamp(13px, 1.8vw, 22px);
  font-weight: 400;
}

.loading-screen__line {
  opacity: 0;
  -webkit-animation: loading-fade-in 1.4s ease-out forwards;
          animation: loading-fade-in 1.4s ease-out forwards;
}

@-webkit-keyframes loading-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes loading-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.phone-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.phone-modal[hidden] {
  display: none;
}
.phone-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.phone-modal__box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  width: min(90%, 360px);
  text-align: center;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.phone-modal__label {
  font-size: 0.875rem;
  font-weight: bold;
  color: #ff3131;
  margin-bottom: 12px;
}
.phone-modal__number {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.phone-modal__hours {
  font-size: 0.8125rem;
  color: #666;
  margin-bottom: 24px;
}
.phone-modal__call-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  background: #ff3131;
  color: #fff;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  margin-bottom: 20px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.phone-modal__call-btn:hover {
  background: #d92020;
  color: #fff;
}
.phone-modal__cancel {
  background: none;
  border: none;
  color: #666;
  font-size: 0.9375rem;
  cursor: pointer;
  padding: 4px 16px;
}
.phone-modal__cancel:hover {
  color: #333;
}

.fv {
  position: relative;
  width: 97%;
  height: 90vh;
  min-height: 620px;
  max-height: 670px;
  overflow: hidden;
  background-image: url("../assets/images/fv_bk.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 1.5rem auto 0;
}
.fv__person {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-color: #b8a28a;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.fv__copy {
  position: absolute;
  top: 23%;
  left: 5%;
  background-color: rgba(248, 240, 224, 0.82);
  padding: 14px 17px;
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", Georgia, serif;
  white-space: nowrap;
}
.fv__catch {
  font-size: clamp(22px, 2.6vw, 42px);
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #1a1a1a;
}
.fv__sub {
  font-size: clamp(16px, 1.6vw, 26px);
  font-weight: 400;
  color: #2a2a2a;
  letter-spacing: 0.07em;
  text-align: center;
}
.fv__cta {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  padding: 17px 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
.fv__cta-text {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.8;
  color: #1a1a1a;
  white-space: nowrap;
}
.fv__cta-btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: #ff3131;
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 17px);
  padding: 4px 35px;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.fv__cta-btn:hover {
  background-color: #d92020;
}
.fv__cta-arrow {
  font-size: 11px;
}
@media (max-width: 768px) {
  .fv {
    height: 80vh;
    min-height: 0;
    background-image: url("../assets/images/fv_bk_sp.png");
  }
}

.about {
  padding: 80px 0;
  background: #f8f8f8;
}
.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__logo-wrap {
  width: 85%;
  position: relative;
  background-size: 80px 80px;
  padding: 40px;
}
.about__logo-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  padding: 0;
  text-align: center;
}
.about__logo-card img {
  width: 100%;
  height: auto;
  display: block;
  display: block;
  margin: 0 auto;
}
.about__logo-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}
.about__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.about__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.about__body {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 36px;
}
.about__body p + p {
  margin-top: 0;
}
.about__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.about__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: #ff3131;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 4px 35px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  opacity: 1;
}
.about__btn:hover {
  background-color: #d92020;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .about {
    padding: 0 0 80px;
  }
}

.strength {
  padding: 80px 0;
  background: #efefef;
}
.strength__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.strength__header {
  margin-bottom: 48px;
}
.strength__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.strength__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.strength__lead {
  font-size: 15px;
  line-height: 2;
  color: #333;
  padding-left: 26px;
}
.strength__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.strength__card {
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 40px 28px 36px;
  text-align: center;
}
.strength__card-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.strength__card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.strength__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}
.strength__card-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: #ff3131;
  margin: 12px auto 0;
}
.strength__card-body {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  text-align: left;
  margin-top: 20px;
}
.strength__cta {
  text-align: center;
}
.strength__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: #ff3131;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 4px 35px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  opacity: 1;
}
.strength__btn:hover {
  background-color: #d92020;
  color: #fff;
  opacity: 1;
}

.works-intro {
  padding: 80px 0 96px;
  background: url("../assets/images/fv_works-intro.png") center center/cover no-repeat;
}
.works-intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.works-intro__header {
  margin-bottom: 48px;
}
.works-intro__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.works-intro__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.works-intro__lead {
  font-size: 15px;
  line-height: 2;
  color: #333;
  padding-left: 26px;
}
.works-intro__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.works-intro__cta {
  text-align: center;
}
.works-intro__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: #ff3131;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 4px 35px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  opacity: 1;
}
.works-intro__btn:hover {
  background-color: #d92020;
  color: #fff;
  opacity: 1;
}

@media (max-width: 768px) {
  .fv {
    height: 85vh;
    min-height: 0;
  }
  .fv__copy {
    top: 50px;
    left: 0;
    width: 88%;
    padding: 18px 16px;
    background-color: rgba(255, 255, 255, 0.92);
    white-space: normal;
  }
  .fv__catch {
    font-size: clamp(13px, 4.2vw, 17px);
  }
  .fv__sub {
    font-size: 13px;
  }
  .fv__cta {
    width: 62%;
    padding: 16px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .fv__cta-text {
    white-space: normal;
  }
  .fv__cta-btn {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__logo-wrap {
    margin: 0 auto;
  }
  .about__btns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .strength__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .works-intro {
    background-size: auto;
  }
  .works-intro__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .strength__cards {
    grid-template-columns: 1fr;
  }
  .works-intro__cards {
    grid-template-columns: 1fr;
  }
  .strength__lead br {
    display: none;
  }
  .works-intro__lead br {
    display: none;
  }
}
.works-card {
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.works-card__img-link {
  display: block;
  opacity: 1;
}
.works-card__img-link:hover {
  opacity: 0.9;
}
.works-card__img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.works-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.works-card__img--empty {
  background: #e8e8e8;
}
.works-card__body {
  padding: 20px 24px 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.works-card__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.works-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: #adadad;
  color: #ffffff;
  font-size: 11px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.works-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.4;
}
.works-card__title a {
  color: inherit;
  text-decoration: none;
  opacity: 1;
}
.works-card__title a:hover {
  color: #ff3131;
  opacity: 1;
}
.works-card__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}
.works-card__link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: #ff3131;
  border: 1px solid #ff3131;
  border-radius: 20px;
  padding: 6px 18px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
  opacity: 1;
}
.works-card__link:hover {
  background-color: #ff3131;
  color: #fff;
  opacity: 1;
}

.reason-bg--1 {
  background: url("../assets/images/reason_1_bk.png") center center/cover no-repeat;
}
.reason-bg--2 {
  background: url("../assets/images/reason_2_bk.png") center center/cover no-repeat;
}

.service-section {
  background: #ffffff;
}

#floor .container,
#restoration .container,
#office .container {
  background: url("../assets/images/service-container-1.png") center center/cover no-repeat;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

#wallpaper .container,
#store .container,
#renovation .container {
  background: url("../assets/images/service-container-2.png") center center/cover no-repeat;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.post-type-archive-works .site-main {
  position: relative;
}
.post-type-archive-works .site-main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("../assets/images/works-container_bk.png") center center/cover no-repeat;
}

@media (max-width: 768px) {
  .works-filter {
    padding: 24px 20px;
  }
  .works-fv__label {
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .works-filter__buttons {
    padding-left: 0;
  }
}
.works-filter {
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 32px 40px;
  margin: 40px 0 48px;
}
.works-filter__title {
  text-align: center;
  font-size: 14px;
  color: #888;
  letter-spacing: 0.12em;
  margin: 0 0 28px;
}
.works-filter__group {
  margin-bottom: 24px;
}
.works-filter__group:last-child {
  margin-bottom: 0;
}
.works-filter__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.works-filter__marker {
  color: #ff3131;
  font-size: 12px;
  line-height: 1;
}
.works-filter__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  padding-left: 20px;
}
.works-filter__btn {
  display: inline-block;
  padding: 4px 35px;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.04em;
  -webkit-transition: background-color 0.18s;
  transition: background-color 0.18s;
}
.works-filter__btn:hover {
  background: #444;
}
.works-filter__btn.is-active {
  background: #ff3131;
}
.works-filter__btn.is-active:hover {
  background: #d92020;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}

.works-card {
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.works-card:hover {
  -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
          box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
}
.works-card__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0f0f0;
}
.works-card__thumb a {
  display: block;
  height: 100%;
}
.works-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.works-card__thumb:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.works-card__no-thumb {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
}
.works-card__body {
  padding: 16px 18px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.works-card__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.works-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: #adadad;
  color: #ffffff;
  font-size: 11px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.works-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.works-card__title a {
  color: inherit;
  text-decoration: none;
}
.works-card__title a:hover {
  color: #ff3131;
}
.works-card__meta {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 12px;
  color: #555;
  line-height: 1.8;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.works-card__meta-marker {
  color: #ff3131;
  font-size: 10px;
}
.works-card__btn {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 4px 35px;
  background: #ff3131;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.04em;
  -webkit-transition: background-color 0.18s;
  transition: background-color 0.18s;
}
.works-card__btn:hover {
  background: #d92020;
}

#works-result {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
#works-result[aria-busy=true] {
  opacity: 0.4;
  pointer-events: none;
}

.works-empty {
  text-align: center;
  padding: 60px 0;
  color: #888;
  font-size: 15px;
}

.works-fv {
  position: relative;
  width: 100%;
}
.works-fv__img-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  padding: 1rem 2rem 0;
  background: #fff;
}
@media (max-width: 768px) {
  .works-fv__img-wrap {
    height: 240px;
    padding: 0;
  }
}
.works-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.works-fv__label {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 16px 32px;
  margin-left: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .works-fv__label {
    margin-left: 0;
    top: 15%;
    bottom: auto;
  }
}
.works-fv__label {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
}
.works-fv__label-mark {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

body.single-works #main > .container {
  border: solid 1px;
  padding: 2rem 4rem;
  margin: 5rem auto;
}
@media (max-width: 768px) {
  body.single-works #main > .container {
    padding: 2rem;
    margin: 2rem auto;
  }
}

.single-works__header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}
.single-works__header-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .single-works__header-top {
    gap: 45px;
  }
}
.single-works__date {
  font-size: 13px;
  color: #666;
}
.single-works__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 6px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: auto;
}
.single-works__title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  line-height: 1.55;
  color: #1a1a1a;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .single-works__title {
    margin-top: 4rem;
  }
}
.single-works__section {
  margin-bottom: 48px;
}
.single-works__section-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
}
.single-works__section-title::before {
  content: "■";
  color: #ff3131;
  font-size: 13px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.single-works__before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 560px) {
  .single-works__before-after {
    grid-template-columns: 1fr;
  }
}
.single-works__ba-item {
  text-align: center;
}
.single-works__ba-img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-works__ba-label {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 0;
}
.single-works__ba-label--before {
  color: #1a1a1a;
}
.single-works__ba-label--after {
  color: #ff3131;
}
.single-works__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.7;
}
.single-works__table th,
.single-works__table td {
  padding: 12px 20px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
}
.single-works__table th {
  background: #f6f6f6;
  font-weight: 500;
  color: #555;
  width: 34%;
  white-space: nowrap;
}
.single-works__table td {
  color: #1a1a1a;
}
.single-works__comment {
  padding: 24px 32px;
  background: #f9f9f9;
  font-size: 15px;
  line-height: 2;
  color: #444;
}
@media (max-width: 560px) {
  .single-works__comment {
    padding: 20px;
  }
}
.single-works__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .single-works__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .single-works__related-grid {
    grid-template-columns: 1fr;
  }
}
.single-works__related-item {
  display: block;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.single-works__related-item:hover {
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}
.single-works__related-item img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-works__related-no-thumb {
  aspect-ratio: 4/3;
  background: #e8e8e8;
}

.recruit-entry__submit-wrap {
  margin-top: 2rem;
}

.recruit-intro-about {
  background: url("../assets/images/recruit-intro_bk.png") center center/cover no-repeat;
}

.recruit-intro__heading-br {
  display: none;
}
@media (max-width: 768px) {
  .recruit-intro__heading-br {
    display: inline;
  }
}

.recruit-entry__field {
  margin-bottom: 15px;
}

.recruit-entry {
  background: url("../assets/images/recruit-form-section_bk.png") center center/cover no-repeat;
}

.recruit-entry__privacy {
  margin: 30px 0;
}

.wpcf7-spinner {
  display: none !important;
}

.contact-form-section .wpcf7-form .recruit-entry__field {
  margin-bottom: 15px;
}
.contact-form-section .wpcf7-form .recruit-entry__privacy {
  margin: 30px 0;
}

.about-fv__img-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.about-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.about-fv__heading {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid #e8e8e8;
}
.about-fv__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-fv__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin: 0;
}
.about-fv__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.ceo-message {
  padding: 80px 0;
  background: #fff;
}
.ceo-message__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.ceo-message__section-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}
.ceo-message__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.ceo-message__body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.ceo-message__catch {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 32px;
}
.ceo-message__content {
  font-size: 15px;
  line-height: 2;
  color: #333;
}
.ceo-message__content p + p {
  margin-top: 16px;
}
.ceo-message__accent {
  color: #ff3131;
  font-weight: 700;
}
.ceo-message__fig {
  margin: 0;
}
.ceo-message__img {
  width: 100%;
  height: auto;
  display: block;
}
.ceo-message__caption {
  display: block;
  text-align: right;
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .about-fv__img-wrap {
    height: 240px;
  }
  .ceo-message__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ceo-message {
    padding: 56px 0;
  }
}
@media (max-width: 767px) {
  .company-info__table {
    display: block;
    width: 100%;
  }
  .company-info__table tbody {
    display: block;
    width: 100%;
  }
  .company-info__table tr {
    display: block;
    width: 100%;
  }
  .company-info__table th {
    display: block;
    width: 100% !important;
    text-align: left;
    padding: 14px 16px 6px;
    border-bottom: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .company-info__table td {
    display: block;
    width: 100%;
    padding: 6px 16px 14px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .company-info {
    padding: 56px 0;
  }
}
.company-info {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #e8e8e8;
}
.company-info__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.company-info__section-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}
.company-info__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.company-info__table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
.company-info__table th {
  width: 180px;
  padding: 24px 16px;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  text-align: center;
  border-bottom: 2px solid #ff3131;
  vertical-align: top;
}
.company-info__table td {
  padding: 24px 32px;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.wpcf7-turnstile.cf-turnstile {
  text-align: center;
}

.contact-form-section {
  padding: 80px 0;
}
.contact-form-section__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-form-section__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin: 0 0 48px;
}
.contact-form-section__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.contact-form-section__form-wrap {
  background: #fff;
  padding: 48px 56px;
}

.contact-form__field {
  margin-bottom: 24px;
}
.contact-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.contact-form__required {
  color: #ff3131;
  margin-left: 4px;
  font-size: 13px;
}
.contact-form__input, .contact-form__textarea {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  font-family: inherit;
}
.contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
  color: #aaa;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #aaa;
}
.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  color: #aaa;
}
.contact-form__input::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder {
  color: #aaa;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #aaa;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  border-color: #ff3131;
}
.contact-form__textarea {
  resize: vertical;
}
.contact-form__privacy {
  margin: 32px 0;
  text-align: center;
}
.contact-form__privacy-label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.contact-form__checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  accent-color: #ff3131;
}
.contact-form__privacy-link {
  color: #1a1a1a;
  text-decoration: underline;
}
.contact-form__privacy-link:hover {
  color: #ff3131;
}
.contact-form__submit-wrap {
  text-align: center;
}
.contact-form__submit {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #ff3131;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 35px;
  border: none;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.contact-form__submit:hover {
  background: #d92020;
}
.contact-form__submit-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

@media (max-width: 768px) {
  .contact-fv__img-wrap {
    height: 240px;
  }
  .contact-form-section {
    padding: 56px 0;
  }
}
@media (max-width: 600px) {
  .contact-form-section__form-wrap {
    padding: 32px 20px;
  }
}
.contact-fv__img-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.contact-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.contact-fv__heading {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid #e8e8e8;
}
.contact-fv__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-fv__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin: 0;
}
.contact-fv__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.thanks-section {
  padding: 80px 0;
}
.thanks-section__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.thanks-section__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin: 0 0 48px;
}
.thanks-section__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.thanks-section__body {
  background: #fff;
  padding: 48px 56px;
  text-align: center;
}
.thanks-section__message {
  font-size: 15px;
  color: #333;
  line-height: 2;
  margin: 0 0 48px;
}
.thanks-section__btn-wrap {
  text-align: center;
}
.thanks-section__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: #ff3131;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 35px;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.thanks-section__btn:hover {
  background: #d92020;
}
.thanks-section__btn-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

@media (max-width: 768px) {
  .thanks-section {
    padding: 56px 0;
  }
}
@media (max-width: 600px) {
  .thanks-section__body {
    padding: 32px 20px;
  }
}
.privacy-fv__img-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.privacy-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.privacy-fv__heading {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid #e8e8e8;
}
.privacy-fv__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.privacy-fv__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin: 0;
}
.privacy-fv__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media (max-width: 768px) {
  .privacy-fv__img-wrap {
    height: 240px;
  }
}
.privacy-body {
  padding: 60px 0 80px;
  background: #fff;
}
.privacy-body__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.privacy-body__lead {
  margin-bottom: 40px;
  line-height: 1.8;
  color: #333;
}
.privacy-body__section {
  margin-bottom: 36px;
}
.privacy-body__section p {
  margin: 0 0 12px;
  line-height: 1.8;
  color: #333;
}
.privacy-body__section-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  padding: 0;
  border: none;
  background: none;
}
.privacy-body__list {
  margin: 0 0 12px;
  padding-left: 1.5em;
  list-style: decimal;
}
.privacy-body__list li {
  line-height: 1.8;
  color: #333;
  margin-bottom: 4px;
}

.sitemap-fv {
  background: #f5f0eb;
  border-bottom: 1px solid #e8ddd4;
}
.sitemap-fv__heading {
  padding: 48px 0 44px;
}
.sitemap-fv__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.sitemap-fv__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ff3131;
  margin: 0 0 10px;
}
.sitemap-fv__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  margin: 0;
}
.sitemap-fv__title-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.sitemap-body {
  padding: 64px 0 88px;
  background: #fff;
}
.sitemap-body__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.sitemap-category {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid #ff3131;
  padding: 28px 28px 32px;
}
.sitemap-category__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ebebeb;
}
.sitemap-category__title-mark {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.sitemap-category__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap-category__item {
  border-bottom: 1px dashed #e8e8e8;
}
.sitemap-category__item:last-child {
  border-bottom: none;
}
.sitemap-category__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 4px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.03em;
  -webkit-transition: color 0.2s, padding-left 0.2s;
  transition: color 0.2s, padding-left 0.2s;
}
.sitemap-category__link:hover {
  color: #ff3131;
  padding-left: 6px;
}
.sitemap-category__arrow {
  font-size: 9px;
  color: #ff3131;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.sitemap-category__link:hover .sitemap-category__arrow {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}/*# sourceMappingURL=style.css.map */