@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap");
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  visibility: visible !important;
}

:root {
  --g-color-base: #CCCCCC;
  --g-color-red: red;
  --g-color-white: #FFFFFF;
  --g-padding-s: 72px;
}
.text-shadow {
  text-shadow: 
    1px 1px 2px #d9d8d8,
   -1px 1px 5px #d9d8d8,
    1px -1px 2px #d9d8d8,
   -1px -10px 10px #d9d8d8;
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 0.0520833333vw;
  }
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 0.0714285714vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.1302083333vw;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 0.2083333333vw;
  }
}

.container {
  max-width: 1920px;
  width: 100%;
  margin: auto;
}

.p-container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1920px) {
  .p-container {
    max-width: 1440rem;
  }
}
@media screen and (max-width: 1400px) {
  .p-container {
    max-width: 1000rem;
  }
}
@media screen and (max-width: 768px) {
  .p-container {
    max-width: 600rem;
  }
}
@media screen and (max-width: 480px) {
  .p-container {
    max-width: 400rem;
  }
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease-in-out, visibility 0s linear 1s;
}
.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 0s linear 1s;
}
.splash-screen .splash-screen-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.splash-screen .splash-logo {
  max-width: 200rem;
  max-height: 200rem;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
@media screen and (max-width: 768px) {
  .splash-screen .splash-logo {
    max-width: 130rem;
    max-height: 130rem;
  }
}
@media screen and (max-width: 480px) {
  .splash-screen .splash-logo {
    max-width: 100rem;
    max-height: 100rem;
  }
}
.splash-screen.active .splash-logo {
  opacity: 1;
}
.splash-screen.fade-out .splash-logo {
  opacity: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background-color: #ffffff;
  border-bottom: 10px solid #374948;
  position: relative;
  height: 140rem;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 20rem;
  margin-left: 80rem;
}
@media screen and (max-width: 1400px) {
  .header-left {
    gap: 20rem;
    margin-left: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .header-left {
    gap: 15rem;
    margin-left: 30rem;
  }
}
@media screen and (max-width: 480px) {
  .header-left {
    margin-left: 20rem;
    gap: 10rem;
  }
}
.header-left a {
  transition: opacity 0.3s ease;
}
.header-left a:hover {
  opacity: 0.8;
}
.header-left img {
  width: 100rem;
  height: auto;
}
@media screen and (max-width: 480px) {
  .header-left img {
    width: 70rem;
    height: 70rem;
  }
}
.header-left .header-tagline {
  font-size: 16rem;
  white-space: nowrap;
  font-weight: bold;
}
@media screen and (max-width: 1400px) {
  .header-left .header-tagline {
    font-size: 14rem;
  }
}
@media screen and (max-width: 480px) {
  .header-left .header-tagline {
    font-size: 12rem;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40rem;
  height: 100%;
}
@media screen and (max-width: 1400px) {
  .header-nav {
    gap: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav .nav-link {
  font-size: 18rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .header-nav .nav-link {
    font-size: 18rem;
  }
}
.header-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  left: 0;
  width: 0;
  height: 3rem;
  background-color: #374948;
  transition: width 0.3s ease;
}
.header-nav .nav-link:hover {
  opacity: 1;
}
.header-nav .nav-link:hover::after {
  width: 100%;
}
.header-nav .header-contact {
  background-color: #000000;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40rem;
  padding-right: 40rem;
}
.header-nav .header-contact a {
  color: #fff;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
.header-nav .header-contact a:hover {
  opacity: 0.8;
}
.header-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40rem;
  height: 40rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-right: 20rem;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header-menu-toggle {
    display: flex;
  }
}
.header-menu-toggle span {
  width: 100%;
  height: 3rem;
  background-color: #434343;
  border-radius: 3rem;
  transition: all 0.3s ease;
}
.header-menu-toggle:hover {
  opacity: 0.7;
}
.header-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10rem, 10rem);
}
.header-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10rem, -10rem);
}
.header-mobile-menu {
  position: fixed;
  top: 0;
  right: -80%;
  width: 80%;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
  transition: right 0.3s ease;
  padding: 120rem 40rem 40rem;
  display: none;
  flex-direction: column;
  gap: 30rem;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .header-mobile-menu {
    display: flex;
  }
}
.header-mobile-menu.active {
  right: 0;
}
.header-mobile-menu .nav-link {
  font-size: 20rem;
  color: #434343;
  font-weight: bold;
  text-decoration: none;
  padding: 15rem 0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  display: inline-block;
  transition: opacity 0.3s ease;
}
.header-mobile-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3rem;
  background-color: #374948;
  transition: width 0.3s ease;
}
.header-mobile-menu .nav-link:hover {
  opacity: 1;
}
.header-mobile-menu .nav-link:hover::after {
  width: 100%;
}
.header-mobile-menu .header-contact {
  background-color: #000000;
  padding: 20rem;
  margin-top: 20rem;
  border-radius: 4rem;
  text-align: center;
}
.header-mobile-menu .header-contact a {
  color: #fff;
  font-weight: bold;
  font-size: 20rem;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}
