@charset "UTF-8";
.inputStyle, .select > select, input[list],
input[type=text],
input[type=password],
input[type=textarea],
textarea,
input[type=date],
input[type=month],
input[type=year],
input[type=email] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Lexend", "Kanit", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  line-height: normal;
  position: relative;
  width: 100%;
  outline: 0;
  border: 0;
  background-color: rgb(255, 255, 255);
  color: var(--colorTypoPlaceholder);
  height: 48px;
  line-height: 48px;
  padding: 8px 16px;
  overflow: hidden;
  border: 1px solid var(--colorPrimaryOutline);
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 400;
}
@media (min-width: 768px) {
  .inputStyle, .select > select, input[list],
  input[type=text],
  input[type=password],
  input[type=textarea],
  textarea,
  input[type=date],
  input[type=month],
  input[type=year],
  input[type=email] {
    font-size: 1rem;
  }
}
.inputStyle::placeholder, .select > select::placeholder, input[list]::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=textarea]::placeholder,
textarea::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=year]::placeholder,
input[type=email]::placeholder, .inputStyle:-ms-input-placeholder, .select > select:-ms-input-placeholder, input[list]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=textarea]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=month]:-ms-input-placeholder,
input[type=year]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder, .inputStyle::-ms-input-placeholder, .select > select::-ms-input-placeholder, input[list]::-ms-input-placeholder,
input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=textarea]::-ms-input-placeholder,
textarea::-ms-input-placeholder,
input[type=date]::-ms-input-placeholder,
input[type=month]::-ms-input-placeholder,
input[type=year]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder {
  color: var(--colorTypoPlaceholder);
  opacity: 1;
}

input[list],
input[type=text],
input[type=password],
input[type=textarea],
textarea,
input[type=date],
input[type=month],
input[type=year],
input[type=email] {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  resize: none;
}
input[list]:disabled,
input[type=text]:disabled,
input[type=password]:disabled,
input[type=textarea]:disabled,
textarea:disabled,
input[type=date]:disabled,
input[type=month]:disabled,
input[type=year]:disabled,
input[type=email]:disabled {
  opacity: 0.6;
}
input[list]:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=textarea]:focus,
textarea:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=year]:focus,
input[type=email]:focus {
  border-color: var(--colorPrimary);
}

.control {
  display: block;
  position: relative;
  padding: 4px 14px;
  cursor: pointer;
  padding-left: 30px;
}
@media (min-width: 1024px) {
  .control {
    padding-left: 30px;
  }
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .control input {
    top: 70%;
  }
}

.control--checkbox .control__indicator {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  height: 16px;
  width: 16px;
  background: url(../img/ui/form/ico-check.svg) center center no-repeat no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0px;
}
.control--checkbox input:checked ~ .control__indicator {
  background-image: url(../img/ui/form/ico-checked.svg);
}
.control--checkbox input:disabled ~ .control__indicator {
  opacity: 0.6;
}
.control--checkbox input:disabled ~ .control__indicator:after {
  opacity: 0.6;
}

.control--radio {
  padding-left: 30px;
  color: var(--colorTypoPlaceholder);
}
.control--radio .control__indicator {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--colorPrimaryOutline);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
}
.control--radio input:checked ~ .control__indicator {
  border: 1px solid var(--colorPrimary);
  background-color: var(--colorPrimaryLight);
}
.control--radio input:checked ~ .control__indicator:after {
  display: block;
}
.control--radio .control__indicator:after {
  content: "";
  position: absolute;
  display: none;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--colorPrimary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.control--radio input:disabled ~ .control__indicator {
  opacity: 0.6;
}
.control--radio input:disabled ~ .control__indicator:after {
  opacity: 0.6;
}

.select {
  position: relative;
  display: inline-block;
  width: 100%;
}
.select > select {
  display: inline-block;
  cursor: pointer;
  border: 1px solid var(--colorPrimaryOutline);
  background-color: rgb(255, 255, 255);
  padding-right: 48px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  line-height: normal;
}
.select > select::-ms-expand {
  display: none;
}
.select > select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 0px;
  content: "";
  width: 48px;
  height: 100%;
  background: url(../img/ui/form/ico-arrow-select.svg) center center no-repeat;
}
@media (min-width: 1024px) {
  .select:after {
    width: 48px;
  }
}

