@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  /* fonts */
  --yu-gothic: "Yu Gothic", "游ゴシック", "YuGothic", sans-serif;
  --crimson: "Crimson Text", serif;
  --montserrat: "Montserrat", sans-serif;
  --font-awesome: "Font Awesome 6 Free";

  /* font sizes */
  --fs-small: 0.9rem;
  --fs-base: 1rem;
  --fs-medium: 1.25rem;
  --fs-large: 1.5rem;
  --fs-xl: 2rem;
  --fnt48-42: clamp(2.625rem, -9.875rem + 12.5vw, 5.125rem);
  --fnt32-28: clamp(1.75rem, 1rem + 1vw, 2rem);
  --fnt92-50: clamp(3.125rem, -1.25rem + 5.8333vw, 5.75rem);
  --fnt28-18px: clamp(1.125rem, 0.6964rem + 0.6696vw, 1.5rem);
  --fnt42-28: clamp(1.75rem, 1.125rem + 1.25vw, 2.625rem);
  --fnt60-22: clamp(1.375rem, 0.583rem + 2.639vw, 3.75rem);
  --fnt32-16: clamp(1rem, 0.667rem + 1.111vw, 2rem);
  --fnt24-16: clamp(1rem, 0.7391rem + 0.8696vw, 1.5rem);
  --fnt16-14: clamp(0.875rem, 0.833rem + 0.139vw, 1rem);
  --fnt82-22: clamp(1.375rem, 0.125rem + 4.167vw, 5.125rem);
  --fnt50-18: clamp(1.125rem, 0.458rem + 2.222vw, 3.125rem);
  --fnt82-28: clamp(1.75rem, 0.625rem + 3.75vw, 5.125rem);
  --fnt82-32: clamp(1.875rem, 0.792rem + 3.611vw, 5.125rem);
  --fnt92-50: clamp(3.125rem, 5vw + 1rem, 5.75rem);

  /* colors */
  --white: #fefefe;
  --black: #1e1e1e;
  --orange: #c57f2d;
  --blue: #003247;
  --gray: #626262;
  --green: #008040;
  --green-dark: #006633;
}

* {
  box-sizing: border-box;
  color: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--white);
  font-size: var(--fs-base);
}

img {
  width: 100%;
  display: block;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem 0;
  background: linear-gradient(
    180deg,
    rgba(12, 21, 26, 0.91) 0%,
    rgba(26, 34, 39, 0.62) 27.5%,
    rgba(34, 41, 45, 0.39) 53%,
    rgba(39, 46, 50, 0.1) 79%,
    rgba(40, 47, 51, 0) 100%
  );
}

.logo {
  font-size: var(--fs-xl);
  font-family: var(--yu-gothic);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 5px;
}

.burger {
  display: none;
}

.nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.75rem; /* 60px */
  flex-wrap: wrap;
}