.header-mobile-menu .header-contact a:hover {
  opacity: 0.8;
}

.header-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header-menu-overlay {
    display: block;
  }
}
.header-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  height: calc(100vh - 140rem);
  position: relative;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-bg-image-1, url("../img/bg.png"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--hero-bg-opacity-1, 0.8);
  z-index: 0;
  transition: opacity 1s ease-in-out;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--hero-bg-image-2, url("../img/bg1.png"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: var(--hero-bg-opacity-2, 0);
  z-index: 0;
  transition: opacity 1s ease-in-out;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 25rem;
}
.hero-content-text1 {
  width: 700rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .hero-content-text1 {
    width: 420rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-content-text1 {
    width: 270rem;
  }
}
.hero-content-text1 span {
  font-size: 60rem;
  font-weight: normal;
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (max-width: 1400px) {
  .hero-content-text1 span {
    font-size: 37rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-content-text1 span {
    font-size: 23rem;
  }
}
.hero-content-text2 {
  width: 950rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .hero-content-text2 {
    width: 600rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-content-text2 {
    width: 400rem;
  }
}
.hero-content-text2 span {
  font-size: 60rem;
  font-weight: normal;
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (max-width: 1400px) {
  .hero-content-text2 span {
    font-size: 37rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-content-text2 span {
    font-size: 23rem;
  }
}
.hero-content-text {
  font-size: 18rem;
  color: #000;
  font-weight: normal;
  margin-top: 10rem;
}
@media screen and (max-width: 1400px) {
  .hero-content-text {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-content-text {
    font-size: 14rem;
  }
}

.design {
  background-color: var(--g-color-base);
  padding: 140rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .design {
    padding: 100rem 0;
  }
}
@media screen and (max-width: 768px) {
  .design {
    padding: 80rem 0;
  }
}
.design-graphic {
  width:160rem;
  /* width: var(--hover-width, 100rem); */
  height: 3rem;
  background-color: #374948;
  margin-bottom: 12rem;
  transition: width 0.3s ease;
}
/* .design-graphic.hover-active {
  
} */
.design-title {
  display: block;
  text-align: center;
  margin-bottom: 40rem;
  font-size: 24rem;
  font-weight: bold;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .design-title {
    margin-bottom: 30rem;
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .design-title {
    margin-bottom: 20rem;
    font-size: 18rem;
  }
}
.design-text {
  word-wrap:break-word;
  font-size: 18rem;
  line-height: 1.8;
  max-width: 770rem;
  text-align: left;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  text-align: justify;
}
@media screen and (max-width: 1400px) {
  .design-text {
    font-size: 16rem;
    max-width: 900rem;
  }
}
@media screen and (max-width: 768px) {
  .design-text {
    font-size: 14rem;
    max-width: 100%;
    padding: 0 30rem;
  }
}

.feature {
  background-color: #ffffff;
  padding: 160rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .feature {
    padding: 80rem 0;
  }
}
@media screen and (max-width: 768px) {
  .feature {
    padding: 60rem 0;
  }
}
.feature-graphic {
  width: 185rem;
  height: 3rem;
  background-color: #374948;
  margin-bottom: 12rem;
  transition: width 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .feature-graphic {
    margin-bottom: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .feature-graphic {
    margin-bottom: 12rem;
    width: 80rem;
  }
}
.feature-graphic.hover-active {
  width: var(--hover-width, 100rem);
}
.feature-title {
  display: block;
  text-align: center;
  margin-bottom: 70rem;
  font-size: 24rem;
  font-weight: bold;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .feature-title {
    margin-bottom: 30rem;
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .feature-title {
    margin-bottom: 20rem;
    font-size: 18rem;
  }
}
.feature-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40rem;
  max-width: 1600rem;
  padding: 0 60rem;
}
@media screen and (max-width: 1400px) {
  .feature-content {
    gap: 30rem;
    padding: 0 40rem;
  }
}
@media screen and (max-width: 768px) {
  .feature-content {
    grid-template-columns: 1fr;
    gap: 30rem;
    padding: 0 20rem;
  }
}
.feature-content-item {
  background-color: #f5f5f5;
  padding: 90rem 10rem 50rem 10rem;
  border: 2px solid var(--g-color-base);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1400px) {
  .feature-content-item {
    padding: 80rem 10rem 40rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .feature-content-item {
    padding: 60rem 10rem 30rem 10rem;
  }
}
.feature-content-item .feature-item-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 28rem;
  font-weight: bold;
  margin-bottom: 30rem;
  line-height: 1.6;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .feature-content-item .feature-item-title {
    font-size: 20rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .feature-content-item .feature-item-title {
    font-size: 18rem;
    margin-bottom: 15rem;
  }
}
.feature-title-text1 {
  text-align: center;
  cursor: pointer;
}
.feature-content-item .feature-item-graphic {
  width: 80rem;
  height: 3rem;
  background-color: #434343;
  margin: 0 auto 30rem;
  transition: width 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .feature-content-item .feature-item-graphic {
    width: 80rem;
    margin-bottom: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .feature-content-item .feature-item-graphic {
    width: 60rem;
    margin-bottom: 20rem;
  }
}
.feature-content-item .feature-item-graphic.hover-active {
  width: var(--hover-width, 80rem);
}

.feature-item-text-content {
  margin: 0 auto;
}
.feature-content-item .feature-item-text {
  font-size: 18rem;
  line-height: 1.8;
  text-align: left;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  margin: 0;
}
@media screen and (max-width: 1400px) {
  .feature-content-item .feature-item-text {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .feature-content-item .feature-item-text {
    font-size: 14rem;
  }
}
.feature-content-img1 {
  background-image: url("../img/s3_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-content-img2 {
  background-image: url("../img/s3_2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-content-img3 {
  background-image: url("../img/s3_3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product {
  background-color: var(--g-color-base);
  padding: 160rem 0 100rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .product {
    padding: 80rem 0;
  }
}
@media screen and (max-width: 768px) {
  .product {
    padding: 60rem 0;
  }
}
.product-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60rem;
}
.product-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60rem;
}
@media screen and (max-width: 1400px) {
  .product-title {
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .product-title {
    margin-bottom: 40rem;
  }
}
.product-title-text {
  display: block;
  text-align: center;
  font-size: 24rem;
  font-weight: bold;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .product-title-text {
    font-size: 20rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .product-title-text {
    font-size: 18rem;
    margin-bottom: 10rem;
  }
}
.product-title-underline {
  width: 100rem;
  height: 3rem;
  background-color: #374948;
  margin-bottom: 12rem;
  transition: width 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .product-title-underline {
    width: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .product-title-underline {
    width: 60rem;
    height: 1.5rem;
  }
}
.product-title-underline.hover-active {
  width: var(--hover-width, 100rem);
}
.product-content-text {
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 0.6;
}
.product-content-text span {
  font-size: 100rem;
  font-weight: bold;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  color: #a3a3a3;
  float: left;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .product-content-text span {
    font-size: 55rem;
  }
}
@media screen and (max-width: 480px) {
  .product-content-text span {
    font-size: 60rem;
  }
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100%;
  margin-bottom: 60rem;
}
@media screen and (max-width: 1400px) {
  .product-grid {
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin-bottom: 40rem;
  }
}
@media screen and (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
  }
}
.product-grid-item {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-grid-item img {
  width: 100%;
  height: 100%;
  display: block;
}
/* Adjust visible area for the third product image (s4_3.png) */
.product-grid-item:nth-child(3) img {
  /* Keep cover, but focus on the central content area */
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.product-text {
  word-wrap: break-word;
  font-size: 18rem;
  line-height: 1.8;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  text-align: justify;
}
@media screen and (max-width: 1400px) {
  .product-text {
    font-size: 16rem;
    max-width: 900rem;
  }
}
@media screen and (max-width: 768px) {
  .product-text {
    font-size: 14rem;
    max-width: 100%;
    padding: 0 20rem;
  }
}

.graphic {
  background-color: var(--g-color-base);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120rem 0;
}
@media screen and (max-width: 1400px) {
  .graphic {
    padding: 80rem 0;
  }
}
@media screen and (max-width: 768px) {
  .graphic {
    padding: 60rem 0;
  }
}
.graphic-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60rem;
}
.graphic-content-text {
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 0.6;
}
.graphic-content-text span {
  font-size: 100rem;
  font-weight: bold;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  color: #a3a3a3;
  float: left;
}
@media screen and (max-width: 768px) {
  .graphic-content-text span {
    font-size: 55rem;
  }
}
@media screen and (max-width: 480px) {
  .graphic-content-text span {
    font-size: 60rem;
  }
}
.graphic-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120rem;
  width: 100%;
  margin-bottom: 130rem;
}
@media screen and (max-width: 1400px) {
  .graphic-img {
    gap: 100rem;
    margin-bottom: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .graphic-img {
    grid-template-columns: 1fr;
    gap: 120rem;
  }
}
.graphic-img > div {
  position: relative;
  width: 100%;
  overflow: visible;
}
.graphic-img > div img:first-child {
  width: 75%;
  height: auto;
  object-fit: cover;
  display: block;
}
.graphic-img > div img:last-child {
  position: absolute;
  width: 45%;
  height: auto;
  object-fit: contain;
  display: block;
  /* transform: translate(100%,-75%); */
  bottom: 0;
  right: 0;
  transform: translateY(20%);
}
.graphic-text {
  word-wrap: break-word;
  font-size: 18rem;
  line-height: 1.8;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  text-align: justify;
}
@media screen and (max-width: 1400px) {
  .graphic-text {
    font-size: 16rem;
    max-width: 900rem;
  }
}
@media screen and (max-width: 768px) {
  .graphic-text {
    font-size: 14rem;
    max-width: 100%;
    padding: 0 20rem;
  }
}

.studio {
  background-color: var(--g-color-base);
  padding: 100rem 0 190rem 0;
}
@media screen and (max-width: 1400px) {
  .studio {
    padding: 80rem 0 190rem 0;
  }
}
@media screen and (max-width: 768px) {
  .studio {
    padding: 60rem 0 140rem 0;
  }
}
.studio-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60rem;
}
.studio-content-text {
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 0.6;
}
.studio-content-text span {
  font-size: 100rem;
  font-weight: bold;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  color: #a3a3a3;
  float: left;
}
@media screen and (max-width: 768px) {
  .studio-content-text span {
    font-size: 55rem;
  }
}
.studio-content-img {
  width: 100%;
  display: flex;
  margin-bottom: 60rem;
}
@media screen and (max-width: 768px) {
  .studio-content-img {
    flex-direction: column;
  }
}
.studio-content-img-group {
  width: 66%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .studio-content-img-group {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .studio-content-img-group {
    flex-direction: column;
  }
}
.studio-content-img-group img {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 480px) {
  .studio-content-img-group img {
    width: 100%;
  }
}
.studio-content-img-car {
  width: 34%;
}
.studio-content-img-car img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .studio-content-img-car {
    width: 100%;
  }
}
.studio-text {
    word-wrap: break-word;
    font-size: 18rem;
    line-height: 1.8;
    font-family: Bahnschrift, "Yu Gothic", sans-serif;
}

.newproduct {
  padding: 160rem 0;
}
@media screen and (max-width: 1400px) {
  .newproduct {
    padding: 100rem 0;
  }
}
@media screen and (max-width: 768px) {
  .newproduct {
    padding: 60rem 0;
  }
}
.newproduct-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.newproduct-content-graphic {
  width: 100rem;
  height: 3rem;
  background-color: #374948;
  margin-bottom: 12rem;
  transition: width 0.3s ease;
}
.newproduct-content-graphic.hover-active {
  width: var(--hover-width, 100rem);
}
.newproduct-content-title {
  display: block;
  text-align: center;
  margin-bottom: 40rem;
  font-size: 24rem;
  font-weight: bold;
  color: #000;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-title {
    margin-bottom: 30rem;
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .newproduct-content-title {
    margin-bottom: 20rem;
    font-size: 18rem;
  }
}
.newproduct-content-text {
  font-size: 18rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .newproduct-content-text {
    font-size: 14rem;
  }
}
.newproduct-content-step {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-top: 100rem;
}
.newproduct-content-step .step-item {
  width: 50%;
  height: 400rem;
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-item {
    height: 350rem;
  }
}
@media screen and (max-width: 480px) {
  .newproduct-content-step .step-item {
    height: 300rem;
  }
}
@media screen and (max-width: 768px) {
  .newproduct-content-step {
    flex-direction: column;
    gap: 50rem;
  }
  .newproduct-content-step .step-item {
    width: 100%;
  }
  .newproduct-content-step .step-one {
    order: 1;
  }
  .newproduct-content-step .step-two {
    order: 2;
  }
  .newproduct-content-step .step-three {
    order: 3;
  }
  .newproduct-content-step .step-four {
    order: 4;
  }
  .newproduct-content-step .step-img {
    display: none;
  }
}
.newproduct-content-step .step-one {
  display: flex;
  flex-direction: column;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  border-bottom: 2px solid var(--g-color-base);
  border-right: 2px solid var(--g-color-base);
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-one {
    border-bottom: none;
    border-right: none;
    align-items: center;
  }
}
.newproduct-content-step .step-one-title {
  display: flex;
  align-items: center;
  height: 100rem;
  gap: 20rem;
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-one-title {
    gap: 10rem;
  }
}
.newproduct-content-step .step-one-title .step-one-number {
  font-size: 100rem;
  font-weight: 700;
  color: var(--g-color-base);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-one-title .step-one-number {
    font-size: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-one-title .step-one-number {
    font-size: 60rem;
  }
}
.newproduct-content-step .step-one-title-text {
  color: #000;
  font-size: 28rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-one-title-text {
    font-size: 20rem;
  }
}
.newproduct-content-step .step-one-header {
  color: #000;
  font-size: 16rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-one-header {
    font-size: 14rem;
  }
}
.newproduct-content-step .step-one-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15rem;
  margin: 20rem 0;
  width: 60%;
  margin-left: 20rem;
}
@media screen and (max-width: 480px) {
  .newproduct-content-step .step-one-diagram {
    width: 100%;
  }
}
.newproduct-content-step .step-one-diagram-item {
  display: flex;
  align-items: center;
  gap: 10rem;
}
.newproduct-content-step .step-one-diagram-item .step-one-circle {
  width: 100rem;
  height: 100rem;
  border-radius: 50%;
  background-color: #4a9b9b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-one-diagram-item .step-one-circle {
    width: 80rem;
    height: 80rem;
  }
}
.newproduct-content-step .step-one-diagram-item .step-one-circle span {
  color: #fff;
  font-size: 14rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-one-diagram-item .step-one-circle span {
    font-size: 12rem;
  }
}
.newproduct-content-step .step-one-diagram-item .step-one-plus {
  font-size: 36rem;
  font-weight: 700;
  color: var(--g-color-base);
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-one-diagram-item .step-one-plus {
    font-size: 30rem;
  }
}
.newproduct-content-step .step-one-diagram-equals {
  font-size: 28rem;
  color: var(--g-color-base);
  letter-spacing: 12rem;
  font-weight: 300;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-one-diagram-equals {
    font-size: 24rem;
  }
}
.newproduct-content-step .step-one-diagram-conclusion {
  color: #000;
  font-size: 18rem;
  text-align: center;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-one-diagram-conclusion {
    font-size: 16rem;
  }
}
.newproduct-content-step .step-two {
  display: flex;
  flex-direction: column;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  border-right: 2px solid var(--g-color-base);
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-two {
    border-right: none;
    align-items: center;
  }
}
.newproduct-content-step .step-two-title {
  display: flex;
  align-items: center;
  gap: 40rem;
  height: 100rem;
}
.newproduct-content-step .step-two-title-number {
  font-size: 100rem;
  font-weight: 700;
  color: var(--g-color-base);
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-two-title-number {
    font-size: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-two-title-number {
    font-size: 60rem;
  }
}
.newproduct-content-step .step-two-title-text {
  color: #000;
  font-size: 28rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-two-title-text {
    font-size: 20rem;
  }
}
.newproduct-content-step .step-two-text span {
  color: #000;
  font-size: 18rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-two-text span {
    font-size: 16rem;
  }
}
.newproduct-content-step .step-two-img {
  display: flex;
  gap: 20rem;
  width: 90%;
  margin-top: 20rem;
}
.newproduct-content-step .step-two-img img {
  width: 50%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.newproduct-content-step .step-three {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  border-top: 2px solid var(--g-color-base);
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-three {
    border-top: none;
    align-items: center;
  }
}
.newproduct-content-step .step-three-title {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20rem;
}
.newproduct-content-step .step-three-title-text {
  color: #000;
  font-size: 28rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-three-title-text {
    font-size: 20rem;
  }
}
.newproduct-content-step .step-three-title-number {
  font-size: 100rem;
  font-weight: 700;
  color: var(--g-color-base);
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-three-title-number {
    font-size: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-three-title {
    flex-direction: row-reverse;
  }
  .newproduct-content-step .step-three-title-number {
    font-size: 50rem;
  }
}
.newproduct-content-step .step-three-text {
  color: #000;
  font-size: 16rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-three-text {
    font-size: 12rem;
  }
}
.newproduct-content-step .step-three-items {
  width: 85%;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-three-items {
    width: 90%;
  }
}
.newproduct-content-step .step-three-item {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
}
.newproduct-content-step .step-three-item-content, .newproduct-content-step .step-three-item-content1 {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.newproduct-content-step .step-three-item-content img, .newproduct-content-step .step-three-item-content1 img {
  width: 40rem;
  height: 40rem;
}
.newproduct-content-step .step-three-item-content span, .newproduct-content-step .step-three-item-content1 span {
  color: #000;
  font-size: 16rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.newproduct-content-step .step-three-item-left {
  width: 40%;
}
.newproduct-content-step .step-three-item-right {
  width: 60%;
}
.newproduct-content-step .step-four {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}

@media screen and (max-width: 768px) {
  .newproduct-content-step .step-four {
    align-items: center;
  }
}
.newproduct-content-step .step-four-title {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20rem;
}
.newproduct-content-step .step-four-title-number {
  font-size: 100rem;
  font-weight: 700;
  color: var(--g-color-base);
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-four-title-number {
    font-size: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-four-title {
    flex-direction: row-reverse;
  }
  .newproduct-content-step .step-four-title-number {
    font-size: 60rem;
  }
}
.newproduct-content-step .step-four-title-text {
  display: flex;
  flex-direction: column;
}
.newproduct-content-step .step-four-title-text .step-four-title-main {
  color: #000;
  font-size: 28rem;
  font-family: "Noto Sans JP", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-four-title-text .step-four-title-main {
    font-size: 20rem;
  }
}
.newproduct-content-step .step-four-title-text .step-four-title-sub {
  color: #000;
  font-size: 14rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-four-title-text .step-four-title-sub {
    font-size: 12rem;
  }
  .design-graphic{
    width: 140rem;
  }
}
.newproduct-content-step .step-four-text {
  color: #000;
  font-size: 16rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-four-text {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-four-text {
    font-size: 12rem;
  }
}
.newproduct-content-step .step-four-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.newproduct-content-step .step-four-top-box {
  border: 2rem solid var(--g-color-base);
  padding: 3rem 20rem;
  background-color: #fff;
}
.newproduct-content-step .step-four-top-box span {
  color: #000;
  font-size: 16rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-four-top-box span {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-four-top-box span {
    font-size: 12rem;
  }
}
.newproduct-content-step .step-four-connectors {
  position: relative;
  width: 100%;
  height: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newproduct-content-step .step-four-connector-vertical-up {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 20rem;
  background-color: #d0d0d0;
  z-index: 1;
}
.newproduct-content-step .step-four-connector-horizontal {
  position: absolute;
  top: 20rem;
  left: 14%;
  width: 72%;
  height: 3rem;
  background-color: #d0d0d0;
  z-index: 1;
}
.newproduct-content-step .step-four-connector-vertical-down {
  position: absolute;
  top: 20rem;
  width: 2rem;
  height: 20rem;
  background-color: #d0d0d0;
  z-index: 1;
}
.newproduct-content-step .step-four-connector-vertical-down.step-four-connector-left {
  left: calc(50% - 130rem);
}
.newproduct-content-step .step-four-connector-vertical-down.step-four-connector-center {
  left: 50%;
  transform: translateX(-50%);
}
.newproduct-content-step .step-four-connector-vertical-down.step-four-connector-right {
  left: calc(50% + 128rem);
}
.newproduct-content-step .step-four-circles {
  display: flex;
  justify-content: center;
  gap: 30rem;
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-four-circles {
    gap: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-four-circles {
    gap: 60rem;
  }
}
.newproduct-content-step .step-four-circle {
  width: 100rem;
  height: 100rem;
  border-radius: 50%;
  background-color: #d47a7a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-four-circle {
    width: 100rem;
    height: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-four-circle {
    width: 80rem;
    height: 80rem;
  }
}
.newproduct-content-step .step-four-circle-text {
  color: #fff;
  font-size: 14rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 16rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .newproduct-content-step .step-four-circle-text {
    font-size: 12rem;
  }
}
.newproduct-content-step .step-img {
  width: 330rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1400px) {
  .newproduct-content-step .step-img {
    width: 280rem;
  }
}
.newproduct-content-step .step-img img {
  width: 100%;
  height: auto;
}
.newproduct-content-regard {
  width: 100%;
  max-width: 948rem;
  margin-top: 60rem;
}
.newproduct-content-regard-img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .newproduct-content-regard {
  }
}

.contact {
  background-color: #f7f7f7;
  padding: 100rem 0 60rem;
}
@media screen and (max-width: 1400px) {
  .contact {
    padding: 80rem 0 50rem;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 60rem 0 40rem;
  }
}
.contact-header {
  text-align: center;
  margin-bottom: 60rem;
}
@media screen and (max-width: 1400px) {
  .contact-header {
    margin-bottom: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-header {
    margin-bottom: 40rem;
  }
}
.contact-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30rem;
  margin-bottom: 30rem;
}
@media screen and (max-width: 1400px) {
  .contact-header-content {
    gap: 25rem;
    margin-bottom: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-header-content {
    gap: 20rem;
    margin-bottom: 20rem;
  }
}
.contact-header-content-line {
  width: 100rem;
  height: 2rem;
  background-color: #87CEEB;
  transition: width 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-header-content-line {
    width: 80rem;
  }
}
.contact-header-content-line.hover-active {
  width: var(--hover-width, 100rem);
}
.contact-header-content-title {
  font-size: 48rem;
  font-weight: bold;
  color: #000;
  margin: 0;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  cursor: pointer;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .contact-header-content-title {
    font-size: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-header-content-title {
    font-size: 28rem;
  }
}
.contact-intro {
  font-size: 18rem;
  color: #000;
  margin: 0 0 10rem;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}
@media screen and (max-width: 1400px) {
  .contact-intro {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-intro {
    font-size: 14rem;
  }
}
.contact-content {
  max-width: 850rem;
  border-radius: 12rem;
  padding: 100rem 60rem 60rem 60rem;
  background-color: #ffffff;
  /* width: 90%; */
  margin-bottom: 60rem;
}
@media screen and (max-width: 1400px) {
  .contact-content {
    padding: 50rem 40rem;
    max-width: 900rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-content {
    padding: 40rem 30rem;
    border-radius: 8rem;
  }
}
@media screen and (max-width: 480px) {
  .contact-content {
    padding: 30rem 20rem;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 50rem;
}
@media screen and (max-width: 1400px) {
  .contact-form {
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-form {
    gap: 30rem;
  }
}
.contact-form-section {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}
@media screen and (max-width: 768px) {
  .contact-form-section {
    gap: 15rem;
  }
}
.contact-form-section-title {
  font-size: 24rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin: 0;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}
@media screen and (max-width: 1400px) {
  .contact-form-section-title {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-form-section-title {
    font-size: 18rem;
  }
}
.contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}
@media screen and (max-width: 768px) {
  .contact-form-fields {
    gap: 15rem;
  }
}
.contact-textarea {
  width: 100%;
  min-height: 200rem;
  height: 300rem;
  padding: 20rem;
  border: 2rem solid #374948;
  font-size: 16rem;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  resize: vertical;
  outline: none;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .contact-textarea {
    font-size: 15rem;
    padding: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-textarea {
    font-size: 14rem;
    padding: 15rem;
    min-height: 150rem;
  }
}
.contact-textarea:focus {
  border-color: #5F9EA0;
}
.contact-textarea::-moz-placeholder {
  color: #999;
}
.contact-textarea::placeholder {
  color: #999;
}
.contact-input {
  width: 100%;
  height: 50rem;
  padding: 0 20rem;
  border: 2rem solid #374948;
  font-size: 16rem;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .contact-input {
    font-size: 15rem;
    height: 48rem;
    padding: 0 18rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-input {
    font-size: 14rem;
    height: 45rem;
    padding: 0 15rem;
  }
}
.contact-input:focus {
  border-color: #5F9EA0;
}
.contact-input::-moz-placeholder {
  color: #999;
}
.contact-input::placeholder {
  color: #999;
}
.contact-form-submit {
  display: flex;
  justify-content: center;
  margin-top: 20rem;
}
.contact-submit-button {
  background-color: #4CAF50;
  color: #ffffff;
  border: none;
  border-radius: 8rem;
  padding: 15rem 40rem;
  font-size: 18rem;
  font-weight: 600;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
@media screen and (max-width: 1400px) {
  .contact-submit-button {
    font-size: 16rem;
    padding: 14rem 35rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-submit-button {
    font-size: 15rem;
    padding: 12rem 30rem;
  }
}
.contact-submit-button:hover {
  background-color: #388E3C;
  transform: translateY(-2rem);
}
.contact-submit-button:active {
  transform: translateY(0);
}
.contact-disclaimer {
  margin-top: 30rem;
  text-align: center;
  font-size: 16rem;
  font-weight: 500;
  font-style: bold;
  color: #000;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 1400px) {
  .contact-disclaimer {
    font-size: 14rem;
    margin-top: 35rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-disclaimer {
    font-size: 12rem;
    margin-top: 30rem;
  }
}
.contact-disclaimer p {
  margin: 0;
  line-height: 1.6;
}
.contact-disclaimer-link {
  color: #83c9ee;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.contact-disclaimer-link:hover {
  color: #5F9EA0;
}

.footer {
  background-color: var(--g-color-base);
  padding: 80rem 0;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40rem;
}
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 50rem;
  }
}
.footer-content-logo {
  display: flex;
  align-items: center;
  gap: 30rem;
}
@media screen and (max-width: 768px) {
  .footer-content-logo {
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .footer-content-logo {
    justify-content: space-between;
    width: 100%;
  }
}
.footer-content-logo a {
  transition: opacity 0.3s ease;
}
.footer-content-logo a:hover {
  opacity: 0.8;
}
.footer-content-logo img {
  width: 140rem;
  height: auto;
}
@media screen and (max-width: 1400px) {
  .footer-content-logo img {
    width: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-content-logo img {
    width: 30%;
  }
}
@media screen and (max-width: 480px) {
  .footer-content-logo img {
    width: 60rem;
  }
}
.footer-content-logo-info {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer-content-logo-info {
    width: 70%;
  }
}
.footer-content-logo-info .footer-logo-name {
  font-size: 24rem;
  font-weight: bold;
  font-style: bold;
  color: #000;
  letter-spacing: 0%;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}
.footer-content-logo-info .footer-logo-name-jp {
  font-size: 16rem;
  font-style: regular;
  color: #000;
  margin-bottom: 10rem;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}
.footer-content-logo-info .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12rem;
  font-size: 16rem;
  color: #000;
}
.footer-content-logo-info .footer-contact-item img {
  width: 16rem;
  height: auto;
}
.footer-content-logo-info .footer-contact-item span {
  color: #000;
}
.footer-content-logo-info .footer-contact-item a {
  color: #000;
  transition: opacity 0.3s ease;
}
.footer-content-logo-info .footer-contact-item a:hover {
  opacity: 0.7;
}
.footer-content-right .footer-content-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30rem;
}

@media screen and (max-width: 480px) {
  .footer-content-right{
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer-content-right .footer-content-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10rem;
  }
}
.footer-content-right .footer-content-links .footer-nav {
  display: flex;
  gap: 30rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer-content-right .footer-content-links .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem;
  }
}
.footer-content-right .footer-content-links .footer-nav-link {
  font-size: 18rem;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display: inline-block;
  transition: opacity 0.3s ease;
  font-family: Bahnschrift, "Yu Gothic", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer-content-right .footer-content-links .footer-nav-link {
    font-size: 16rem;
  }
}
.footer-content-right .footer-content-links .footer-nav-link::after {
  content: "";
  position: absolute;
  bottom: -8rem;
  left: 0;
  width: 0;
  height: 3rem;
  background-color: rgba(0, 166, 81, 0.2);
  transition: width 0.3s ease;
}
.footer-content-right .footer-content-links .footer-nav-link:hover {
  opacity: 1;
}
.footer-content-right .footer-content-links .footer-nav-link:hover::after {
  width: 100%;
}
.footer-content-right .footer-content-links .footer-nav-link .footer-nav-highlight {
  font-size: 16rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}
.footer-content-right .footer-content-links .footer-button {
  background: linear-gradient(90deg, #558b2f 0%, #9e9e9e 100%);
  color: #fff;
  padding: 12rem 30rem;
  border-radius: 4rem;
  text-decoration: none;
  font-size: 16rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.footer-content-right .footer-content-links .footer-button:hover {
  opacity: 0.9;
  transform: translateY(-2rem);
}
.footer-content-right .footer-separator-horizontal {
  width: 100%;
  height: 2rem;
  background-color: #362f2f;
  margin: 22rem 0;
}
.footer-content-right .footer-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30rem;
}
@media screen and (max-width: 480px) {
  .footer-content-right .footer-partners {
    gap: 10rem;
  }
}
.footer-content-right .footer-partners a {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-content-right .footer-partners a:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.footer-content-right .footer-partners a .footer_mikrowelt {
  width: 200rem;
  height: auto;
}
@media screen and (max-width: 480px) {
  .footer-content-right .footer-partners a .footer_mikrowelt {
    width: 150rem;
  }
}
.footer-content-right .footer-partners a .footer_fractale {
  width: 200rem;
  height: auto;
}
@media screen and (max-width: 480px) {
  .footer-content-right .footer-partners a .footer_fractale {
    width: 150rem;
  }
}
.footer-content-right .footer-partners a .footer_fieldproduct {
  width: 120rem;
}
@media screen and (max-width: 480px) {
  .footer-content-right .footer-partners a .footer_fieldproduct {
    width: 90rem;
  }
}

/* Contact Modal Styles */
.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.contact-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.contact-modal-content {
  position: relative;
  width: calc(100% - 40rem);
  max-width: 900rem;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10000;
  margin: 20rem;
}
@media screen and (max-width: 768px) {
  .contact-modal-content {
    width: calc(100% - 20rem);
    max-width: 520rem;
    margin: 10rem;
  }
}
.contact-modal-close {
  position: absolute;
  top: 20rem;
  right: 20rem;
  background: none;
  border: none;
  font-size: 40rem;
  color: #000;
  cursor: pointer;
  z-index: 10001;
  width: 50rem;
  height: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact-modal-close {
    top: 10rem;
    right: 10rem;
    font-size: 32rem;
    width: 40rem;
    height: 40rem;
  }
}
.contact-modal-close:hover {
  background-color: rgb(255, 255, 255);
  transform: rotate(90deg);
}

/* Shrink contact section when inside modal */
.contact-modal .contact {
  padding: 18rem 0 12rem;
}
.contact-modal .contact-header {
  margin-bottom: 18rem;
}
.contact-modal .contact-header-content {
  gap: 10rem;
  margin-bottom: 10rem;
}
.contact-modal .contact-header-content-line {
  width: 60rem;
  height: 2rem;
  background-color: #87CEEB;
  transition: width 0.3s ease;
}
.contact-modal .contact-header-content-line.hover-active {
  width: var(--hover-width, 60rem);
}
.contact-modal .contact-header-content-title {
  font-size: 28rem;
  cursor: pointer;
}
.contact-modal .contact-intro {
  font-size: 13rem;
  margin: 0 0 4rem;
}
.contact-modal .contact-content {
  max-width: 720rem;
  padding: 28rem 22rem;
}
.contact-modal .contact-form {
  gap: 22rem;
}
.contact-modal .contact-form-section {
  gap: 12rem;
}
.contact-modal .contact-form-section-title {
  font-size: 18rem;
}
.contact-modal .contact-textarea {
  min-height: 90rem;
  height: 110rem;
  padding: 12rem;
  font-size: 13rem;
}
.contact-modal .contact-input {
  height: 40rem;
  padding: 0 12rem;
  font-size: 13rem;
}
.contact-modal .contact-form-fields {
  gap: 12rem;
}
.contact-modal .contact-form-submit {
  margin-top: 6rem;
}
.contact-modal .contact-submit-button {
  padding: 10rem 24rem;
  font-size: 14rem;
}
.contact-modal .contact-disclaimer {
  margin-top: 16rem;
  font-size: 11rem;
}
@media screen and (max-width: 768px) {
  .contact-modal .contact {
    padding: 14rem 0 10rem;
  }
  .contact-modal .contact-header {
    margin-bottom: 14rem;
  }
  .contact-modal .contact-header-content-title {
    font-size: 22rem;
  }
  .contact-modal .contact-intro {
    font-size: 11rem;
  }
  .contact-modal .contact-content {
    padding: 22rem 16rem;
  }
  .contact-modal .contact-form {
    gap: 16rem;
  }
  .contact-modal .contact-textarea {
    min-height: 80rem;
    height: 96rem;
  }
}

/* Make the trigger clickable */
.newproduct-content-regard-title {
  cursor: pointer;
}
.newproduct-content-regard-title:hover {
  opacity: 0.8;
}
/*# sourceMappingURL=style.css.map */

.contact-message{
  font-size: 18rem;
  color: red;
  margin-bottom: 30rem;
}

.contact-field-error {
  display: none;
  color: #dc3545;
  font-size: 13rem;
  margin-top: 5rem;
  font-family: sans-serif;
  padding-left: 5rem;
}

@media (max-width: 768px) {
  .contact-field-error {
    font-size: 12rem;
    margin-top: 4rem;
  }
}

.contact-field-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}