.datalist {
  line-height: 33px;
}

datalist {
  display: none;
}

/* specifically hide the arrow on focus */
input::-webkit-calendar-picker-indicator {
  display: none;
  opacity: 0;
}

textarea {
  height: 120px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--colorPrimaryOutline);
  line-height: normal;
  overflow: scroll;
}

input[type=date],
input[type=month],
input[type=year] {
  text-align: left;
  padding: 8px 36px 9px 16px;
}
input[type=date]:before,
input[type=month]:before,
input[type=year]:before {
  content: "";
  display: block;
  z-index: 0;
  right: 16px;
  width: 32px;
  height: 100%;
  background: url(../img/ui/form/ico-calendar.svg) center center no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 0;
}
input[type=date]::-webkit-calendar-picker-indicator,
input[type=month]::-webkit-calendar-picker-indicator,
input[type=year]::-webkit-calendar-picker-indicator {
  display: block;
  opacity: 1;
  width: 32px;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
  right: 0;
}
input[type=date]::-webkit-date-and-time-value,
input[type=month]::-webkit-date-and-time-value,
input[type=year]::-webkit-date-and-time-value {
  text-align: left;
}

input[type=password] {
  padding-right: 36px;
}

.controlPass {
  position: relative;
}
.controlPass .btnshowPass {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 7px;
  color: var(--colorGray700);
  width: 48px;
  height: 100%;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/ui/form/ico-invisible.svg) center center no-repeat;
}
@media (min-width: 1024px) {
  .controlPass .btnshowPass {
    width: 48px;
  }
}
.controlPass .btnshowPass:hover {
  color: var(--colorPrimary);
}
.controlPass .btnshowPass.show {
  background-image: url(../img/ui/form/ico-visibility.svg);
}

