:root {
  --inner-width: 1200px;
  --fs-2xs: 10px;
  --fs-xs: 11px;
  --fs-sm: 12px;
  --fs-meta: 13px;
  --fs-body-sm: 14px;
  --fs-body: 15px;
  --fs-body-lg: 16px;
  --fs-sub: 18px;
  --fs-title-sm: 20px;
  --fs-title: 24px;
  --fs-icon: 36px;
}
@media (max-width: 1024px) {
  :root {
    --fs-sub: 17px;
    --fs-title-sm: 18px;
    --fs-title: 22px;
    --fs-icon: 30px;
  }
}
@media (max-width: 768px) {
  :root {
    --fs-2xs: 9px;
    --fs-xs: 10px;
    --fs-sm: 11px;
    --fs-meta: 12px;
    --fs-body-sm: 13px;
    --fs-body: 14px;
    --fs-body-lg: 15px;
    --fs-sub: 16px;
    --fs-title-sm: 17px;
    --fs-title: 20px;
    --fs-icon: 26px;
  }
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: clamp(16px, 0.5vw + 0.9rem, 18px);
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
a:hover {
  opacity: 0.7;
}

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

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (min-width: 1200px) {
  .inner {
    padding: 0;
  }
}

.section-header {
  margin-bottom: clamp(40px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section-header .section-label-en {
  display: block;
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: clamp(32px, 4vw + 1rem, 48px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  color: #D95829;
}
.section-header .section-label-jp {
  display: inline-block;
  font-size: var(--fs-meta);
  letter-spacing: 0.3em;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  line-height: 1;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.totop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  background: #32375C;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: var(--fs-xs);
  cursor: pointer;
  z-index: 100;
}
@media (max-width: 768px) {
  .totop {
    width: 44px;
    height: 44px;
    right: 16px;
    bottom: 16px;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-content,
.hero-bg-text .text-creative,
.hero-bg-text .text-future,
.hero-topics,
.concept-lead,
.concept-body,
.biz-img,
.biz-card {
  will-change: transform;
}

.business .biz-item .biz-card {
  transition: transform 0.1s linear;
}
@media (max-width: 1024px) {
  .business .biz-item .biz-card {
    transition: none !important;
  }
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
header .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  header .header-inner {
    padding: 20px;
  }
}
header .logo-head {
  margin: 0;
}
header .logo-head img {
  height: 28px;
  filter: brightness(0) invert(1);
}
header .header-right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 50px);
}
@media (max-width: 1024px) {
  header .header-right {
    display: none;
  }
}
header nav.pc-nav ul {
  display: flex;
  gap: 30px;
}
header nav.pc-nav ul li a {
  color: #fff;
  font-size: var(--fs-body-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 5px;
}
header nav.pc-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}
header nav.pc-nav ul li a:hover::after {
  width: 100%;
}
header .btn-header-contact {
  background-color: #D95829;
  color: #fff;
  padding: 14px 28px;
  font-size: var(--fs-body-sm);
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s, opacity 0.3s;
}
header .btn-header-contact span {
  font-size: var(--fs-sm);
  margin-left: 5px;
}
header .btn-header-contact:hover {
  background-color: #b0461f;
  opacity: 1;
}

.menu-trigger {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .menu-trigger {
    display: block;
  }
}
.menu-trigger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}
.menu-trigger span:nth-child(1) {
  top: 0;
}
.menu-trigger span:nth-child(2) {
  top: 11px;
}
.menu-trigger span:nth-child(3) {
  bottom: 0;
}

.menu-trigger.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.menu-trigger.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-trigger.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.sp-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.sp-nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background: #02080d;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 40px 40px;
  box-sizing: border-box;
  overflow-y: auto;
}
.sp-nav.is-active {
  transform: translateX(0);
}
.sp-nav ul li {
  margin-bottom: 0;
}
.sp-nav ul li a {
  display: block;
  color: #fff;
  font-size: var(--fs-body-lg);
  font-weight: 700;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.1em;
}
.sp-nav ul li a:hover {
  color: #D95829;
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

.fixed-layout {
  display: flex;
  align-items: flex-start;
  position: relative;
  background-color: #f8f8f8;
}
@media (max-width: 1024px) {
  .fixed-layout {
    flex-direction: column;
  }
}
.fixed-layout .scroll-area {
  width: 60%;
  padding: 140px 0;
  padding-left: max(20px, (100vw - 1200px) / 2);
  position: relative;
  z-index: 20;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .fixed-layout .scroll-area {
    padding-right: 40px;
  }
}
@media (max-width: 1024px) {
  .fixed-layout .scroll-area {
    width: 100%;
    padding: 60px 20px;
    order: 2;
    box-sizing: border-box;
  }
}
.fixed-layout .scroll-area .sc-inner {
  max-width: 750px;
  margin: 0;
  pointer-events: auto;
}
@media (max-width: 1024px) {
  .fixed-layout .scroll-area .sc-inner {
    max-width: 100%;
    margin: 0 auto;
  }
}
.fixed-layout .scroll-area .sc-inner section {
  margin-bottom: clamp(100px, 15vw, 160px);
  background: rgba(255, 255, 255, 0.95);
  padding: clamp(40px, 5vw, 80px);
  backdrop-filter: blur(10px);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.03);
  border-left: 1px solid rgba(50, 55, 92, 0.1);
  margin-right: clamp(-120px, -200px + 5vw, -30px);
  position: relative;
}
.fixed-layout .scroll-area .sc-inner section:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .fixed-layout .scroll-area .sc-inner section {
    padding: 40px 0;
    margin-right: 0;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
    border-left: none;
  }
}
.fixed-layout .scroll-area .sc-inner section .section-header .section-label-jp {
  color: #32375C;
  border-bottom-color: rgba(50, 55, 92, 0.2);
}
.fixed-layout .section-greeting .greeting-title {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.4;
  margin-bottom: 50px;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
  background: transparent;
  backdrop-filter: blur(5px);
  display: inline-block;
  padding: 0 0 0 25px;
  margin-left: 0;
  color: #02080d;
}
.fixed-layout .section-greeting .greeting-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  bottom: 0.1em;
  width: 3px;
  background: #D95829;
}
.fixed-layout .section-greeting .greeting-body p {
  margin-bottom: 2em;
  opacity: 0.9;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #444;
}
.fixed-layout .section-greeting .signature {
  text-align: right;
  margin-top: 40px;
  border-top: 1px solid #eee;
}
.fixed-layout .section-greeting .signature .role {
  font-size: var(--fs-meta);
  margin-bottom: 10px;
  color: #32375C;
  letter-spacing: 0.2em;
}
.fixed-layout .section-greeting .signature .name {
  font-size: var(--fs-title);
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.1em;
  color: #02080d;
}
.fixed-layout .section-greeting .signature .name span {
  margin-left: 0.5em;
}
.fixed-layout .career-list {
  position: relative;
}
.fixed-layout .career-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(50, 55, 92, 0.1);
}
.fixed-layout .career-item {
  padding: 0 0 60px 40px;
  position: relative;
}
.fixed-layout .career-item::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 9px;
  height: 9px;
  background: #D95829;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 88, 41, 0.2);
}
.fixed-layout .career-item .career-date {
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: #D95829;
  display: block;
  font-size: var(--fs-body);
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
.fixed-layout .career-item h3 {
  font-size: var(--fs-sub);
  margin-bottom: 15px;
  font-weight: 600;
  color: #32375C;
}
.fixed-layout .career-item p {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: #666;
  margin: 0;
}
.fixed-layout .history-list {
  border-top: 1px solid #32375C;
}
.fixed-layout .history-list .history-row {
  display: flex;
  align-items: baseline;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .fixed-layout .history-list .history-row {
    flex-direction: column;
    gap: 8px;
  }
}
.fixed-layout .history-list .history-row:hover {
  background-color: rgba(50, 55, 92, 0.02);
}
.fixed-layout .history-list .history-row .h-year {
  width: 140px;
  font-size: var(--fs-sub);
  font-weight: 700;
  color: #32375C;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .fixed-layout .history-list .history-row .h-year {
    width: auto;
  }
}
.fixed-layout .history-list .history-row .h-event {
  flex: 1;
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: #444;
  font-weight: 400;
}
.fixed-layout .sticky-img-area {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 10;
  margin-left: -10%;
  display: flex;
  align-items: center;
  padding: 60px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .fixed-layout .sticky-img-area {
    width: 100%;
    height: 60vh;
    margin-left: 0;
    position: relative;
    order: 1;
  }
}
.fixed-layout .sticky-img-area .bg-about-parallax {
  position: absolute;
  bottom: 5%;
  left: -20%;
  width: 95vw;
  max-width: 1600px;
  opacity: 0.08;
  z-index: 10;
  pointer-events: none;
  will-change: transform;
}
.fixed-layout .sticky-img-area .bg-about-parallax img {
  width: 100%;
  height: auto;
  filter: brightness(0);
}
.fixed-layout .sticky-img-area .img-wrapper {
  height: 100%;
  aspect-ratio: 1/1.168;
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin-left: auto;
}
.fixed-layout .sticky-img-area .img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 8, 13, 0.4) 0%, transparent 40%);
}
.fixed-layout .sticky-img-area .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%) contrast(110%);
}

