@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+Thai:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  background: #fff;
  font: 400 1rem/1.5 "Noto Sans Thai", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

a {
  color: #000000;
  transition: all 300ms;
}
a:hover {
  text-decoration: none;
  color: #010A35;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1280px;
}

* {
  box-sizing: border-box;
}

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

.bg-gradient {
  background: linear-gradient(45deg, #3f3027 0%, #765642 100%);
}

.breadcrumbs {
  background: #c0ab9a;
  padding: 10px 0;
}
.breadcrumbs nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.breadcrumbs nav a:hover {
  color: #FFE9A6;
}

.bg-gray {
  background: #f3f3f3;
}

.page-head .page-title {
  font-size: 32px;
  font-weight: 700;
  color: #010A35;
  margin: 40px 0 20px;
  text-align: center;
}
.page-head .page-description {
  font-size: 18px;
  font-weight: 400;
  color: #010A35;
  margin: 0 0 35px;
  text-align: center;
}

.section-left .section-sub-title {
  font-weight: 700;
  font-size: 16px;
}
.section-left .section-title {
  font-size: 55px;
  font-weight: 700;
}
.section-left p {
  font-size: 18px;
}
.section-left .section-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 0;
}
.section-left .section-contact .qr-code {
  width: 118px;
}
.section-left .section-contact .text p {
  margin: 0 0 3px;
}

@media (max-width: 1210px) {
  body {
    padding-top: 68px;
  }
  .container {
    width: 98%;
    max-width: none;
  }
}
@media (max-width: 1023px) {
  .section-left .section-title {
    font-size: 32px;
    line-height: 1.2;
  }
  .section-left .section-contact {
    margin: 15px 0 0;
  }
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

input[type=text], input[type=email], input[type=password] {
  -webkit-appearance: none;
  -webkit-padding-start: 2px;
  -moz-padding-start: 2px;
  background: #fff;
  border: none;
  border-radius: 8px;
  color: #555;
  font-size: inherit;
  margin: 0;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-family: Kanit;
  font-weight: 200;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 30px;
}
input[type=text]:-webkit-autofill, input[type=text]:-webkit-autofill:hover, input[type=text]:-webkit-autofill:focus, input[type=text]:-webkit-autofill:active, input[type=email]:-webkit-autofill, input[type=email]:-webkit-autofill:hover, input[type=email]:-webkit-autofill:focus, input[type=email]:-webkit-autofill:active, input[type=password]:-webkit-autofill, input[type=password]:-webkit-autofill:hover, input[type=password]:-webkit-autofill:focus, input[type=password]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #555 !important;
  background-color: transparent !important;
  transition: background-color 5000s ease-in-out 0s;
}

.select-box {
  position: relative;
  width: 100%;
}
.select-box select {
  -webkit-appearance: none;
  -webkit-padding-start: 2px;
  -moz-padding-start: 2px;
  background: #fff;
  border: none;
  border-radius: 8px;
  color: #555;
  font-size: inherit;
  margin: 0;
  height: 40px;
  width: 100%;
  padding: 0 10px;
  font-family: Kanit;
  font-weight: 300;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.select-box select:focus {
  -webkit-appearance: none;
  appearance: none;
}
.select-box select:autofill  {
  -webkit-appearance: none;
  appearance: none;
  background: none;
}
.select-box select:-webkit-autofill, .select-box select:-webkit-autofill:hover, .select-box select:-webkit-autofill:focus, .select-box select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #555 !important;
  background-color: transparent !important;
  transition: background-color 5000s ease-in-out 0s;
  color: #fff !important;
}
.select-box:after {
  content: "";
  display: block;
  background: url("../images/icons/arr-down.svg") no-repeat center center;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 15px;
  right: 10px;
}

.btn, .btn-line, .btn-2, .btn-main, .btn-black {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 30px;
  transition: all 300ms;
}
.btn:hover, .btn-line:hover, .btn-2:hover, .btn-main:hover, .btn-black:hover {
  color: #fff;
  transform: scale(1.05);
}

.btn-main, .btn-black {
  background: #FFE9A6;
  border: 1.5px solid #D6D6D6;
  color: #fff;
}

.btn-2 {
  background: #010A35;
  color: #fff;
  border: 1.5px solid #010A35;
}

.btn-line {
  background: #3ACE01;
  color: #fff;
  border: none;
}

.btn-download-all {
  width: 100%;
  height: 70px;
  border-radius: 35px;
  max-width: 500px;
  margin: 0 auto 40px auto;
  border: 2px solid #FFE9A6;
  color: #FFE9A6;
}

.btn-black {
  background: #000;
  color: #fff;
}

.btn-toggle {
  background: #F7F5F2;
  font-size: 28px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  width: 100%;
  margin: 32px 0 20px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 600;
  font-family: "Kanit", sans-serif;
  outline: none;
}
.btn-toggle img {
  transition: all 300ms;
}
.btn-toggle:active, .btn-toggle:focus {
  border: none;
  outline: none;
}