.checkboxPDPA {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.checkboxPDPA .control {
  line-height: 28px;
}
.checkboxPDPA .control input {
  top: 50%;
}
.checkboxPDPA .bText a:hover {
  color: var(--colorSecondary);
}

.bCaptcha {
  margin-bottom: 25px;
}
.bCaptcha > img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
@media (min-width: 1024px) {
  .bCaptcha > img {
    width: 360px;
  }
}

.control-group [data-content]:after {
  content: attr(data-content);
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: 20px;
  color: var(--colorSecondary);
}
.control-group [data-content] input {
  padding-right: 20%;
}
.control-group .floating-label {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  display: block;
  position: absolute;
  opacity: 0;
  top: -10px;
  left: 0px;
  font-size: 0.625rem;
  line-height: normal;
  color: var(--colorGray50);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .control-group .floating-label {
    font-size: 0.75rem;
  }
}
.control-group .form-control:placeholder-shown + .floating-label {
  visibility: hidden;
  z-index: -1;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}
.control-group .form-control:not(:placeholder-shown) + .floating-label,
.control-group .form-control:focus:not(:placeholder-shown) + .floating-label {
  visibility: visible;
  z-index: 1;
  opacity: 1;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}

.bForm {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  grid-row-gap: 24px;
}
.bForm > *:last-child {
  margin-bottom: 0;
}
.bForm .bRow {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .bForm .bRow {
    flex-direction: row;
    gap: 24px 16px;
  }
}
.bForm .control-group {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.bForm .control-group [class*=tTitle] {
  font-size: 0.625rem;
  line-height: normal;
  font-weight: 500;
  color: var(--colorGray50);
}
@media (min-width: 768px) {
  .bForm .control-group [class*=tTitle] {
    font-size: 0.75rem;
  }
}
.bForm .control-group [class*=tTitle] span {
  display: inline;
}
.bForm .control-group.validate [class*=tTitle]:after {
  content: "*";
  color: #a2191f;
}
.bForm .control-group.error label.tError {
  display: flex;
}
.bForm .control-group.error label.tError:before {
  display: none;
}
.bForm .control-group.pdpa p {
  color: var(--colorTypoSubtext2);
  font-weight: 300;
  font-size: 0.75rem;
  line-height: normal;
}
@media (min-width: 768px) {
  .bForm .control-group.pdpa p {
    font-size: 0.875rem;
  }
}
.bForm .control-group.pdpa p a {
  color: var(--colorTypoSubtext2);
  font-weight: bold;
}
.bForm .control-group > p {
  font-size: 0.625rem;
  line-height: normal;
  color: var(--colorGray300);
}
@media (min-width: 768px) {
  .bForm .control-group > p {
    font-size: 0.75rem;
  }
}
.bForm .tError {
  display: none;
  font-size: 0.625rem;
  line-height: normal;
  color: #f85b56;
  font-weight: 300;
  display: none;
  align-items: center;
  column-gap: 8px;
}
@media (min-width: 768px) {
  .bForm .tError {
    font-size: 0.75rem;
  }
}
.bForm .tError:before {
  content: "";
  display: block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url(../img/ui/form/ico-error.svg) center center no-repeat;
  background-size: contain;
}
.bForm.error > .tError {
  display: flex;
}
.bForm .bBtn {
  width: 100%;
  display: flex;
  gap: 16px;
}
.bForm .bBtn .btn {
  width: 100%;
}

.splide__pagination {
  bottom: 24px;
  width: 100%;
  column-gap: 12px;
  flex-wrap: nowrap;
  margin-inline: auto;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  .splide__pagination {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  .splide__pagination {
    max-width: 1224px;
  }
}
.splide__pagination li {
  margin: 0;
  width: 8px;
  max-width: 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}
.splide__pagination .splide__pagination__page {
  width: 100%;
  height: 8px;
  margin: 0;
  background: var(--ci-gray20);
  box-shadow: none;
  border: none;
  border-radius: 0;
  opacity: 1;
  box-sizing: border-box;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.splide__pagination .splide__pagination__page.is-active {
  background: var(--colorPrimary);
  opacity: 1;
  transform: scale(1);
}
.splide__pagination .splide__pagination__page:hover {
  background: var(--colorPrimary);
}

.splide__progress {
  background: var(--colorPrimary);
  position: absolute;
  width: 100%;
  bottom: 0px;
}

.splide__progress__bar {
  height: 2px;
  background-color: var(--colorPrimary);
}

.splide__arrows {
  position: absolute;
  bottom: inherit;
  top: 50%;
  left: 0;
  width: 100%;
}
.splide__arrows .splide__arrow {
  opacity: 1;
  background: center center no-repeat;
  background-size: auto 100%;
  width: 44px;
  height: 44px;
  border-radius: inherit;
  zoom: 2;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.splide__arrows .splide__arrow svg {
  display: none;
}
.splide__arrows .splide__arrow:hover {
  opacity: 1;
}
.splide__arrows .splide__arrow:disabled {
  opacity: 0.4;
}
.splide__arrows .splide__arrow.splide__arrow--prev {
  left: 1%;
  background-image: url(../img/ui/slide/ico-arrow-slide-l.svg);
}
.splide__arrows .splide__arrow.splide__arrow--next {
  right: 1%;
  background-image: url(../img/ui/slide/ico-arrow-slide-r.svg);
}
.splide .bNumber {
  display: table;
  margin: 12px auto 0;
  font-weight: bold;
  background-color: var(--colorPrimary);
  padding: 0 12px;
  line-height: 30px;
  color: #ffffff;
  width: fit-content;
}
.splide .bNumber span {
  display: inline;
}

.splide__sr {
  display: none;
}

.splide__progress {
  display: none;
}

.bAccord {
  border-bottom: 1px solid var(--colorGray800);
  padding: 16px 0;
}
.bAccord:last-child {
  border: none;
}
.bAccord .btnAccord {
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 24px;
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 500;
}
@media (min-width: 768px) {
  .bAccord .btnAccord {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .bAccord .btnAccord {
    font-size: 1rem;
    line-height: normal;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .bAccord .btnAccord {
    font-size: 1.125rem;
  }
}
.bAccord .btnAccord:after {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  position: relative;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-left: 2px solid;
  border-color: var(--colorPrimary);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
}
.bAccord .btnAccord.opened {
  color: var(--colorPrimary);
  border-bottom: 1px solid var(--colorGray800);
  padding-bottom: 16px;
}
.bAccord .btnAccord.opened:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.bAccord .btnAccord:hover {
  color: var(--colorPrimary);
}
.bAccord .contentAccord {
  display: none;
  padding: 16px 0;
}

.jBox-wrapper {
  z-index: 99999 !important;
}

.jBox-overlay {
  z-index: 99998 !important;
  background-color: rgba(0, 0, 0, 0.7);
}

.jBox-Modal .jBox-container {
  overflow: hidden;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  background-color: transparent;
}

.jBox-Modal .jBox-container,
.jBox-Modal.jBox-closeButton-box:before {
  box-shadow: none;
}

.jBox-Modal .jBox-content {
  padding: 0;
  margin: 0 auto;
}

.jBox-closeButton-box .jBox-closeButton {
  width: 30px;
  height: 30px;
  background: url(../img/ui/form/ico-close.svg) center center no-repeat;
  background-size: 70% auto;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  right: 0px;
  top: 0px;
  overflow: hidden;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
.jBox-closeButton-box .jBox-closeButton:hover {
  background-color: var(--colorSecondary);
}
.jBox-closeButton-box .jBox-closeButton svg {
  display: none;
}

.bModal {
  display: none;
  overflow: hidden;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  padding: 0px;
  background-color: transparent;
  margin: 0px;
  -webkit-box-shadow: 0px 0px 10px rgba(16, 50, 90, 0.2);
  -moz-box-shadow: 0px 0px 10px rgba(16, 50, 90, 0.2);
  box-shadow: 0px 0px 10px rgba(16, 50, 90, 0.2);
}

.bCard {
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  padding: 24px 16px;
  overflow: hidden;
  border-radius: 48px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  -ms-border-radius: 48px;
  -o-border-radius: 48px;
}
@media (min-width: 768px) {
  .bCard {
    padding: 32px;
  }
}
.bCard img {
  display: block;
  width: 100%;
  height: auto;
}
.bCard .bTitle {
  margin-bottom: 16px;
}
.bCard .bTitle h3 {
  font-size: 4.5rem;
  line-height: normal;
  color: var(--colorPrimary);
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .bCard .bTitle h3 {
    font-size: 2.75rem;
    line-height: normal;
  }
}
.bCard .bText {
  margin-bottom: 24px;
  text-align: center;
}
.bCard .bText p {
  font-size: 0.875rem;
  line-height: normal;
}
@media (min-width: 768px) {
  .bCard .bText p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .bCard .bText p {
    font-size: 1rem;
    line-height: normal;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .bCard .bText p {
    font-size: 1.125rem;
  }
}

.bModal.VDO .bYoutube {
  width: 70vw;
  padding-top: 56.25%;
}
@media (min-width: 767px) and (max-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .bModal.VDO .bYoutube {
    width: 80vw;
  }
}
@media (max-width: 767px) {
  .bModal.VDO .bYoutube {
    width: 90vw;
    padding: 0 20px;
    padding-top: 56.25%;
  }
}
.bModal.VDO iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.bModal.Image .bPic {
  width: 90vw;
}
@media (min-width: 768px) {
  .bModal.Image .bPic {
    width: 80vw;
  }
}
.bModal.Image a {
  color: #ffffff;
  margin-top: 16px;
}
.bModal.Image img {
  height: auto;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .bModal.Image img {
    width: auto;
    max-height: 80vh;
  }
}

#pPagination {
  margin: 20px 0;
}
#pPagination .bPagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 36px;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  #pPagination .bPagination {
    column-gap: 10px;
  }
}
@media (max-width: 320px) {
  #pPagination .bPagination {
    zoom: 0.7;
  }
}
#pPagination .bPagination .btnPagination, #pPagination .bPagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  color: var(--colorTypoSubtext2);
  white-space: nowrap;
  font-weight: 300;
}
#pPagination .bPagination .btnPagination.active, #pPagination .bPagination a.active {
  color: var(--colorPrimary);
  font-weight: bold;
}
#pPagination .bPagination .btnPagination:hover, #pPagination .bPagination a:hover {
  color: var(--colorPrimary);
}
#pPagination .bPagination .btnPagination.disable, #pPagination .bPagination a.disable {
  background-color: var(--colorGray800);
  color: var(--colorGray50);
  border: none;
  cursor: default;
}
#pPagination .bPagination .btnPagination.disable:hover, #pPagination .bPagination a.disable:hover {
  background-color: var(--colorGray800);
  color: var(--colorGray50);
}
@media (max-width: 767px) {
  #pPagination .bPagination .btnPagination, #pPagination .bPagination a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
#pPagination .bPagination .bCenter {
  display: flex;
  column-gap: 56px;
  justify-content: center;
}
@media (max-width: 767px) {
  #pPagination .bPagination .bCenter {
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 8px;
  }
}
#pPagination .bPagination .bLeft a,
#pPagination .bPagination .bRight a {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  display: flex;
  flex-wrap: nowrap;
  background-color: var(--colorPrimary);
  border: 1px solid transparent;
  font-size: 0.875rem;
  line-height: normal;
  zoom: 0.8;
}
@media (min-width: 768px) {
  #pPagination .bPagination .bLeft a,
  #pPagination .bPagination .bRight a {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  #pPagination .bPagination .bLeft a,
  #pPagination .bPagination .bRight a {
    zoom: 1;
  }
}
#pPagination .bPagination .bLeft a:before, #pPagination .bPagination .bLeft a:after,
#pPagination .bPagination .bRight a:before,
#pPagination .bPagination .bRight a:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
#pPagination .bPagination .bLeft a:hover,
#pPagination .bPagination .bRight a:hover {
  background-color: #f7fcfe;
  border-color: var(--colorPrimary);
}
#pPagination .bPagination .bLeft a:after {
  display: none;
}
#pPagination .bPagination .bLeft a:before {
  background-image: url(../img/ui/pagiantion/ico-arrowL.svg);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ui/pagiantion/ico-arrowL.svg") center center no-repeat;
  mask: url("../img/ui/pagiantion/ico-arrowL.svg") center center no-repeat;
  mask-size: contain;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  background-color: #f7fcfe;
}
#pPagination .bPagination .bLeft a:hover:before {
  background-color: var(--colorPrimary);
}
#pPagination .bPagination .bRight a:before {
  display: none;
}
#pPagination .bPagination .bRight a:after {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-mask: url("../img/ui/pagiantion/ico-arrowR.svg") center center no-repeat;
  mask: url("../img/ui/pagiantion/ico-arrowR.svg") center center no-repeat;
  mask-size: contain;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  background-color: #f7fcfe;
}
#pPagination .bPagination .bRight a:hover:after {
  background-color: var(--colorPrimary);
}

