@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap";
html {
  scroll-behavior: smooth;
}
.social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}
.social > div {
  display: flex;
  gap: 10px;
}
.social div a {
  display: flex;
  padding: 0;
}
.social-icon {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.social div:hover {
  background: none;
  box-shadow: none;
  outline: none;
}
#site-header {
  width: 250px;
  height: 100vh;
  background: #fff;
  border-right: 1px solid #e6e6e6;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  overflow-y: auto;
}
@media screen and (max-height: 690px) {
  #site-header {
    height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  #site-header {
    width: 100%;
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    padding-top: 20px;
  }
  #site-header #gnav {
    display: none;
  }
  #site-header.mobile-open #gnav {
    display: block;
  }
}
#site-header h1 {
  margin: 20px auto 10px;
  text-indent: -9999px;
  background: url(/img/logo.png) no-repeat center;
  background-size: 144px auto;
  width: 144px;
  height: 40px;
}
.no-svg #site-header h1 {
  background: url(/img/logo.png) no-repeat center;
}
#site-header h1 a {
  display: block;
  width: 144px;
  height: 40px;
  text-decoration: none !important;
}
#site-header h1 a:hover {
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  #site-header h1 {
    background: url(/img/logo-mobile.png) no-repeat center;
    background-size: 144px auto;
    margin: 0 auto 15px;
  }
  .no-svg #site-header h1 {
    background: url(/img/logo-mobile.png) no-repeat center;
  }
  #site-header h1,
  #site-header h1 a {
    width: 144px;
    height: 40px;
    text-decoration: none !important;
  }
  #site-header h1 a:hover {
    text-decoration: none !important;
  }
}
#site-header #gnav {
  z-index: 999;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #site-header #gnav {
    text-align: center;
  }
  #site-header #gnav ul {
    margin-bottom: 0;
    border-top: 1px solid #e6e6e6;
  }
}
#site-header #gnav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#site-header #gnav li {
  border-bottom: 1px solid #e6e6e6;
}
#site-header #gnav li a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  display: block;
  padding: 10px 40px;
  background: url(/img/nav-bg.png) no-repeat 85% center;
  transition: all 0.3s ease;
  position: relative;
}
#site-header #gnav li a:hover {
  background: #003b70 url(/img/nav-bg-white.png) no-repeat 88% center;
  color: #fff;
  transform: translate(5px);
}
@media screen and (max-height: 690px) {
  #site-header #gnav li a {
    padding: 8px 40px;
  }
}
@media screen and (max-width: 768px) {
  #site-header #gnav li a {
    padding: 10px 40px;
  }
  #site-header #gnav li.haschild a:hover {
    color: #222;
  }
  #site-header #gnav li.haschild > a {
    background: url(/img/gnav-hasclass-off.png) no-repeat 90% center;
    background-size: 9px auto;
  }
  #site-header #gnav li.haschild > a:hover {
    background: url(/img/gnav-hasclass-off.png) no-repeat 90% 70%;
    background-size: 9px auto;
  }
  #site-header #gnav li.haschild.on > a {
    background: url(/img/gnav-hasclass-on.png) no-repeat 90% center;
    background-size: 9px auto;
  }
  #site-header #gnav li.haschild.on > a:hover {
    background: url(/img/gnav-hasclass-on.png) no-repeat 90% 30%;
    background-size: 9px auto;
  }
}
#site-header #gnav li .grandchild {
  height: 100%;
  border-right: 1px solid #e6e6e6;
  position: fixed;
  top: 0;
  left: 210px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  background: #fafafa;
  min-width: 220px;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translate(-10px);
  z-index: 998;
}
#site-header #gnav li .grandchild.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
#site-header #gnav li .grandchild .grandchild-title {
  text-align: center;
  padding: 20px 10px;
  margin-bottom: 20px;
  background: #003b70;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
}
#site-header #gnav li .grandchild ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#site-header #gnav li .grandchild li a {
  font-size: 14px;
  padding: 10px 50px 10px 30px;
  background: url(/img/nav-bg.png) no-repeat 90% center;
  transition: all 0.3s ease;
  display: block;
}
#site-header #gnav li .grandchild li a:hover {
  background: #003b70 url(/img/nav-bg-white.png) no-repeat 93% center;
  color: #fff;
  transform: translate(5px);
}
@media screen and (max-width: 768px) {
  #site-header #gnav li .grandchild {
    height: auto;
    border: none;
    position: relative;
    top: auto;
    left: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(0) !important;
    background: transparent;
    box-shadow: none;
  }
  #site-header #gnav li .grandchild .grandchild-title {
    display: none;
  }
  #site-header #gnav li .grandchild li:last-child {
    border: none;
  }
}
#site-header .contact {
  background: #035678 url(/img/nav-bg-white.png) no-repeat 180px center;
  transition: background 0.3s;
}
#site-header .contact a {
  display: block;
  background: url(/img/mail-icon.png) no-repeat 20px center;
  color: #fff;
  height: 60px;
  line-height: 60px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s;
  padding-left: 50px;
}
#site-header .contact:hover {
  background: #04f url(/img/nav-bg-white.png) no-repeat 190px center;
}
#site-header .contact:hover a {
  background: url(/img/mail-icon.png) no-repeat 20px center;
}
@media screen and (max-width: 768px) {
  #site-header .contact {
    background: #035678 url(/img/nav-bg-white.png) no-repeat 90% center;
  }
  #site-header .contact a {
    display: inline-block;
  }
  #site-header .contact:hover {
    background: #04f url(/img/nav-bg-white.png) no-repeat 95% center;
  }
}
#site-header .tel {
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
  text-align: center;
}
#site-header .tel .tel-num {
  font-family: Arial, Meiryo, sans-serif;
  font-size: 23px;
  letter-spacing: 0.02em;
  background: url(/img/tel-icon.png) no-repeat 20px center;
  padding-left: 50px;
  display: inline-block;
}
#site-header .tel .tel-time {
  color: #666;
  font-size: 12px;
  text-align: center;
}
#site-header .company {
  font-size: 12px;
  padding: 15px 0 15px 20px;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 768px) {
  #site-header .company {
    display: none;
  }
}
#site-header .recruitment {
  background-color: #f0f5fa;
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
}
#site-header .recruitment .recruitment-headline {
  font-family: Arial, Meiryo, sans-serif;
  font-size: 23px;
  letter-spacing: 0.02em;
  text-align: center;
}
#site-header .recruitment .recruitment-latter {
  color: #666;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-height: 640px) {
  #site-header .recruitment {
    padding: 5px 0;
  }
  .recruitment-latter {
    font-size: 11px;
  }
  #site-header .company {
    padding: 10px 0 10px 20px;
  }
  #site-header .tel {
    padding: 10px 0;
  }
}
@media screen and (max-height: 560px) {
  #site-header .recruitment .recruitment-headline {
    font-size: 20px;
  }
}
@media screen and (max-height: 500px) {
  #site-header #gnav li a {
    padding: 6px 40px;
  }
}
#site-header #mobile-nav-btn {
  display: none;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #site-header #mobile-nav-btn {
    display: block;
  }
  .social-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-top: 10px;
  }
}
#site-header #mobile-nav-btn span {
  display: block;
  height: 4px;
  width: 100%;
  background: #222;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
#site-header #mobile-nav-btn.on {
  z-index: 9999;
  position: absolute;
}
#site-header #mobile-nav-btn.on span {
  transform-origin: 50% 50%;
  margin: 0;
  display: none;
  transition: all 0.3s;
  background: #035497;
}
#site-header #mobile-nav-btn.on span:first-child {
  display: block;
  transform: rotate3d(0, 0, 1, -45deg);
  margin-top: 8px;
}
#site-header #mobile-nav-btn.on span:last-child {
  display: block;
  transform: rotate3d(0, 0, 1, 45deg);
  margin-top: -3px;
}
@media screen and (min-width: 769px) {
  .haschild:hover .grandchild {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
  }
}
.sidebar.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
}
html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #e6f0ff, #f9fbff);
  color: #222;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
#site-footer {
  position: relative !important;
  width: calc(100% - 200px) !important;
  margin-left: 200px !important;
  overflow-x: hidden !important;
  background: #f9fbff;
}
.footer-copyright {
  margin-left: 0 !important;
}
.top-content {
  text-align: center;
  padding: 20px;
}
.footer-intro {
  text-align: center;
  padding: 0 20px 20px;
}
@media screen and (min-width: 769px) {
  #site-footer {
    margin-left: 220px !important;
    width: calc(100% - 220px) !important;
  }
}
@media screen and (max-width: 768px) {
  #site-footer {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .footer-copyright {
    margin-left: 0 !important;
    margin-bottom: 0 !important;
  }
  #site-footer #footer-sitemap {
    display: none !important;
  }
}
#site-footer aside {
  background: #035678 !important;
}
#site-footer aside * {
  color: #fff !important;
}
.Mail_Center {
  display: flex !important;
  justify-content: center !important;
}
.Mail_Center img {
  display: inline-block !important;
  max-width: 100%;
  height: auto;
}
#site-footer #footer-sitemap {
  margin: 0 6.796% !important;
  padding: 40px 0 !important;
}
#site-footer #footer-sitemap nav {
  margin: auto !important;
}
#site-footer #footer-sitemap a {
  display: block !important;
  background: url(/img/nav-bg.png) no-repeat left center !important;
  padding-left: 15px !important;
  color: #222 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
}
#site-footer #footer-sitemap a:hover {
  color: #04f !important;
}
#site-footer #footer-sitemap .col {
  width: 25% !important;
  margin-right: 2% !important;
  float: left !important;
  font-weight: 700 !important;
}
#site-footer #footer-sitemap .col.center {
  width: 44% !important;
}
#site-footer #footer-sitemap .col.center .about-service {
  pointer-events: none !important;
  cursor: default !important;
  color: #000 !important;
}
#site-footer #footer-sitemap .col li {
  margin-bottom: 1.7em !important;
}
#site-footer #footer-sitemap .col ul {
  font-weight: 400 !important;
  margin-left: 1em !important;
}
#site-footer #footer-sitemap .col ul li {
  margin-bottom: 0 !important;
}
#site-footer #scrolltop {
  clear: both !important;
  cursor: pointer !important;
  background: #ededed !important;
  text-align: center !important;
}
#site-footer #scrolltop span {
  display: inline-block !important;
  padding-left: 25px !important;
  background: url(/img/scrolltop-bg.png) no-repeat left center !important;
  font-family: Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}