@media (max-width: 640px) {
  .btn-toggle {
    font-size: 22px;
  }
}
.card-number {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #c3862b, #f1d085, #f3d169, #e8a45c, #b68340);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 3px;
  color: #171411;
}
.card-number .card-number-inner {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card-number .number {
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: 800;
  font-family: "Kanit", sans-serif;
  padding: 8px 0 3px;
}
.card-number .bottom {
  height: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #c3862b;
}
.card-number .bottom .price-label {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 45%;
  height: 100%;
  padding: 3px 15px 3px;
  font-size: 22px;
  background: linear-gradient(45deg, #c3862b 0%, #f1d085 25%, #f3d169 50%, #e8a45c 75%, #b68340 100%);
}
.card-number .bottom .price {
  width: 65%;
  font-size: 24px;
  font-weight: 600;
  color: #f00;
}

.tabien-card {
  background: #fff;
  width: 100%;
  padding: 14px;
  border-radius: 16px;
}
.tabien-card * {
  color: #000;
}
.tabien-card .tabien-thumb {
  width: 100%;
  position: relative;
}
.tabien-card .tabien-thumb img {
  width: 100%;
}
.tabien-card .tabien-thumb .tabien-text {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  line-height: 1.3;
  height: fit-content;
  font-family: "Sarabun", sans-serif;
}
.tabien-card .tabien-thumb .tabien-text .number {
  font-size: 38px;
  font-weight: 700;
}
.tabien-card .tabien-thumb .tabien-text .province {
  display: flex;
  justify-content: center;
}
.tabien-card .tabien-thumb .tabien-text .province .sum {
  color: #f00;
  margin-left: 4px;
}
.tabien-card .card-price {
  text-align: center;
  line-height: 1.2;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}
.tabien-card .card-price strong {
  font-size: 30px;
  display: block;
  font-weight: 900;
}

@media (max-width: 1210px) {
  .tabien-card {
    padding: 8px;
  }
  .tabien-card .card-price strong {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .tabien-card {
    border-radius: 8px;
  }
  .tabien-card .card-price {
    gap: 4px;
    font-size: 14px;
    margin-top: 12px;
  }
  .tabien-card .card-price strong {
    font-size: 18px;
  }
  .tabien-card .tabien-thumb .tabien-text .number {
    font-size: 22px;
  }
  .tabien-card .tabien-thumb .tabien-text .province {
    font-size: 12px;
  }
}
header {
  padding: 0;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  height: 100px;
}
header .logo {
  width: 96px;
  display: block;
}
header .logo img {
  display: block;
  width: 100%;
}
header .d-flex {
  align-items: center;
  justify-content: space-between;
}
header .menu-container {
  padding: 25px 0 30px;
}
header .menu-top {
  font-size: 14px;
}
header .menu-top ul {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
header .menu-top ul li {
  list-style: none;
}
header .menu-top ul li a:hover {
  color: #000000;
}
header .social-top {
  display: flex;
  gap: 10px;
}
header .social-top a {
  display: block;
}
header .social-top a img {
  display: block;
  width: 35px;
  height: 35px;
}
header .header-fixed {
  background: #fff;
  height: 100px;
  transition: all 300ms;
}
header .header-fixed.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  height: fit-content;
}
header .header-fixed.fixed .menu-container {
  padding: 5px 0;
}

.menu-hamberger {
  display: none;
}

@media (max-width: 1210px) {
  header {
    height: 68px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
  }
  header .social-top {
    display: none;
  }
  header .logo {
    width: 80px;
    margin: 0;
    position: static;
  }
  header .menu-container {
    padding: 15px 0;
  }
  header .menu-top {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background: #010A35;
    z-index: 13;
    padding: 0;
    width: 300px;
    right: -100%;
    transition: all 300ms;
  }
  header .menu-top.show {
    right: 0;
  }
  header .menu-top ul {
    display: block;
    width: 100%;
  }
  header .menu-top ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header .menu-top ul li:nth-child(3), header .menu-top ul li:nth-child(4) {
    padding-left: 0;
    padding-right: 0;
  }
  header .menu-top ul li a {
    width: 100%;
    display: block;
    padding: 20px 25px;
    box-sizing: border-box;
    color: #fff;
  }
  header .menu-top ul li a:hover {
    color: #fff;
  }
  header .header-fixed {
    position: static;
    height: fit-content;
  }
  header .header-fixed.fixed .menu-container {
    padding: 15px 0;
  }
  .menu-hamberger {
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 12;
    border-radius: 25px;
    display: flex;
    align-items: center;
  }
  .menu-hamberger img {
    display: block;
    width: 100%;
  }
}
.banner-main {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner-main .container {
  position: relative;
}
.banner-main img {
  display: block;
  width: 100%;
}
.banner-main .banner-text {
  color: #fff;
  padding: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
  right: 0;
  width: 640px;
  max-width: 100%;
}
.banner-main .banner-text .banner-title, .banner-main .banner-text .banner-subtitle, .banner-main .banner-text .banner-contact {
  line-height: 1.4;
  margin: 0;
}
.banner-main .banner-text .banner-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
}
.banner-main .banner-text .banner-subtitle {
  color: #FFE9A6;
  font-size: 22px;
  font-weight: 700;
  margin: 0px 0 5px 0;
}
.banner-main .banner-text .banner-contact {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}
.banner-main .banner-text .banner-contact a {
  font-weight: 700;
  color: #fff;
}
.banner-main .main-slide {
  border-radius: 32px;
  overflow: hidden;
}
.banner-main .main-slide .slick-next, .banner-main .main-slide .slick-prev {
  background: url("../images/icons/arr-down.svg") rgba(192, 171, 154, 0.6) no-repeat center/20px;
  width: 50px;
  height: 50px;
  z-index: 2;
  border-radius: 50%;
}
.banner-main .main-slide .slick-next:before, .banner-main .main-slide .slick-prev:before {
  display: none !important;
  content: "";
}
.banner-main .main-slide .slick-next {
  right: 20px;
  transform: rotate(-90deg);
}
.banner-main .main-slide .slick-prev {
  left: 20px;
  transform: rotate(90deg);
}

@media (max-width: 640px) {
  .banner-main .banner-text .banner-title {
    font-size: 24px;
  }
  .banner-main .banner-text .banner-subtitle {
    font-size: 14px;
  }
  .banner-main .banner-text .banner-contact {
    font-size: 20px;
  }
}
.tabien-category {
  margin: 0 0 30px;
}
.tabien-category h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
  text-align: center;
}
.tabien-category nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tabien-category nav a {
  padding: 4px 16px;
  background: #fff;
  border-radius: 8px;
  font-size: 16px;
  color: #010A35;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #010A35;
  transition: background 0.3s ease, color 0.3s ease;
}
.tabien-category nav a:hover {
  background: #010A35;
  color: #fff;
}

.head-tabien-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #010A35;
  color: #fff;
  padding: 4px;
  min-width: 204px;
  width: fit-content;
  text-align: center;
  height: 45px;
  border-radius: 16px 16px 0 0;
  font-size: 20px;
  margin: 0;
}

.tabien-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  border: 1px solid #010A35;
  background: #eee;
  padding: 24px;
  border-radius: 0 0 16px 16px;
}
.tabien-list li {
  list-style: none;
}