section#pFloatShare {
  position: relative;
  display: flex;
  width: 100%;
  z-index: 94033;
  justify-content: center;
  padding-bottom: 32px;
}
@media (min-width: 1280px) {
  section#pFloatShare {
    position: absolute;
    top: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
  }
}
section#pFloatShare .bFloatShare {
  background-color: var(--colorGray100);
  padding: 10px 20px;
  overflow: hidden;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  display: flex;
  gap: 12px;
  flex-direction: row;
  align-items: center;
}
@media (min-width: 1280px) {
  section#pFloatShare .bFloatShare {
    padding: 20px;
    flex-direction: column;
  }
}
section#pFloatShare .st-custom-button {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  width: 32px;
  height: 32px;
  background: center center no-repeat;
  background-color: var(--colorGray100);
  overflow: hidden;
  text-indent: -99999px;
  background-size: auto;
}
section#pFloatShare .st-custom-button[data-network=facebook] {
  background-image: url(../img/ui/sharethis/ico-fb.svg);
}
section#pFloatShare .st-custom-button[data-network=twitter] {
  background-image: url(../img/ui/sharethis/ico-tw.svg);
}
section#pFloatShare .st-custom-button[data-network=linkedin] {
  background-image: url(../img/ui/sharethis/ico-linkedin.svg);
}
section#pFloatShare .st-custom-button[data-network=email] {
  background-image: url(../img/ui/sharethis/ico-emil.svg);
}
section#pFloatShare .st-custom-button[data-network=print] {
  background-image: url(../img/ui/sharethis/ico-print.svg);
}
section#pFloatShare .st-custom-button[data-network=copy] {
  background-image: url(../img/ui/sharethis/ioc-copy.svg);
  background-size: auto 35%;
}
section#pFloatShare .st-custom-button[data-network=copy].complete {
  background-color: #ffffff;
  background-image: url(../img/ui/sharethis/ico-complete.svg);
  background-size: auto 50%;
}
section#pFloatShare .st-custom-button:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
section#pFloatShare span {
  color: var(--colorGray400);
  text-align: center;
}

