/* === style.css === */

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

/* #wpadminbar {
  position: absolute !important;
  display: none !important;
} */

html {
  scroll-behavior: smooth;
}

.bold {
  font-weight: 700;
}
.black {
  font-weight: 900;
}

.only-sp {
  display: none !important;
}

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


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  z-index: 999;
  min-height: 80px;
  height: 80px; 
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center; 
  flex-wrap: nowrap;
  height: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px; 
  margin-left: auto;
}

.site-logo{
  flex-shrink: 0;
}

.site-logo img {
  height: 60px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #1e3b64;
  border-radius: 3px;
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 1.1rem;
}

.site-nav a {
  color: #1e3b64;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 4px;
  transition: all 0.3s ease;
}

a.nav-text:hover {
  background-color: #1e3b64;
  color: #fff;
}

.nav-button img {
  height: 30px;
  transition: transform 0.2s ease;
}

.nav-button:hover img {
  transform: scale(1.1); 
}

.nav-button {
  margin-left: 2px; 
}

.site-nav img { 
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .site-logo img {
    height: 40px;
    margin-top: 0; 
  }

  .menu-toggle {
    top: auto;  
    position: relative; 
  }

  .site-header .container {
    flex-wrap: nowrap;
    padding: 0 12px;
  }
}


@media (max-width: 1168px) {
  .site-header {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .site-header .container {
    padding: 0 12px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    z-index: 10001;
  }

  .menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #1e3b64;
    border-radius: 3px;
  }

  .site-nav {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;

    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    width: 100%;
    padding: 20px;
    gap: 15px;
    z-index: 10000;
  }

  .site-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 1.1rem;
    padding: 10px 0;
    text-align: center;
  }
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; 
  line-height: 1.6;
  background: none;
  color: #333;
  margin: 0;
  padding: 0;
}

#top {
  position: relative;
  overflow: hidden;
}

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

.top-hero-section {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: 80px;
}

.top-hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.top-hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.top-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.top-hero-message-container {
  position: absolute;
  top: 15%;
  right: 0;
  left: 0;
  max-width: 1280px;
  margin: 0 auto;
}

.top-hero-message {
  position: absolute;
  top: 20%;
  right: 2%;
  max-width: 600px;
  text-align: right;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}



.top-hero-heading {
  background-color: #1e3b64;
  display: inline-block;
  padding: 0.2em 0em 0.2em 0.5em;
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 2.8rem;
  letter-spacing: 0.15em;
}

.top-hero-subtext {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 1168px) {
  .top-hero-image-wrapper {
}
}

@media (max-width: 768px) {

  .top-hero-image-wrapper {
    position: relative;
  }

  .top-hero-message {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-height: 200px;
    top: 25%; 
    right: 2%;
    left: 5%;
    text-align: right;
    padding: 0;
    z-index: 10;
  }

  .top-hero-heading {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }

  .top-hero-subtext {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.6;
    margin-top: 4px;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); 
  }
}

.concept-section {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(to right, #ffffff 0% 35%, #cbd8ff 35% 100%);
}

.concept-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  max-width: 1280px;;
  margin: 0 auto;
}

.concept-text {
  padding: 60px 0px;
  flex: 1 1 800px;
  z-index: 2;
}

.concept-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e3b64;
  margin-bottom: 1.5rem;
  text-align: left;
  white-space: nowrap;;
}

.concept-description {
  font-size: 1.5rem;
  line-height: 1.8;
}

.concept-image {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.concept-image img {
  width: 480px;
  height: auto;
}

@media screen and (max-width: 1168px) {
.concept-section{
  padding-top: 30px;
}

  .concept-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
  }

  .concept-title{
    text-align: center;
    margin-bottom: 12px;
    font-size: clamp(1.0rem, 4vw, 2.0rem);
  }

    .concept-description {
    font-size: clamp(0.7rem, 2vw, 1.4rem);
    line-height: 1.7;
  }


  .concept-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    gap: 1rem;
    padding-top: 0px;
    padding-bottom: 5px;
    text-align: center;
    flex: 400px;
  }
}