#site-footer #scrolltop:hover span {
  background: url(/img/scrolltop-bg.png) no-repeat left top !important;
}
#site-footer #scrolltop a {
  color: #222 !important;
  display: block !important;
  padding: 1em !important;
  text-decoration: none !important;
}
#site-footer #copyright {
  color: #000 !important;
  padding: 20px 3.883% !important;
  font-size: 13px !important;
  position: relative !important;
  line-height: 1.7 !important;
  min-height: 80px !important;
  overflow-x: hidden !important;
}
#site-footer #copyright a {
  color: #000 !important;
  text-decoration: none !important;
}
#site-footer #copyright small {
  position: absolute !important;
  right: 3.883% !important;
  top: 50% !important;
  transform: translateY(-50%);
  font-size: 1em !important;
  font-family: Helvetica, Arial, sans-serif !important;
}
.pmark_right {
  position: absolute !important;
  right: 3.883% !important;
  top: 20px !important;
  z-index: 10 !important;
  text-align: right !important;
}
.pmark_right img {
  display: inline-block !important;
  margin-bottom: 0 !important;
  max-width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 768px) {
  .pmark_right {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    text-align: center !important;
    margin-top: 20px !important;
  }
  .pmark_right img {
    margin: 0 auto !important;
  }
  .Mail_Center img {
    max-width: 100% !important;
    height: auto !important;
  }
  #site-footer #copyright small {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    margin-top: 1em !important;
    display: block !important;
    text-align: center !important;
  }
}
.footer.loading {
  text-align: center !important;
  padding: 20px !important;
  background: #f5f5f5 !important;
}
#wrapper.noheader #site-footer #copyright {
  text-align: center !important;
}
#wrapper.noheader #site-footer #copyright small {
  position: relative !important;
  top: auto !important;
  right: auto !important;
}
.footer-page-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5em;
  color: #000;
}
.footer-page-subtitle {
  display: block;
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.25em;
  font-weight: 400;
  text-align: center;
}
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: flex-end;
  z-index: 50;
}
.indicator-set {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.indicator-set.active {
  transform: scale(1.15);
}
.portal-dot {
  width: 48px;
  height: 48px;
  margin: 0 3px;
  opacity: 0.5;
  transition: all 0.5s ease;
  -webkit-user-select: none;
  user-select: none;
}
.portal-dot.active {
  opacity: 1;
  transform: scale(1.2) rotate(5deg);
}
@media (max-width: 600px) {
  .portal-dot {
    width: 20px;
    height: 20px;
  }
}
.carousel-buttons {
  position: relative;
  display: flex;
  gap: 12px;
}
.carousel-buttons button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: url(/img/IMG_4866_1.png) center center / contain no-repeat;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.carousel-buttons button:hover:before {
  opacity: 1;
}
.carousel-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: Poppins, sans-serif;
  margin-left: 130px;
}
.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 6s ease;
}
.carousel-item.active {
  opacity: 1;
  z-index: 2;
}
.img-crop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(100%);
  transform: scale(1.05);
  transition: transform 6s ease-in-out;
}
.carousel-item.active .img-crop {
  transform: scale(1.15);
}
.carousel-text {
  position: absolute;
  top: 30%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  animation: fadeUp 1.5s ease forwards;
}
.carousel-title {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(90deg, coral, #ff4500);
  -webkit-background-clip: text;
  text-shadow: 2px 2px 6px rgba(17, 19, 17, 0.7), 0 0 6px rgba(0, 0, 0, 0.5);
  color: #ff4500;
}
.carousel-description {
  font-size: 23px;
  color: #fff;
  margin-top: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.4);
  font-weight: 500;
  line-height: 1.5;
}
.carousel-buttons {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 20;
}
.carousel-buttons button {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, coral, #ff4500);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 15px #ff7f5099;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 2;
}
.carousel-buttons button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background: url(/img/IMG_4866_1.png) center center / contain no-repeat;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.carousel-buttons button:hover:before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}
.carousel-buttons button a {
  position: relative;
  z-index: 3;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: color 0.3s ease;
}
.carousel-buttons button:hover a {
  color: orange;
  text-shadow: #000 0 0 5px;
}
.carousel-buttons button:nth-child(2) {
  background: linear-gradient(135deg, #5b8bb3, #036);
}
.carousel-buttons button:hover {
  transform: scale(1.15);
}
.carousel-indicators {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff6;
  transition: 0.4s;
  cursor: pointer;
}
.dot.active {
  background: linear-gradient(135deg, coral, #ff4500);
  transform: scale(1.6);
}
.carousel-counter {
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translate(-50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: #00000080;
  padding: 10px 20px;
  border-radius: 30px;
  letter-spacing: 3px;
  z-index: 15;
  font-family: Poppins, sans-serif;
  text-align: center;
  white-space: nowrap;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .carousel-title {
    font-size: 2.2rem;
    text-shadow: 2px 2px 6px rgba(17, 19, 17, 0.7), 0 0 6px rgba(0, 0, 0, 0.5);
    color: #ff4500;
  }
  .carousel-description {
    font-size: 1.1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.4);
  }
  .carousel-section {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    font-family: Poppins, sans-serif;
    margin-left: 90px;
  }
  .carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease, transform 6s ease;
  }
  .carousel-item.active {
    opacity: 1;
    z-index: 2;
  }
  .img-crop {
    width: 100%;
    height: 100vh !important;
    object-fit: cover;
    filter: brightness(100%);
    transform: scale(1.05);
    transition: transform 6s ease-in-out;
  }
  .carousel-item.active .img-crop {
    transform: scale(1.15);
  }
  .carousel-text {
    position: absolute;
    top: 30%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    animation: fadeUp 1.5s ease forwards;
  }
  .carousel-title {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, coral, #ff4500);
    -webkit-background-clip: text;
    text-shadow: 2px 2px 6px rgba(17, 19, 17, 0.7), 0 0 6px rgba(0, 0, 0, 0.5);
    color: #ff4500;
    padding: 0 0 0 30px;
  }
  .carousel-description {
    font-size: 1.3rem;
    color: #ffffffe6;
    margin-top: 15px;
    padding: 0 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.4);
  }
  .carousel-buttons {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
  }
  .carousel-buttons button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, coral, #ff4500);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 15px #ff7f5099;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-buttons button a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .carousel-buttons button:nth-child(2) {
    background: linear-gradient(135deg, #5b8bb3, #036);
  }
  .carousel-buttons button:hover {
    transform: scale(1.15);
  }
  .carousel-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
  }
  .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff6;
    transition: 0.4s;
    cursor: pointer;
  }
  .dot.active {
    background: linear-gradient(135deg, coral, #ff4500);
    transform: scale(1.6);
  }
  .carousel-counter {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translate(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: #00000080;
    padding: 10px 20px;
    border-radius: 30px;
    letter-spacing: 3px;
    z-index: 15;
    font-family: Poppins, sans-serif;
    text-align: center;
    white-space: nowrap;
  }
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 768px) {
  .carousel-section {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
    font-family: Poppins, sans-serif;
    margin-left: 0;
  }
  .carousel-item {
    position: absolute;
    width: 100%;
    height: 80%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease, transform 6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
  }
  .carousel-item.active {
    opacity: 1;
    z-index: 2;
  }
  .img-crop {
    width: 100%;
    height: 100vh !important;
    object-fit: cover;
    filter: brightness(100%);
    transform: scale(1.05);
    transition: transform 6s ease-in-out;
  }
  .carousel-item.active .img-crop {
    transform: scale(1.15);
  }
  .carousel-text {
    position: absolute;
    top: 30%;
    left: 0%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    animation: fadeUp 1.5s ease forwards;
  }
  .carousel-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    background: linear-gradient(90deg, coral, #ff4500);
    -webkit-background-clip: text;
    text-shadow: 2px 2px 6px rgba(17, 19, 17, 0.7), 0 0 6px rgba(0, 0, 0, 0.5);
    color: #ff4500;
  }
  .carousel-description {
    font-size: 18px;
    color: #fff;
    margin-top: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.4);
  }
  .carousel-buttons button {
    display: none;
  }
  .carousel-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
  }
  .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff6;
    transition: 0.4s;
    cursor: pointer;
  }
  .dot.active {
    background: linear-gradient(135deg, coral, #ff4500);
    transform: scale(1.6);
  }
  .carousel-counter {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translate(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: #00000080;
    padding: 10px 20px;
    border-radius: 30px;
    letter-spacing: 3px;
    z-index: 15;
    font-family: Poppins, sans-serif;
    text-align: center;
    white-space: nowrap;
  }
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 400px) {
  .carousel-title {
    font-size: 1.5rem;
    text-shadow: 2px 2px 6px rgba(17, 19, 17, 0.7), 0 0 6px rgba(0, 0, 0, 0.5);
    color: #ff4500;
  }
  .carousel-description {
    font-size: 0.9rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 0 0 10px rgba(0, 0, 0, 0.4);
  }
  .carousel-buttons button {
    width: 50px;
    height: 50px;
    font-size: 0.7rem;
  }
  .carousel-counter {
    font-size: 0.9rem;
    padding: 6px 12px;
    bottom: 60px;
  }
  .carousel-buttons button {
    display: none;
  }
}
.consultation-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 60px 30px;
  width: 100%;
  max-width: 1900px;
  margin: -50px 0 0 115px;
  background: #f9f9f9;
}
.consultation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f9f9;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out;
  box-shadow: 0 5px 25px #00000014;
}
.consultation-card:hover {
  box-shadow: 0 8px 35px #00000026;
}
.consultation-text {
  flex: 1;
  padding: 40px;
  animation: fadeInLeft 0.8s ease forwards;
}
.consultation-text h2 {
  font-size: 2rem;
  color: #036;
  margin-bottom: 20px;
}
.consultation-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.1;
  margin-bottom: 30px;
}
.consultation-btn a {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, #007bff, #00bfff);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.consultation-btn a:hover {
  background: linear-gradient(to right, #00bfff, #007bff);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #007bff4d;
}
.consultation-image {
  flex: 1;
  height: 100%;
  overflow: hidden;
  animation: fadeInRight 0.8s ease forwards;
}
.consultation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  border-left: 1px solid #e0e0e0;
}
.consultation-card:hover .consultation-image img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
@media (max-width: 900px) {
  .consultation-section {
    margin-left: 0;
  }
  .consultation-card {
    flex-direction: column;
  }
  .consultation-image {
    order: 0;
    padding-bottom: 0;
  }
  .consultation-text {
    order: 1;
    text-align: center;
    padding: 20px;
  }
  .consultation-text h2 {
    font-size: 1.5rem;
  }
  .consultation-text p {
    font-size: 0.95rem;
  }
  .consultation-btn a {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate(-40px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate(40px);
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.what-we-do-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: #f9f9f9;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  margin-left: 100px;
}
.what-we-inner {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.logo-image {
  flex: 1;
  max-width: 45%;
}
.logo-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 0 15px #00000026;
}
.what-we-text {
  flex: 1;
  max-width: 55%;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
.what-we-text h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #0f172a;
}
.what-we-text p {
  font-size: 1em;
  margin: 0;
}
#typewriter-text.typing {
  white-space: pre-wrap;
  display: inline-block;
  border-right: 2px solid #333;
  font-size: 1em;
  text-align: left;
  animation: blink 0.8s step-end infinite;
}
#typewriter-text.done {
  border-right: none;
  animation: none;
}
@keyframes blink {
  0%,
  to {
    border-color: transparent;
  }
  50% {
    border-color: #333;
  }
}
@media (max-width: 1024px) {
  .what-we-do-section {
    margin-left: 110px;
  }
  .what-we-inner {
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
  }
  .logo-image.sp-none {
    display: none;
  }
  .what-we-text {
    max-width: 100%;
    font-size: 0.95em;
  }
  .what-we-text h2 {
    font-size: 1.6em;
  }
  .what-we-text p {
    font-size: 0.95em;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .what-we-do-section {
    margin-left: 0;
  }
  .what-we-inner {
    flex-direction: column;
    padding: 0 20px;
    text-align: center;
  }
  .logo-image.sp-none {
    display: none;
  }
  .what-we-text {
    max-width: 100%;
    font-size: 0.95em;
  }
  .what-we-text h2 {
    font-size: 1.6em;
  }
  .what-we-text p {
    font-size: 0.95em;
    text-align: center;
  }
}
:root {
  --gradient-text: linear-gradient(
    270deg,
    #ff0000,
    #ff9900,
    #33cc33,
    #3399ff,
    #9933ff,
    #ff3399,
    #ff0000
  );
  --gradient-btn: linear-gradient(45deg, #ff6ec4, #7873f5, #4adede, #ff6ec4);
  --gradient-btn-hover: linear-gradient(45deg, #4adede, #ff6ec4, #7873f5);
  --gradient-card: linear-gradient(270deg, #ff6ec4, #7873f5, #4adede, #ff6ec4);
  --text-white: #ffffff;
  --text-subtitle: #ffeaff;
  --shadow-blue: rgba(255, 105, 180, 0.6);
  --btn-shadow: rgba(120, 115, 245, 0.7);
}
@keyframes gradient-slide {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0% 50%;
  }
}
@keyframes gradient-text-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0% 50%;
  }
}
#recruit-site-content.members.page {
  width: 100% !important;
  min-height: 100vh;
  padding: 0;
  box-sizing: border-box;
  background: #f5f5f5;
  font-family: Poppins, sans-serif;
  margin: 0 0 0 120px !important;
}
.page-header-recruit-top {
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.25rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  width: 100%;
  margin-bottom: 20px;
}
.job-cat {
  font-weight: 700;
  background: var(--gradient-text);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-text-animation 6s ease infinite;
  font-size: 23px !important;
  margin-top: 30px;
  margin-bottom: -10px;
  margin-right: 250px !important;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.title-job-recruit {
  font-weight: 700;
  background: var(--gradient-text);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-text-animation 6s ease infinite;
  font-size: 23px !important;
}
.job-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 32px;
  min-height: 100vh;
}
.recruit-card {
  width: 100%;
  max-width: 100%;
  min-height: 100px;
  border-radius: 20px;
  padding: 32px 36px;
  background: var(--gradient-card);
  background-size: 400% 400%;
  animation: gradient-slide 15s ease infinite;
  box-shadow: 0 12px 24px #ff69b44d, inset 0 0 12px #ffffff26;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-white);
  margin-left: -250px;
}
.recruit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px #ff69b499, inset 0 0 18px #ffffff40;
  background-position: 100% 50%;
}
.job-details {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  color: #fbeaff;
}
.job-details li {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff0fa;
  background: #ffffff26;
  border-radius: 16px;
  box-shadow: 0 2px 6px #ffffff40;
  white-space: nowrap;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.job {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fef5ff;
  text-align: left;
  line-height: 1.3;
  max-width: 100%;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.details-btn {
  align-self: flex-end;
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 24px;
  background: var(--gradient-btn);
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 18px var(--btn-shadow), 0 0 10px var(--shadow-blue);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
  background-size: 200% 200%;
  animation: gradient-text-animation 6s ease infinite;
}
.details-btn:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 0 8px 28px var(--btn-shadow), 0 0 14px #ffffffe6;
  transform: translateY(-4px) scale(1.05);
  text-shadow: 0 0 8px #fff;
}
.engage-section {
  padding: 80px 20px;
  background: #fff;
  box-sizing: border-box;
}
.content-center-engage {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}
.engage-recruit-widget,
.engage-iframe {
  width: 100%;
  max-width: 800px;
  height: 200px;
  min-height: 300px;
  border: none;
  display: block;
}
.title-job-recruit {
  margin-bottom: 30px;
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: #333;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .job-cat {
    display: block;
    text-align: center;
    align-items: center;
    width: 100%;
  }
  .recruit-card {
    width: 100% !important;
  }
  .job {
    text-align: center;
    font-size: 1.4rem;
  }
  .details-btn {
    align-self: center;
    padding: 14px 32px;
    font-size: 1rem;
  }
  .page-title-recruit {
    font-size: 2.2rem;
  }
  .page-title-recruit span {
    font-size: 1.2rem;
  }
  .job-cat {
    margin-left: -120px !important;
    margin-right: 0 !important;
  }
  .engage-widget-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    margin: 0;
  }
  .engage-iframe {
    padding: 10px;
    width: 100%;
    height: 330px !important;
    border: none;
  }
}
@media (max-width: 768px) {
  .recruit-card {
    width: 95%;
    min-height: auto;
    padding: 28px;
    margin-left: 0;
  }
  .job-details {
    display: none;
  }
  .job {
    text-align: center;
    font-size: 1.3rem;
  }
  .details-btn {
    align-self: center;
    padding: 14px 28px;
    font-size: 1rem;
  }
  .page-title-recruit {
    font-size: 2rem;
  }
  .page-title-recruit span {
    font-size: 1.1rem;
  }
  .job-cat {
    margin-right: 0 !important;
  }
  #recruit-site-content.members.page {
    margin-left: 0 !important;
  }
  .engage-widget-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  .engage-iframe {
    padding: 10px;
    width: 100%;
    height: 350px !important;
    border: none;
  }
}
.container-recruit {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  text-align: center;
}
#about-company {
  margin-left: 230px !important;
}
.header-recruit {
  display: flex;
  gap: 12px;
  padding: 19px 0;
  border-bottom: 2px solid #ddd;
}
.title-recruit {
  background: linear-gradient(90deg, #004080, #0059b3);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.top-job-recruit {
  font-weight: 700;
  font-size: 1.25rem;
  color: #222;
  flex-grow: 1;
  min-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.update-date-recruit {
  background-color: #777;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.section-recruit {
  margin-bottom: 24px;
}
.section-recruit h6 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #ddd;
  font-weight: 600;
  color: #333;
  text-align: left;
}
.section-recruit p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.6;
}
.apply-container-recruit {
  text-align: center;
  background: #f8f9fa;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 10px #00000014;
  max-width: 100%;
  margin: 40px auto 20px;
}
.apply-container-recruit h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
}
.apply-container-recruit p {
  margin-bottom: 16px;
}
.apply-box-recruit {
  margin: 10px 0;
}
.apply-box-recruit label {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.apply-box-recruit select {
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.apply-button {
  display: inline-block;
  background: #054e22;
  color: #fff !important;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 16px;
  font-weight: 700;
  transition: background 0.3s ease;
}
.apply-button:hover {
  background: #077a1e;
}
.page-header-recruit {
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.25rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 0 0 20px 20px;
  color: #fff;
  max-width: 100% !important;
  width: 100%;
  margin-left: 110px !important;
}
.page-title-recruit {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.page-title-recruit span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 12px;
  letter-spacing: 0.1em;
}
.loading {
  text-align: center;
  padding: 80px 20px;
  font-size: 1.3rem;
  color: #777;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
}
.error {
  text-align: center;
  padding: 40px 20px;
  color: #d32f2f;
}
.error button {
  background: #035497;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 700;
}
.error button:hover {
  background: #004080;
}
@media (max-width: 768px) {
  .container-recruit {
    padding: 0 16px;
  }
  .header-recruit {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-bottom: none;
    padding-bottom: 12px;
  }
  .title-recruit,
  .top-job-recruit,
  .update-date-recruit {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .title-recruit {
    font-size: 1rem;
    padding: 6px 14px;
  }
  .top-job-recruit {
    font-size: 1.1rem;
    min-width: auto;
  }
  .update-date-recruit {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  .section-recruit h6 {
    font-size: 1.1rem;
  }
  .section-recruit {
    margin-bottom: 15px;
  }
  .apply-container-recruit {
    padding: 16px;
  }
  .apply-button {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
  .page-title-recruit {
    font-size: 2rem;
  }
  .page-title-recruit span {
    font-size: 1.1rem;
  }
  .page-header-recruit,
  #about-company {
    margin-left: 0 !important;
  }
  .title-recruit,
  .update-date-recruit {
    display: none;
  }
}
@media (max-width: 480px) {
  .title-recruit {
    font-size: 0.95rem;
    padding: 5px 12px;
  }
  .top-job-recruit {
    font-size: 1rem;
  }
  .update-date-recruit {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  .section-recruit h6 {
    font-size: 1rem;
  }
  .section-recruit p {
    font-size: 0.95rem;
  }
  .page-header-recruit,
  #about-company {
    margin-left: 0 !important;
  }
  .title-recruit,
  .update-date-recruit {
    display: none;
  }
}
.client-section {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}
.client-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #000 !important;
  margin-bottom: 24px;
  line-height: 1.2;
}
.client-title .client-subtitle {
  display: block !important;
  font-size: 1rem;
  color: #0059b3;
  margin: 4px 0 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
}
.client-carousel-wrapper {
  overflow: hidden;
  position: relative;
}
.client-carousel-track {
  display: flex;
  gap: 24px;
  animation: client-scroll 25s linear infinite;
  will-change: transform;
}
.client-carousel-wrapper:hover .client-carousel-track {
  animation-play-state: paused;
}
@keyframes client-scroll {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
.client-card {
  flex: 0 0 220px;
  height: 170px;
  background: linear-gradient(135deg, #004080, #0059b3);
  border-radius: 20px;
  box-shadow: 0 8px 16px #00000026;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.client-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 24px #0040804d;
}
.client-card img {
  height: 60%;
  min-height: 84px;
  max-height: 84px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  margin: 8px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  display: block;
}
.client-card p {
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  padding: 0 10px;
  margin: 0;
  word-break: break-word;
}
@media screen and (max-width: 1024px) {
  .client-carousel-track {
    gap: 18px;
    animation-duration: 20s;
  }
  .client-card {
    flex: 0 0 180px;
    height: 120px;
  }
  .client-card img {
    min-height: 72px;
    max-height: 72px;
  }
  .client-card p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  .client-carousel-track {
    gap: 14px;
    animation-duration: 16s;
  }
  .client-card {
    flex: 0 0 140px;
    height: 110px;
  }
  .client-card img {
    min-height: 66px;
    max-height: 66px;
  }
  .client-card p {
    font-size: 0.85rem;
  }
  .client-carousel-wrapper {
    margin-left: 20px;
  }
}
@media screen and (max-width: 480px) {
  .client-card {
    flex: 0 0 190px;
    height: 120px;
  }
  .client-card img {
    margin-top: -4px;
    min-height: 60px;
    max-height: 60px;
  }
  .client-card p {
    font-size: 11px;
  }
}
.page-header-vision {
  background: linear-gradient(90deg, #004080, #0059b3);
  width: 100%;
  margin-left: 120px;
  text-align: center;
  height: 100%;
}
.page-title-vision {
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  padding: 30px;
  margin-bottom: -20px;
}
.page-SubTitle-vision {
  font-size: 1.3rem;
  font-style: italic;
  color: #fff;
  display: block;
}
.page-nav {
  text-align: center;
  margin: 20px 0;
  background-color: #e9e3e3;
  padding: 10px 0;
  border-radius: 6px;
}
.page-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.page-nav li {
  display: flex;
  align-items: center;
  color: #fff;
}
.page-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 8px;
  transition: color 0.3s ease;
}
.page-nav a:hover {
  text-decoration: underline;
  color: #ddd;
}
.page-title-representative span {
  color: #0059b3 !important;
}
.page-title-philosophy {
  margin-left: 240px !important;
  text-align: center;
  align-items: center;
}
.page-subTiltle-philosophy {
  margin-left: 0;
  font-size: 18px;
  color: #0059b3;
}
.content-vision-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  margin: 0 auto 0 110px;
}
.content-vision-details {
  margin-left: 250px;
}
.page-title-core {
  margin-left: 240px !important;
  text-align: center;
  align-items: center;
}
.page-subTiltle-core {
  margin-left: -30px;
  font-size: 18px;
  color: #0059b3;
}
.content-vision-header,
.page-title-core {
  font-size: 24px;
}
.core-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
.core-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px #0000001a;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  margin-left: 110px;
}
.core-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px #00000026;
}
.core-image {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  overflow: hidden;
}
.core-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.core-content {
  flex: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, #f8f9fa, #fff);
}
.core-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}
.core-details {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
.about-sectopn-vision {
  margin-left: 230px;
}
.page-title-about,
.page-title-history {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #222;
  text-align: center;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
  margin-left: 0;
}
.page-title-about span,
.page-title-history span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #0059b3;
  margin-top: 0.2rem;
}
.mission-block-about {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
  width: 100%;
  box-sizing: border-box;
}
.table-body-about,
.table-body-history {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto 3rem;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 12px #00000012;
  border-radius: 12px;
  overflow: hidden;
}
.table-body-about td,
.table-body-history td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  color: #444;
  line-height: 1.6;
}
.table_data1 {
  width: 25%;
  background-color: #f5f7fa;
  font-weight: 700;
  color: #333;
  border-right: 1px solid #ddd;
}
.table_data2,
.table_data3 {
  color: #444;
}
.table-body-history thead td {
  background: linear-gradient(90deg, #004080, #0059b3);
  color: #fff;
  font-weight: 700;
  border-bottom: none;
}
.table_data4,
.table_data5 {
  width: 20%;
  background-color: #f0f4f8;
  font-weight: 700;
  color: #333;
  border-right: 1px solid #ddd;
}
.table_data6 {
  width: 60%;
  background-color: #fff;
}
#representative-message-section.representative-message-section {
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  border-radius: 0;
  box-shadow: none;
}
.representative-mission-block {
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 8px 24px #00000014;
  padding: 2.5rem;
  border-radius: 16px;
  box-sizing: border-box;
}
.page-title-representative {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1f2937;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}
.page-title-representative span {
  display: block;
  font-size: 1rem;
  color: #6b7280;
  margin-top: 0.5rem;
}
.table-body-representative {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.table-body-representative td {
  padding: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #374151;
  background: #f9fafb;
  border-radius: 12px;
  box-shadow: inset 0 1px #00000005;
}
.details-content-representative {
  white-space: pre-wrap;
  margin-bottom: 1.5rem;
}
.bottom-right-representative {
  text-align: right;
  font-style: italic;
  color: #111827;
  margin-top: 1rem;
  font-size: 18px;
}
.name-with-line-representative {
  display: inline-block;
  padding-right: 0.5rem;
  position: relative;
  font-weight: 700;
  font-size: 1.1rem;
}
.name-with-line-representative:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #6b7280;
}
@media (max-width: 1024px) {
  .page-header-vision {
    margin-left: 139px;
  }
  .top-content-vision {
    margin-left: 120px;
    width: 95%;
  }
  .page-title-philosophy,
  .content-vision-header,
  .content-vision-details,
  .page-title-core {
    margin-left: 10px;
  }
  .page-title-philosophy {
    margin-left: -10px !important;
  }
  .page-title-core {
    margin-left: 4px !important;
  }
  .content-vision-details {
    padding: 20px;
  }
  .about-sectopn-vision {
    margin-left: 130px;
    width: 95%;
  }
  .table-body-about,
  .table-body-history {
    display: block;
    overflow-x: auto;
    width: 100%;
  }
  .table-body-about table,
  .table-body-history table {
    min-width: 600px;
  }
  .table-body-about td,
  .table-body-history td {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
  .page-title-about,
  .page-title-history {
    font-size: 1.5rem;
  }
  .core-card {
    margin-left: 10px !important;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .representative-mission-block,
  #company-history,
  .page-title-about {
    margin-left: 22px;
  }
  .table-body-about {
    margin-left: 10px;
  }
  .core-card {
    margin-left: -1px !important;
  }
  .page-header-vision {
    margin-left: 0;
  }
  .top-content-vision {
    margin-left: 10px;
  }
  .page-title-philosophy,
  .content-vision-header,
  .content-vision-details,
  .page-title-core {
    margin-left: 0;
  }
  .page-title-philosophy {
    margin-left: -10px !important;
  }
  .page-title-core {
    margin-left: 22px !important;
  }
  .content-vision-details {
    padding: 20px;
  }
  .about-sectopn-vision {
    margin-left: 0;
  }
  .table-body-about,
  .table-body-history {
    display: block;
    overflow-x: auto;
    width: 100%;
  }
  .table-body-about table,
  .table-body-history table {
    min-width: 600px;
  }
  .table-body-about td,
  .table-body-history td {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
  .page-title-about,
  .page-title-history {
    font-size: 1.5rem;
  }
  .core-card {
    flex-direction: column;
    margin-left: 0;
  }
  .core-image,
  .core-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .core-content {
    padding: 1.2rem;
  }
}
:root {
  --gradient: linear-gradient(45deg, #ff9a9e, #fad0c4);
  --card: linear-gradient(135deg, #2b1055, #6a93e2, #ffd084);
  --text-primary: #ffffff;
  --text-secondary: #fff5cc;
  --text-subtle: #e0e0e0;
  --btn-gradient: linear-gradient(90deg, #ffcf71, #ff8a00);
  --btn-shadow: rgba(255, 168, 0, 0.5);
}
.page-header-service {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
  box-sizing: border-box;
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.25rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: -20px;
  margin-left: -120px;
}
.page-title-service {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: #fff;
}
.page-title-service span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 12px;
  letter-spacing: 0.1em;
  margin-left: 0;
}
@keyframes animate-card-bg {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0% 50%;
  }
}
@keyframes animate-border {
  0%,
  to {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.service-card {
  display: flex;
  align-items: center;
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: auto;
  margin-block: 40px;
  padding: 44px 30px;
  background: var(--card);
  background-size: 300% 300%;
  animation: animate-card-bg 8s ease infinite;
  border-radius: 24px;
  color: var(--text-primary);
  box-shadow: 12px 8px 15px #00000080;
  margin-left: 120px !important;
}
.service-card img {
  max-width: 36vw;
  max-height: 300px;
  object-fit: cover;
  margin-left: -60px;
  margin-right: 30px;
  border-radius: 24px;
  box-shadow: 0 60px 40px #00000014;
  transition: border-radius 0.3s;
}
.service-card h2 {
  font-size: 22px;
  font-weight: 400;
  margin: 0 30px 10px 0;
}
.service-card h3 {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.75;
  margin-bottom: 15px;
}
.service-card p {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.5;
}
.socials > button {
  position: relative;
  border: 0;
  background: transparent;
  color: #f8f8f8;
  padding: 10px;
}
.socials > button:first-child:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 125px;
  height: 60px;
  translate: -50% -50%;
  border-radius: 50%;
  background: var(--gradient);
  transition: 0.3s;
  transform: translateY(0);
}
.socials > button > a {
  position: relative;
  z-index: 1;
  border: 4px solid var(--card);
  background: #3f3b39;
  display: grid;
  place-items: center;
  font-size: 20px;
  height: 25px;
  width: 120px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
}
.not-ready {
  color: #ffb76b;
  font-weight: 600;
  font-size: 1.1rem;
}
.service-card .service-card-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #0c0746;
  border-radius: 40px;
  box-shadow: 0 16px 40px #00000047;
  padding: 3.2rem 4.5rem;
  margin: 2.5rem auto;
  min-height: 370px;
  max-width: 1200px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.service-card-image {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  margin-right: 4rem;
}
.card-image img {
  width: 370px;
  height: 240px;
  object-fit: contain;
  border-radius: 28px !important;
  background: #fff;
  box-shadow: 0 8px 32px #00000021;
  display: block;
}
.service-card-content {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-left: 0;
}
.card-content h1,
.card-content h2,
.card-content h3 {
  color: var(--text-secondary) !important;
  font-weight: 700;
  line-height: 1.4;
  margin-left: -70px !important;
}
.card-content h2 {
  font-size: 22px !important;
  color: #ffefb2 !important;
}
.card-content h3 {
  font-size: 18px;
  color: #e0d7ff !important;
}
.card-content p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-subtle);
  line-height: 1.8;
  margin-left: -70px !important;
}
.view-more-btn {
  position: relative;
  display: inline-block;
  padding: 0.6rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #2b1055;
  background: var(--btn-gradient);
  border: 3px solid transparent;
  border-radius: 999px;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  box-shadow: 0 0 8px var(--btn-shadow), 0 8px 20px var(--btn-shadow);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}
.view-more-btn:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--btn-gradient);
  z-index: -1;
  border-radius: 999px;
  background-size: 400% 400%;
  animation: animate-border 6s ease infinite;
}
.view-more-btn:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--btn-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 999px;
  z-index: 0;
}
.view-more-btn:hover:after {
  opacity: 0.15;
}
.view-more-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--btn-shadow), 0 8px 30px var(--btn-shadow);
  color: #2b1055;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .page-header-service {
    margin-left: -10 !important;
    padding: 2rem 1rem;
    margin-top: 2px;
    margin-bottom: 50px !important;
  }
  .page-title-service {
    font-size: 1.7rem;
    font-weight: 800;
  }
  .page-title-service span {
    margin-left: 0;
  }
  .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100vh !important;
    max-width: 100%;
    padding: 1.5rem 1rem;
    margin: 20px auto;
    box-sizing: border-box;
    border-radius: 20px;
    gap: 2rem;
    margin-left: 108px !important;
    gap: 1.5rem;
    height: 390px;
    max-height: 100%;
    margin-bottom: 40px !important;
    margin-top: 150px;
  }
  .service-card img {
    margin-top: -350px !important;
    margin-left: 60px !important;
    width: 100% !important;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    margin: 0;
  }
  .card-content h2,
  .card-content h3,
  .card-content p {
    text-align: center;
    margin: 0 auto;
    margin-left: 15px !important;
  }
  .card-content h2 {
    font-size: 18px;
    margin: 0.4rem 0 0.2rem;
    margin-top: -250px;
  }
  .card-content h3 {
    font-size: 15px;
    margin-bottom: 0.2rem;
    opacity: 0.8;
  }
  .card-content p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    opacity: 0.7;
  }
  .view-more-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 0.2rem;
  }
}
@media (width: 768px) {
  .page-header-service {
    margin-left: 0 !important;
    padding: 2rem 1rem;
  }
  .page-title-service {
    font-size: 1.7rem;
    font-weight: 800;
  }
  .page-title-service span {
    margin-left: 0;
  }
  .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 92% !important;
    padding: 1.5rem 1rem;
    margin: 20px auto;
    box-sizing: border-box;
    border-radius: 20px;
    gap: 2rem;
    margin-left: 17px !important;
    gap: 1.5rem;
    height: 390px;
    max-height: 100%;
    margin-bottom: 40px !important;
    margin-top: 100px;
  }
  .service-card img {
    margin-top: -320px !important;
    margin-left: 60px !important;
    width: 100% !important;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    margin: 0;
  }
  .card-content h2,
  .card-content h3,
  .card-content p {
    text-align: center;
    margin: 0 auto;
    margin-left: 15px !important;
  }
  .card-content h2 {
    font-size: 18px;
    margin: 0.4rem 0 0.2rem;
    margin-top: -230px;
  }
  .card-content h3 {
    font-size: 15px;
    margin-bottom: 0.2rem;
    opacity: 0.8;
  }
  .card-content p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    opacity: 0.7;
  }
  .view-more-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 0.2rem;
  }
}
@media (max-width: 767px) {
  .page-header-service {
    margin-left: 0 !important;
    padding: 2rem 1rem;
    margin-bottom: 40px !important;
  }
  .page-title-service {
    font-size: 1.7rem;
    font-weight: 800;
  }
  .page-title-service span {
    margin-left: 0;
  }
  .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 92% !important;
    padding: 1.5rem 1rem;
    margin: 20px auto;
    box-sizing: border-box;
    border-radius: 20px;
    gap: 2rem;
    margin-left: 17px !important;
    gap: 1.5rem;
    height: 390px;
    max-height: 100%;
    margin-bottom: 60px !important;
  }
  .service-card img {
    margin-top: -320px !important;
    margin-left: 60px !important;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    object-fit: cover;
    border-radius: 16px;
    margin: 0;
  }
  .card-content h2,
  .card-content h3,
  .card-content p {
    text-align: center;
    margin: 0 auto;
    margin-left: 15px !important;
  }
  .card-content h2 {
    font-size: 18px !important;
    margin: 0.4rem 0 0.2rem;
    margin-top: -280px;
  }
  .card-content h3 {
    font-size: 15px;
    margin-bottom: 0.2rem;
    opacity: 0.8;
  }
  .card-content p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    opacity: 0.7;
  }
  .view-more-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 0.2rem;
  }
}
.page-header-sales {
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative;
  box-sizing: border-box;
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.25rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}
.page-title-sales {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: #fff;
}
.page-subTitle-sales {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 12px;
  letter-spacing: 0.1em;
  margin-left: 0;
}
section h3 {
  font-size: 22px !important;
  color: #333;
  border-bottom: 2px solid #007bff;
  padding-bottom: 5px;
  text-align: center;
  margin-top: 10px;
}
section h3:after {
  content: "";
  display: block;
  width: 90%;
  height: 3px;
  margin: 0.6rem auto 0;
  background: linear-gradient(to right, #007bff, #00c6ff);
  border-radius: 3px;
  margin-bottom: 4px;
}
.clearfix-sales {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.col-sales-content {
  flex: 0 0 30%;
  max-width: 30%;
}
.sales-details-content {
  flex: 1;
  width: 950px;
  max-width: 100%;
  margin: 20px auto 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.col-sales-content img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 8px #0000001a;
  transition: transform 0.3s ease;
}
.col-sales-content img:hover {
  transform: scale(1.02);
}
.sales-details-content {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px #0000001a;
}
.sales-details-content h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #333;
}
@media screen and (min-width: 1600px) {
  .page-header-sales {
    margin-top: -50px;
  }
  .sales-details-content {
    margin-bottom: 40px;
    text-align: center;
    align-items: center;
    margin-left: 150px;
    width: 95%;
  }
  .sales-details {
    margin-top: 50px;
  }
  .page-leak-container,
  .page-narufuru-container {
    margin-left: 115px;
    width: 100%;
  }
  .aize_center {
    margin-top: -5px !important;
  }
  .card-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px #0000001a;
    width: 100%;
    width: 1360px !important;
    margin: 0 auto 50px -50px;
  }
}
@media screen and (min-width: 1900px) {
  .page-header-sales {
    margin-top: -50px;
  }
  .sales-details-content {
    margin-bottom: 40px;
    text-align: center;
    align-items: center;
    margin-left: 150px;
    width: 95%;
  }
  .sales-details {
    margin-top: 50px;
  }
  .page-leak-container,
  .page-narufuru-container {
    margin-left: 115px;
    width: 100%;
  }
  .aize_center {
    margin-top: -5px !important;
  }
  .card-box {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px #0000001a;
    width: 100%;
    width: 1600px !important;
    margin: 0 auto 50px -50px;
  }
}
.big_title {
  margin: 70px 5px 0;
  font-size: 15pt !important;
  text-align: center;
}
.big_title strong {
  font-size: 30pt !important;
  font-weight: 700;
}
.sales-aize-content {
  margin-left: 210px;
}
.aize_center {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin: 60px 0 40px;
  font-family: Yu Gothic, 游ゴシック, YuGothic, sans-serif;
}
.container {
  position: relative;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "i l j " "a z e" "b z f" "c z g" "d k h";
  gap: -2px;
  justify-items: center;
  align-items: center;
  margin: 10px 0 70px;
}
.a,
.b,
.c,
.d,
.e,
.f,
.g,
.h,
.i,
.j {
  margin: 0;
  padding: 15px;
  width: 230px;
  text-align: center;
}
.k,
.l {
  margin: 0 15px;
  padding: 15px;
  width: 290px;
  text-align: center;
}
.a a,
.b a,
.c a,
.d a,
.e a,
.f a,
.g a,
.h a,
.i a,
.j a,
.k a,
.l a {
  text-decoration: none;
  font: 15px;
  color: #000039;
  font-family: Yu Gothic Medium, 游ゴシック Medium, 游ゴシック体, YuGothic,
    游ゴシック, Yu Gothic, sans-serif;
}
.z {
  height: 300px;
  width: 600px;
  max-width: 100%;
}
.a {
  grid-area: a;
  justify-self: end;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
  margin-right: 30px;
}
.b {
  grid-area: b;
  justify-self: end;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
  margin-right: 50px;
}
.c {
  grid-area: c;
  justify-self: end;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
  margin-right: 30px;
}
.d {
  grid-area: d;
  justify-self: end;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
}
.z {
  grid-area: z;
  border: 3px solid #f04040;
  border-right: 15px solid #f04040;
  border-left: 15px solid #f04040;
  border-radius: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.e {
  grid-area: e;
  justify-self: start;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
  margin-left: 30px;
}
.f {
  grid-area: f;
  justify-self: start;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
  margin-left: 50px;
}
.g {
  grid-area: g;
  justify-self: start;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
  margin-left: 30px;
}
.h {
  grid-area: h;
  justify-self: start;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
}
.i {
  grid-area: i;
  justify-self: end;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
}
.j {
  grid-area: j;
  justify-self: start;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
}
.k {
  grid-area: k;
  justify-self: center;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
}
.l {
  grid-area: l;
  justify-self: center;
  border: 3px solid #f04040;
  border-left: 10px solid #f04040;
  border-right: 10px solid #f04040;
  border-radius: 50px;
}
@media (min-width: 769px) and (max-width: 1440px) {
  .aize_center {
    margin-left: 90px;
    margin-top: -5px !important;
  }
  .card-box {
    position: relative;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px #0000001a;
    width: 100%;
    width: 1200px !important;
    margin: 0 auto 50px -90px;
  }
  .sales-aize-content {
    margin-left: 125px;
    margin-bottom: 30px;
  }
  .container {
    position: relative;
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "i l j " "a z e" "b z f" "c z g" "d k h";
    gap: 1px;
    justify-items: center;
    align-items: center;
    margin: 10px 0 70px;
  }
  .a,
  .b,
  .c,
  .d,
  .e,
  .f,
  .g,
  .h,
  .i,
  .j {
    margin: 10 px;
    padding: 15px;
    width: 220px;
    text-align: center;
  }
  .k,
  .l {
    margin: 0 15px;
    padding: 15px;
    width: 290px;
    text-align: center;
  }
  .a a,
  .b a,
  .c a,
  .d a,
  .e a,
  .f a,
  .g a,
  .h a,
  .i a,
  .j a,
  .k a,
  .l a {
    text-decoration: none;
    font: 15px;
    color: #000039;
    font-family: Yu Gothic Medium, 游ゴシック Medium, 游ゴシック体, YuGothic,
      游ゴシック, Yu Gothic, sans-serif;
  }
  .z {
    height: 250px;
    width: 450px;
    max-width: 100%;
  }
  .page-leak-container,
  .page-narufuru-container {
    margin-left: 115px;
    width: 100%;
  }
  .col-sales-content {
    display: none;
  }
  .sales-details-content {
    margin-left: 160px !important;
    margin-bottom: 20px;
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .sales-details-content {
    margin-left: 0;
    margin-bottom: 20px;
  }
  .col-sales-content {
    display: none;
  }
  .sales-details.sales-paragraph {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .sales-details-content h3 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .sales-aize-content {
    margin-left: -10px;
  }
  .aize_center {
    margin-left: 0;
  }
  .container {
    position: relative;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-template-areas: "a e" "b f" "c g" "d h" "i j" "k l";
    margin: 0 0 70px;
  }
  .a,
  .b,
  .c,
  .d,
  .e,
  .f,
  .g,
  .h,
  .i,
  .j,
  .k,
  .l {
    margin: 0;
    padding: 15px;
    width: 250px;
    font-size: 15px;
  }
  .z {
    display: none;
  }
  .a {
    grid-area: a;
    border: 3px solid #f04040;
    border-radius: 30px;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .b {
    grid-area: b;
    border: 3px solid #f04040;
    border-radius: 30px;
    margin-right: 0;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .c {
    grid-area: c;
    border: 3px solid #f04040;
    border-radius: 30px;
    margin-right: 0;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .d {
    grid-area: d;
    border: 3px solid #f04040;
    border-radius: 30px;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .e {
    grid-area: e;
    border: 3px solid #f04040;
    border-radius: 30px;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .f {
    grid-area: f;
    border: 3px solid #f04040;
    border-radius: 30px;
    margin-left: 0;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .g {
    grid-area: g;
    border: 3px solid #f04040;
    border-radius: 30px;
    margin-left: 0;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .h {
    grid-area: h;
    border: 3px solid #f04040;
    border-radius: 30px;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .i {
    grid-area: i;
    border: 3px solid #f04040;
    border-radius: 30px;
    margin-left: 0;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .j {
    grid-area: j;
    border: 3px solid #f04040;
    border-radius: 30px;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .k {
    grid-area: k;
    border: 3px solid #f04040;
    border-radius: 30px;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
  .l {
    grid-area: l;
    border: 3px solid #f04040;
    border-radius: 30px;
    border-right: 10px solid #f04040;
    border-left: 10px solid #f04040;
  }
}
@media (max-width: 480px) {
  .sales-aize-content {
    margin-left: -10px;
    margin-bottom: 20px;
  }
  .col-sales-content {
    display: none;
  }
  .sales-details.sales-paragraph {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .sales-details-content h3 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .aize_center {
    margin-left: 0;
    font-size: 22px;
    margin-bottom: 10px;
  }
  .a,
  .b,
  .c,
  .d,
  .e,
  .f,
  .g,
  .h,
  .i,
  .j,
  .k,
  .l {
    margin: 10px;
    padding: 15px;
    width: 190px;
    font-size: 10px;
  }
}
.a:hover,
.b:hover,
.c:hover,
.d:hover,
.e:hover,
.f:hover,
.g:hover,
.h:hover,
.i:hover,
.j:hover,
.k:hover,
.l:hover {
  background-color: #035678;
  border-radius: 15px;
}
.a a:hover,
.b a:hover,
.c a:hover,
.d a:hover,
.e a:hover,
.f a:hover,
.g a:hover,
.h a:hover,
.i a:hover,
.j a:hover,
.k a:hover,
.l a:hover {
  color: #fff;
}
.index_aize_logo {
  width: 100%;
  padding: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.index_aize_logo img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.aize_inquiry a {
  text-decoration: none !important;
}
.aize_inquiry h3 {
  margin: 0 !important;
}
.detail-center {
  margin: -50px 0 -20px;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 30px !important;
  box-sizing: border-box;
  text-align: center !important;
}
.detail-center p {
  max-width: 1200px;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
}
.hero-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 15px #0003;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.hero-button:hover {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  transform: translateY(-3px);
  box-shadow: 0 12px 20px #0000004d;
}
.facial-pdf {
  width: calc(100vw - 250px);
  height: 100vh;
  margin-left: 132px;
  overflow: hidden;
  background-color: #f5f5f5;
  z-index: 9999;
}
.facial-pdf embed {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .facial-pdf {
    left: 0;
    width: 100vw;
    height: 70vh;
  }
}
@media (max-width: 767px) {
  body,
  html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  .facial-pdf {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: auto;
    background-color: #f5f5f5;
    z-index: 9999;
  }
  .facial-pdf embed {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
  }
}
.hardware-page-header {
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 18px #005ab359;
  border-radius: 0 0 24px 24px;
  color: #fff;
  width: 100%;
  margin-left: 116px !important;
}
.hardware-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Noto Sans JP, Poppins, sans-serif;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: center;
}
.hardware-page-title span {
  font-size: 17px !important;
  font-weight: 700;
  font-family: Noto Sans JP, Poppins, sans-serif;
  color: #d1e6f3 !important;
  display: block;
  margin-top: 0.2rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.card-hardware {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  margin-left: 120px;
}
.hardware-card-item {
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px #00000014;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.hardware-inner-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px #00000014;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.hardware-inner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #0000001a;
}
.hardware-image {
  width: 100%;
  height: 190px;
  background-color: #f9f9f9;
  overflow: hidden;
}
.hardware-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hardware-inner-box:hover .hardware-image img {
  transform: scale(1.05);
}
.hardware-lower-content {
  padding: 16px;
  text-align: center;
}
.hardware-lower-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
}
.hardware-lower-content h4 {
  font-size: 16px;
  font-weight: 500;
  color: #007bff;
  margin-bottom: 12px;
}
.hardware-button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hardware-read-more,
.harware-buy-now {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  color: #fff;
}
.hardware-read-more i,
.harware-buy-now i {
  color: inherit;
}
.hardware-read-more {
  background-color: #6c757d;
}
.hardware-read-more:hover {
  background-color: #5a6268;
}
.harware-buy-now {
  background-color: #28a745;
}
.harware-buy-now:hover {
  background-color: #218838;
}
.no-hardware {
  text-align: center;
  padding: 50px 20px;
  width: 100%;
}
.no-hardware-card {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 10px;
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
}
.no-hardware-card h2 {
  color: #6c757d;
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hardware-page-header {
    margin-left: 0 !important;
  }
  .hardware-page-title {
    font-size: 1.5rem;
  }
  .card-hardware {
    gap: 15px;
    padding: 15px;
    margin-left: 0;
  }
  .hardware-card-item {
    width: 100%;
    max-width: 340px;
  }
  .hardware-lower-content {
    padding: 12px;
  }
  .hardware-lower-content h3 {
    font-size: 16px;
  }
  .hardware-lower-content h4 {
    font-size: 14px;
  }
  .hardware-button-group {
    flex-direction: column;
    gap: 8px;
  }
  .hardware-read-more,
  .harware-buy-now {
    width: 100%;
    justify-content: center;
  }
  .no-hardware-card {
    padding: 30px 20px;
  }
  .no-hardware-card h2 {
    font-size: 20px;
  }
}
.single-product-details {
  width: 100%;
  margin: 0 0 0 120px;
  background: #fff;
  box-shadow: 0 10px 30px #0000001a;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}
.hardware-single-page-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #004080, #0059b3);
  height: 150px;
  text-align: center;
}
.hardware-page-title {
  font-size: 2rem;
  color: #fff;
  margin: 0;
}
.hardware-page-title span {
  display: block;
  font-size: 1rem;
  color: #a1cef3;
  margin-top: 5px;
}
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
  color: #fff;
  font-size: 24px;
  padding: 1px;
  border: none;
  cursor: pointer;
}
.prev-btn:hover,
.next-btn:hover {
  background: transparent !;
}
.prev-btn {
  left: 1px;
}
.next-btn {
  right: 1px;
}
.thumbnail:hover {
  transform: scale(1);
  opacity: 0;
}
.buy-now {
  display: block;
  background: #3498db;
  color: #fff;
  font-size: 18px;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
  margin-top: 15px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .single-product-details {
    margin: 0;
  }
  .product-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .buy-now {
    width: 100%;
  }
  .prev-btn,
  .next-btn {
    font-size: 18px;
    padding: 8px;
  }
  .thumbnail {
    width: 50px;
    height: 50px;
  }
  .description-container {
    width: 90%;
  }
}
.single-service-details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.single-service-details-page-header {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  box-sizing: border-box;
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.25rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: -32px;
  margin-left: -120px;
}
.single-service-details-page-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  margin-left: 195px;
}
.single-service-details-page-title span {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
  margin-top: 0.4rem;
}
.single-service-details-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  background: #f9f9fb;
  border-radius: 16px;
  box-shadow: 0 8px 24px #0000000d;
  padding: 2.5rem;
  max-width: 1400px;
  width: 100%;
  margin-left: 110px;
}
.single-service-details-content h4 {
  font-size: 1.2rem;
  color: #036;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
  position: relative;
  padding-bottom: 0.5rem;
}
.single-service-details-content h4:after {
  content: "";
  display: block;
  width: 90%;
  height: 3px;
  margin: 0.6rem auto 0;
  background: linear-gradient(to right, #007bff, #00c6ff);
  border-radius: 3px;
}
.clearfix-single-service-details {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.image-single-service-details {
  flex: 0 0 300px;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-single-service-details img {
  margin-top: 10% !important;
  width: 100%;
  height: 200px;
  max-height: 600px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 18px #0000001a;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.image-single-service-details img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px #00000026;
}
.col_6 {
  flex: 1;
  min-width: 300px;
}
.service-details {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px #0000000f;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}
.service-details p {
  margin-bottom: 1.2rem;
}
.loading,
.error {
  text-align: center;
  padding: 2rem;
  font-size: 1.1rem;
}
.loading {
  color: #555;
}
.error {
  color: #d9534f;
}
.button-group {
  margin-top: 20px;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.contact-btn:hover {
  background-color: #0056b3;
}
@media screen and (min-width: 1600px) {
  .single-service-details-page-title {
    margin-left: -100px !important;
  }
}
@media (max-width: 768px) {
  .image-single-service-details img {
    margin-top: 120px !important;
    width: 100%;
    height: 200px;
    max-height: 600px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 18px #0000001a;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .single-service-details-page-header {
    margin-left: -17px;
  }
  .single-service-details-content {
    margin-left: 0;
    margin-top: 12px;
    margin-bottom: -10px;
  }
  .single-service-details {
    padding: 1.5rem 1rem;
  }
  .single-service-details-page-title {
    font-size: 2rem;
    margin-left: 0;
  }
  .single-service-details-content {
    flex-direction: column;
    padding: 1.5rem;
  }
  .service-image-wrapper {
    max-width: 100%;
  }
  .image-single-service-details {
    margin-top: -90px !important;
  }
  .service-image-wrapper img {
    max-height: 240px;
  }
  .service-details {
    padding: 1.2rem;
    font-size: 16px;
    margin-top: -20px;
  }
  .single-service-details-content h4 {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .single-service-details-page-title {
    font-size: 1.7rem;
  }
  .single-service-details-page-title span {
    font-size: 0.95rem;
  }
  .service-image-wrapper img {
    max-height: 200px;
  }
  .service-details {
    padding: 1rem;
    font-size: 15.5px;
  }
  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}
#site-content.page-notice {
  width: 100% !important;
  min-height: 100vh;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(135deg, #eef6ff, #d9e9ff);
  font-family: Poppins, sans-serif;
  color: #1a2a55;
  margin: 0 0 0 115px !important;
}
.notice-page-header {
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 18px #005ab359;
  border-radius: 0 0 24px 24px;
  color: #fff;
  width: 100%;
  margin-left: 0 !important;
}
.notice-page-titles {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Noto Sans JP, Poppins, sans-serif;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: center;
}
.notice-page-titles span {
  font-size: 17px;
  font-weight: 700;
  font-family: Noto Sans JP, Poppins, sans-serif;
  color: #d1e6f3;
  display: block;
  margin-top: 0.2rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.notice-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.notice-card {
  display: flex;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px #0055aa1a;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.notice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px #05a3;
}
.notice-link {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: inherit;
  align-items: stretch;
}
.notice-thumb {
  flex: 0 0 340px;
  max-width: 340px;
  background: #fff;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.notice-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.notice-card:hover .notice-image {
  transform: scale(1.05);
}
.notice-content {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #1a2a55;
  gap: 8px;
}
.notice-category {
  display: inline-block;
  background: linear-gradient(45deg, #0053ba, #002f6c);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4em 1.4em 0.4em 1.1em;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-top: -20px;
}
.notice-title {
  font-size: 20px !important;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: #0e1d3a;
  padding-bottom: 6px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
  cursor: pointer;
}
.notice-title:hover {
  color: #0053ba;
}
.notice-date {
  font-size: 0.95rem;
  color: #6c7a99;
  align-self: flex-end;
}
@media (max-width: 992px) {
  .notice-page-titles {
    font-size: 1.8rem;
  }
  .notice-page-titles span {
    font-size: 1rem;
  }
  .notice-card {
    flex-direction: column;
  }
  .notice-thumb {
    display: none;
  }
  .notice-content {
    padding: 16px;
  }
  .notice-title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #site-content.page-notice {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .notice-page-titles {
    font-size: 1.8rem;
  }
  .notice-page-titles span {
    font-size: 1rem;
  }
  .notice-card {
    flex-direction: column;
  }
  .notice-thumb {
    display: none;
  }
  .notice-content {
    padding: 16px;
  }
  .notice-title {
    font-size: 18px;
  }
}
.notice-header-bg .notice-main-title,
.notice-header-bg .notice-main-subtitle {
  color: #fff !important;
}
.notice-wrapper {
  background: #f9fbff;
  padding-bottom: 60px;
  min-height: 100vh;
  font-family: Segoe UI, Meiryo, sans-serif;
  width: 100%;
  margin-left: 100px;
}
.notice-header-bg {
  background: linear-gradient(90deg, #004080, #0059b3);
  color: #fff;
  padding: 60px 20px 40px;
  text-align: center;
}
.notice-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.05em;
}
.notice-main-subtitle {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #cfe2ff;
}
.notice-content {
  max-width: 900px;
  background: #fff;
  margin: 40px auto 0;
  padding: 40px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px #0000000f;
}
.notice-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: nowrap;
}
.notice-category {
  background: #002147;
  color: #fff;
  padding: 4px 12px !important;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  -webkit-user-select: none;
  user-select: none;
  margin-top: -10px;
}
.notice-date {
  color: #555;
  font-size: 1rem;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  margin-top: -30px;
}
.notice-title {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 3px solid #002147;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #002147;
  text-align: center;
}
.notice-details {
  font-size: 1.1rem;
  line-height: 2;
  color: #222;
  text-align: left;
}
.bullet-heading {
  margin-top: 40px;
  padding: 20px 24px;
  background: #f0f4ff;
  border-left: 6px solid #003366;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0033661a;
  color: #036;
  font-size: 1.05rem;
  white-space: normal;
  line-height: 1.9;
  word-break: break-word;
}
.loading,
.error {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.2rem;
  color: #333;
}
@media (max-width: 768px) {
  .notice-wrapper {
    margin-left: 0;
  }
  .notice-main-title {
    font-size: 2rem;
  }
  .notice-title {
    font-size: 1.5rem;
  }
  .notice-content {
    padding: 24px 16px;
  }
  .bullet-heading {
    font-size: 1rem;
    padding: 16px;
  }
  .notice-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .notice-date {
    white-space: normal;
  }
  .notice-header-bg .notice-main-title,
  .notice-header-bg .notice-main-subtitle {
    font-size: 24px;
  }
  .notice-wrapper {
    width: 100%;
    margin-left: 0;
  }
}
.loading {
  text-align: center;
  padding: 2rem;
  font-size: 1.1rem;
  color: #666;
}
.page-contact-container {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.page-header-contact {
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 18px #005ab359;
  border-radius: 0;
  color: #fff;
  width: 100%;
  margin-left: 120px;
  margin-bottom: 20px;
}
.page-title-contact {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Noto Sans JP, Poppins, sans-serif;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: center;
}
.page-title-contact span {
  font-size: 17px;
  font-weight: 700;
  font-family: Noto Sans JP, Poppins, sans-serif;
  color: #d1e6f3;
  display: block;
  margin-top: 0.2rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.page-contact-container section h2 span {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
  margin-left: 220px;
}
.col-7-contact p {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 1.6em;
  text-align: center;
  margin-left: 220px;
}
.clearfix-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
  margin-left: 230px;
  margin-bottom: 30px;
}
.col-half-left,
.col-half-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.inner-left,
.inner-right {
  flex: 1;
  border: 1px solid #e6e6e6;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  align-items: center;
  text-align: center;
}
.inner-left h3,
.inner-right h3 {
  text-align: center;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.context-color {
  font-size: 22px;
  color: #0b72ad;
  margin-top: 20px;
}
.num-section {
  font-family: Lora, sans-serif;
  font-size: 26px;
  text-align: center;
  margin: 1rem 0;
  font-weight: 600;
}
.num-section a {
  color: #035497;
  text-decoration: none;
  transition: color 0.3s ease;
}
.num-section a:hover {
  color: #004080;
}
.num-section span {
  display: block;
}
.num-section-phone {
  font-size: 29px;
  font-weight: 700;
  background: linear-gradient(90deg, #0040ff, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 3s ease-in-out infinite;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}
.mailcontain {
  background: linear-gradient(90deg, #0040ff, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 3s ease-in-out infinite;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}
.num-section-phone svg,
#emailLink svg {
  font-size: 29px;
  height: 29px;
  width: 29px;
  vertical-align: middle;
  background: linear-gradient(90deg, #0040ff, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 3s ease-in-out infinite;
}
@keyframes shimmerText {
  0% {
    background-position: -200% center;
  }
  to {
    background-position: 200% center;
  }
}
#emailProvider {
  background: transparent;
  border: 1px solid lightblue;
  color: #00008b;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1rem;
  display: block;
}
#emailProvider option {
  background: #fff;
  color: #00008b;
  font-weight: 700;
}
#emailLink {
  color: #035497;
  text-decoration: none;
  font-weight: 700;
  margin-top: 1rem;
  transition: color 0.3s ease;
  display: inline-block;
  font-size: 26px;
}
#emailLink:hover {
  color: #004080;
  text-decoration: underline;
}
#emailLink span {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-header-contact,
  .page-contact-container section h2 span,
  .col-7-contact p {
    margin-left: 20;
    text-align: center;
    margin-bottom: 10px;
  }
  .clearfix-contact {
    flex-direction: column;
    margin-left: 20;
    align-items: center;
    gap: 2rem;
  }
  .col-half-left,
  .col-half-right {
    width: 100%;
    max-width: 600px;
  }
  .inner-left,
  .inner-right {
    padding: 2rem;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
  .page-title-contact {
    font-size: 2.2rem;
  }
  .page-title-contact span {
    font-size: 1.6rem;
  }
  .num-section {
    font-size: 30px;
  }
  #emailProvider {
    max-width: 100%;
    font-size: 15px;
  }
  #emailLink {
    font-size: 24px;
  }
  #emailLink span {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .page-header-contact,
  .page-contact-container section h2 span,
  .col-7-contact p {
    margin-left: 0;
  }
  .col-7-contact p {
    padding: 0 20px;
  }
  .inner-left,
  .inner-right {
    margin: 0 10px 10px -220px;
  }
  .page-title-contact {
    font-size: 2rem;
  }
  .page-title-contact span {
    font-size: 1rem;
  }
  .clearfix-contact {
    flex-direction: column;
    gap: 1.5rem;
  }
  .col-half-left,
  .col-half-right {
    width: 100%;
  }
  .inner-left,
  .inner-right {
    padding: 1.5rem;
  }
  .num-section {
    font-size: 28px;
  }
  #emailProvider {
    font-size: 14px;
    max-width: 100%;
  }
  #emailLink span {
    font-size: 18px !important;
  }
}
html,
body {
  margin: 0;
  padding: 0;
}
#site-content.vision-page {
  width: 100% !important;
  min-height: 100vh;
  margin: 0 !important;
  padding: 0;
  box-sizing: border-box;
}
.access-page-header {
  height: 202px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  #site-content.vision-page {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .access-page-header {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  #site-content.vision-page {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .access-page-header {
    margin-left: 0 !important;
  }
}
.access-page-header {
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 18px #005ab359;
  border-radius: 0 0 24px 24px;
  color: #fff;
  width: 100%;
  margin-left: 116px !important;
}
.access-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Noto Sans JP, Poppins, sans-serif;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: center;
}
.access-page-title span {
  font-size: 17px;
  font-weight: 700;
  font-family: Noto Sans JP, Poppins, sans-serif;
  color: #d1e6f3;
  display: block;
  margin-top: 0.2rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.access-page-nav {
  background-color: #f5f9fc;
  width: 1900px !important;
  padding: 12px 0;
  margin-top: 25px;
  box-shadow: 0 2px 6px #0000000d;
}
.access-page-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.access-page-nav li {
  font-size: 1rem;
  color: #004080;
  font-family: Noto Sans JP, Poppins, sans-serif;
}
.access-page-nav a {
  color: #004080;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.access-page-nav a:hover {
  color: #0073e6;
  text-decoration: underline;
}
.access {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.access section {
  width: 100%;
  margin-bottom: 40px;
}
.maps {
  padding: 0 20px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin-left: 120px;
}
.office-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 10px;
  background: none;
  padding: 0;
}
.office-address {
  margin-top: 15px;
  margin-bottom: 15px;
}
.maps p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
}
.maps iframe {
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px #0000001a;
}
@media screen and (max-width: 480px) {
  .access-page-title {
    font-size: 1.4rem;
  }
  .access-page-title span {
    font-size: 0.95rem;
  }
  .office-title {
    font-size: 1.1rem;
    margin-top: 0;
    margin-left: 0;
  }
  .office-address {
    margin-top: 0;
    margin-left: 0;
  }
  .maps p {
    font-size: 0.85rem;
  }
  .access-page-header {
    margin-top: -20px;
    margin-left: 0 !important;
    margin-bottom: 40px;
  }
  .access-page-header {
    height: 180px;
    width: 100%;
  }
  .maps {
    margin-left: 0;
  }
}
.policy-page-container {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  box-sizing: border-box;
}
.policy-page-header {
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.25rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  width: 100%;
  margin-left: 130px;
}
.policy-page-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.policy-page-title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 12px;
  letter-spacing: 0.1em;
}
.policy-single-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px #00000014;
  margin: 40px 0 40px 250px;
}
.policy-privacy-text {
  line-height: 1.8;
  color: #333;
}
#privacy-policy-content .text {
  font-size: 14px;
  margin-bottom: 1.5rem;
}
#privacy-policy-content .text:last-child {
  margin-bottom: 0;
}
.policy-loading {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  padding: 2rem 0;
}
.policy-error {
  text-align: center;
  color: #dc3545;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  padding: 1.5rem;
  margin: 1rem 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .policy-page-header {
    margin-left: 130px;
    padding: 3rem 1.25rem 2.2rem;
    text-align: center;
  }
  .policy-single-content {
    width: 90%;
    margin: 15px 0 15px 145px;
  }
  .policy-page-title {
    font-size: 3rem;
  }
  .policy-page-title span {
    font-size: 1.4rem;
  }
  #privacy-policy-content .text {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .policy-page-header {
    margin-left: 0;
  }
  .policy-single-content {
    margin: 10px;
  }
  .policy-page-title {
    font-size: 2rem;
  }
  .policy-page-title span {
    font-size: 1rem;
  }
  .policy-single-content {
    padding: 1.5rem;
  }
  #privacy-policy-content .text {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .policy-page-header {
    margin-left: 0;
  }
  .policy-single-content {
    margin: 10px;
  }
  .policy-page-title {
    font-size: 1.8rem;
  }
  .policy-single-content {
    padding: 1rem;
  }
  #privacy-policy-content .text {
    font-size: 12px;
    line-height: 1.6;
  }
}
.page-header-sitemap {
  background: linear-gradient(90deg, #004080, #0059b3);
  width: 100%;
  margin-left: 120px;
  text-align: center;
  padding: 30px 0;
  box-sizing: border-box;
  color: #fff;
}
.page-title-sitemap {
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 -20px;
}
.page-title-sitemap span {
  font-size: 1.3rem;
  font-style: italic;
  color: #fff;
  display: block;
  margin-top: 0.3rem;
}
.single-content-sitemap {
  margin-top: 40px;
  max-width: 1200px;
  margin-left: 300px;
  padding: 0 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  gap: 2%;
  flex-wrap: nowrap;
}
.single-content-sitemap ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.single-content-sitemap ul li {
  margin-bottom: 1.8em;
  font-weight: 700;
}
.single-content-sitemap ul ul {
  margin: 0 0 1.8em;
  padding-left: 1.2em;
}
.single-content-sitemap ul ul li {
  margin: 0;
  font-weight: 400;
}
.single-content-sitemap ul ul li ul {
  padding-left: 1em;
  margin: 0;
}
.single-content-sitemap ul ul li:before {
  content: "└ ";
  color: #0059b3;
  font-weight: 400;
  margin-right: 0.3em;
  display: inline-block;
  transform: translate(-1em);
}
.sitemap-cols-3 {
  flex: 1 1 30%;
  min-width: 280px;
  box-sizing: border-box;
  padding: 0 1rem;
}
.col-left,
.col-center,
.col-right {
  padding: 0;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
@media screen and (max-width: 1024px) {
  .page-header-sitemap {
    margin-left: 100px;
    padding: 25px 0;
  }
  .single-content-sitemap {
    margin-left: 120px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.5rem;
  }
  .sitemap-cols-3:nth-child(1) {
    flex: 0 0 15%;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  .sitemap-cols-3:nth-child(2) {
    flex: 0 0 50%;
    padding: 0;
    margin-left: -126px;
    box-sizing: border-box;
  }
  .sitemap-cols-3:nth-child(3) {
    margin-left: -65px;
    flex: 0 0 15%;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  .page-title-sitemap {
    font-size: 1.8rem;
  }
  .page-title-sitemap span {
    font-size: 1.1rem;
  }
  .single-content-sitemap ul li {
    margin-bottom: 1.3em;
  }
}
@media screen and (max-width: 768px) {
  .page-header-sitemap {
    margin-left: 0;
    padding: 20px 0;
  }
  .single-content-sitemap {
    margin-left: 0;
    flex-direction: column;
    gap: 1.5rem;
  }
  .sitemap-cols-3 {
    min-width: 100%;
    flex: 1 1 100%;
    padding: 0 1rem;
  }
  .page-title-sitemap {
    font-size: 1.8rem;
  }
  .page-title-sitemap span {
    font-size: 1.1rem;
  }
  .single-content-sitemap ul li {
    margin-bottom: 1.3em;
  }
  .col-left {
    margin-left: 60px !important;
  }
  .col-center {
    margin-left: 200px !important;
  }
  .col-right {
    margin-left: 125px !important;
  }
}
.breath-wrapper {
  font-family: Noto Sans JP, sans-serif;
  padding: 1rem;
  background-color: #fff;
  color: #333;
  margin-left: 132px;
  width: 100%;
}
.breath-header {
  text-align: center;
  padding: 2rem 0;
  background-color: #036;
  margin-left: -16px;
  margin-top: -15px;
}
.breath-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Noto Sans JP, Poppins, sans-serif;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: center;
}
.breath-subtitle {
  font-size: 17px;
  font-weight: 700;
  font-family: Noto Sans JP, Poppins, sans-serif;
  color: #d1e6f3;
  display: block;
  margin-top: 0.2rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.breath-logo {
  max-width: 250px;
  margin: 1rem auto;
  display: block;
}
.breath-tagline {
  font-size: 1.5rem;
  margin: 1rem 0;
  text-align: center;
}
.breath-paragraph,
.breath-inquiry {
  text-align: center;
}
.breath-inquiry a {
  display: inline-block;
  color: #fff;
}
.breath-list,
.breath-warning,
.breath-highlight-text {
  text-align: center;
}
.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}
.breath-product-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  background-color: #f9f9f9;
}
.breath-inquiry-header {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}
.breath-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.breath-product {
  width: 280px;
  max-width: 90vw;
  text-align: center;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0000001a;
  transition: transform 0.2s ease;
}
.breath-product:hover {
  transform: translateY(-5px);
}
.breath-product img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
  .breath-wrapper {
    margin-left: 0;
  }
}
.breath-section {
  padding: 2rem 0;
  border-bottom: 1px solid #eee;
}
.breath-heading {
  font-size: 1.5rem;
  color: #036;
  margin-bottom: 1rem;
  text-align: center;
}
.breath-paragraph {
  line-height: 1.8;
}
.breath-inquiry a {
  background-color: #036;
  color: #fff;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  margin-top: 1rem;
  border-radius: 5px;
  text-decoration: none;
}
.breath-warning {
  color: red;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 1rem;
}
.breath-product-gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.breath-product img {
  max-width: 200px;
  border-radius: 10px;
}
.breath-product p {
  text-align: center;
  font-weight: 700;
  margin-top: 0.5rem;
}
.highlight {
  background-color: #f5faff;
  padding: 2rem;
  border-radius: 10px;
}
.breath-highlight-text {
  font-size: 1.25rem;
  font-weight: 500;
}
.breath-pdf {
  width: calc(100vw - 250px);
  height: 100vh;
  margin-left: 132px;
  overflow: hidden;
  background-color: #f5f5f5;
  z-index: 9999;
}
.breath-pdf embed {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .breath-pdf {
    left: 0;
    width: 100vw;
    height: 70vh;
  }
}
@media (max-width: 767px) {
  body,
  html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  .breath-pdf {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: auto;
    background-color: #f5f5f5;
    z-index: 9999;
  }
  .breath-pdf embed {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
  }
}
.order-page-header {
  background: linear-gradient(90deg, #004080, #0059b3);
  padding: 3rem 1.25rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px #005ab366;
  border-radius: 0 0 20px 20px;
  color: #fff;
  width: 100%;
  margin-left: 116px !important;
}
.order-page-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}
.order-page-title span {
  display: block;
  font-size: 1.2rem;
  margin-top: 5px;
  font-style: italic;
  color: #cfe2ff;
  font-family: Lora, serif;
}
.process-order-page {
  max-width: 600px;
  margin: 40px 0 40px 350px;
  padding: 1.5rem 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px #0000001a;
  font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  text-align: center;
}
.process-order-page h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #004080;
  text-align: center;
  font-weight: 700;
}
.process-order-page p {
  font-size: 1rem;
  margin-bottom: 0.9rem;
  line-height: 1.4;
}
.process-order-page p strong {
  color: #004080;
  width: 120px;
  display: inline-block;
}
.process-order-page button {
  display: block;
  width: 100%;
  padding: 14px 0;
  margin-top: 2rem;
  background-color: #004080;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.process-order-page button:hover {
  background-color: #036;
}
@media (max-width: 480px) {
  .order-page-header {
    margin-left: 0 !important;
  }
  .order-page-title {
    font-size: 1.9rem;
  }
  .process-order-page {
    margin: 1rem;
    padding: 1rem 1.2rem;
  }
  .process-order-page h1 {
    font-size: 1.5rem;
  }
  .process-order-page p strong {
    width: 100px;
  }
  .process-order-page button {
    font-size: 1rem;
    padding: 12px 0;
  }
}
.hardware-order-page {
  width: 100%;
  max-width: 100%;
  margin-left: 120px;
}
.hardware-order-page-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #004080, #0059b3);
  height: 150px;
  text-align: center;
}
.hardware-order-page-title {
  font-size: 2rem;
  color: #fff;
  margin: 0;
}
.hardware-order-page-title span {
  display: block;
  font-size: 1rem;
  color: #a1cef3;
  margin-top: 5px;
}
.hardware-order-product-order {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 4rem;
  box-sizing: border-box;
  width: 100%;
}
.submit-btn {
  background: #28a745;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 90%;
  max-width: 500px;
  height: 60px;
  border-radius: 0 !important;
  padding: 0 !important;
  display: block;
  margin: 20px auto 0;
  text-align: center;
  line-height: 60px;
  border: none;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  overflow: hidden;
}
.submit-btn:hover:not(:disabled) {
  background: #218838;
  transform: scale(1.01);
}
.submit-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  -webkit-user-select: none;
  user-select: none;
}
input[type="text"],
input[type="email"] {
  width: 100% !important;
}
input {
  margin-right: 10px !important;
}
@media (max-width: 1366px) {
  .hardware-order-product-order {
    padding: 2rem;
  }
  form {
    width: 90%;
    margin-left: 0;
  }
  textarea,
  input[type="text"],
  input[type="email"] {
    width: 100% !important;
  }
  input {
    margin-right: 10px !important;
  }
}
@media (max-width: 1024px) {
  .hardware-order-page {
    margin-left: 120px;
  }
  .hardware-order-page-header {
    height: 160px;
    margin-bottom: 40px !important;
  }
  .hardware-order-page-title {
    font-size: 1.7rem;
  }
  .hardware-order-page-title span {
    font-size: 0.9rem;
  }
  .hardware-order-product-order {
    margin-top: -120px;
  }
  form {
    width: 90%;
    margin-left: 0;
  }
  input,
  textarea {
    width: 100% !important;
  }
  .price-options label {
    display: flex;
    flex-direction: row;
    font-size: 1rem;
    line-height: 1;
    height: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .hardware-order-page {
    margin-left: 0;
  }
  .hardware-order-page-header {
    height: 110px;
  }
  .hardware-order-page-title {
    font-size: 1.5rem;
  }
  .hardware-order-product-order {
    padding: 1rem;
    min-height: auto;
  }
  .form-group input[type="number"] {
    width: 100%;
  }
  .submit-btn {
    width: 100%;
    max-width: 100%;
    height: 55px;
    font-size: 16px;
  }
  form {
    margin-top: 100px !important;
  }
}
@media (max-width: 480px) {
  .hardware-order-page {
    margin-left: 0;
  }
  .hardware-order-page-header {
    height: 100px;
  }
  .hardware-order-page-title {
    font-size: 1.3rem;
  }
  .hardware-order-page-title span {
    font-size: 0.85rem;
  }
  form {
    margin-top: 100px !important;
  }
  .price-options {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .price-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    line-height: 1.3;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin-left: 0;
  }
  .price-options input[type="radio"] {
    transform: scale(1.1);
    margin: 0;
  }
  .submit-btn {
    font-size: 14px;
    height: 60px !important;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 30px;
  }
}
body {
  margin: 0;
  font-family: sans-serif;
}
@media screen and (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  * {
    box-sizing: border-box !important;
  }
  img,
  video,
  iframe {
    max-width: 100% !important;
    height: auto !important;
  }
  table {
    max-width: 100% !important;
    overflow-x: auto !important;
  }
  .container,
  .wrapper,
  .content {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}
html,
button,
input,
select,
textarea {
  color: #222;
}
html {
  font-size: 1em;
  line-height: 1.4;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
audio,
canvas,
img,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
body {
  font-family: Arial, Meiryo, sans-serif;
  color: #222;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
p {
  margin-top: 0;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
dt,
dd {
  margin: 0;
  padding: 0;
}
p {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 1.8em;
  text-align: justify;
  text-justify: inter-ideograph;
}
p.last {
  margin-bottom: 0;
}
a:link,
a:visited,
a:hover {
  color: #035497;
}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}
a.hover:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}
@media screen and (max-width: 768px) {
  p {
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 1.6em;
  }
}
blockquote {
  background: #f0f5fa url(../img/blockquote-bg.png) no-repeat left top;
  padding: 30px 30px 20px;
  margin: 0 0 1.6em;
}
blockquote p {
  font-size: 13px;
  font-weight: 700;
  color: #004966;
}
#wrapper #site-content {
  width: 100%;
}
#wrapper.noheader {
  padding: 0;
}
@media screen and (min-width: 769px) {
  #site-content {
    margin-left: 120px !important;
    width: calc(100% - 220px) !important;
  }
}
@media screen and (max-width: 768px) {
  #site-content {
    margin-left: 0 !important;
    width: 100% !important;
  }
}
#root {
  width: 100%;
  min-height: 100vh;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family: Arial, Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
}
body {
  overflow-x: hidden;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }
  * {
    box-sizing: border-box;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .page-nav ul {
    padding: 8px 12px;
  }
}
.product-order {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 10px #0000001a;
  padding: 0 70px;
  align-items: center;
}
label {
  display: block;
  margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="number"],
textarea {
  width: 100%;
  width: 1100px;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.location-fields {
  display: flex;
  justify-content: space-between;
}
.field {
  flex: 1;
  margin-right: 10px;
}
.field:last-child {
  margin-right: 0;
}
.price-options {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.price-options label {
  flex: 1;
  margin-right: 10px;
}
.price-options label:last-child {
  margin-right: 0;
}
button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  display: block;
  width: 100%;
  max-width: 300px;
  margin: auto auto 20px;
  text-align: center;
}
button:hover {
  background-color: #0056b3;
}
@media (max-width: 600px) {
  .location-fields {
    flex-direction: column;
  }
  .field {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .price-options {
    flex-direction: column;
  }
  .price-options label {
    margin-right: 0;
    margin-bottom: 10px;
  }
  input[type="text"],
  input[type="email"],
  input[type="number"],
  textarea {
    padding: 12px;
    width: 300px;
  }
  button {
    width: 100%;
    padding: 12px;
  }
  .location-fields {
    width: 620px;
  }
  .quantity-total-fields {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
  }
  .quantity-total-fields .field {
    flex: 1;
    min-width: 0;
  }
  .quantity-total-fields .field input {
    width: 100%;
    padding: 12px;
  }
}
.location-fields {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.location-fields .field {
  width: 48%;
}
.location-fields .field input {
  width: 100%;
}
@media (min-width: 1025px) {
  .location-fields {
    gap: 50px;
  }
}
@media (max-width: 1024px) {
  .product-order {
    max-width: 80%;
  }
}
.quantity-total-fields {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}
.quantity-total-fields .field {
  flex: 1;
}
.quantity-total-fields .field input {
  width: 100%;
  padding: 12px;
}
@media (max-width: 600px) {
  .quantity-total-fields {
    flex-direction: column;
    width: 87%;
  }
  .quantity-total-fields .field {
    margin-bottom: 10px;
  }
}
.product-single-card {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px #0000001a;
}
.product-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.image-container {
  flex: 1;
  max-width: 50%;
  text-align: center;
  position: relative;
}
.image-slider {
  position: relative;
  width: 100%;
}
.image-slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000080;
  color: #fff;
  font-size: 24px;
  padding: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.prev-btn:hover,
.next-btn:hover {
  background: #000000b3;
}
.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}
.thumbnail-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.thumbnail {
  width: 60px;
  height: 60px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.thumbnail:hover {
  transform: scale(1.1);
  opacity: 0.7;
}
.info-container {
  flex: 1;
  max-width: 45%;
  text-align: left;
}
.info-container h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
.info-container h3 {
  font-size: 22px;
  color: #e74c3c;
}
.buy-now {
  display: block;
  background: #3498db;
  color: #fff;
  font-size: 18px;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.buy-now:hover {
  background: #2980b9;
}
.description-container {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.6;
  width: 80%;
  margin: auto;
}
.description-container h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}
@media (max-width: 1024px) {
  .product-container {
    flex-wrap: wrap;
  }
  .image-container {
    max-width: 100%;
  }
  .info-container {
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 20px;
  }
  .info-container {
    text-align: center;
  }
  .buy-now {
    width: 100%;
  }
  .prev-btn,
  .next-btn {
    font-size: 18px;
    padding: 8px;
  }
  .thumbnail {
    width: 50px;
    height: 50px;
  }
  .description-container {
    width: 60%;
  }
}