section#pOtp {
  padding: 40px 0;
}
section#pOtp .bOtpMain {
  display: flex;
  justify-content: center;
}
section#pOtp .bOtpMain .bOtp {
  width: 100%;
  padding: 0;
}
section#pOtp .bOtpMain .bOtp .bTitle {
  text-align: center;
  margin-bottom: 20px;
}
section#pOtp .bOtpMain .bOtp .bTitle h2 {
  font-size: 1.125rem;
  line-height: normal;
}
@media (min-width: 768px) {
  section#pOtp .bOtpMain .bOtp .bTitle h2 {
    font-size: 1.25rem;
  }
}
section#pOtp .bOtpMain .bOtp .bTitle p {
  font-size: 0.875rem;
  line-height: normal;
}
@media (min-width: 768px) {
  section#pOtp .bOtpMain .bOtp .bTitle p {
    font-size: 1rem;
  }
}
section#pOtp .bOtpMain .bOtp .bFrom .control-group.otp {
  display: flex;
  column-gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
section#pOtp .bOtpMain .bOtp .bFrom .control-group.otp input[type=text] {
  max-width: 48px;
  height: 48px;
  text-align: center;
  font-size: 1.125rem;
  line-height: normal;
}
@media (min-width: 768px) {
  section#pOtp .bOtpMain .bOtp .bFrom .control-group.otp input[type=text] {
    font-size: 1.25rem;
  }
}
section#pOtp .bOtpMain .bOtp .bFrom .control-group.otp input::-webkit-outer-spin-button,
section#pOtp .bOtpMain .bOtp .bFrom .control-group.otp input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
section#pOtp .bOtpMain .bOtp .bFrom .control-group.otp input[type=number] {
  -moz-appearance: textfield;
}
section#pOtp .bOtpMain .bOtp .bFrom .bCountTime {
  color: var(--colorPrimaryDark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#pOtp .bOtpMain .bOtp .bFrom .bCountTime span {
  font-weight: 500;
  margin: 0 5px;
}
section#pOtp .bOtpMain .bOtp .bFrom .bTextSend {
  margin-bottom: 36px;
  font-size: 0.75rem;
  line-height: normal;
  text-align: center;
  color: #747474;
}
@media (min-width: 768px) {
  section#pOtp .bOtpMain .bOtp .bFrom .bTextSend {
    font-size: 0.875rem;
  }
}
section#pOtp .bOtpMain .bOtp .bFrom .bTextSend a {
  color: var(--colorPrimary);
  font-weight: 500;
}
section#pOtp .bOtpMain .bOtp .bFrom .bText {
  text-align: center;
  font-size: 0.625rem;
  line-height: normal;
  margin-bottom: 24px;
  color: var(--colorPrimary);
}
@media (min-width: 768px) {
  section#pOtp .bOtpMain .bOtp .bFrom .bText {
    font-size: 0.75rem;
  }
}
section#pOtp .bOtpMain .bOtp .bFrom .bText a {
  text-decoration: underline;
}
section#pOtp .bOtpMain .bOtp .bFrom .bText b {
  color: var(--colorTypoBasetext);
}
section#pOtp .bOtpMain .bOtp .bBtn {
  display: flex;
  align-content: center;
  flex-direction: column;
}
section#pOtp .bOtpMain .bOtp .bBtn span {
  font-size: 0.625rem;
  line-height: normal;
  color: var(--colorPrimary);
  text-align: center;
  margin: 12px 0;
}
@media (min-width: 768px) {
  section#pOtp .bOtpMain .bOtp .bBtn span {
    font-size: 0.75rem;
  }
}
section#pOtp .bOtpMain .bOtp .bBtn .btn {
  max-width: 260px;
  max-width: max-content;
  margin: 0 auto;
}