footer {
  background-color: #02080d;
  color: #fff;
  padding: 100px 0 40px;
}
@media (max-width: 1024px) {
  footer {
    padding: 60px 0 30px;
  }
}
footer .f-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  footer .f-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
  }
}
footer .f-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
}
footer .f-contact-btns {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  footer .f-contact-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
}
footer .f-contact-btns [class^=btn-f-] {
  padding: 18px 35px;
  font-size: var(--fs-body);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 280px;
  color: #fff;
  transition: 0.3s;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  footer .f-contact-btns [class^=btn-f-] {
    min-width: 0;
    width: 100%;
    padding: 16px 20px;
  }
}
footer .f-contact-btns [class^=btn-f-] span {
  font-size: var(--fs-sm);
  transition: transform 0.3s;
}
footer .f-contact-btns [class^=btn-f-]:hover {
  opacity: 1;
  filter: brightness(1.1);
}
footer .f-contact-btns [class^=btn-f-]:hover span {
  transform: translateX(5px);
}
footer .f-contact-btns .btn-f-call {
  background-color: #D95829;
}
footer .f-contact-btns .btn-f-mail {
  background-color: #32375C;
}
footer .f-nav-row {
  display: flex;
  gap: 100px;
  margin-bottom: 80px;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {
  footer .f-nav-row {
    flex-direction: column;
    gap: 40px;
    padding-top: 60px;
    margin-bottom: 60px;
  }
}
footer .f-nav-row .f-nav-title {
  font-size: var(--fs-body-lg);
  font-weight: 800;
  color: #D95829;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
}
footer .f-nav-row ul li {
  margin-bottom: 15px;
}
footer .f-nav-row ul li a {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}
footer .f-nav-row ul li a:hover {
  color: #fff;
  transform: translateX(5px);
  opacity: 1;
}
footer .f-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1024px) {
  footer .f-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
footer .f-bottom-row .f-zip {
  display: block;
  margin-bottom: 5px;
}
footer .f-bottom-row .f-address {
  line-height: 1.8;
  margin-bottom: 10px;
}
footer .f-bottom-row .f-tel-fax span {
  margin-right: 20px;
}
@media (max-width: 768px) {
  footer .f-bottom-row .f-tel-fax span {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
footer .f-bottom-row .f-legal {
  text-align: right;
}
@media (max-width: 1024px) {
  footer .f-bottom-row .f-legal {
    text-align: left;
  }
}
footer .f-bottom-row .f-legal .f-links {
  margin-bottom: 10px;
}
footer .f-bottom-row .f-legal .f-links a {
  text-decoration: underline;
  transition: 0.3s;
}
footer .f-bottom-row .f-legal .f-links a:hover {
  color: #fff;
}
footer .f-bottom-row .f-legal .f-copy {
  letter-spacing: 0.05em;
}

header {
  transition: background-color 0.3s, box-shadow 0.3s;
}
header.is-scrolled {
  position: fixed;
  background-color: rgba(2, 8, 13, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
header.is-scrolled .header-inner {
  padding-top: 15px;
  padding-bottom: 15px;
}

body.is-subpage header {
  position: fixed;
  background-color: #02080d;
}

body.admin-bar header.is-scrolled,
body.admin-bar.is-subpage header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar header.is-scrolled,
  body.admin-bar.is-subpage header {
    top: 46px;
  }
}

.single-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 60vh;
  background: #fff;
}
body.admin-bar .single-page {
  padding-top: 170px;
}
.single-page .entry-header {
  margin-bottom: 2rem;
}
.single-page .entry-header .entry-cat {
  background: #D95829;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
}
.single-page .entry-header h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 1rem 0;
  line-height: 1.6;
}
.single-page .entry-header .entry-date {
  color: #888;
  font-size: 14px;
}
.single-page .entry-thumbnail {
  margin-bottom: 2rem;
}
.single-page .entry-thumbnail img {
  width: 100%;
  height: auto;
}
.single-page .entry-content {
  line-height: 1.9;
}
.single-page .entry-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #D95829;
}
.single-page .entry-content h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.8rem;
}
.single-page .entry-content p {
  margin-bottom: 1.5rem;
}
.single-page .entry-content img {
  max-width: 100%;
  height: auto;
}
.single-page .entry-content blockquote {
  border-left: 4px solid #D95829;
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: #f8f8f8;
  font-style: italic;
}
.single-page .btn-back {
  display: inline-block;
  padding: 14px 40px;
  background: #333;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}
.single-page .btn-back:hover {
  background: #D95829;
  opacity: 1;
}

.page-404 {
  text-align: center;
  padding: 160px 20px 80px;
  background: #fff;
}
body.admin-bar .page-404 {
  padding-top: 190px;
}
.page-404 h1 {
  font-size: 6rem;
  color: #D95829;
  font-weight: bold;
  margin: 0;
}
.page-404 p {
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
}
.page-404 .btn-back {
  display: inline-block;
  padding: 14px 40px;
  background: #333;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}
.page-404 .btn-back:hover {
  background: #D95829;
  opacity: 1;
}

.archive-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 60vh;
  background: #fff;
}
body.admin-bar .archive-page {
  padding-top: 170px;
}
.archive-page .archive-header {
  margin-bottom: 3rem;
}
.archive-page .archive-header h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 2px solid #D95829;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.search-page {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 60vh;
  background: #fff;
}
body.admin-bar .search-page {
  padding-top: 170px;
}
.search-page .search-header {
  margin-bottom: 3rem;
}
.search-page .search-header h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 3rem;
}
.nav-links a, .nav-links span {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}
.nav-links .current {
  background: #02080d;
  color: #fff;
  border-color: #02080d;
}
.nav-links a:hover {
  background: #D95829;
  color: #fff;
  border-color: #D95829;
  opacity: 1;
}

