@charset "UTF-8";
/*
Theme Name: 株式会社川建
Description: 株式会社川建（Kawaken）コーポレートサイト用テーマ。改修・解体工事業向け。スタイリッシュ×高級感（黒×朱色×白）のデザイン。
Author: Kawaken
Version: 1.0.0
Text Domain: kawaken
*/
:root {
  --black: #1a1a1a;
  --black-soft: #2b2b2b;
  --orange: #e85a2a;
  --orange-deep: #c8441a;
  --white: #ffffff;
  --gray-bg: #f5f5f5;
  --gray-line: #e5e5e5;
  --gray-text: #666666;
  --font-serif: 'Cormorant Garamond', serif;
  --font-mincho: 'Shippori Mincho', serif;
  --font-sans: 'Jost', sans-serif;
  --header-h: 84px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-mincho);
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.site-main {
  display: block;
}

.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  background-color: var(--black);
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.78) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(26, 26, 26, 0.8) 100%);
}
@media screen and (max-width: 1024px) {
  .page-hero {
    height: 320px;
  }
}
@media screen and (max-width: 768px) {
  .page-hero {
    height: 260px;
  }
}

.page-hero--plain {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  height: 300px;
}
.page-hero--plain::before {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-hero--plain {
    height: 220px;
  }
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-hero__en {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .page-hero__en {
    font-size: 16px;
  }
}

.page-hero__title {
  font-family: var(--font-mincho);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .section-head {
    margin-bottom: 40px;
  }
}

.section-head__en {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--orange);
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

.section-head__jp {
  display: block;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .section-head__jp {
    font-size: 22px;
  }
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 42px;
  border: 1px solid var(--black);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--black);
  transition: background-color 0.4s ease, color 0.4s ease;
}
.btn-line span {
  display: inline-block;
  transition: transform 0.4s ease;
}
.btn-line:hover {
  background: var(--black);
  color: var(--white);
}
.btn-line:hover span {
  transform: translateX(6px);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid var(--gray-line);
}
.info-table th, .info-table td {
  padding: 20px 22px;
  text-align: left;
  font-size: 14px;
  line-height: 1.9;
  vertical-align: top;
}
.info-table th {
  width: 210px;
  font-family: var(--font-mincho);
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}
.info-table td {
  color: var(--gray-text);
}
@media screen and (max-width: 768px) {
  .info-table th, .info-table td {
    display: block;
    width: 100%;
    padding: 14px 12px;
  }
  .info-table th {
    padding-bottom: 2px;
    color: var(--orange);
    font-size: 13px;
  }
  .info-table td {
    padding-top: 2px;
  }
}

.section-empty {
  text-align: center;
  color: var(--gray-text);
  font-size: 15px;
  line-height: 2.2;
  padding: 40px 0;
}

.page-content {
  padding: 96px 40px 120px;
}
@media screen and (max-width: 768px) {
  .page-content {
    padding: 64px 22px 88px;
  }
}

.page-content__inner {
  max-width: 880px;
  margin: 0 auto;
}
.page-content__inner h2 {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 48px 0 18px;
  padding-left: 16px;
  border-left: 4px solid var(--orange);
}
.page-content__inner h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 36px 0 14px;
}
.page-content__inner h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 12px;
}
.page-content__inner p {
  font-size: 15px;
  line-height: 2.1;
  margin-bottom: 20px;
  color: #3a3a3a;
}
.page-content__inner a {
  color: var(--orange-deep);
  text-decoration: underline;
}
.page-content__inner ul, .page-content__inner ol {
  margin: 0 0 20px 1.4em;
  font-size: 15px;
  line-height: 2;
}
.page-content__inner ul {
  list-style: disc;
}
.page-content__inner ol {
  list-style: decimal;
}
.page-content__inner img {
  margin: 24px auto;
}
.page-content__inner strong {
  font-weight: 600;
}
.page-content__inner blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  background: var(--gray-bg);
  border-left: 3px solid var(--orange);
  font-size: 14px;
}

.page-content__center {
  text-align: center;
  margin-top: 48px;
}

.post-list {
  max-width: 880px;
  margin: 0 auto;
}

.post-list__item {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 22px 6px;
  border-bottom: 1px solid var(--gray-line);
}
@media screen and (max-width: 768px) {
  .post-list__item {
    gap: 14px;
    flex-direction: column;
  }
}