.tabien-box {
  margin: 0 0 30px;
}
.tabien-box .tabien-list-box {
  display: none;
}
.tabien-box.show .tabien-list-box {
  display: block;
}
.tabien-box.show .btn-toggle img {
  transform: rotate(180deg);
}

@media (max-width: 1210px) {
  .tabien-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1023px) {
  .tabien-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}
@media (max-width: 640px) {
  .card-tabein .card-content .card-title {
    font-size: 22px;
    margin: 0;
  }
  .card-tabein .card-content p {
    font-size: 12px;
  }
  .card-tabein.big .card-content .card-title {
    font-size: 32px;
  }
  .card-tabein.big .card-content p {
    font-size: 14px;
  }
  .card-tabein .card-price {
    font-size: 20px;
  }
}
@media (max-width: 1210px) {
  .tabien-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .tabien-list {
    padding: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .tabien-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.search-form form {
  background: #010A35;
  display: flex;
  justify-content: space-between;
  padding: 18px 30px;
  border-radius: 100px;
  height: 75px;
}
.search-form h2 {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin: 0 0 15px;
}
.search-form label {
  margin: 0;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.search-form select {
  background: none;
  height: 100%;
  padding: 0;
  color: #fff;
}
.search-form .text, .search-form .select-box {
  background: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  height: 22px;
  padding: 0;
  font-size: 14px;
  color: #fff;
}
.search-form .text::placeholder, .search-form .select-box::placeholder {
  color: #ABABAB;
}
.search-form .select-box:after {
  background-image: url("../images/icons/arr-down-w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 6px;
  right: 0;
}
.search-form .select-box select:invalid {
  color: #ABABAB;
}
.search-form .form-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.search-form .column {
  display: flex;
  flex-direction: column;
  gap: 0px;
  border-right: 1px solid #fff;
  padding: 0 30px 0 0;
}
.search-form .column:last-child {
  border-right: none;
}
.search-form .column-right {
  width: 168px;
}
.search-form .column-right .btn-main, .search-form .column-right .btn-black {
  background: #fff;
  color: #010A35;
  border-radius: 50px;
  width: 100%;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

@media (max-width: 1210px) {
  .search-form .form-grid {
    gap: 12px;
  }
  .search-form .column {
    padding-right: 12px;
  }
  .search-form .btn-main, .search-form .btn-black {
    padding: 0;
  }
}
@media (max-width: 1023px) {
  .search-form .column {
    border-right: none;
    padding: 0;
  }
  .search-form form {
    padding: 16px;
    height: fit-content;
    flex-direction: column;
    border-radius: 16px;
    gap: 16px;
  }
  .search-form form label {
    display: none;
  }
  .search-form form .text, .search-form form .select-box {
    background: #fff;
    height: 35px;
    border-radius: 8px;
    padding: 0 15px;
  }
  .search-form .form-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .search-form .column.mobile-full {
    grid-column: 1/-1;
  }
  .search-form .column-right {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .search-form .column.mobile-full {
    grid-column: 1/-1;
  }
}
.news-and-article {
  padding: 70px 0 56px;
  background: #f3f3f3;
}
.news-and-article h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #010A35;
  margin: 0 0 22px;
}
.news-and-article ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.news-and-article li {
  list-style: none;
}

.card-article .card-article-img {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card-article .card-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-article .category-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 16px 0 10px;
  border-bottom: 1px solid #010a35;
}
.card-article .category-date span {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.card-article .category-date .category {
  background: #010A35;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  text-align: center;
  min-width: 70px;
}
.card-article .card-article-text {
  font-size: 18px;
  font-weight: 700;
  color: #010A35;
  margin: 0;
}

.main-article .news-and-article {
  background: none;
  padding: 20px 0;
}
.main-article .news-and-article .btn-2 {
  margin: 30px auto 0;
}

@media (max-width: 1210px) {
  .news-and-article {
    padding: 30px 0;
  }
  .news-and-article ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .news-and-article ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .news-and-article ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.breadcrumb {
  background: none;
  padding: 20px 0;
  margin: 0;
}
.breadcrumb ul {
  list-style: none;
  display: flex;
  gap: 0px;
  align-items: center;
}
.breadcrumb ul li {
  font-size: 14px;
  font-weight: 300;
  height: 100%;
  display: flex;
  align-items: center;
}
.breadcrumb ul li:after {
  content: "";
  display: block;
  width: 0.5px;
  height: 14px;
  background-color: #010A35;
  margin: 0 10px;
}
.breadcrumb ul li:last-child:after {
  display: none;
}
.breadcrumb ul li a {
  color: #010A35;
  text-decoration: none;
  display: block;
  height: 100%;
}

.main-home .banner-main {
  margin-bottom: 34px;
}

.home-slogan {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 64px 0;
}
.home-slogan ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
}
.home-slogan li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 0.5px solid #010A35;
  padding: 15px 0;
  color: #010A35;
  font-weight: 700;
  font-size: 22px;
}
.home-slogan li .icons {
  width: 45px;
  height: 45px;
}

.horo-search {
  background: url("../images/horo-search.png") no-repeat center/cover;
  width: 100%;
  min-height: 75px;
  border-radius: 100px;
  margin: 0 0 70px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.horo-search form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.horo-search h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}
.horo-search input {
  flex: 1;
  max-width: 400px;
  padding: 0 25px;
}
.horo-search .btn-black {
  min-width: 160px;
}

.why-to-buy {
  padding: 64px 0;
}
.why-to-buy h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.why-to-buy .left {
  width: calc(100% - 740px);
  padding-right: 18px;
}
.why-to-buy .left ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-to-buy .left li {
  list-style: none;
  display: flex;
  background: #010A35;
  color: #fff;
  gap: 16px;
  padding: 8px 25px;
  border-radius: 16px;
  align-items: center;
  height: 80px;
}
.why-to-buy .left li .icons {
  width: 65px;
  height: 65px;
  overflow: hidden;
  border-radius: 50%;
}
.why-to-buy .left li h4 {
  font-size: 22px;
  font-weight: 700;
  color: #FFE9A6;
  margin: 0;
}
.why-to-buy .left li p {
  margin: 0;
}
.why-to-buy .right {
  width: 740px;
}

@media (max-width: 1210px) {
  .home-slogan .right li {
    font-size: 18px;
  }
  .horo-search {
    margin: 0 0 40px;
  }
  .horo-search form {
    padding: 16px;
  }
  .horo-search h3 {
    font-size: 20px;
  }
  .horo-search input {
    width: 200px;
  }
  .why-to-buy {
    padding: 20px 0 30px;
  }
  .why-to-buy h3 {
    text-align: center;
    margin-bottom: 24px;
  }
  .why-to-buy .d-flex {
    flex-wrap: wrap;
    gap: 16px;
  }
  .why-to-buy .left {
    width: 100%;
    padding-right: 0;
  }
  .why-to-buy .right {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .home-slogan {
    flex-direction: column;
    gap: 30px;
    padding: 50px 0;
  }
  .home-slogan ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .horo-search {
    margin: 0 0 40px;
    border-radius: 16px;
  }
  .horo-search form {
    flex-wrap: wrap;
    height: fit-content;
    padding: 20px;
  }
  .horo-search h3 {
    width: 100%;
    text-align: center;
  }
  .horo-search input {
    width: 200px;
  }
}
@media (max-width: 640px) {
  .horo-search input {
    width: 100%;
    max-width: 100%;
  }
  .horo-search .btn-black {
    width: 100%;
  }
  .why-to-buy .left li {
    height: auto;
  }
  .why-to-buy .left li h4 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .why-to-buy .left li p {
    font-size: 14px;
    line-height: 1;
  }
}
.main-detail .breadcrumb {
  background: #010A35;
  border-radius: 0;
}
.main-detail .breadcrumb * {
  color: #fff;
}
.main-detail .breadcrumb li:after {
  background: #ccc;
}
.main-detail .detail-content {
  padding: 32px 0 20px;
}
.main-detail .detail-content .box-flex {
  display: flex;
}
.main-detail .detail-content .box-flex .left {
  width: 418px;
}
.main-detail .detail-content .box-flex .left .tabien-img-box {
  position: relative;
}
.main-detail .detail-content .box-flex .left .tabien-img-box .tabien-text {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  font-size: 22px;
  text-align: center;
  font-weight: 400;
  font-family: "Sarabun", sans-serif;
}
.main-detail .detail-content .box-flex .left .tabien-img-box .tabien-text strong {
  display: block;
  font-size: 70px;
  font-weight: 700;
}
.main-detail .detail-content .box-flex .right {
  width: calc(100% - 418px);
  padding: 0 0 0 20px;
}
.main-detail .detail-content .box-flex .right .detail-title {
  font-size: 40px;
  font-weight: 900;
  margin: 0;
}
.main-detail .detail-content .box-flex .right .detail-price {
  font-size: 32px;
  font-weight: 900;
  color: #FF0000;
  margin: 0;
}
.main-detail .detail-content .box-flex .right .detail-sum {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
}
.main-detail .detail-content .box-flex .right .detail-row-box {
  padding: 30px 0;
}
.main-detail .detail-content .box-flex .right .detail-row {
  display: flex;
  font-size: 22px;
  padding: 16px 0;
  border-top: 1px solid #000000;
}
.main-detail .detail-content .box-flex .right .detail-row.last {
  border-bottom: 1px solid #000000;
}
.main-detail .detail-content .box-flex .right .detail-row strong {
  font-size: 24px;
  font-weight: 700;
}
.main-detail .detail-content .box-flex .right .detail-row small {
  font-size: 18px;
  line-height: 1.2;
}
.main-detail .detail-content .box-flex .right .detail-row .label {
  width: 200px;
  flex-shrink: 0;
}
.main-detail .detail-btn {
  padding: 24px 0 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.main-detail .detail-btn .btn, .main-detail .detail-btn .btn-main, .main-detail .detail-btn .btn-2, .main-detail .detail-btn .btn-line, .main-detail .detail-btn .btn-black {
  width: 200px;
  max-width: 100%;
  height: 49px;
  display: flex;
  gap: 8px;
  border-radius: 16px;
}
@media (max-width: 1023px) {
  .main-detail .detail-content .box-flex {
    flex-direction: column;
    gap: 30px;
  }
  .main-detail .detail-content .box-flex .left, .main-detail .detail-content .box-flex .right {
    width: 100%;
  }
  .main-detail .detail-content .box-flex .left .tabien-img-box {
    max-width: 300px;
  }
  .main-detail .detail-content .box-flex .right {
    padding: 0;
  }
  .main-detail .detail-content .box-flex .right .detail-row {
    flex-direction: column;
    font-size: 16px;
  }
  .main-detail .detail-content .box-flex .right .detail-row small {
    font-size: 14px;
  }
  .main-detail .detail-content .box-flex .detail-btn .btn, .main-detail .detail-content .box-flex .detail-btn .btn-main, .main-detail .detail-content .box-flex .detail-btn .btn-2, .main-detail .detail-content .box-flex .detail-btn .btn-line, .main-detail .detail-content .box-flex .detail-btn .btn-black {
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
}

.main-reserve .reserve-document {
  display: flex;
  gap: 30px;
}
.main-reserve .reserve-document .reserve-list-title {
  font-size: 22px;
  font-weight: 700;
  color: #010A35;
  margin: 0 0 20px;
}
.main-reserve .reserve-document .left {
  width: 60%;
}
.main-reserve .reserve-document .left img {
  width: 100%;
  height: auto;
}
.main-reserve .reserve-document ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-reserve .reserve-document li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 400;
  color: #010A35;
}
.main-reserve .reserve-document li .icons {
  width: 30px;
  height: 30px;
  background: #FFE9A6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.main-reserve .reserve-document li .icons img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-reserve .reserve-document .right {
  width: 40%;
}
.main-reserve .reserve-howto {
  background: #f3f3f3;
  padding: 60px 0;
  margin: 60px 0;
  text-align: center;
}
.main-reserve .reserve-howto .reserve-howto-title {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 700;
  color: #010A35;
}
.main-reserve .reserve-howto .reserve-howto-subtitle {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #010A35;
}
.main-reserve .reserve-howto .howto-step {
  width: fit-content;
  position: relative;
  margin: 25px auto;
}
.main-reserve .reserve-howto .howto-step::after {
  content: "";
  display: block;
  clear: both;
  background: #010A35;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  top: 25px;
  z-index: 1;
  width: calc(100% - 150px);
}
.main-reserve .reserve-howto .howto-step ul {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.main-reserve .reserve-howto .howto-step li {
  flex-shrink: 0;
  list-style: none;
  width: 200px;
}
.main-reserve .reserve-howto .howto-step .number {
  background: #010A35;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFE9A6;
  font-size: 30px;
  font-weight: 900;
  margin: auto;
}
.main-reserve .reserve-howto .howto-step .content {
  background: #D9D9D9;
  border-radius: 8px;
  height: 138px;
  width: 100%;
  padding: 15px;
  margin-top: 16px;
}
.main-reserve .reserve-howto .how-to-text {
  width: 670px;
  margin: 34px auto 0;
  font-size: 18px;
  max-width: 100%;
}
.main-reserve .reserve-howto .how-to-text strong {
  display: block;
}
.main-reserve .reserve-graphic {
  width: 1060px;
  margin: auto;
  max-width: 100%;
}
.main-reserve .reserve-graphic .graphic-title {
  font-size: 32px;
  font-weight: 700;
}
.main-reserve .reserve-graphic .box-flex {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-reserve .reserve-graphic .box-flex .left {
  width: 524px;
  flex-shrink: 0;
}
.main-reserve .reserve-graphic .box-flex .left .graphic-list {
  margin: 15px 0 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #010A35;
}
.main-reserve .reserve-graphic .box-flex .left .btn-2 {
  width: 415px;
  max-width: 100%;
  gap: 12px;
  height: 42px;
}
.main-reserve .reserve-graphic .box-flex .left .btn-2 img {
  width: 28px;
  height: 28px;
}
.main-reserve .reserve-graphic .box-flex .right {
  width: calc(100% - 524px);
  max-width: 100%;
}
@media (max-width: 1023px) {
  .main-reserve .reserve-document {
    flex-direction: column;
    gap: 20px;
  }
  .main-reserve .reserve-document .left, .main-reserve .reserve-document .right {
    width: 100%;
  }
  .main-reserve .reserve-howto .reserve-howto-title {
    font-size: 22px;
  }
  .main-reserve .reserve-howto .reserve-howto-subtitle {
    font-size: 16px;
  }
  .main-reserve .reserve-howto .howto-step {
    overflow: auto;
    width: 100%;
  }
  .main-reserve .reserve-howto .howto-step::-webkit-scrollbar {
    display: none;
  }
  .main-reserve .reserve-howto .howto-step:after {
    width: 1064px;
    left: 0;
    right: 0;
  }
  .main-reserve .reserve-howto .howto-step ul {
    width: fit-content;
  }
  .main-reserve .reserve-howto .howto-step li {
    font-size: 12px;
  }
  .main-reserve .reserve-graphic {
    padding: 30px 20px;
    width: 100vw;
    margin: auto;
  }
  .main-reserve .reserve-graphic .box-flex {
    flex-direction: column;
    gap: 20px;
  }
  .main-reserve .reserve-graphic .box-flex .left, .main-reserve .reserve-graphic .box-flex .right {
    width: 100%;
  }
}

.faq-main {
  display: flex;
}
.faq-main .left {
  width: 524px;
}
.faq-main .left .faq-sub-title {
  font-weight: 700;
  font-size: 16px;
}
.faq-main .left .faq-title {
  font-size: 55px;
  font-weight: 700;
}
.faq-main .left p {
  font-size: 18px;
}
.faq-main .left .faq-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0 0;
}
.faq-main .left .faq-contact .qr-code {
  width: 118px;
}
.faq-main .left .faq-contact .text p {
  margin: 0 0 3px;
}
.faq-main .right {
  width: calc(100% - 524px);
  padding: 0 0 0 16px;
}
.faq-main .right .faq-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-main .right .faq-list li {
  list-style: none;
  border: 1px solid #010A35;
  border-radius: 16px;
  padding: 0 16px 16px;
}
.faq-main .right .faq-list li .button {
  cursor: pointer;
  padding: 16px 0 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: 700;
  font-size: 20px;
}
.faq-main .right .faq-list li .button:after {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  mask-image: url("../images/icons/arrow-down.svg");
  -webkit-mask-image: url("../images/icons/arrow-down.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100%;
  -webkit-mask-size: 100% 100%;
  background-color: #010A35;
}
.faq-main .right .faq-list li .faq-content {
  padding: 5px 0 0;
  display: none;
}
@media (max-width: 1023px) {
  .faq-main {
    flex-direction: column;
    gap: 20px;
  }
  .faq-main .left, .faq-main .right {
    width: 100%;
    padding: 0;
  }
}

.review-card {
  background: #f3f3f3;
  padding: 18px;
  border-radius: 32px;
  border: 2px solid #010a35;
  width: 100%;
}
.review-card .review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 0 15px;
}
.review-card .review-top .star {
  display: flex;
  gap: 5px;
}
.review-card .review-top .star .star-item {
  width: 22px;
  height: 21px;
  mask-image: url("../images/icons/star.svg");
  -webkit-mask-image: url("../images/icons/star.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100%;
  -webkit-mask-size: 100% 100%;
  background-color: #848484;
}
.review-card .review-top .star .star-item.active {
  background-color: #010A35;
}
.review-card .box-flex {
  display: flex;
  gap: 16px;
}
.review-card .box-flex .left {
  width: 150px;
  flex-shrink: 0;
}
.review-card .box-flex .right {
  font-size: 18px;
}
.review-card .box-flex .right .top {
  line-height: 1.4;
}
.review-card .box-flex .right .top strong {
  display: block;
  font-size: 20px;
}
.review-card .box-flex .right .bottom {
  line-height: 1;
  padding: 4px 0 0;
}
.review-card .box-flex .right .bottom span {
  font-size: 14px;
}
.review-card.bg-blue {
  background: #010A35;
}
.review-card.bg-blue .right {
  color: #FFE9A6;
}
.review-card.bg-blue .review-top {
  color: #909090;
}
.review-card.bg-blue .review-top .star .star-item.active {
  background-color: #FFE9A6;
}

.main-review .review-sub-title {
  font-weight: 700;
  font-size: 16px;
}
.main-review .review-title {
  font-size: 55px;
  font-weight: 700;
}
.main-review .review-content {
  padding: 20px 0 0;
}
.main-review .review-content .review-swiper {
  padding-bottom: 50px;
}
.main-review .review-content .review-swiper .swiper-slide {
  width: auto;
}
.main-review .review-content .review-swiper .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
}
.main-review .review-content .review-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #010A35;
}
.main-review .review-content .review-text {
  font-size: 18px;
  margin-bottom: 30px;
}

.main-howto .howto-wrapper-title {
  background: #010A35;
  color: #fff;
  padding: 15px 45px;
  min-width: 300px;
  min-height: 45px;
  text-align: center;
  width: fit-content;
  font-size: 20px;
  font-weight: 700;
  border-radius: 16px 16px 0 0;
  margin: 0;
}
.main-howto .howto-box {
  background: #f3f3f3;
  padding: 16px;
  border: 1px solid #010A35;
  border-radius: 0 16px 16px 16px;
}
.main-howto .howto-box .howto-box-title {
  font-size: 18px;
  color: #010A35;
  padding: 0 0 16px 0;
  margin: 0;
  font-weight: 400;
}
.main-howto .howto-box .box-flex {
  border-top: 1px solid #010A35;
  display: flex;
  justify-content: center;
  text-align: center;
}
.main-howto .howto-box .box-flex .section-title {
  color: #010A35;
  font-weight: 700;
  font-size: 26px;
  margin: 0;
}
.main-howto .howto-box .box-flex .left,
.main-howto .howto-box .box-flex .right {
  width: 100%;
  padding: 20px 78px;
}
.main-howto .howto-box .box-flex .left {
  border-right: 1px solid #010A35;
}
.main-howto .howto-box .transfer-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0 0;
}
.main-howto .howto-box .transfer-box .tabien-box {
  margin: 0;
}
.main-howto .howto-box .transfer-box .arrow {
  width: 21px;
  flex-shrink: 0;
}
.main-howto .howto-box .howto-label {
  font-size: 16px;
  font-weight: 900;
  margin: 10px auto 15px;
  color: #010A35;
}
.main-howto .howto-box .howto-list {
  position: relative;
}
.main-howto .howto-box .howto-list:before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 60px);
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-left: 2px dashed #010A35;
}
.main-howto .howto-box .howto-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.main-howto .howto-box .howto-list ul li {
  padding: 0 0 0 40px;
  position: relative;
}
.main-howto .howto-box .howto-list ul li .box-bg {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  text-align: left;
  background: #010A35;
  padding: 12px 15px;
  border-radius: 16px;
}
.main-howto .howto-box .howto-list ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #010A35;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.main-howto .howto-box .howto-list ul li .icon {
  width: 47px;
  height: 47px;
  flex-shrink: 0;
}
.main-howto .howto-box .howto-list ul li .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-howto .howto-box .howto-list ul li span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.main-howto .howto-wrapper.bg-blue {
  margin: 33px 0 0;
}
.main-howto .howto-wrapper.bg-blue .howto-wrapper-title {
  background: #ffe9a6;
  color: #010A35;
}
.main-howto .howto-wrapper.bg-blue .howto-box {
  background: #010A35;
}
.main-howto .howto-wrapper.bg-blue .howto-box-title {
  color: #fff;
}
.main-howto .howto-wrapper.bg-blue .box-flex {
  border-top-color: #fff;
}
.main-howto .howto-wrapper.bg-blue .box-flex .left {
  border-right-color: #fff;
}
.main-howto .howto-wrapper.bg-blue .section-title {
  color: #fff;
}
.main-howto .howto-wrapper.bg-blue .howto-label {
  color: #fff;
}
.main-howto .howto-wrapper.bg-blue .howto-list:before {
  background: #fff;
}
.main-howto .howto-wrapper.bg-blue .howto-list ul li .box-bg {
  border: 1px solid #fff;
}
.main-howto .howto-wrapper.bg-blue .howto-list ul li:before {
  background: #fff;
}
@media (max-width: 1210px) {
  .main-howto .howto-wrapper .box-flex .left,
  .main-howto .howto-wrapper .box-flex .right {
    padding: 20px;
  }
  .main-howto .howto-box .howto-list ul li {
    padding-left: 30px;
  }
  .main-howto .howto-box .howto-list ul li .icon {
    width: 20px;
    height: 20px;
  }
  .main-howto .howto-box .howto-list ul li:before {
    width: 15px;
    height: 15px;
    left: 2.5px;
  }
}
@media (max-width: 1023px) {
  .main-howto .howto-wrapper .howto-wrapper-title {
    width: 100%;
  }
  .main-howto .howto-wrapper .transfer-box {
    gap: 4px;
  }
  .main-howto .howto-wrapper .box-flex {
    flex-direction: column;
    gap: 30px;
  }
  .main-howto .howto-wrapper .box-flex .left,
  .main-howto .howto-wrapper .box-flex .right {
    width: 100%;
    padding: 10px 0;
  }
  .main-howto .howto-wrapper .box-flex .left {
    border-right: none;
  }
  .main-howto .howto-wrapper .howto-box .howto-list:before {
    display: none;
  }
  .main-howto .howto-wrapper .howto-box .howto-list ul li {
    padding: 0;
  }
  .main-howto .howto-wrapper .howto-box .howto-list ul li:before {
    display: none;
  }
  .main-howto .howto-wrapper .howto-box .howto-list ul li span {
    font-size: 13px;
  }
}
.main-howto .howto-download {
  padding: 35px 0;
  display: flex;
}
.main-howto .howto-download .left {
  width: 55%;
}
.main-howto .howto-download .right {
  width: 45%;
  padding: 0 0 0 80px;
}
.main-howto .howto-download .download-list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-howto .howto-download .download-list li {
  list-style: none;
}
.main-howto .howto-download .download-list li a {
  border: 1px solid #888888;
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  border-radius: 16px;
  align-items: center;
  font-weight: 700;
  color: #FF0000;
  font-size: 16px;
}
@media (max-width: 1210px) {
  .main-howto .howto-download .right {
    padding: 0 0 0 20px;
  }
}
@media (max-width: 1023px) {
  .main-howto .howto-download {
    flex-direction: column;
    gap: 20px;
  }
  .main-howto .howto-download .left, .main-howto .howto-download .right {
    padding: 0;
    width: 100%;
  }
}

footer {
  background: #F3F3F3;
  padding: 0px;
  color: #fff;
  width: 100%;
  overflow: hidden;
}
footer .footer-box {
  background: #010A35;
  border-radius: 32px 32px 0 0;
}
footer .footer-top {
  background: url("../images/bg-wood.jpg") no-repeat center/cover;
  margin: 0;
}
footer .footer-top .content {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .footer-top h3, footer .footer-top a {
  flex: 1;
}
footer .footer-top h3 {
  font-size: 27px;
  font-family: "Kanit", sans-serif;
}
footer .footer-top .content-card {
  display: flex;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  color: #000;
  gap: 16px;
  align-items: center;
  line-height: 1.3;
}
footer .footer-top .content-card img {
  width: 60px;
}
footer .footer-top .content-card p {
  margin: 0;
}
footer .footer-top .content-card strong {
  font-weight: 700;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #ccc;
}
footer .flex {
  padding: 70px 0 54px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0px;
}
footer .left {
  width: 40%;
}
footer .left .logo {
  width: 96px;
  display: block;
}
footer .left .logo img {
  width: 100%;
}
footer .left h3 {
  font-size: 16px;
  margin: 20px 0 5px;
  font-weight: 400;
}
footer .left p {
  font-size: 16px;
}
footer .left p.contact {
  display: flex;
  font-weight: 500;
  font-size: 22px;
  margin: 22px 0 0;
  gap: 8px;
}
footer .left p.contact a {
  font-weight: 900;
}
footer .left a {
  display: block;
  font-weight: 600;
}
footer .center {
  width: 20%;
}
footer .center nav a {
  display: block;
  padding: 6px 0;
  font-size: 16px;
}
footer .right {
  display: flex;
  gap: 0px;
  width: 35%;
}
footer .right .dbd {
  display: block;
  width: 102px;
  flex-shrink: 0;
}
footer .right .dbd p {
  margin: 12px 0 12px;
}
footer .right .social {
  display: flex;
  gap: 8px;
}
footer .right .social a {
  border-radius: 50%;
  transition: all 300ms;
  width: 35px;
}
footer .right .social a:hover {
  transform: scale(1.1);
}
footer .right .qr-code {
  display: flex;
  padding: 22px 0 0;
  gap: 16px;
}
footer .right .qr-code a {
  font-weight: 500;
  white-space: nowrap;
}
footer .right .qr-code img {
  width: 118px;
  flex-shrink: 0;
}
footer .copyright {
  padding: 4px 0;
  text-align: center;
  font-size: 16px;
  background: #FFE9A6;
  margin: 0;
  color: #010A35;
}

.social-fixed {
  position: fixed;
  top: 200px;
  right: 0px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.social-fixed a {
  display: block;
  width: 50px;
  height: 50px;
}
.social-fixed a img {
  width: 50px;
}
.social-fixed a span {
  display: none;
}

.shadow {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  display: none;
}

@media (max-width: 1023px) {
  footer .footer-top .content {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .footer-top .content .content-card img {
    width: 50px;
  }
  footer .footer-top .content .content-card p {
    font-size: 14px;
  }
  footer .footer-top .content h3 {
    width: 100%;
    flex-shrink: 0;
    flex: unset;
    text-align: center;
  }
  footer .footer-top .content a {
    width: 45%;
    flex: unset;
  }
  footer .flex {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }
  footer .flex .left, footer .flex .center, footer .flex .right {
    width: 100%;
  }
  footer .flex .left p {
    margin: 0;
  }
}
@media (max-width: 640px) {
  footer .footer-top {
    padding: 40px 0;
  }
  footer .footer-top .content h3 {
    font-size: 22px;
  }
  footer .footer-top .content a {
    width: 100%;
    flex: unset;
  }
  .social-fixed {
    top: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    flex-direction: row;
    justify-content: right;
  }
  .social-fixed a {
    width: 50%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .social-fixed a span {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
  }
  .social-fixed a img {
    width: 45px;
  }
  .social-fixed a.tel {
    background: #010A35;
  }
  .social-fixed a.line {
    background: #3ACF00;
  }
}
@media only screen and (max-width: 767px) {
  .box-tabien .tabien-select {
    position: static;
    width: 100%;
    padding: 10px 0 20px;
  }
  .box-tabien .tabien-select .select-box {
    width: 100%;
  }
  .tabien-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  footer {
    padding: 30px 0 0;
    clear: both;
  }
  footer .copyright-foot {
    padding: 10px 0 0;
  }
  footer ul h3 {
    margin: 20px 0 10px;
  }
}
@media only screen and (max-width: 479px) {
  .home-search .search-form form {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .home-search .search-form form .column.last {
    padding-right: 20px;
  }
  .home-search .search-form form .column.last button {
    right: 0;
  }
}

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