div[id^=page] {
  padding-top: 24px;
}
@media (min-width: 1024px) {
  div[id^=page] {
    padding-top: 24px;
  }
}

.wrapContent {
  margin-inline: auto;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  .wrapContent {
    width: 90%;
  }
}
@media (min-width: 1024px) {
  .wrapContent {
    max-width: 1224px;
  }
}

.bAccord {
  margin-bottom: 24px;
}
.bAccord .btnAccord {
  font-size: 1rem;
  line-height: normal;
}
@media (min-width: 768px) {
  .bAccord .btnAccord {
    font-size: 1.125rem;
  }
}
#pCmsTexteditor * {
  line-height: normal;
  margin-bottom: 36px;
}
#pCmsTexteditor *:last-child,
#pCmsTexteditor * * > * {
  margin-bottom: 0;
}
#pCmsTexteditor h1,
#pCmsTexteditor h2,
#pCmsTexteditor h3,
#pCmsTexteditor h4,
#pCmsTexteditor h5,
#pCmsTexteditor h6 {
  margin-bottom: 16px;
  font-weight: bold;
}
#pCmsTexteditor h1 {
  font-size: 1.75rem;
  line-height: normal;
}
@media (min-width: 768px) {
  #pCmsTexteditor h1 {
    font-size: 2rem;
  }
}
#pCmsTexteditor h2 {
  font-size: 1.375rem;
  line-height: normal;
}
@media (min-width: 768px) {
  #pCmsTexteditor h2 {
    font-size: 1.5rem;
  }
}
#pCmsTexteditor h3 {
  font-size: 1.125rem;
  line-height: normal;
}
@media (min-width: 768px) {
  #pCmsTexteditor h3 {
    font-size: 1.25rem;
  }
}
#pCmsTexteditor h4 {
  font-size: 1rem;
  line-height: normal;
}
@media (min-width: 768px) {
  #pCmsTexteditor h4 {
    font-size: 1.125rem;
  }
}
#pCmsTexteditor h5 {
  font-size: 0.875rem;
  line-height: normal;
}
@media (min-width: 768px) {
  #pCmsTexteditor h5 {
    font-size: 1rem;
  }
}
#pCmsTexteditor h6 {
  font-size: 0.75rem;
  line-height: normal;
}
@media (min-width: 768px) {
  #pCmsTexteditor h6 {
    font-size: 0.875rem;
  }
}
#pCmsTexteditor img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
#pCmsTexteditor span {
  color: var(--colorPrimary);
}
#pCmsTexteditor a {
  word-break: break-all;
  color: var(--colorPrimary);
  text-decoration: underline;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}