.hero {
  height: 100vh;
  min-height: 700px;
  background: #000 url("../images/hero.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}
.hero .hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0.05em;
  pointer-events: none;
  opacity: 0.15;
}
.hero .hero-bg-text span {
  display: block;
  font-size: 16vw;
}
.hero .hero-bg-text .text-creative {
  text-align: left;
  padding-left: 5%;
}
.hero .hero-bg-text .text-future {
  text-align: right;
  padding-right: 5%;
}
.hero .hero-content {
  position: relative;
  z-index: 10;
  width: 90%;
}
.hero .hero-content h1 {
  font-size: clamp(32px, 6vw + 1rem, 56px);
  letter-spacing: 0.2em;
  margin: 0 0 30px;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    letter-spacing: 0.1em;
  }
}
.hero .hero-content p {
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.1em;
  line-height: 2;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .hero .hero-content p .pc-only {
    display: none;
  }
}
.hero .hero-topics {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 20;
  background: white;
  color: #333;
  display: flex;
  align-items: center;
  padding: 10px 25px;
  font-size: var(--fs-body-sm);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .hero .hero-topics {
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
  }
}
.hero .hero-topics .topics-label {
  font-weight: 900;
  color: #333;
  border-right: 1px solid #ccc;
  padding-right: 15px;
  margin-right: 15px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero .hero-topics .topics-label {
    padding-right: 10px;
    margin-right: 10px;
  }
}
.hero .hero-topics .topics-date {
  color: #888;
  margin-right: 15px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero .hero-topics .topics-date {
    margin-right: 10px;
  }
}
.hero .hero-topics .topics-link {
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero .hero-topics .topics-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .hero {
    min-height: 600px;
  }
  .hero .hero-content h1 {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 20px;
  }
  .hero .hero-content p {
    line-height: 1.8;
  }
}