.post-list__date {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.post-list__title {
  font-size: 15px;
  transition: color 0.3s ease;
}

.post-list__item:hover .post-list__title {
  color: var(--orange);
}

.post-pagination {
  max-width: 880px;
  margin: 56px auto 0;
  text-align: center;
}
.post-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin: 0 3px;
  padding: 0 8px;
  border: 1px solid var(--gray-line);
  font-family: var(--font-sans);
  font-size: 13px;
  transition: all 0.3s ease;
}
.post-pagination .page-numbers.current,
.post-pagination .page-numbers:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.br_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br_sp {
    display: block !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}

.reveal.is-show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes kenburn {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}
@keyframes scrollLine {
  0%, 100% {
    transform: scaleY(0.3);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
@keyframes accessFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
@keyframes visionPulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.95;
  }
}
@keyframes visionRing {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}
@keyframes visionTextPop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.4s ease;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  transition: padding 0.4s ease;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 16px 30px;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 14px 20px;
  }
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.96);
}

.header.scrolled .header__inner {
  padding-top: 11px;
  padding-bottom: 11px;
}

.header__logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 22px;
    gap: 15px;
  }
}

.header__logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 13px -3px 0 -2px var(--orange), 16px 6px 0 -4px var(--orange);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  position: relative;
  padding: 6px 2px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.35s ease;
}
.nav__link:hover::after {
  width: 100%;
}

.nav__contact {
  padding: 11px 26px;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--white);
  transition: background-color 0.35s ease, color 0.35s ease;
}
.nav__contact::after {
  display: none;
}
.nav__contact:hover {
  background: transparent;
  color: var(--orange);
}

.header__toggle {
  display: none;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.header__toggle span {
  position: absolute;
  left: 7px;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.35s ease, opacity 0.2s ease;
}
.header__toggle span:nth-child(1) {
  top: 15px;
}
.header__toggle span:nth-child(2) {
  top: 22px;
}
.header__toggle span:nth-child(3) {
  top: 29px;
}
.header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .header__toggle {
    display: block;
  }
  .header__logo {
    min-width: 0;
    overflow: hidden;
  }
  .header__logo img {
    max-height: 40px;
    width: auto;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(26, 26, 26, 0.98);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1);
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav__link {
    padding: 16px 0;
    font-family: var(--font-mincho);
    font-size: 19px;
    letter-spacing: 0.12em;
    color: var(--white);
  }
  .nav__link::after {
    display: none;
  }
  .nav__contact {
    margin-top: 18px;
    padding: 14px 44px;
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: 0.18em;
  }
}
body.nav-open {
  overflow: hidden;
}

.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

.access {
  position: relative;
  padding: 124px 40px;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.access::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 90, 42, 0.14), transparent 70%);
  animation: accessFloat 8s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 80px 22px;
  }
}

.access__inner {
  position: relative;
  z-index: 2;
}

.access__logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .access__logo {
    font-size: 32px;
  }
}

.access__logo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 16px -4px 0 -2px var(--orange), 20px 7px 0 -4px var(--orange);
}

.access__info {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.82);
}

.access__buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 42px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .access__buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.access__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  transition: background-color 0.4s ease, color 0.4s ease;
}
@media screen and (max-width: 768px) {
  .access__btn {
    width: 100%;
    max-width: 320px;
  }
}

.access__icon {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.access__btn--tel {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.access__btn--tel:hover {
  background: var(--white);
  color: var(--black);
}

.access__btn--mail {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--white);
}
.access__btn--mail:hover {
  background: transparent;
  color: var(--orange);
}

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
  padding: 44px 40px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
}
.footer__nav a:hover {
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  .footer__nav {
    gap: 12px 22px;
    font-size: 12px;
  }
}

.footer__copy {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 90;
  width: 54px;
  height: 54px;
  background: var(--orange);
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.pagetop::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(-45deg) translate(-2px, 2px);
  transition: transform 0.3s ease;
}
.pagetop:hover {
  background: var(--black);
  border-color: var(--black);
}
.pagetop:hover::before {
  transform: rotate(-45deg) translate(-4px, 4px);
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  background-size: cover;
  background-position: center;
  transition: opacity 1.5s ease;
}
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.65) 0%, rgba(26, 26, 26, 0.35) 50%, rgba(26, 26, 26, 0.7) 100%);
}

.hero__slide.active {
  opacity: 1;
  animation: kenburn 8s ease forwards;
}