@media screen and (max-width: 768px) {
  .concept-section {
    padding: 30px 15px;
    background: linear-gradient(to right, #ffffff 0% 35%, #cbd8ff 35% 100%);

  }

  .concept-container {
    flex-direction: column;
  }

  .concept-text {
    padding: 0px 20px;
    text-align: center;
    flex: 1 1 100px;
  }

  .only-pc {
    display: none;
  }


  .concept-title {
    font-size: clamp(1.0rem, 4vw, 1.7rem);
    text-align: center;
  }

  .concept-description {
    font-size: clamp(0.7rem, 2.5vw, 1rem);
    line-height: 1.7;
  }

  .concept-image {
    padding-top: 30px;
    width: 100%;
  }
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 900;
}

.section-title-sub {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.0;
    color:#6ec1e4;
    font-weight: 200;
    margin-top: -45px;
    margin-bottom: 140px;
    letter-spacing: 0.3em;
}

.section.blue {
  color: white;
  padding: 150px 20px 200px 20px;
}

.equipment-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 0px 20px;
  color: white;
  font-family: "Noto Sans CJK JP", sans-serif;
}

.futaisetsubi {
  margin-top: 100px;
}

.equipment-title-row {
  display: flex;
  align-items: center;
  gap: 10px; 
  margin-bottom: 20px; 
}

.align-right {
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .align-right {
    justify-content: center;
  }
}

.p-main{
  color:#1e3b64;
  background-color: #6ec1e4;
  font-weight: bold;
  padding: 3px;
  padding-left: 10px;
  line-height: 20px;
}

.title-line {
  width: 250px;      
  height: 0.1em;      
  background-color: #6ec1e4;
}

.equipment-title-left{
    margin-right: 20px;
    color:#6ec1e4;
}
.equipment-title-right{
    color:#6ec1e4;
}
.equipment-title-center{
    color:#6ec1e4;
}


.equipment-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 60px;
  margin-bottom: 60px;
  gap: 60px;
}

.equipment-block.reverse {
  margin-top: 120px;
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  gap: 1rem;  
}

.equipment-block-keiryou {
  margin-top: 60px;
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  gap: 1rem;  
}


.equipment-block-center {
  margin-top: 120px;
  display: flex; 
  justify-content: center;
  flex-wrap: wrap; 
  gap: 60px;      
}


.equipment-image {
  flex: 1 1 400px;
  position: relative;
}

.equipment-image img {
  width: 100%;
  height: auto;
}

.equipment-text {
  flex: 1 1 400px;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 500;
}

.equipment-text.right-align {
  margin-left: auto;  
  text-align: right;  
}


.equipment-text h3 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 900;
}
.equipment-horizonal h3 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 900;
}

.equipment-block.light .equipment-text {
  background-color: #e3eaf7;
  padding: 20px;
  border-radius: 8px;
}

.equipment-horizontal {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  align-items: stretch;  
  max-width: 800px;
  margin: 0 auto;
}