.concept {
  background: #02080d;
  color: #fff;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.concept .section-header {
  margin-bottom: 80px;
}
.concept .section-header .section-label-en {
  color: #fff;
  font-size: clamp(40px, 6vw, 64px);
  opacity: 1;
}
.concept .section-header .section-label-jp {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
  display: inline-block;
}
.concept .bg-decoration-text {
  position: absolute;
  bottom: -5%;
  left: 10%;
  width: 95vw;
  max-width: 1600px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transition: transform 0.15s linear;
}
.concept .bg-decoration-text img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .concept .bg-decoration-text {
    width: 120vw;
    left: 5%;
    bottom: -20px;
  }
}
.concept .inner {
  position: relative;
  z-index: 5;
}
.concept .concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .concept .concept-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.concept .concept-grid h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0;
}
.concept .concept-grid .concept-body p {
  font-size: var(--fs-body-lg);
  line-height: 2;
  margin-bottom: 2em;
  opacity: 0.8;
}
.concept .concept-grid .concept-body p:last-child {
  margin-bottom: 0;
}

.business {
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: #fff;
  overflow: visible;
}
.business .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.business .biz-item {
  display: flex;
  align-items: center;
  margin-bottom: clamp(100px, 15vw, 200px);
  width: 100%;
}
.business .biz-item:nth-child(odd) {
  flex-direction: row;
}
.business .biz-item:nth-child(odd) .biz-card {
  margin-left: -15%;
}
.business .biz-item:nth-child(even) {
  flex-direction: row-reverse;
}
.business .biz-item:nth-child(even) .biz-card {
  margin-right: -15%;
}
@media (max-width: 1024px) {
  .business .biz-item {
    flex-direction: column !important;
    margin-bottom: 80px;
  }
}
.business .biz-item:hover .biz-img img {
  transform: scale(1.1);
}
.business .biz-item .biz-img {
  flex: 0 0 70%;
  height: clamp(300px, 40vw, 500px);
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1024px) {
  .business .biz-item .biz-img {
    flex: none;
    width: 100%;
    height: 300px;
  }
}
.business .biz-item .biz-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.business .biz-item .biz-card {
  flex: 0 0 45%;
  background: #02080d;
  color: #fff;
  padding: clamp(30px, 4vw, 60px);
  z-index: 10;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .business .biz-item .biz-card {
    flex: none;
    width: 100%;
    margin: 0 !important;
    padding: 40px 25px;
  }
}
.business .biz-item .biz-card .biz-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.business .biz-item .biz-card .biz-header h3 {
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: 20px;
  line-height: 1.4;
}
.business .biz-item .biz-card .biz-header .biz-sub {
  font-size: var(--fs-body-sm);
  font-weight: 700;
  color: #D95829;
  letter-spacing: 0.2em;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  line-height: 1;
  margin: 0;
}
.business .biz-item .biz-card .biz-description {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.business .btn-biz {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #D95829;
  color: #fff;
  padding: 18px 30px;
  font-size: var(--fs-body-sm);
  font-weight: 800;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 260px;
  border-radius: 2px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .business .btn-biz {
    min-width: 0;
    width: 100%;
  }
}
.business .btn-biz span {
  font-size: var(--fs-sm);
  transition: transform 0.3s;
}
.business .btn-biz:hover {
  background: #dd693f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(217, 88, 41, 0.4);
}
.business .btn-biz:hover span {
  transform: translateX(5px);
}
.business .btn-biz.is-coming-soon {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}
.business .btn-biz.is-coming-soon span {
  display: none;
}

.activity {
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: #fcfcfc;
  overflow: hidden;
}
.activity .activity-slider-container {
  width: 100%;
  margin-top: 60px;
  padding-left: max(20px, (100vw - 1200px) / 2);
  box-sizing: border-box;
}
.activity .activity-slider {
  overflow: visible !important;
}
.activity .swiper-slide {
  width: clamp(280px, 30vw, 400px);
  height: auto;
}
.activity .act-card {
  display: block;
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background-color: #000;
  text-decoration: none;
}
@media (max-width: 768px) {
  .activity .act-card {
    height: 380px;
  }
}
.activity .act-card:hover .act-img-wrapper img {
  transform: scale(1.1);
  opacity: 0.6;
}
.activity .act-card:hover .act-desc {
  opacity: 1;
  transform: translateY(0);
}
.activity .act-card:hover .act-more {
  opacity: 1;
  color: #D95829;
  border-color: #D95829;
}
.activity .act-card .act-img-wrapper {
  width: 100%;
  height: 100%;
}
.activity .act-card .act-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}
.activity .act-card .act-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 80%);
  z-index: 1;
}
.activity .act-card .act-content {
  position: absolute;
  inset: 0;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 10;
  color: #fff;
}
.activity .act-card .act-content .act-desc {
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.activity .act-card .act-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.activity .act-card .act-meta .act-date {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.activity .act-card .act-meta .act-tag {
  font-size: var(--fs-2xs);
  background: #D95829;
  padding: 2px 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.activity .act-card .act-title {
  font-size: var(--fs-title-sm);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.8em;
}
.activity .act-card .act-more {
  margin-top: 12px;
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #fff;
  align-self: flex-start;
  padding-bottom: 4px;
  opacity: 0.6;
  transition: 0.3s;
}
.activity .slider-controls {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .activity .slider-controls {
    margin-top: 30px;
  }
}
.activity .swiper-pagination {
  position: static;
  width: auto;
}
.activity .swiper-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 2px;
  border-radius: 0;
  background: #ccc;
  opacity: 1;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .activity .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
  }
}
.activity .swiper-pagination .swiper-pagination-bullet-active {
  background: #32375C;
  width: 60px;
}
@media (max-width: 768px) {
  .activity .swiper-pagination .swiper-pagination-bullet-active {
    width: 35px;
  }
}
.activity .swiper-nav-btns {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .activity .swiper-nav-btns {
    gap: 10px;
  }
}
.activity .swiper-nav-btns .nav-btn {
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: var(--fs-title-sm);
  transition: all 0.3s;
  background: #fff;
}
@media (max-width: 768px) {
  .activity .swiper-nav-btns .nav-btn {
    width: 44px;
    height: 44px;
  }
}
.activity .swiper-nav-btns .nav-btn:hover {
  background: #32375C;
  color: #fff;
  border-color: #32375C;
}

.news {
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
}
.news .news-list {
  margin-bottom: 60px;
}
.news .news-item {
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}
.news .news-item.is-hidden {
  display: none;
}
.news .news-item:hover {
  background-color: #fafafa;
}
.news .news-item:hover .n-title {
  color: #D95829;
}
.news .news-item a {
  display: flex;
  padding: 40px 0;
  text-decoration: none;
  gap: 50px;
}
@media (max-width: 768px) {
  .news .news-item a {
    flex-direction: column;
    gap: 15px;
    padding: 30px 0;
  }
}
.news .news-item .n-meta {
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .news .news-item .n-meta {
    flex: none;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}
.news .news-item .n-meta .n-date {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  color: #999;
  letter-spacing: 0.1em;
}
.news .news-item .n-meta .n-cat {
  margin-top: 10px;
  font-size: var(--fs-xs);
  font-weight: 800;
  background: #f4f0df;
  color: #a68b3c;
  padding: 4px 12px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .news .news-item .n-meta .n-cat {
    margin-top: 0;
  }
}
.news .news-item .n-body {
  flex: 1;
}
.news .news-item .n-body .n-title {
  font-size: var(--fs-title-sm);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #02080d;
  transition: color 0.3s;
}
.news .news-item .n-body .n-desc {
  font-size: var(--fs-body);
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.news .news-more-wrap {
  text-align: center;
}
.news .btn-news-more {
  background: none;
  border: 2px solid #02080d;
  color: #02080d;
  padding: 18px 60px;
  font-size: var(--fs-body-sm);
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.news .btn-news-more span {
  font-size: var(--fs-sm);
  transition: transform 0.3s;
}
.news .btn-news-more:hover {
  background: #02080d;
  color: #fff;
}
.news .btn-news-more:hover span {
  transform: translateX(5px);
}

.contact {
  padding: clamp(80px, 10vw, 140px) 0;
  background: radial-gradient(circle at 10% 10%, #373d66 0%, #32375C 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.contact .contact-parallax-bg {
  position: absolute;
  bottom: 5%;
  left: 20%;
  width: 95vw;
  height: auto;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  will-change: transform;
}
.contact .contact-parallax-bg img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(0.8);
}
.contact .inner {
  position: relative;
  z-index: 10;
}
.contact .inner .section-header .section-label-en {
  color: #fff;
}
.contact .inner .section-header .section-label-jp {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
.contact .inner .contact-container {
  margin-top: 60px;
}
.contact .inner .contact-container .contact-info {
  margin-bottom: 60px;
}
.contact .inner .contact-container .contact-info .contact-lead {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.contact .inner .contact-container .contact-info .contact-text {
  font-size: var(--fs-body-lg);
  line-height: 2;
  opacity: 0.7;
}
.contact .inner .contact-container .contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1024px) {
  .contact .inner .contact-container .contact-actions {
    grid-template-columns: 1fr;
  }
}
.contact .contact-container .contact-card {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: clamp(30px, 4vw, 50px);
  text-decoration: none;
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  box-sizing: border-box;
}
.contact .contact-container .contact-card:hover {
  background-color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: #fff;
}
.contact .contact-container .contact-card:hover .card-body {
  color: #02080d;
}
.contact .contact-container .contact-card:hover .card-body .card-label, .contact .contact-container .contact-card:hover .card-body .card-note {
  color: rgba(0, 0, 0, 0.4);
}
.contact .contact-container .contact-card:hover .card-icon {
  transform: scale(1.1);
}
.contact .contact-container .contact-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.contact .contact-container .contact-card.card-tel:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 -6px 0 0 #D95829;
}
.contact .contact-container .contact-card.card-mail:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 -6px 0 0 #32375C;
}
@media (max-width: 768px) {
  .contact .contact-container .contact-card {
    padding: 25px 20px;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.contact .contact-container .contact-card .card-icon {
  font-size: var(--fs-icon);
  margin-right: clamp(20px, 3vw, 30px);
  color: #D95829;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .contact .contact-container .contact-card .card-icon {
    margin-right: 15px;
  }
}
.contact .contact-container .contact-card .card-body {
  flex: 1;
  min-width: 0;
}
.contact .contact-container .contact-card .card-body .card-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .contact .contact-container .contact-card .card-body .card-label {
    letter-spacing: 0.1em;
    margin-bottom: 5px;
  }
}
.contact .contact-container .contact-card .card-body .card-number, .contact .contact-container .contact-card .card-body .card-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.contact .contact-container .contact-card .card-body .card-note {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
}
.contact .contact-container .contact-card .card-arrow {
  font-size: var(--fs-body-lg);
  color: #D95829;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .contact .contact-container .contact-card .card-arrow {
    display: none;
  }
}

.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.contact-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.contact-modal.is-active .contact-modal-content {
  transform: translateY(0);
  opacity: 1;
}

.contact-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 8, 13, 0.85);
  backdrop-filter: blur(4px);
}