#pCmsTexteditor a:hover {
  color: var(--colorSecondary);
}
#pCmsTexteditor blockquote {
  color: var(--colorTypoBasetext);
  background: #f9f9f9;
  border-left: 10px solid var(--colorSecondary);
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "“" "”" "‘" "’";
}
#pCmsTexteditor blockquote:before {
  color: var(--colorPrimary);
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
#pCmsTexteditor blockquote p {
  display: inline;
}
#pCmsTexteditor hr {
  width: 100%;
  height: 1px;
  background-color: var(--colorPrimaryOutline);
}
#pCmsTexteditor table {
  width: 100%;
}
#pCmsTexteditor table td {
  padding: 6px 6px;
}
#pCmsTexteditor dl {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}
#pCmsTexteditor dl dt,
#pCmsTexteditor dl dd,
#pCmsTexteditor dl dt > *,
#pCmsTexteditor dl dd > * {
  margin-bottom: 18px;
}
#pCmsTexteditor dl dt:last-child,
#pCmsTexteditor dl dd:last-child,
#pCmsTexteditor dl dt > *:last-child,
#pCmsTexteditor dl dd > *:last-child {
  margin-bottom: 0;
}
#pCmsTexteditor ul li {
  list-style: disc;
  margin-bottom: 0;
}
#pCmsTexteditor ol li {
  margin-bottom: 0;
}
#pCmsTexteditor b {
  font-weight: 700;
}
#pCmsTexteditor strong {
  font-weight: bold;
}