.hero__movie {
  position: absolute;
  inset: 0;
}
.hero__movie::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.65) 0%, rgba(26, 26, 26, 0.35) 50%, rgba(26, 26, 26, 0.7) 100%);
}

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

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  color: var(--white);
}

.hero__sub {
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--orange);
  opacity: 0;
  animation: heroSlideUp 1s 0.5s forwards;
}
@media screen and (max-width: 768px) {
  .hero__sub {
    font-size: 16px;
    margin-bottom: 18px;
  }
}

.hero__title {
  font-family: var(--font-mincho);
  font-size: clamp(34px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  opacity: 0;
  animation: heroSlideUp 1s 0.8s forwards;
}

/*
.hero__title-accent {
	color: var(--orange);
}
*/
.top_center_h1 {
  color: #e85a2a;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0;
  animation: heroFadeIn 1s 1.5s forwards;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  margin: 14px auto 0;
  background: var(--white);
  animation: scrollLine 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .hero__scroll {
    bottom: 24px;
  }
}

.hero__indicator {
  position: absolute;
  right: 50px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  gap: 12px;
}
.hero__indicator span {
  width: 34px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hero__indicator span.active {
  background: var(--orange);
}
@media screen and (max-width: 768px) {
  .hero__indicator {
    right: 20px;
    bottom: 22px;
    gap: 8px;
  }
  .hero__indicator span {
    width: 24px;
  }
}

.lead {
  padding: 120px 40px;
  text-align: center;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .lead {
    padding: 76px 22px;
  }
}

.lead__label {
  margin-bottom: 14px;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.1em;
}

.top_bottom_title_1 {
  color: #e85a2a;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
}

.lead__title {
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .lead__title {
    font-size: 24px;
    margin-bottom: 22px;
  }
}

.lead__accent {
  color: var(--orange);
}

.lead__text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.2;
  color: var(--gray-text);
}
@media screen and (max-width: 768px) {
  .lead__text {
    font-size: 14px;
  }
}

.vision {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.4));
}
@media screen and (max-width: 1024px) {
  .vision {
    height: 420px;
  }
}
@media screen and (max-width: 768px) {
  .vision {
    height: 360px;
  }
}

.vision__copy {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 50px 70px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.vision__copy h2 {
  font-family: var(--font-mincho);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .vision__copy {
    padding: 38px 44px;
  }
  .vision__copy h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .vision__copy {
    padding: 32px 26px;
  }
  .vision__copy h2 {
    font-size: 22px;
  }
}

.vision__accent {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: var(--white);
}
.vision__accent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .vision__accent::before {
    width: 60px;
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .vision__accent::before {
    width: 55px;
    height: 65px;
  }
}
.vision__accent::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: -1;
}

.vision__accent-text {
  display: inline-block;
  opacity: 0;
  transform: scale(0.5);
}

.vision.is-show .vision__accent::before {
  animation: visionPulse 1.4s 0.5s cubic-bezier(0.25, 0.85, 0.4, 1.3) forwards;
}

.vision.is-show .vision__accent::after {
  animation: visionRing 1.6s 0.7s ease-out forwards;
}

.vision.is-show .vision__accent-text {
  animation: visionTextPop 0.6s 0.8s cubic-bezier(0.25, 0.85, 0.4, 1.5) forwards;
}

.contents {
  padding: 120px 40px;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .contents {
    padding: 80px 22px;
  }
}

.contents__head {
  text-align: center;
  margin-bottom: 76px;
}
.contents__head .lead__label {
  margin-bottom: 6px;
}
.contents__head h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  .contents__head {
    margin-bottom: 48px;
  }
  .contents__head h2 {
    font-size: 36px;
  }
}

.contents__list {
  max-width: 1280px;
  margin: 0 auto;
}

.contents__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 280px;
  overflow: hidden;
}
.contents__item:nth-child(even) .contents__item-img {
  order: 2;
}
.contents__item:nth-child(even) .contents__item-body {
  order: 1;
}
@media screen and (max-width: 1024px) {
  .contents__item {
    grid-template-columns: 1fr;
    height: auto;
  }
  .contents__item:nth-child(even) .contents__item-img {
    order: 1;
  }
  .contents__item:nth-child(even) .contents__item-body {
    order: 2;
  }
}

.contents__item-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
@media screen and (max-width: 1024px) {
  .contents__item-img {
    height: 240px;
  }
}

.contents__item:hover .contents__item-img {
  transform: scale(1.05);
}

