/* page */
*,
html,
body {
  margin: 0;
  padding: 0;
  max-width: 100vw;

  font-style: normal;
}

*,
body {
  max-width: 100vw;
}

body {
  max-width: 100vw;
  height: auto !important;
}

.image-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
}

.image-container::before {
  content: '';
  display: block;
  padding-bottom: 75%;
  /* Set the aspect ratio to 16:9 (56.25% = 9 / 16 * 100) */
}

.image-container img {
  position: absolute;
  border-radius: 16px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* This ensures the image fills the container without distortion */
}

.image-container iframe {
  position: absolute;
  border-radius: 16px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* This ensures the image fills the container without distortion */
}

.detail-wrapper {
  width: 100%;
  max-width: 808px;
}

.body-wrapper {
  display: flex;
  flex-direction: column;
  gap: 128px;
}

.menu-item-selected {
  color: #003bba !important;
  font-weight: 700;
}

.tabs_left {
  top: 96px;
}

.tabs_left li {
  display: flex;
  width: 208px;
  padding: 24px 0px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #dfdfdf;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 140% */
  color: #616161;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.frame {
  height: 400px !important;
}

.tabs_left li.active {
  color: #003bba;
  border-bottom: 3px solid #003bba;
}

.tabs_right {
  width: 913px;
}

.item-img {
  width: 288px;
  border-radius: 8px;
}

.item-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}

.active-item {
  height: auto;
  opacity: 1;
  transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateX(0px);
}

.hidden-item {
  height: 0px;
  opacity: 0;
  position: absolute;
  transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateY(200px);
  z-index: -1;
}

.item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.select-menu {
  display: none;
}

.side-bar {
  position: fixed;
  top: 88px;
  left: calc(50vw - 612px);
  z-index: 40;
}

.mobile_item {
  display: none !important;
}

@media only screen and (max-width: 1024px) {
  .mobile_item {
    display: flex !important;
  }
  .body-wrapper {
    gap: 20px;
  }

  a.mobile_item {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .mobile_item {
    display: flex !important;
  }
  .body-wrapper {
    gap: 48px;
  }

  a.mobile_item {
    margin-top: 0;
  }
  .frame {
    height: 200px !important;
  }
}

.propose-form {
  border-radius: 16px;
  background: #f9f9f9;
  width: 100%;
  padding: 36px 78px;
}

.customer-story-wrapper {
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.form-input-sub[type='text'] {
  border-radius: 8px;
  border: 1px solid #dcdfe6;
  background: #fff;
}

.form-input {
  border-radius: 8px !important;
  border: 1px solid #dcdfe6 !important;
}
.form-input-sub[type='email'] {
  border-radius: 8px !important;
  border: 1px solid #dcdfe6 !important;
  background: #fff !important;
  height: 48px;
}

.form-submit-input[type='text'] {
  border-radius: 8px;
  border: 1px solid #dcdfe6;
  background: #fff;
}
.story-header {
  color: #27292e;

  /* H2 SB20 */
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 140% */
}

.story-detail {
  color: #616161;

  /* Content R15 */
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin-top: 12px;
  /* 160% */
}