#pButton {
  display: grid;
  grid-template-columns: auto auto;
  grid-row-gap: 24px;
  grid-column-gap: 24px;
}

#pSlide {
  display: grid;
  grid-template-columns: auto auto;
  grid-row-gap: 24px;
  grid-column-gap: 24px;
}
#pSlide .bannerContent img {
  display: block;
  width: 100%;
  height: auto;
}
#pSlide .bSlideGallery img {
  display: block;
  width: 100%;
  height: auto;
}
#pSlide .bSlideGallery .bNumber {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background-color: var(--colorPrimary);
  color: #ffffff;
  padding: 4px 0;
  width: 65px;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
}
@media (max-width: 767px) {
  #pSlide .bSlideGallery .bNumber {
    right: 12px;
    bottom: 12px;
    zoom: 0.8;
  }
}

#pModal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

#pTabMenu .bTabMenu {
  display: flex;
  justify-content: center;
}
#pTabMenu .bTabMenu nav {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  background: var(--colorGray700);
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
  padding: 1px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #pTabMenu .bTabMenu nav {
    flex-direction: row;
    width: auto;
  }
}
#pTabMenu .bTabMenu nav a {
  font-size: 1.125rem;
  line-height: normal;
  font-weight: 500;
  color: var(--colorPrimary);
  min-width: 220px;
  padding: 8px 16px;
  text-align: center;
  overflow: hidden;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  #pTabMenu .bTabMenu nav a {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  #pTabMenu .bTabMenu nav a {
    padding: 12px 16px;
  }
}
#pTabMenu .bTabMenu nav a:hover {
  background-color: #ffd6d6;
}
#pTabMenu .bTabMenu nav a.active {
  background-color: var(--colorPrimary);
  border-color: #a2191f;
  color: #ffffff;
  box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03);
}

/*# sourceMappingURL=designsystem.css.map */