.contents__item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 60px;
  background: var(--black);
  color: var(--white);
}
@media screen and (max-width: 1024px) {
  .contents__item-body {
    padding: 44px 36px;
  }
}
@media screen and (max-width: 768px) {
  .contents__item-body {
    padding: 38px 26px;
  }
}

.contents__item-en {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.contents__item-jp {
  margin-bottom: 20px;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
}

.contents__item-desc {
  margin-bottom: 26px;
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

.contents__item-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  transition: background-color 0.4s ease, border-color 0.4s ease, gap 0.4s ease;
}

.contents__item:hover .contents__item-btn {
  gap: 20px;
  background: var(--orange);
  border-color: var(--orange);
}

.service-lead {
  padding: 96px 40px 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-lead {
    padding: 64px 22px 16px;
  }
}

.service-lead__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .service-lead__text {
    font-size: 14px;
    line-height: 2.1;
  }
}

.service-list {
  padding: 56px 40px 120px;
}
@media screen and (max-width: 768px) {
  .service-list {
    padding: 40px 22px 80px;
  }
}

.service-list__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
@media screen and (max-width: 768px) {
  .service-list__inner {
    gap: 64px;
  }
}

.service-item {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.service-item:nth-child(even) .service-item__img {
  order: 2;
}
.service-item:nth-child(even) .service-item__body {
  order: 1;
}
@media screen and (max-width: 1024px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-item .service-item__img {
    order: 1;
  }
  .service-item .service-item__body {
    order: 2;
  }
  .service-item:nth-child(even) .service-item__img {
    order: 1;
  }
  .service-item:nth-child(even) .service-item__body {
    order: 2;
  }
}

.service-item__img {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .service-item__img {
    height: 320px;
  }
}
@media screen and (max-width: 768px) {
  .service-item__img {
    height: 240px;
  }
}

.service-item__num {
  position: absolute;
  top: 26px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.service-item__en {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.service-item__title {
  position: relative;
  margin: 6px 0 22px;
  padding-bottom: 18px;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.service-item__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background: var(--orange);
}
@media screen and (max-width: 768px) {
  .service-item__title {
    font-size: 22px;
    margin-bottom: 18px;
  }
}

.service-item__text {
  font-size: 15px;
  line-height: 2.2;
  color: #3a3a3a;
}
@media screen and (max-width: 768px) {
  .service-item__text {
    font-size: 14px;
  }
}

.works-archive {
  padding: 96px 40px 120px;
}
@media screen and (max-width: 768px) {
  .works-archive {
    padding: 64px 22px 80px;
  }
}

.works-archive__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.works-intro {
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .works-intro {
    margin-bottom: 48px;
  }
}

.works-intro__title {
  font-family: var(--font-mincho);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .works-intro__title {
    font-size: 20px;
  }
}

.works-intro__text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.2;
  color: var(--gray-text);
}
@media screen and (max-width: 768px) {
  .works-intro__text {
    font-size: 14px;
    line-height: 2;
  }
}

.works-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .works-filter {
    margin-bottom: 40px;
  }
}

.works-filter__btn {
  padding: 10px 26px;
  border: 1px solid var(--gray-line);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gray-text);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.works-filter__btn:hover {
  border-color: var(--black);
  color: var(--black);
}
.works-filter__btn.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
@media screen and (max-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.works-card {
  display: block;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.works-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(26, 26, 26, 0.14);
}
.works-card.is-hidden {
  display: none;
}

.works-card__img {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.works-card:hover .works-card__img {
  transform: scale(1.06);
}

.works-card__cat {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 15px;
  background: rgba(26, 26, 26, 0.85);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.works-card__body {
  padding: 22px 22px 26px;
}

.works-card__title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.works-card__meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray-text);
}

.works-card__comment {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--gray-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.works-single {
  padding: 96px 0 0;
}

.works-single__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 40px 100px;
}
@media screen and (max-width: 768px) {
  .works-single__inner {
    padding: 0 22px 72px;
  }
}

.works-single__head {
  text-align: center;
  margin-bottom: 44px;
}

.works-single__cat {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 16px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.works-single__heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .works-single__heading {
    font-size: 15px;
  }
}

.works-single__title {
  font-family: var(--font-mincho);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .works-single__title {
    font-size: 23px;
  }
}

.works-single__comment {
  max-width: 720px;
  margin: 26px auto 0;
  font-size: 15px;
  line-height: 2.2;
  color: #3a3a3a;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .works-single__comment {
    font-size: 14px;
    line-height: 2;
    margin-top: 20px;
  }
}

.works-single__gallery {
  margin-bottom: 56px;
}

.works-single__main img {
  width: 100%;
  height: auto;
}

.works-single__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.works-single__thumb {
  width: 100px;
  height: 74px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.works-single__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-single__thumb.is-active {
  border-color: var(--orange);
}

.works-single__content {
  margin-bottom: 56px;
  font-size: 15px;
  line-height: 2.2;
}
.works-single__content p {
  margin-bottom: 20px;
}
.works-single__content h2, .works-single__content h3 {
  margin: 36px 0 14px;
  font-weight: 600;
}
.works-single__content img {
  margin: 24px auto;
}

.works-single__info {
  margin-bottom: 56px;
}

.works-single__info-ttl {
  margin-bottom: 18px;
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.works-single__info-ttl span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.works-single__back {
  text-align: center;
}

.works-related {
  padding: 90px 40px 110px;
  background: var(--gray-bg);
}
@media screen and (max-width: 768px) {
  .works-related {
    padding: 64px 22px 80px;
  }
}

.works-related__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.company-message {
  padding: 96px 40px;
}
@media screen and (max-width: 768px) {
  .company-message {
    padding: 64px 22px;
  }
}

.company-message__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.company-message__inner.is-no-photo {
  grid-template-columns: 1fr;
  max-width: 820px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .company-message__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.company-message__photo img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .company-message__photo img {
    max-height: 360px;
  }
}

.company-message__label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.company-message__title {
  margin: 8px 0 22px;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .company-message__title {
    font-size: 22px;
  }
}

.company-message__text {
  font-size: 15px;
  line-height: 2.3;
  color: #3a3a3a;
}
.company-message__text p {
  margin-bottom: 18px;
}

.company-message__sign {
  margin-top: 24px;
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
}

.company-outline {
  padding: 96px 40px;
  background: var(--gray-bg);
}
@media screen and (max-width: 768px) {
  .company-outline {
    padding: 64px 22px;
  }
}

.company-outline__inner {
  max-width: 920px;
  margin: 0 auto;
}

.company-outline .info-table {
  background: var(--white);
}

@media screen and (max-width: 768px) {
  .company-outline .info-table th,
  .company-outline .info-table td {
    display: block;
    width: 100%;
  }
}

.office-list {
  list-style: none;
  display: grid;
  gap: 18px;
}

.office-list__name {
  font-family: var(--font-mincho);
  font-weight: 600;
  color: var(--black);
}

.office-list__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 20px;
}

.company-history {
  padding: 96px 40px;
}
@media screen and (max-width: 768px) {
  .company-history {
    padding: 64px 22px;
  }
}

.company-history__inner {
  max-width: 920px;
  margin: 0 auto;
}

.history-list__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--gray-line);
}
.history-list__row dt {
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--orange);
}
.history-list__row dd {
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .history-list__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 4px;
  }
  .history-list__row dt {
    font-size: 14px;
  }
  .history-list__row dd {
    font-size: 14px;
  }
}