.equipment-title-center {
  font-size: 2.8rem;
  font-weight: 900;
  color: #6ec1e4;
  border: 3px solid #6ec1e4;
  border-right: none; 
  padding: 50px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.equipment-text-sub {
  color: #1e3b64;
  font-size: 1.4rem;
  line-height: 1.6;
  background-color: #ffffff;
  padding: 40px;
  margin: 0;
  flex-grow: 1; 
  box-sizing: border-box;
}

.p-text-left {
  text-align: left;
  margin-left: 85px;
}

.p-text-right {
  text-align: right;
}


.equipment-image-flow{
    max-width: 1280px;
    margin: 0 auto;
}

.sp-only-block {
  display: none;
}

.scroll-container {
  width: 100%;
  overflow: hidden;
  height: 200px;
  position: relative;
}

.scroll-track {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  will-change: transform;
}

.scroll-image {
  height: 100%;        
  width: auto;         
  object-fit: cover;   
  flex-shrink: 0;      
}

@media screen and (max-width: 768px) {
  .scroll-container {
    width: 100%;
    height: auto;
    overflow-x: auto; 
  }

  .scroll-track {
    display: flex;
  }

  .scroll-image {
    width: 250px;       
    height: auto;       
    object-fit: contain; 
    flex-shrink: 0;
  }
}

@media screen and (max-width: 1168px) {
   .section.blue{
    padding-top: 50px;
   }

   .section-title-sub{
    margin-bottom: 70px;
   }

   .title-line {
    width: 200px;
   }
  
}

@media screen and (max-width: 1168px) {
.title-line{
  display:none;
}

  .section.blue {
  color: white;
  padding: 50px 20px;
  padding-bottom: 100px;
}

.equipment-section {
  padding-top: 30px;
}

.equipment-block,
.equipment-block.reverse,
.equipment-block-keiryou{
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap; 
    max-width: 100%;
  }

.equipment-block-center,
.equipment-block.reverse{
  margin-top: 60px;
}

  .equipment-image,
  .equipment-text {
    flex: 1 1 50%; 
    max-width: 100%;
  }

  .equipment-image img {
    width: 100%;
    height: auto;
  }

  .equipment-horizontal {
    display: flex;
    justify-content: center;
    flex-direction: row; 
    flex-wrap: nowrap;
    width: 100%;
  }

  .equipment-title-right{
    margin-left: 30px;
  }


  .equipment-text-sub {
    width: 100%;
    padding: 15px;
  }

  .title-line {
    width: 100px;
  }

  .equipment-title-center {
    width: 80%;
    padding: 15px;
    font-size: clamp(1.5rem, 3vw, 3rem);
    white-space: nowrap;
  }


  .section-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 30px;
  }

  .section-title-sub {
    margin-top: -30px;
  }

  .equipment-text h3,
  .equipment-horizonal h3 {
    font-size: clamp(1.5rem, 3vw, 3rem);
    text-align: center;
  }

  .equipment-text {
    font-size: clamp(0.8rem, 4vw, 1.5rem);
    text-align: left;
  }
   .equipment-text-sub {
    font-size: clamp(0.8rem, 4vw, 1.5rem);
    text-align: left;
  }

  .equipment-image-flow {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .p-text-left{
    margin-left: 0px;
  }
 
   .equipment-title-row {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {

  .equipment-title-row {
    justify-content: center;
  }

  .equipment-title-right {
    margin-left: 0;
  }

  .equipment-title-left {
    margin-right: 0px;
  }

  .equipment-text.right-align {
    margin-left: 0;           
    margin-right: 0;          
    text-align: center;       
  }
}



.history-section {
  background: url('./img/history-bg.jpg') no-repeat center center / cover;
  position: relative;
  color: #ffffff;
  padding: 140px 20px;
  padding-bottom: 200px;
}

.history-title {
  letter-spacing: 0.7rem;
}

.history-title-sub {
  margin-bottom: 40px;
}


.history-timeline {
    margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-items: center;
}

.history-item {
  display: flex;
  gap: 1em;
  justify-content: flex-start;
  flex-wrap: nowrap;
  max-width: 800px;
  width: 100%;
}

.history-date {
  width: 180px;
  font-weight: bold;
  text-align: right;
}

.history-event {
  max-width: 600px;
}

@media screen and (max-width: 768px) {
.history-section{
  padding-top: 60px;
  padding-bottom: 60px;
}

  .history-item {
    display: flex;
    flex-direction: column;   
    align-items: center;      
    text-align: center;       
    gap: 0.1rem;              
    margin-bottom: 1.2rem;    
  }

  .history-date {
    font-size: 1.2rem;
    transform: translateX(-30px);
  }

  .history-event {
    font-size: 0.8rem;
  }
}

.about-bg {
  display: block;
  background-color: #cbd8ff;
  background-image: url('./img/logo-about.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100%;
  min-height: 300px;
}


.about-section{
    padding-top: 150px;
}
.about-section .section-title{
    color:#1e3b64;
}

.about-title-sub {
  margin-bottom: 40px;
}

.group-section{
    padding-top: 60px;
    padding-bottom: 130px;
}
.group-section .section-title{
    color:#1e3b64;
}

.group-title-sub {
  margin-bottom: 40px;
}


.group-table{
    margin-top: -30px;
}


.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-end;
  justify-content: center;
}

.company-table {
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
  max-width: 100%;
  max-width: 700px;
}



.company-table th {
  background: #1e3b64;
  color: #fff;
  text-align: left;
  padding: 10px;
  width: 130px;
  vertical-align: top;
}

.company-table td {
  padding: 10px;
  background: #f9f9f9;
}

.company-table th,
.company-table td {
  border-bottom: 1px solid #ccc; 
}

.executives {
  list-style: none;
  padding: 0;
  margin: 0;
}

.executives li {
  display: flex;
  gap: 1em;
  line-height: 1.8;
}

.executives .role {
  min-width: 8em; 
  display: inline-block;
  font-weight: bold;
}

.executives .name {
  flex: 1;
  white-space: nowrap;
}

.company-media {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
}


.media-image,
.google-map {
  width: 100%;
  max-width: 400px;
  display: block;
}

.google-map {
  height: 300px;
  border: 0;
}

.group-table {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 50px;
}

.group-box {
  width: 700px;
}

.group-title {
  font-size: 2.0rem;
  font-weight: bold;
  color: #1e3b64;
  margin-bottom: 5px;
}

.group-box table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.95rem;
  table-layout: fixed;
}

.group-box th {
  background: #1e3b64;
  color: #fff;
  padding: 10px;
  text-align: left;
  width: 30%;
}

.group-box td {
  background: #fff;
  padding: 10px;
  width: 70%;
  word-wrap: break-word;
}

.group-box th,
.group-box td {
  border-bottom: 1px solid #ccc;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  flex: 1 1 300px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  color: black;
}

@media screen and (max-width: 855px) {

  .about-section{
    max-width: 700px;
  margin: 0 auto;
    padding-bottom: 30px;
  }

  .about-bg {
    background-size: 150% auto;
    background-position: top right;
  }

  .about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
  }

  .company-table,
  .company-media {
    width: 100%;
    min-width: 315px;
    padding: 20px 0px;
  }

  .company-table th {
    text-align: left;
    vertical-align: middle;
  }
.company-table td {
    text-align: left;
    vertical-align: middle;
  }

.company-media {
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
}

.media-image,
.google-map {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.google-map {
  aspect-ratio: 3 / 2;
  margin-top: -20px;     
  width: 100%;       
  border: none;      
}

.group-section{
  padding-top: 30px;
  padding-bottom: 100px;
}

  .group-table {
    display: flex;
    justify-content: center;
    padding: 20px 0px;
    gap: 40px;
  }

  .group-box {
    width: 90%;
    max-width: 90%;
  }

  .group-box th,
  .group-box td {
    font-size: 0.95rem;
    padding: 10px;
    text-align: left;
  }

  .group-title {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: -2px;
  }

  .group-title-sub{
    margin-bottom: 20px;
  }

  h2 {
    font-size: 1.6rem;
    padding: 0 10px;
  }

  .card {
    flex: 1 1 100%;
    font-size: 1rem;
  }

  .flex {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }

  .company-table,
  .group-box,
  .about-container {
  max-width: 700px;
  width: 100%;
  padding: 0px 20px;
}

  .about-container{
    display: flex;
    justify-content: center;
  }
}




.contact-section {
  background-color: #1e3b64;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.contact-title-sub {
  margin-bottom: 10px;
}

.contact-form {
    padding-top: 20px;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-group p {
  width: 100%;
}

.required {
  width: 40px;
  color: #ff5c33;
  font-size: 0.9rem;
  flex-shrink: 0;
  text-align: right;
  margin-right: 10px;
}

.not-required {
  width: 40px;
  color: #6ec1e4;
  font-size: 0.9rem;
  flex-shrink: 0;
  text-align: right;
  margin-right: 10px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit input[type="submit"] {
  background-color: #f05a24;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit input[type="submit"]:hover {
  background-color: #d94d1f;
}

.wpcf7 form.invalid .wpcf7-response-output{
  max-width: 348px;
}

.wpcf7 form.sent .wpcf7-response-output{
  max-width: 348px;
}

.back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;

  width: 48px;
  height: 48px;
  background-color: #1e3b64;
  color: #fff;
  text-align: center;
  line-height: 48px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;

  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.8;
}

.back-to-top:hover {
  opacity: 1;
  transform: scale(1.1);
}

.site-footer {
  font-family: sans-serif;
}

.footer-top {
  background-color: #1e3b64;
  color: white;
  padding: 30px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-innner img {
  width: 80px;
  height: auto;
}

.footer-bottom {
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.8rem;
}

@media screen and (max-width: 768px) {
.text-url{
  font-size:0.8rem;
}

.section-title{
  font-size: 2rem;
  margin-bottom: 0px;
}
.section-title-sub{
  font-size: 1.5rem;
  margin-top: 0px;
}
}