.contact-modal-content {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 90%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
}
@media (max-width: 768px) {
  .contact-modal-content {
    width: 95%;
    max-height: 90vh;
  }
}

.contact-modal-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(25px, 4vw, 35px) clamp(30px, 5vw, 50px);
  border-bottom: 1px solid #eee;
  background: #fff;
}
.contact-modal-header .contact-modal-header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-modal-header .section-label-en {
  display: block;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  color: #D95829;
}
.contact-modal-header .section-label-jp {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  font-weight: bold;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  line-height: 1;
  color: #333;
}

.contact-modal-close {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50%;
}
.contact-modal-close:hover {
  background: #f0f0f0;
  color: #D95829;
}

.contact-modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(25px, 4vw, 40px) clamp(30px, 5vw, 50px);
  color: #333;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.contact-modal-body .modal-notice {
  background: #f8f8f8;
  padding: 20px;
  border-left: 4px solid #D95829;
  font-size: 14px;
  line-height: 1.8;
}
.contact-modal-body .wpcf7 {
  margin: 0;
}
.contact-modal-body .wpcf7-form p {
  margin-bottom: 1.5em;
}
.contact-modal-body .wpcf7-form p:last-of-type {
  margin-bottom: 0;
}
.contact-modal-body .wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.contact-modal-body .wpcf7-form input[type=text],
.contact-modal-body .wpcf7-form input[type=email],
.contact-modal-body .wpcf7-form input[type=tel],
.contact-modal-body .wpcf7-form textarea,
.contact-modal-body .wpcf7-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-size: 16px;
  font-family: inherit;
  background: #fafafa;
  transition: border-color 0.3s;
  box-sizing: border-box;
  border-radius: 2px;
}
.contact-modal-body .wpcf7-form input[type=text]:focus,
.contact-modal-body .wpcf7-form input[type=email]:focus,
.contact-modal-body .wpcf7-form input[type=tel]:focus,
.contact-modal-body .wpcf7-form textarea:focus,
.contact-modal-body .wpcf7-form select:focus {
  outline: none;
  border-color: #D95829;
  background: #fff;
}
.contact-modal-body .wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-modal-body .wpcf7-form input[type=submit] {
  display: none;
}
.contact-modal-body .wpcf7-not-valid-tip {
  color: #D95829;
  font-size: 12px;
  margin-top: 5px;
}
.contact-modal-body .wpcf7-response-output {
  margin: 1em 0 0;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 2px;
}

.contact-modal-footer {
  flex-shrink: 0;
  padding: clamp(20px, 3vw, 25px) clamp(30px, 5vw, 50px);
  border-top: 1px solid #eee;
  background: #fff;
}

.contact-modal-submit-btn {
  display: block;
  width: 100%;
  padding: 18px;
  background: #D95829;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 2px;
}
.contact-modal-submit-btn:hover {
  background: #b0461f;
}

body.modal-open {
  overflow: hidden;
}