.company-access {
  padding: 0 40px 110px;
}
@media screen and (max-width: 768px) {
  .company-access {
    padding: 0 22px 80px;
  }
}

.company-access__inner {
  max-width: 920px;
  margin: 0 auto;
}

.company-access__map {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-bg);
}
.company-access__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-section {
  padding: 96px 40px 120px;
}
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 64px 22px 80px;
  }
}

.contact-section__inner {
  max-width: 820px;
  margin: 0 auto;
}

.contact-section__lead {
  margin-bottom: 44px;
  text-align: center;
  font-size: 16px;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .contact-section__lead {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

.contact-tel {
  margin-bottom: 56px;
  padding: 40px 24px;
  background: var(--gray-bg);
  text-align: center;
}

.contact-tel__label {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.contact-tel__number {
  display: inline-block;
  margin: 4px 0 6px;
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .contact-tel__number {
    font-size: 30px;
  }
}

.contact-tel__hours {
  font-size: 13px;
  color: var(--gray-text);
}

.contact-form {
  font-size: 15px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=url],
.contact-form input[type=number],
.contact-form input[type=date],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-line);
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  color: var(--black);
  transition: border-color 0.3s ease;
}

.contact-form textarea {
  min-height: 168px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 14px;
}

.contact-form label .wpcf7-form-control-wrap,
.contact-form label > input[type=text],
.contact-form label > input[type=email],
.contact-form label > input[type=tel],
.contact-form label > textarea {
  display: block;
  margin-top: 8px;
}

.contact-form label .red,
.contact-form label .blue {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 9px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  border-radius: 2px;
  vertical-align: middle;
}

.contact-form label .red {
  background: var(--orange);
}

.contact-form label .blue {
  background: #5a8ec8;
}

.contact-form label.policy {
  display: block;
  text-align: center;
  font-weight: 400;
  margin: 32px 0 8px;
}
.contact-form label.policy .wpcf7-form-control-wrap {
  display: inline-block;
  margin-top: 0;
}
.contact-form label.policy .wpcf7-list-item {
  margin: 0;
  display: inline-block;
}
.contact-form label.policy input[type=checkbox] {
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
}
.contact-form label.policy .wpcf7-list-item-label {
  vertical-align: middle;
  font-size: 14px;
}

.contact-form p {
  margin-bottom: 20px;
}

.contact-form .wpcf7-list-item {
  display: inline-block;
  margin: 0 16px 0 0;
}

.contact-form input[type=submit],
.contact-form .wpcf7-submit {
  display: inline-block;
  width: auto;
  min-width: 240px;
  margin: 32px 6px 0;
  padding: 18px 44px;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.contact-form input[type=submit]:hover,
.contact-form .wpcf7-submit:hover {
  background: var(--black);
  border-color: var(--black);
}

.contact-form input[type=submit][value=戻る],
.contact-form .cf7msm-prev,
.contact-form .wpcf7-previous {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}
.contact-form input[type=submit][value=戻る]:hover,
.contact-form .cf7msm-prev:hover,
.contact-form .wpcf7-previous:hover {
  background: var(--black);
  color: var(--white);
}

.contact-form .wpcf7-form > p:has(input[type=submit]) {
  text-align: center;
}

.contact-form--confirm label {
  border-bottom: 1px solid var(--gray-line);
  padding-bottom: 14px;
}
.contact-form--confirm label .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
  font-weight: 400;
  font-size: 15px;
  color: #3a3a3a;
  white-space: pre-wrap;
  word-break: break-word;
}

.contact-form .wpcf7-not-valid-tip {
  color: var(--orange-deep);
  font-size: 13px;
}

.contact-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 18px;
  font-size: 14px;
}