nav {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

nav a {
  display: block;
  padding: 0.625rem;
  font-weight: 300;
}

nav a:hover {
  font-weight: 500;
  transition: all 0.5s;
}

nav p {
  font-family: var(--montserrat);
  color: var(--white);
}

nav span {
  font-family: var(--yu-gothic);
  letter-spacing: 1.6px;
  font-size: var(--fs-base);
  color: var(--white);
}

/* Contact Buttons */
.contact-button {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-btn {
  padding: 0 1.5rem;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-base);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* TEL Button */
.tel-btn,
.mobile-tel-btn {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 220px;
  height: 44px;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 400;
  font-family: var(--yu-gothic);
  font-size: 1rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.tel-btn i,
.mobile-tel-btn i {
  font-size: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 10px;
  border-left: 1px dotted #fff;
  padding-left: 10px;
  color: #fff;
}

.tel-btn:hover,
.mobile-tel-btn:hover {
  background-color: #008040;
  color: #fff;
  border: 1px solid #fff;
}

.tel-btn:hover i,
.mobile-tel-btn:hover i {
  color: #fff;
  border-left: 1px dotted #fff;
}

.email-btn,
.mobile-email-btn {
  background-color: #008040;
  color: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 220px;
  height: 44px;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 400;
  font-family: var(--montserrat);
  font-size: 1rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.email-btn i,
.mobile-email-btn i {
  font-size: 1rem;
  margin-left: 10px;
  color: #fff;
  border-left: 1px dotted #fff;
  padding-left: 10px;
}

.email-btn .icon-solid,
.mobile-email-btn .icon-solid {
  display: none;
  font-size: 1rem;
  margin-left: 10px;
  border-left: 1px dotted #fff;
  padding-left: 10px;
  color: #008040;
}

.email-btn:hover .icon-regular,
.mobile-email-btn:hover .icon-regular {
  display: none;
}

.email-btn:hover .icon-solid,
.mobile-email-btn:hover .icon-solid {
  display: inline-block;
  border-left: 1px dotted #008040;
}

.email-btn:hover,
.mobile-email-btn:hover {
  background-color: #fff;
  border: 1px solid #008040;
  color: #008040;
}

.email-btn:hover .btn-label,
.mobile-email-btn:hover .btn-label {
  color: #008040;
}

.email-btn:hover i,
.mobile-email-btn:hover i {
  color: #008040;
  border-left: 1px dotted #008040;
}

.btn-label {
  flex: 1;
  text-align: center;
}

.mobile-nav-panel {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35); /* light transparency */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); /* for Safari */
  border: 1px solid rgba(255, 255, 255, 0.1); /* glass border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); /* soft outer shadow */
  display: none;
  z-index: 999;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-nav-panel.active {
  display: flex;
}

.mobile-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 5rem;
  margin-bottom: 2rem;
}

.mobile-nav a {
  color: white;
  font-size: var(--fs-base);
}

.mobile-nav p {
  font-family: var(--montserrat);
  font-weight: 400;
}

.mobile-nav span {
  font-family: var(--yu-gothic);
  font-size: 0.875rem;
}

.mobile-contact-button {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

/* Footer */

.main-wrapper {
  margin: 100px 0;
}

.section-contact-block-wrapper {
  padding: 0 15rem;
  max-width: 1920px;
  margin: 0 auto;
}

.section-contact-block {
  background-color: #0080401a;
  padding: 5.187rem 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1600px;
  margin: auto;
}

.ready-headline {
  color: #008040;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ready-headline h1 {
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #008040;
}

.ready-headline p {
  color: #008040;
  font-family: var(--yu-gothic);
  font-size: var(--fnt16-14);
}

.contact-us-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 554px;
}

.top-contact-us {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.top-contact-us .contact-label {
  font-family: var(--montserrat);
  color: #008040;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin: 0;
}

.top-contact-us .contact-message {
  font-family: var(--yu-gothic);
  color: #1e1e1e;
  font-size: var(--fnt16-14);
  letter-spacing: 0.5px;
  line-height: 1.8;
  margin: 0;
}

.contact-buttons-block {
  display: flex;
  gap: 30px;
}

/* buttom-contact-button */

/* === CTA TEL Button (same as .tel-btn) === */
.cta-tel-btn {
  background-color: transparent;
  color: #008040;
  border: 1px solid #008040;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 220px;
  height: 44px;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 400;
  font-family: var(--yu-gothic);
  font-size: 1rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.cta-tel-btn i {
  font-size: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 10px;
  border-left: 1px dotted #008040;
  padding-left: 10px;
  color: #008040;
}

.cta-tel-btn:hover {
  background-color: #008040;
  color: #fff;
}

.cta-tel-btn:hover i {
  color: #fff;
  border-left: 1px dotted #fff;
}

/* === CTA EMAIL Button (same as .email-btn) === */
.cta-email-btn {
  background-color: #008040;
  color: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 220px;
  height: 44px;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 400;
  font-family: var(--montserrat);
  font-size: 1rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.cta-email-btn i {
  font-size: 1rem;
  margin-left: 10px;
  color: #fff;
  border-left: 1px dotted #fff;
  padding-left: 10px;
}

.cta-email-btn .icon-solid {
  display: none;
  font-size: 1rem;
  margin-left: 10px;
  border-left: 1px dotted #008040;
  padding-left: 10px;
  color: #008040;
}

.cta-email-btn:hover .icon-regular {
  display: none;
}

.cta-email-btn:hover .icon-solid {
  display: inline-block;
  border-left: 1px dotted #008040;
}

.cta-email-btn:hover {
  background-color: #fff;
  border: 1px solid #008040;
  color: #008040;
}

.cta-email-btn:hover .btn-label {
  color: #008040;
}

.cta-email-btn:hover i {
  color: #008040;
  border-left: 1px dotted #008040;
}

.btn-label {
  flex: 1;
  text-align: center;
}

/* ============================= */

.footer-container {
  position: relative;
  z-index: 0;
}

.footer-image {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
}

.image-left {
  position: relative;
  z-index: 1;
  width: 60%;
  height: auto;
}

.image-left img {
  width: 100%;
  height: auto;
  display: block;
}

.image-right {
  position: absolute;
  bottom: -80px;
  left: 40%;
  z-index: 2;
  width: 60%;
  height: auto;
}

.image-right img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-wrapper-background {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 0;
  background-color: #800000; /* or use your var(--red) */
  padding: 15rem 15rem 2rem;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-left .logo {
  font-size: 3rem;
  font-family: var(--yu-gothic);
  font-weight: 500;
  color: #fefefe;
  margin-bottom: 2rem;
}

.footer-left p {
  color: #fefefe;
  font-family: var(--yu-gothic);
  font-size: 1rem;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 3px;
  margin-bottom: 2rem;
}

.tel {
  color: #fefefe;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--yu-gothic);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.tel::before {
  font-family: "Font Awesome 6 Free";
  content: "\f095";
  font-weight: 900;
  margin-right: 8px;
  font-size: 14px;
}

.icon {
  display: block;
  font-size: 32px;
  max-width: 32px;
  width: 100%;
}

.social-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-cta-btn {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  height: 44px;
  border-radius: 25px;
  font-size: 1rem;
  font-family: var(--montserrat);
  text-decoration: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  gap: 12px;
  transition: all 0.3s ease;
}

.footer-cta-btn .footer-btn-label {
  letter-spacing: 0.3em;
  flex: 1;
  text-align: center;
}

.footer-cta-btn i {
  font-size: 1rem;
  color: #fff;
  padding-left: 10px;
  border-left: 1px dotted #fff;
}

.footer-cta-btn:hover {
  background-color: none;
  color: #fefefe;
  border: 1px solid #fff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px 40px;
  text-align: left;
}

.footer-nav a {
  color: #fefefe;
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  flex-direction: column;
  position: relative;
  gap: 2px;
}

.footer-nav a p {
  font-family: var(--montserrat);
  font-weight: 400;
  margin: 0;
}

.footer-nav a span {
  font-family: var(--yu-gothic);
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  display: inline-block;
  transition: font-weight 0.3s ease;
}

.footer-nav a p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #fefefe;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-nav a:hover p {
  font-weight: 600;
}

.footer-see-link {
  text-align: left;
  max-width: 200px;
  white-space: nowrap;
}

/* see_more button */

.text-with-button {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.see-more {
  margin-top: 50px;
  margin-left: auto;
  white-space: nowrap;
}

.see-more-wrapper {
  max-width: 100px;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 10px;
}

.see-more-wrappers {
  max-width: 100px;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 50px;
}

.arrow-button {
  display: flex;
  position: relative;
  padding: 10px;
}

.arrow-button p {
  color: #1e1e1e;
  font-size: 1rem;
  font-family: var(--crimson);
}

.arrow-button:hover p {
  transform: translateX(-6px);
  transition: transform 0.4s ease;
}

.white p {
  color: var(--white);
}

body.error404 .arrow-button__icon:before {
  width: 1px;
  height: 30px;
  background-color: #ececec;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  transition: height 0.4s ease;
}

body.error404 .arrow-button:hover .arrow-button__icon:before {
  height: 60px;
}

/* Hover Effects on Arrow Button */
.arrow-button:hover .arrow-button__icon {
  /* Adjustments to the arrow button icon on hover */
}

.arrow-button:hover .arrow-button__icon:before {
  height: 60px;
  top: -5px;
}

.arrow-button:hover .arrow-button__icon-white:before {
  height: 40px;
  top: -5px;
}

.arrow-button:hover .arrow-button__icon:after {
  top: -5px;
}

.arrow-button:hover .arrow-button__icon-white:after {
  top: -5px;
}

/* Arrow Button Icon Styling */
.arrow-button__icon {
  display: block;
  position: relative;
  margin-left: 40px;
  transform: rotate(90deg);
}

.arrow-button__icon-white {
  display: block;
  position: relative;
  margin-left: 40px;
  transform: rotate(90deg);
}

/* Before pseudo-element (top part of arrow) */
.arrow-button__icon:before {
  width: 1px;
  height: 40px;
  background-color: #1e1e1e;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  transition: 0.4s ease;
}

.arrow-button__icon-white:before {
  width: 1px;
  height: 30px;
  background-color: var(--white);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  transition: 0.4s ease;
}

.arrow-button__icon:after {
  width: 10px;
  height: 10px;
  left: -5px;
  border-top: 1px solid #1e1e1e;
  border-left: 1px solid #1e1e1e;
  transform: rotate(45deg);
  backface-visibility: hidden;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  transition: 0.4s ease;
}

.arrow-button__icon-white:after {
  width: 10px;
  height: 10px;
  left: -5px;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  transform: rotate(45deg);
  backface-visibility: hidden;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  transition: 0.4s ease;
}

.copy-right {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 40px;
  font-family: var(--crimson);
}

/* Index*/

.site-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.mv-slick-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.mv-slick {
  height: 100%;
}

.mv-slick img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.mv-headline {
  position: absolute;
  top: 50%;
  left: 120px;
  z-index: 10;
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-family: "Crimson Text", serif;
  color: #fefefe;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.scrolldown {
  position: absolute;
  bottom: -80px;
  right: 10vw;
  z-index: 9;
  color: var(--white);
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-shadow: -2px 2px 14px;
}

.scrolldown img {
  mix-blend-mode: difference;
  stroke-width: 2px;
  stroke: #fefefe;
}

.scrolldown p {
  font-family: var(--montserrat);
  font-size: 14px;
  rotate: -180deg;
  writing-mode: vertical-rl;
  text-shadow: -2px 2px 14px;
  mix-blend-mode: normal;
}

@keyframes scrollBlink {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

.content01-block {
  max-width: 1600px;
  margin: auto;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  gap: 40px;
}

.context01 {
  max-width: 1500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.context-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.Head--01 {
  font-family: var(--montserrat);
  font-size: 2rem;
  color: #800000;
  line-height: 1.875em;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 5px;
}

.span--01 {
  color: #800000;
  font-size: 1.5rem;
  font-family: var(--yu-gothic);
  font-weight: 500;
  letter-spacing: 1px;
}

.text {
  white-space: normal;
  letter-spacing: 1px;
  line-height: 40px;
  font-size: 1rem;
  font-weight: 500;
  color: #1e1e1e;
  font-family: var(--yu-gothic);
}

.content02-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
}

.image-container img {
  height: 400px;
  object-fit: cover;
}

.big-image {
  margin: 100px auto;
  max-width: 1600px;
  padding: 0;
}

.big-image img {
  object-fit: cover;
  height: auto;
}

.divider-image {
  margin: 100px auto;
  max-width: 1920px;
}

.divider-image img {
  width: 100%;
  display: block;
  height: 800px;
  object-fit: cover;
}

.service-wrapper {
  background-image: url("../img/index/bg.jpg");
  background-position: center;
  background-size: cover;
  padding: 5.187rem 15rem;
  background-repeat: no-repeat;
}

.service {
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
  margin: auto;
}

.white {
  color: var(--white) !important;
}

.service-block {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}

.card-service {
  max-width: 400px;
}

.card-service-image {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}

.card-service-image img {
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
  display: block;
  filter: grayscale(100%);
}

.card-service-image .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.card-service:hover .hover-img {
  opacity: 1;
}

.card-service:hover .default-img {
  opacity: 0;
}

/* Optional: remove grayscale on hover */
.card-service:hover img {
  filter: none;
}

.card-service-text p {
  font-family: var(--montserrat);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 1.6px;
  line-height: 1.219em;
  margin-bottom: 10px;
}

.card-service-text span {
  font-size: 14px;
  font-family: var(--yu-gothic);
  color: var(--white);
  letter-spacing: 1.6px;
}

.see-service {
  max-width: 100px;
  margin-left: auto;
  white-space: nowrap;
  margin-top: 50px;
  margin-right: 20px;
}

/* ===== ABOUT ====== */
.MV {
  position: relative;
}

.sub-img {
}

.sub-img img {
  height: 700px;
  object-fit: cover;
  align-items: center;
}

.sub-headline {
  position: absolute;
  display: flex;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  align-items: center;
  gap: 5vw;
  justify-content: space-between;
  text-align: center;
  color: var(--white);
}

.sub-headline::before,
.sub-headline::after {
  content: "";
  height: 3px;
  width: 100%;
  background-color: var(--white);
  max-width: 788px;
}

.sub-headline h1 {
  font-size: var(--fnt60-22);
  font-family: var(--crimson);
  font-weight: 400;
}

.sub-headline span {
  font-size: var(--fnt32-16);
  font-family: var(--yu-gothic);
  font-weight: 500;
}

.sub-head {
  flex-grow: 1;
  white-space: nowrap;
}

.center-text {
  max-width: 1600px;
  margin: auto;
  font-size: var(--fnt16-14);
  letter-spacing: 1.6px;
  font-family: var(--yu-gothic);
  line-height: 40px;
  text-align: center;
  color: var(--black);
  font-weight: 500;
  padding: 0 3vw;
}

.big-image2 {
  max-width: 1600px;
  margin: 100px auto 40px;
}

.sub-section1 {
  display: flex;
  justify-content: center;
  gap: 100px;
  padding: 0 3vw;
  align-items: center;
}

.sub-content1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 100%;
}

.sub-content1 h1 {
  color: #800000;
  font-size: 1.5rem;
  letter-spacing: 2.4px;
  font-family: var(--yu-gothic);
  font-weight: 500;
}

.sub-content1 p {
  color: var(--black);
  letter-spacing: 1.6px;
  font-family: var(--yu-gothic);
  font-weight: 500;
  line-height: 40px;
}

.sub-image {
  max-width: 500px;
  flex-grow: 1;
}

.sub-image img {
  width: 500px;
}

/* ===== BUSINESS ====== */
.section2 {
  display: flex;
  gap: 60px;
  flex-direction: column;
  align-items: center;
  padding: 0 3vw;
  margin: auto;
}

.sub-section2-text {
  font-size: var(--fnt24-16);
  font-family: var(--yu-gothic);
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 40px;
  color: #800000;
}

.sub-stp {
  font-size: var(--fnt16-14);
  letter-spacing: 1.6px;
  font-family: var(--yu-gothic);
  line-height: 40px;
  text-align: center;
  color: var(--black);
  font-weight: 500;
}

.grid-block-wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

.grid-block-align {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-block-align.reverse {
  direction: rtl;
}

.grid-block-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.grid-block-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-block-align.reverse .grid-block-content {
  text-align: left;
  direction: ltr;
}

.grid-block-head,
.grid-block-head.txt-reverse {
  display: flex;
  gap: 5px;
  flex-direction: column;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--black);
  margin-bottom: 14px;
  width: 100%;
}

.grid-block-head h1 {
  font-size: var(--fnt24-16);
  font-family: var(--montserrat);
  color: #800000;
  font-weight: 400;
}

.grid-block-head b {
  font-size: var(--fnt32-16);
  font-family: var(--montserrat);
  font-weight: 600;
}

.grid-block-head p {
  font-family: var(--yu-gothic);
  font-size: var(--fnt24-16);
  color: #1e1e1e;
  font-weight: 700;
  letter-spacing: 2.4px;
}

.grid-block-text {
  font-size: var(--fnt16-14);
  font-family: var(--yu-gothic);
  max-width: 730px;
  margin-right: auto;
  margin-left: 0;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 1.6px;
}

.txt-reverse {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

.bottom-text-border {
  max-width: 1520px;
  text-align: center;
  padding: 100px 3vw 0;
  margin: auto;
  font-size: var(--fnt16-14);
  font-family: var(--yu-gothic);
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 1.6px;
}

/* ===== COMPANY OVERVIEW ====== */
.sub-logo {
  font-size: var(--fnt82-32);
  font-family: var(--yu-gothic);
  color: #1e1e1e;
  font-weight: 700;
}

.info-list-wrapper {
  max-width: 1520px;
  margin: auto;
  padding: 0 3vw;
}

.info-list {
  padding: 100px;
  border: 1px solid #800000;
}

table.info-table {
  table-layout: auto;
  border-collapse: collapse;
  width: 100%;
}

.info-table th {
  border-bottom: 1px solid var(--white);
  background-color: #800000;
  color: var(--white);
  text-align: right;
  padding: 10px 15px;
  font-weight: 500;
  font-family: var(--yu-gothic);
  font-size: var(--fnt16-14);
  max-width: 400px;
  width: 27%;
}

.info-table td {
  padding: 15px 50px;
  border-bottom: 1px solid #800000;
  max-width: 800px;
  width: 100%;
}

.info-table th {
  vertical-align: middle;
}

/* ===== FLOW ====== */

.steps-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(9, 1fr); /* 5 steps + 4 arrows */
  grid-template-rows: auto minmax(120px, auto) auto;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 5rem;
  border: 1px solid #800000;
  font-family: sans-serif;
  row-gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  gap: 2rem;
}

.step-label {
  width: 150px;
  height: 65px;
  background-color: #efe8d9;
  border-radius: 26px;
  font-size: 1.25rem;
  font-family: var(--yu-gothic);
  font-weight: 500;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.step-label span {
  color: #800000;
  font-weight: 500;
  font-family: var(--yu-gothic);
  font-size: 2rem;
}

.step-icon img {
  width: 100px;
  height: auto;
  color: #350101;
  margin: 0.5rem 0;
}

.step-desc {
  font-size: 1rem;
  color: #1e1e1e;
  line-height: 2;
  font-family: var(--yu-gothic);
  font-weight: 500;
}

.arrow {
  font-size: 2rem;
  font-weight: 900;
  color: #1e1e1e;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== BLOG-LIST ====== */
.instagram-wrapper {
  display: flex;
  justify-content: start;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 100px;
  gap: 60px;
}

.instagram-block-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.instagram-block {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
}

.instagram-block-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 5%;
  align-items: center;
}

.instagram-text-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.date {
  color: #1e1e1e;
  font-size: var(--fnt16-14);
  font-family: var(--yu-gothic);
  letter-spacing: 1px;
}

.text-content {
  color: #1e1e1e;
  display: -webkit-box;
  line-height: 1.25em;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  font-family: var(--yu-gothic);
  font-size: var(--fnt16-14);
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.text-content:hover {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--yu-gothic);
  font-size: var(--fnt16-14);
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  border-radius: 50%;
  color: #1e1e1e;
  transition: all 0.3s ease;
}

.pagination .page {
  background-color: transparent;
}

.pagination .page:hover {
  background-color: transparent;
  color: #008040;
}

.pagination .active {
  background-color: #008040;
  color: white;
  border: none;
}

.pagination .prev,
.pagination .next {
  width: auto;
  height: auto;
  font-size: 1rem;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.pagination .prev:hover,
.pagination .next:hover {
  color: #0080406c;
}

/* ===== BLOG-DETAIL ====== */
.single-wrapper {
  max-width: 1520px;
  margin: 0 auto;
}

.single-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

.single-text-heading {
  font-family: var(--yu-gothic);
  font-size: var(--fnt16-14);
  font-weight: 700;
  letter-spacing: 1.6px;
  text-align: center;
  color: #800000;
}

.single-view {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.single-view img {
  object-fit: cover;
  height: 100%;
  object-position: center;
}

.single-text {
  font-family: var(--yu-gothic);
  font-size: var(--fnt16-14);
  font-weight: 400;
  letter-spacing: 1.6px;
  text-align: center;
  line-height: 40px;
}

.single-button {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  align-items: center;
}

.ctr {
  text-align: left;
  color: #800000;
}
.rv-flex {
  flex-direction: row-reverse;
  align-items: center;
}

.rv-flex p {
  font-family: var(--yu-gothic);
  letter-spacing: 1.6px;
  font-size: var(--fnt16-14);
  color: #008040;
}
.rv-flex {
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
}
.rv-flex::before,
.rv-flex::after {
  color: var(--white) !important;
}

.rv-flexs p {
  font-family: var(--yu-gothic);
  letter-spacing: 1.6px;
  font-size: var(--fnt32-28);
  color: var(--white);
}

.rv-rotate,
.rv-rotates {
  transform: rotate(270deg);
  margin: 0;
  margin-right: 50px;
}

.rv-rotates::before {
  background-color: var(--white);
}
.rv-rotates::after {
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
}

.yu p {
  font-family: var(--yu-gothic);
  letter-spacing: 1.6px;
  font-size: var(--fnt16-14);
  color: #008040;
}
.crim a p {
  font-family: var(--crimson);
  letter-spacing: 1.6px;
  font-size: var(--fnt16-14);
}
.blk {
  color: #1e1e1e;
}

/* Global (default for all pages) */
.arrow-button:hover p {
  transform: translateX(-6px); /* default: move left */
  transition: transform 0.4s ease;
}

/* Blog detail page only */
.single-instagram .arrow-button:hover p {
  transform: translateX(6px); /* move right on blog-detail only */
}

.single-instagram .arrow-button.next:hover p {
  transform: translateX(-6px);
}

.single-instagram .arrow-button__icon {
  color: #008040 !important;
}

.single-instagram .arrow-button__icon::before {
  height: 30px;
  background-color: #008040;
}

.single-instagram .arrow-button__icon::after {
  width: 8px;
  height: 8px;
  left: -4px;
  border-top: 1px solid #008040;
  border-left: 1px solid #008040;
  background: transparent;
  transform: rotate(45deg);
}
/* ===== PRIVACY POLICY ====== */

.privacy_policy-wrapper {
  max-width: 1520px;
  margin: auto;
}
.privacy_policy {
  padding: 3.947vw;
  border: 2px solid #800000;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.policy-content {
  font-family: var(--yu-gothic);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-content h1 {
  font-size: var(--fnt20-16);
  color: #800000;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 1.6px;
}
.policy-content p {
  font-size: var(--fnt16-14);
  color: var(--black);
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 1.6px;
}

/* ===== ERROR====== */

.error {
  background-image: url("../img/404/mv.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 14.6875vw 7.8125vw;
  height: 100vh;
  align-content: center;
}

.error p {
  font-family: var(--crimson);
  font-weight: 400;
  letter-spacing: 5px;
  transition: transform 0.3s ease;
}

.error p:hover {
  transform: translateX(5px);
}

.error-wrap {
  max-width: 1320px;
  margin: auto;
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.error-s {
  font-size: clamp(3rem, 1.9167rem + 3.6111vw, 6.25rem);
  color: var(--white);
  font-family: var(--crimson);
}
.error-text {
  line-height: 2;
  font-size: var(--fnt24-16);
  color: white;
}

@media screen and (max-width: 1800px) {
  .nav-wrapper {
    gap: 2rem; /* 60px */
  }
}

@media screen and (max-width: 1771px) {
  nav {
    gap: 2.5rem; /* 60px */
  }
}

@media screen and (max-width: 1771px) {
  header {
    padding: 1.5rem 1.5rem 0;
  }
}

@media screen and (max-width: 1682px) {
  nav {
    gap: 2rem;
  }
}

@media screen and (max-width: 1642px) {
  nav {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 1602px) {
  nav {
    gap: 1rem;
  }
}

@media screen and (max-width: 1600px) {
  header {
    padding: 1.5rem 2rem 0;
  }

  nav {
    gap: 1rem;
  }

  .nav-wrapper {
    gap: 1.5rem;
    flex-wrap: nowrap;
  }

  .section-contact-block-wrapper {
    padding: 0 7.5rem;
  }

  .text-with-button {
    max-width: 650px;
  }

  .privacy_policy-wrapper {
    max-width: 1400px;
  }

  .content01-block {
    padding: 0 7.5rem;
  }

  .service-wrapper {
    padding: 5.187rem 7.5rem;
  }

  .footer-wrapper-background {
    padding: 10rem 10rem 2rem;
  }

  .info-list-wrapper {
    padding: 0 5vw;
  }

  .info-list {
    padding: 100px 8rem;
  }

  .section2 {
    gap: 50px;
  }

  .steps-grid {
    max-width: 1400px;
    grid-template-rows: auto minmax(100px, auto) auto;
  }
  .single-wrapper {
    padding: 0 5rem;
  }
}

@media screen and (max-width: 1569px) {
  .contact-button {
    gap: 1rem;
  }
}

@media screen and (max-width: 1570px) {
  .contact-button {
    gap: 1rem;
  }
}

@media screen and (max-width: 1554px) {
  header {
    padding: 1.5rem 1.5rem 0;
  }
}

@media screen and (max-width: 1538px) {
  nav {
    gap: 0rem;
  }
}

@media screen and (max-width: 1458px) {
  .tel-btn,
  .mobile-tel-btn {
    width: 200px;
    height: 40px;
    padding: 8px 20px;
  }
}

@media screen and (max-width: 1440px) {
  header {
    padding: 1.5rem 1.5rem 0;
  }

  nav a {
    font-size: var(--fs-small);
  }

  .contact-button {
    gap: 1rem;
  }

  .privacy_policy-wrapper {
    max-width: 1200px;
  }

  .steps-grid {
    max-width: 1200px;
  }

  .email-btn,
  .tel-btn {
    font-size: var(--fs-small);
    width: 200px;
    height: 44px;
    padding: 10px 20px;
  }

  .single-wrapper {
    padding: 0 8rem;
  }
}

@media screen and (max-width: 1413px) {
  .nav-wrapper,
  .contact-button {
    display: none;
  }

  .burger {
    height: 28px;
    width: 40px;
    margin-left: auto;
    position: relative;
    padding: 12px 10px;
    display: block;
    cursor: pointer;
  }

  .burger span {
    height: 4px;
    width: 100%;
    background-color: whitesmoke;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
    z-index: 5;
  }

  /* Position lines */
  .burger span:nth-child(1) {
    top: 0%;
  }

  .burger span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .burger span:nth-child(3) {
    top: 100%;
    transform: translateY(-100%) translateX(-50%);
  }

  /* X transformation */
  .burger.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  header {
    padding: 1.5rem 2rem 0;
  }
}

@media screen and (max-width: 1200px) {
  .nav-wrapper {
    gap: 1rem;
  }

  .email-btn,
  .tel-btn {
    font-size: var(--fs-small);
    width: 170px;
    height: 40px;
    padding: 10px 15px;
  }

  .privacy_policy-wrapper {
    max-width: 1000px;
  }

  .steps-grid {
    max-width: 1000px;
    padding: 3rem;
  }

  .logo {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .email-btn,
  .tel-btn {
    width: 180px;
    height: 40px;
  }

  .nav-wrapper {
    gap: 1rem;
  }

  nav span {
    letter-spacing: 1px;
    font-size: 14px;
  }

  nav {
    gap: 0;
  }
}

@media screen and (max-width: 1024px) and (max-height: 600px) {
  .mobile-nav {
    gap: 0;
    margin-top: 3rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .logo {
    font-size: var(--fs-xl);
    letter-spacing: 5px;
  }

  .privacy_policy-wrapper {
    max-width: 900px;
  }

  .single-view img {
    height: auto;
  }
  .single-wrapper {
    padding: 0 5rem;
  }

  .contact-buttons-block {
    flex-direction: column;
    gap: 1rem;
  }

  .divider-image img {
    height: auto;
  }
  .service-wrapper {
    padding: 5.187rem 5rem;
  }
  .big-image {
    padding: 0 5rem;
  }
  .footer-wrapper-background {
    padding: 10rem 5rem 2rem;
  }

  .footer-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    display: none;
  }
  .section-contact-block-wrapper {
    padding: 0 5rem;
  }
  .section-contact-block {
    padding: 5rem;
    gap: 30px;
  }

  .service {
    flex-direction: column;
    gap: 40px;
  }

  .content01-block,
  .instagram-wrapper,
  .section-contact-block {
    flex-direction: column;
  }

  .instagram-wrapper {
    padding: 0 70px;
  }

  .contact-us-wrapper {
    max-width: inherit;
    margin-right: auto;
  }

  .ready-headline {
    margin-right: auto;
  }

  .big-image img {
    height: 50vw;
  }

  .big-image2 img {
    height: 50vw;
  }

  .context01 {
    width: 100%;
  }

  .content01-block {
    padding: 0 8vw;
  }

  .content02-block {
    grid-template-columns: 1fr;
    padding: 0 8vw;
  }
  .text-with-button {
    max-width: 100%;
  }

  .text p {
    text-align: justify;
  }

  .grid-block-align {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
      "left"
      "right";
  }

  .reverse {
    grid-template-areas:
      "left"
      "right";
  }

  .txt-reverse {
    direction: initial;
    margin: 0;
  }

  .grid-block-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 8vw;
  }

  .nav-wrapper,
  .contact-button {
    display: none;
  }

  .burger {
    height: 28px;
    width: 30px;
    margin-left: auto;
    position: relative;
    padding: 12px 10px;
    display: block;
    cursor: pointer;
  }

  .burger span {
    height: 4px;
    width: 100%;
    background-color: whitesmoke;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
    z-index: 5;
  }

  /* Position lines */
  .burger span:nth-child(1) {
    top: 0%;
  }

  .burger span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .burger span:nth-child(3) {
    top: 100%;
    transform: translateY(-100%) translateX(-50%);
  }

  /* X transformation */
  .burger.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  header {
    padding: 1.5rem 2rem 0;
  }

  .sub-section1 {
    padding: 0 6rem;
    gap: 30px;
    flex-direction: column-reverse;
  }

  .sub-content1 {
    width: 100%;
    margin: 0 auto;
  }

  .big-image2 {
    max-width: 1600px;
    margin: 100px 100px 40px;
  }

  .center-text {
    text-align: justify;
    padding: 0 6rem;
  }

  .grid-block-head,
  .grid-block-head.txt-reverse {
    align-items: flex-start;
  }

  .txt-reverse {
    text-align: justify;
  }

  .bottom-text-border {
    padding: 0;
    margin: auto;
  }

  .info-list {
    padding: 3rem;
  }

  .steps-grid {
    max-width: 900px;
    padding: 3rem;
  }

  .section2 {
    padding: 0 8vw;
  }
}

@media screen and (max-width: 800px) {
  .main-wrapper {
    margin: 100px 0;
  }

  .privacy_policy-wrapper {
    max-width: 700px;
  }

  .steps-grid > div:empty {
    display: none;
  }

  .steps-grid {
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr;
    padding: 2rem;
    row-gap: 1rem;
  }

  .steps-grid > div {
    text-align: center;
  }

  /* Step 1 group */
  .steps-grid > :nth-child(1) {
    order: 1;
  } /* label */
  .steps-grid > :nth-child(10) {
    order: 2;
  } /* icon */
  .steps-grid > :nth-child(19) {
    order: 3;
  } /* desc */
  .steps-grid > :nth-child(11) {
    order: 4;
  } /* arrow */

  /* Step 2 group */
  .steps-grid > :nth-child(3) {
    order: 5;
  }
  .steps-grid > :nth-child(12) {
    order: 6;
  }
  .steps-grid > :nth-child(21) {
    order: 7;
  }
  .steps-grid > :nth-child(13) {
    order: 8;
  }

  /* Step 3 group */
  .steps-grid > :nth-child(5) {
    order: 9;
  }
  .steps-grid > :nth-child(14) {
    order: 10;
  }
  .steps-grid > :nth-child(23) {
    order: 11;
  }
  .steps-grid > :nth-child(15) {
    order: 12;
  }

  /* Step 4 group */
  .steps-grid > :nth-child(7) {
    order: 13;
  }
  .steps-grid > :nth-child(16) {
    order: 14;
  }
  .steps-grid > :nth-child(25) {
    order: 15;
  }
  .steps-grid > :nth-child(17) {
    order: 16;
  }

  /* Step 5 group (no arrow after) */
  .steps-grid > :nth-child(9) {
    order: 17;
  }
  .steps-grid > :nth-child(18) {
    order: 18;
  }
  .steps-grid > :nth-child(27) {
    order: 19;
  }

  /* Optional: rotate arrow */
  .steps-grid > .arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
    margin: 0 auto;
  }

  .single-button {
    margin-top: 4rem;
  }
  .single-wrapper {
    padding: 0 3rem;
  }
  .section-contact-block {
    padding: 4rem;
  }
  .section-contact-block-wrapper {
    padding: 0 4rem;
  }
  .image-right {
    bottom: -100px;
    left: 30%;
    width: 70%;
  }
  .image-left {
    width: 70%;
  }
  .blog-block {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 9.4vw;
    margin: 0 auto;
  }
  .blog-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9.4vw;
  }

  .single-view img {
    object-fit: cover;
    height: auto;
    object-position: center;
  }
  .text-input {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
      "top"
      "bottom";
    gap: 10px;
  }

  .label {
    grid-area: top;
  }

  .input {
    grid-area: bottom;
  }

  .contact-back_submit {
    flex-direction: column;
    gap: 30px;
  }

  .wd {
    margin: auto;
  }

  .footer_bottom {
    grid-template-columns: repeat(1, 1fr);
    padding: 6.25vw 12.5vw;
  }

  .nav-footer {
    display: none;
  }

  .privacy-label {
    grid-template-columns: repeat(1, 1fr);
  }

  .blog-flex {
    flex-direction: column;
    align-items: center;
  }

  .foot-button {
    width: inherit;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    display: none;
  }

  .foot-button {
    width: inherit;
  }

  .section-contact-block {
    padding: 11.187vw 10.373vw;
  }

  .service-block {
    gap: 50px;
  }

  .top-blog-wrapper {
    padding: 0 8vw;
  }

  .blog-flex {
    flex-direction: column;
    align-items: center;
  }

  .MV-headline {
    top: 400px;
    left: 10vw;
  }

  .center-text,
  .sub-section1 {
    padding: 0 8vw;
    gap: 50px;
  }
  .big-image2 {
    padding: 0 4rem;
    margin: 0;
  }
  .sub-section1 {
    flex-wrap: wrap-reverse;
  }

  .sub-section1 img {
    width: 100%;
    object-fit: cover;
  }

  .section2 {
    padding: 0 8vw;
  }
}

@media screen and (max-width: 768px) {
  .arrow-button {
    padding: 0;
  }
  .content01-block,
  .content02-block,
  .big-image,
  .section-contact-block-wrapper {
    padding: 0 3rem;
  }
  .service-wrapper {
    padding: 5.4rem 3rem;
  }
  .section-contact-block {
    padding: 4rem;
  }
  .footer-wrapper-background {
    padding: 10rem 3rem 1rem;
  }

  .mv-headline {
    left: 50px;
  }

  .section-contact-block {
    padding: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .big-image2 {
    padding: 0 2rem;
    margin: 0;
  }

  .logo {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }

  .error p {
    letter-spacing: 3px;
    font-size: 1rem;
  }
  .privacy_policy-wrapper {
    max-width: 420px;
  }

  .info-list {
    padding: 2rem;
  }

  .tr-flex {
    gap: 0;
    margin-bottom: 2rem;
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .info-table th {
    width: 100%;
    text-align: left;
  }
  .info-table td {
    padding: 15px 0;
  }
  .steps-grid {
    max-width: 400px;
  }
  .single-text p {
    text-align: justify;
  }
  .single-button {
    margin-top: 3rem;
  }
  .single-wrapper {
    padding: 0 2rem;
  }
  .pagination {
    gap: 1rem;
  }
  .instagram-block-wrapper {
    gap: 50px;
  }
  .instagram-wrapper {
    padding: 0 2rem;
  }
  .sub-stp {
    text-align: justify;
  }
  .sub-section2-text {
    text-align: center;
  }
  .mv-headline {
    max-width: 100%;
    margin: 0 auto;
    left: 2rem;
    top: 40%;
    font-size: 2.5rem;
  }
  .single-view img {
    object-fit: cover;
    height: auto;
    object-position: center;
  }
  .blog-blocks {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 9.4vw;
  }
  .instagram-block-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .contact-buttons-block {
    flex-direction: column;
    align-items: center;
  }

  .foot-button {
    width: 100%;
  }

  .service-block {
    grid-template-columns: repeat(1, 1fr);
  }

  .xl-img img {
    height: 500px;
  }

  .image-right {
    bottom: -60px;
  }

  .info-table td {
    width: auto;
    color: var(--black);
    font-family: var(--yu-gothic);
  }

  .top-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .see-more-wrappers {
    margin-right: 10px;
  }

  .single-text-wrapper {
    margin-top: 30px;
  }

  .section-contact-block {
    padding: 2rem;
  }

  .footer-left .logo {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 430px) {
  .footer-left .logo {
    font-size: 2rem;
  }

  .mv-slick img {
    height: 60vh;
  }

  .sub-img img {
    height: 500px;
  }

  .content01-block,
  .content02-block,
  .big-image,
  .section-contact-block-wrapper {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 425px) {
  header {
    padding: 1.5rem 1.5rem 0;
  }

  .privacy_policy-wrapper {
    max-width: 380px;
  }

  .content01-block,
  .content02-block,
  .big-image,
  .section-contact-block-wrapper {
    padding: 0 2rem;
  }

  .content02-block,
  .text-with-button {
    gap: 30px;
  }
  .service-wrapper {
    padding: 4rem 2rem;
  }

  .section-contact-block {
    padding: 2rem;
  }

  .footer-wrapper-background {
    padding: 8rem 2rem 1rem;
  }
  .Head--01 {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }

  .ready-headline h1,
  .footer-left .logo {
    font-size: 1.8rem;
  }

  .big-image,
  .main-wrapper,
  .divider-image {
    margin: 60px auto;
  }
  .see-more {
    margin-top: 0;
  }

  .steps-grid {
    max-width: 350px;
  }

  .section2 {
    gap: 30px;
  }
}

@media screen and (max-width: 375px) {
  .section-contact-block-wrapper {
    padding: 0 1.5rem;
  }
  .logo {
    font-size: 1.4rem;
    letter-spacing: 4px;
  }

  .privacy_policy-wrapper {
    max-width: 340px;
  }

  .sub-section2-text {
    letter-spacing: 1.5px;
  }
  .info-list-wrapper {
    padding: 0 2rem;
  }

  .info-list {
    padding: 1rem;
  }

  .steps-grid {
    max-width: 320px;
  }

  .step-icon img {
    width: 80px;
  }

  .step-label {
    width: 150px;
    height: 50px;
    font-size: 1rem;
    border-radius: 20px;
  }

  .step-label span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 375px) and (max-height: 667px) {
  .mobile-nav {
    gap: 0;
  }
}

@media screen and (max-width: 320px) {
  .single-wrapper {
    padding: 0 1.5rem;
  }
  .footer-wrapper-background {
    padding: 8rem 1.5rem 1rem;
  }
  .section-contact-block {
    padding: 1.5rem;
  }
  .cta-tel-btn,
  .cta-email-btn,
  .footer-cta-btn {
    width: 200px;
    height: 42px;
    padding: 10px 20px;
  }
  .logo {
    font-size: 1.2rem;
    letter-spacing: 4px;
  }
  .privacy_policy-wrapper {
    max-width: 290px;
  }

  .info-list-wrapper {
    padding: 0 1.5rem;
  }

  .info-list {
    padding: 1rem;
  }
  .steps-grid {
    max-width: 280px;
  }

  .big-image2 {
    padding: 0 1.5rem;
    margin: 0;
  }
}