.contact-form__notice {
  padding: 48px 30px;
  background: var(--gray-bg);
  text-align: center;
  line-height: 2.2;
}
.contact-form__notice p {
  margin-bottom: 4px;
}
.contact-form__notice a {
  color: var(--orange-deep);
  text-decoration: underline;
}

.contact-steps {
  display: flex;
  justify-content: center;
  margin: 0 auto 56px;
  padding: 0;
  max-width: 480px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .contact-steps {
    margin-bottom: 36px;
  }
}

.contact-steps__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.contact-steps__item + .contact-steps__item::before {
  content: "";
  position: absolute;
  left: calc(-50% + 17px);
  right: calc(50% + 17px);
  top: 16px;
  height: 1px;
  background: var(--gray-line);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .contact-steps__item + .contact-steps__item::before {
    left: calc(-50% + 15px);
    right: calc(50% + 15px);
    top: 14px;
  }
}

.contact-steps__num {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-line);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gray-text);
}
@media screen and (max-width: 768px) {
  .contact-steps__num {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

.contact-steps__label {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gray-text);
}
@media screen and (max-width: 768px) {
  .contact-steps__label {
    font-size: 11px;
  }
}

.contact-steps__item.is-active .contact-steps__num {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.contact-steps__item.is-active .contact-steps__label {
  color: var(--orange);
  font-weight: 600;
}

.contact-steps__item.is-done .contact-steps__num {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.contact-steps__item.is-done + .contact-steps__item::before {
  background: var(--black);
}

.contact-thanks {
  text-align: center;
  padding: 20px 0;
}

.contact-thanks__title {
  font-family: var(--font-mincho);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 26px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .contact-thanks__title {
    font-size: 20px;
  }
}

.contact-thanks__text {
  font-size: 15px;
  line-height: 2.2;
  color: var(--gray-text);
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact-thanks__text {
    font-size: 14px;
    line-height: 2;
  }
}

.contact-thanks__back {
  margin-top: 32px;
}/*# sourceMappingURL=style.css.map */