@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100;200;300;400;500;600;700;800;900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Stylesheet */
html {
  width: 100%;
  height: auto;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 1204px;
  font-family: "Noto Sans Thai", sans-serif;
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  -webkit-text-size-adjust: 100%;
  position: relative;
  color: #fff;
  background-color: #545454;
  background-image: url("../images/commons/bg.jpg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 1600px;
}
@media only screen and (max-width: 750px) {
  body {
    min-width: auto;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  outline: none;
}

div {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  color: #fff;
  -webkit-transition: background 0.25s, color 0.25s, opacity 0.25s;
  transition: background 0.25s, color 0.25s, opacity 0.25s;
}

::before, ::after {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

a img {
  display: block;
  outline: none;
}

a:focus, a:active, input, textarea {
  outline: none;
}

a:hover {
  color: #009f0f;
  opacity: 1;
}

a:hover img {
  opacity: 0.75;
}

.link-sp {
  pointer-events: none;
}

.anchor {
  display: block;
  position: relative;
  top: -108px;
  visibility: hidden;
}

.fw100-thin {
  font-weight: 100;
}

.fw200-extra-light {
  font-weight: 200;
}

.fw300-light {
  font-weight: 300;
}

.fw400-regular {
  font-weight: 400;
}

.fw500-medium {
  font-weight: 500;
}

.fw600-semi-bold {
  font-weight: 600;
}

.fw700-bold {
  font-weight: 700;
}

.fw800-extra-bold {
  font-weight: 800;
}

.fw900-black {
  font-weight: 900;
}

/* Header */
header {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 13;
    width: 100%;
    background-color: #545454;
  }
}
@media only screen and (max-width: 750px) {
  header .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
header .header .header-logo a {
  display: block;
}
@media only screen and (max-width: 750px) {
  header .header .header-logo a img {
    max-width: 150px;
    height: auto;
  }
}
header .header .header-menu {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  header .header .header-menu {
    display: none;
  }
}
header .header .header-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header .header .header-menu ul li a {
  font-size: 1.6rem;
  line-height: 2.6rem;
  letter-spacing: 1px;
  padding-bottom: 22px;
}
header .header .header-menu ul li.dropdown {
  position: relative;
}
header .header .header-menu ul li.dropdown:hover > a {
  color: #009f0f;
}
header .header .header-menu ul li.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}
header .header .header-menu ul li.dropdown .dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 46px;
  left: 0;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 40px;
  background-color: #606060;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
header .header .header-menu ul li.dropdown .dropdown-content a {
  display: block;
  white-space: nowrap;
  padding-bottom: 0;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
header .header .header-menu ul li.dropdown .dropdown-content a + a {
  margin-left: 40px;
}

.active-mn-01 .mn-01,
.active-mn-02 .mn-02,
.active-mn-03 .mn-03,
.active-mn-04 .mn-04,
.active-mn-05 .mn-05,
.active-mn-06 .mn-06,
.active-mn-07 .mn-07 {
  color: #009f0f;
}

.header-burger {
  display: none;
  margin-left: 15px;
}
@media only screen and (max-width: 1080px) {
  .header-burger {
    display: block;
  }
}

.nav-icon {
  display: block;
  width: 35px;
  height: 40px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
  opacity: 1;
}

.nav-icon:focus, .nav-icon:active, .nav-icon:visited {
  opacity: 1;
}

.nav-icon span {
  display: block;
  position: absolute;
  width: 35px;
  height: 2px;
  background: #fff !important;
  border-radius: 0;
  opacity: 1;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 9;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-icon span:nth-child(1) {
  top: 8px;
}

.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
  top: 19px;
}

.nav-icon span:nth-child(4) {
  top: 30px;
}

.nav-icon.open span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 0;
  right: 0;
}

.nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
  top: 30px;
  width: 0%;
  left: 0;
  right: 0;
}

.menu-responsive {
  opacity: 0;
  visibility: visible;
  position: fixed;
  top: 0;
  right: -300px;
  z-index: 12;
  background-color: #545454;
  width: 300px;
  height: 100%;
  padding: 95px 20px 20px 20px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.menu-responsive ul li {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
.menu-responsive ul li a {
  display: block;
}
.menu-responsive ul li a.toggle-btn {
  background-image: url("../images/commons/arrow-down.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 15px 8px;
}
.menu-responsive ul li a.toggle-btn.active {
  background-image: url("../images/commons/arrow-up.webp");
}
.menu-responsive ul li ul {
  margin-top: 10px;
  margin-left: 10px;
}
.menu-responsive ul li ul li {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.menu-responsive.active {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.toggle-content {
  display: none;
}

/* Main */
@media only screen and (max-width: 750px) {
  #wrapper {
    padding-top: 81px;
  }
}

.content-1200 {
  width: 90%;
  max-width: 1204px;
  margin-left: auto;
  margin-right: auto;
}

.content-box {
  padding: 27px;
  background-color: #3e3e3e;
}
@media only screen and (max-width: 750px) {
  .content-box {
    width: 100%;
    padding: 5%;
  }
}
.content-box.white {
  color: #000;
  background-color: #fff;
}
.content-box.white a {
  color: #000;
}
.content-box.white a:hover {
  color: #009f0f;
}

.txthead-box {
  margin-bottom: 27px;
}
@media only screen and (max-width: 750px) {
  .txthead-box {
    margin-bottom: 15px;
  }
}
.txthead-box h1.fz36 {
  font-size: 3.2rem;
  line-height: 4.2rem;
  color: #009f0f;
}
@media only screen and (max-width: 750px) {
  .txthead-box h1.fz36 {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}
.txthead-box .subhead {
  font-size: 2rem;
  line-height: 3rem;
  color: #009f0f;
}
@media only screen and (max-width: 750px) {
  .txthead-box .subhead {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 38px;
}
@media only screen and (max-width: 750px) {
  .btn {
    height: 30px;
  }
}
.btn.black {
  color: #fff !important;
  background-color: #000;
  border-radius: 5px;
}
.btn.black:hover {
  opacity: 0.75;
}
.btn.w-auto {
  padding: 0 15px;
}
@media only screen and (max-width: 750px) {
  .btn.w-auto {
    padding: 0 10px;
  }
}

.btn-back {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 750px) {
  .btn-back {
    margin-top: 5%;
  }
}

.link-arrow {
  background-image: url("../images/commons/link-arrow.png");
  background-repeat: no-repeat;
  background-position: top 4px left;
  background-size: 7px 11px;
  padding-left: 15px;
}

/* MV */
#mv {
  margin-bottom: 30px;
}
@media only screen and (max-width: 750px) {
  #mv {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 750px) {
  #mv .mv {
    width: 100%;
  }
}
#mv .mv .mv-slick .item .iframe {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 44.725%;
}
@media only screen and (max-width: 750px) {
  #mv .mv .mv-slick .item .iframe {
    padding-bottom: 157.5%;
  }
}
#mv .mv .mv-slick .item .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mv-dots {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mv-dots li {
  width: 12px;
  height: 12px;
  margin: 0 3px;
}
.mv-dots li.slick-active button {
  background-color: #009f0f;
}
.mv-dots li button {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #fff;
  border: 0;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  outline: none;
}
.mv-dots li button:hover {
  cursor: pointer;
  opacity: 0.7;
}

/* Project */
#concept .concept .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 750px) {
  #concept .concept .content {
    display: block;
  }
}
#concept .concept .content .col-text {
  width: 50%;
  padding-right: 27px;
}
@media only screen and (max-width: 750px) {
  #concept .concept .content .col-text {
    width: 100%;
    padding-right: 0;
  }
}
#concept .concept .content .col-text h2 {
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #009f0f;
  margin-bottom: 5px;
}
@media only screen and (max-width: 750px) {
  #concept .concept .content .col-text h2 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
#concept .concept .content .col-text ul.list li {
  background-image: url("../images/commons/list.png");
  background-repeat: no-repeat;
  background-position: top 4px left;
  background-size: 13px;
  padding-left: 20px;
}
#concept .concept .content .col-text ul.logo {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#concept .concept .content .col-text ul.logo li {
  width: 25%;
}
#concept .concept .content .col-text ul.logo li img {
  width: 100%;
  height: auto;
}
#concept .concept .content .col-text ul + h2 {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  #concept .concept .content .col-text ul + h2 {
    margin-top: 15px;
  }
}
#concept .concept .content .col-text p + h2 {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  #concept .concept .content .col-text p + h2 {
    margin-top: 15px;
  }
}
#concept .concept .content .col-img {
  width: 50%;
}
@media only screen and (max-width: 750px) {
  #concept .concept .content .col-img {
    width: 100%;
    margin-top: 5%;
  }
}
#concept .concept .content .col-img img {
  width: 100%;
  height: auto;
}

#project .project h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #009f0f;
}
@media only screen and (max-width: 750px) {
  #project .project h2 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
#project .project .content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 750px) {
  #project .project .content-flex {
    display: block;
  }
}
#project .project .content-flex .col-text {
  width: 50%;
  padding-right: 27px;
}
@media only screen and (max-width: 750px) {
  #project .project .content-flex .col-text {
    width: 100%;
    padding-right: 0;
  }
}
#project .project .content-flex .col-text .description p span {
  font-weight: 600;
  color: #009f0f;
}
@media only screen and (max-width: 750px) {
  #project .project .content-flex .col-text .description p span {
    display: block;
  }
}
@media only screen and (max-width: 750px) {
  #project .project .content-flex .col-text .description p + p {
    margin-top: 10px;
  }
}
#project .project .content-flex .col-text .location table tbody tr td {
  padding: 5px 0;
}
#project .project .content-flex .col-text .location table tbody tr.topic td {
  vertical-align: middle;
}
#project .project .content-flex .col-text .location table tbody tr.topic td p {
  font-weight: 600;
  color: #009f0f;
}
#project .project .content-flex .col-text .location table tbody tr td p.color-green {
  font-weight: 600;
  color: #009f0f;
}
#project .project .content-flex .col-img {
  width: 50%;
}
@media only screen and (max-width: 750px) {
  #project .project .content-flex .col-img {
    width: 100%;
    margin-top: 5%;
  }
}
#project .project .content-flex .col-img img {
  width: 100%;
  height: auto;
}
#project .project .materials .table table {
  background-color: #3e3e3e;
  border: 1px solid #2e2e2e;
}
#project .project .materials .table table tbody tr:nth-child(odd) {
  background-color: #333333;
}
#project .project .materials .table table tbody tr.topic {
  font-weight: 600;
  color: #009f0f;
  background-color: #2e2e2e;
}
#project .project .materials .table table tbody tr td {
  padding: 10px 15px;
}
#project .project .materials .table table tbody tr td + td {
  border-left: 1px solid #2a2a2a;
}
#project .project .materials .logo {
  margin-top: 27px;
}
@media only screen and (max-width: 750px) {
  #project .project .materials .logo {
    margin-top: 5%;
  }
}
#project .project .materials .logo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#project .project .materials .logo ul li {
  width: 10%;
}
@media only screen and (max-width: 750px) {
  #project .project .materials .logo ul li {
    width: 20%;
  }
}
#project .project .materials .logo ul li img {
  width: 100%;
  height: auto;
}

#floorplan .floorplan .floorplan-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 750px) {
  #floorplan .floorplan .floorplan-flex {
    display: block;
  }
}
#floorplan .floorplan .floorplan-flex .col-btn {
  min-width: 370px;
}
@media only screen and (max-width: 750px) {
  #floorplan .floorplan .floorplan-flex .col-btn {
    width: 100%;
  }
}
@media only screen and (max-width: 750px) {
  #floorplan .floorplan .floorplan-flex .col-btn .plan-btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 750px) {
  #floorplan .floorplan .floorplan-flex .col-btn .plan-btn ul li {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
#floorplan .floorplan .floorplan-flex .col-btn .plan-btn ul li + li {
  margin-top: 10px;
}
@media only screen and (max-width: 750px) {
  #floorplan .floorplan .floorplan-flex .col-btn .plan-btn ul li + li {
    margin-top: 0;
  }
}
#floorplan .floorplan .floorplan-flex .col-btn .plan-btn ul li a {
  font-size: 1.8rem;
  line-height: 2.8rem;
}
#floorplan .floorplan .floorplan-flex .col-btn .plan-btn ul li a.active {
  color: #009f0f;
}
#floorplan .floorplan .floorplan-flex .col-plan {
  width: 100%;
  max-width: 660px;
  background-color: #fff;
}
@media only screen and (max-width: 750px) {
  #floorplan .floorplan .floorplan-flex .col-plan {
    margin-top: 5%;
  }
}
#floorplan .floorplan .floorplan-flex .col-plan a {
  display: block;
}

/* Gallery */
#gallery .gallery .gallery-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-top: -2%;
}
@media only screen and (max-width: 750px) {
  #gallery .gallery .gallery-list ul {
    margin-left: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
#gallery .gallery .gallery-list ul li {
  width: 18%;
  margin-left: 2%;
  margin-top: 2%;
}
@media only screen and (max-width: 750px) {
  #gallery .gallery .gallery-list ul li {
    width: 49%;
    margin-left: 0;
  }
}
#gallery .gallery .gallery-list ul li a {
  display: block;
  max-height: 140px;
  overflow: hidden;
}
#gallery .gallery .gallery-list ul li a img {
  -o-object-fit: cover;
  object-fit: cover;
  width: auto;
  min-height: 140px;
}

/* News */
#news .news .news-list ul li img {
  width: 100%;
  height: auto;
}

/* testimonial */
#testimonial .testimonial .testimonial-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-list ul {
    display: block;
  }
}
#testimonial .testimonial .testimonial-list ul + ul {
  border-top: 1px solid #8f8d8d;
  margin-top: 27px;
  padding-top: 27px;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-list ul + ul {
    margin-top: 5%;
    padding-top: 5%;
  }
}
#testimonial .testimonial .testimonial-list ul li {
  width: 49%;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-list ul li {
    width: 100%;
  }
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-list ul li + li {
    border-top: 1px solid #8f8d8d;
    margin-top: 5%;
    padding-top: 5%;
  }
}
#testimonial .testimonial .testimonial-list ul li a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#testimonial .testimonial .testimonial-list ul li a:hover {
  opacity: 1;
  color: #fff;
}
#testimonial .testimonial .testimonial-list ul li a:hover .list-content .cover {
  border-color: #009f0f;
}
#testimonial .testimonial .testimonial-list ul li a:hover .list-content .cover img {
  opacity: 1;
}
#testimonial .testimonial .testimonial-list ul li a:hover .list-button .btn {
  opacity: 0.75;
}
#testimonial .testimonial .testimonial-list ul li a .list-content .cover {
  border: 2px solid #949090;
}
#testimonial .testimonial .testimonial-list ul li a .list-content .cover img {
  width: 100%;
  height: auto;
}
#testimonial .testimonial .testimonial-list ul li a .list-content .brief {
  margin-top: 15px;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-list ul li a .list-content .brief {
    margin-top: 10px;
  }
}
#testimonial .testimonial .testimonial-list ul li a .list-content .brief h2 {
  font-size: 2.6rem;
  line-height: 3.6rem;
  color: #009f0f;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-list ul li a .list-content .brief h2 {
    font-size: 1.8rem;
    line-height: 2.8rem;
  }
}
#testimonial .testimonial .testimonial-list ul li a .list-content .brief p {
  margin-top: 10px;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-list ul li a .list-content .brief p {
    margin-top: 5px;
  }
}
#testimonial .testimonial .testimonial-list ul li a .list-content .brief p.message {
  color: #79a340;
}
#testimonial .testimonial .testimonial-list ul li a .list-button {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-list ul li a .list-button {
    margin-top: 10px;
  }
}
#testimonial .testimonial .testimonial-box {
  padding: 27px;
  background-color: #323232;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-box {
    padding: 5%;
  }
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-box .testimonial-detail .row {
    display: block;
  }
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row + .row {
  margin-top: 40px;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-box .testimonial-detail .row + .row {
    margin-top: 10px;
  }
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row .col {
  width: 48.5%;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-box .testimonial-detail .row .col {
    width: 100%;
  }
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-box .testimonial-detail .row .col + .col {
    margin-top: 5%;
  }
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row .col.w100 {
  width: 100%;
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row .col img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row .col h1 {
  font-size: 2rem;
  line-height: 3rem;
  color: #009f0f;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-box .testimonial-detail .row .col h1 {
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-top: 10px;
    margin-bottom: 5px;
  }
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row .col h2 {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #009f0f;
  margin-bottom: 10px;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-box .testimonial-detail .row .col h2 {
    margin-bottom: 5px;
  }
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row .col p + h2 {
  margin-top: 25px;
}
@media only screen and (max-width: 750px) {
  #testimonial .testimonial .testimonial-box .testimonial-detail .row .col p + h2 {
    margin-top: 20px;
  }
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row .col p + p {
  margin-top: 10px;
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row .col p.message {
  color: #009f0f;
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row .col p.message span.large {
  font-size: 2.6rem;
  line-height: 3.6rem;
}
#testimonial .testimonial .testimonial-box .testimonial-detail .row .col p.center {
  text-align: center;
}

/* Article */
#article .article .article-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1.5%;
  margin-top: -40px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-list ul {
    display: block;
    margin-left: 0;
    margin-top: 0;
  }
}
#article .article .article-list ul li {
  width: 31.83%;
  margin-left: 1.5%;
  margin-top: 40px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-list ul li {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
}
@media only screen and (max-width: 750px) {
  #article .article .article-list ul li + li {
    margin-top: 10%;
  }
}
#article .article .article-list ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}
#article .article .article-list ul li a:hover .list-content .cover img {
  opacity: 1;
}
#article .article .article-list ul li a .list-content .cover img {
  width: 100%;
  height: auto;
}
#article .article .article-list ul li a .list-content .brief {
  margin-top: 15px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-list ul li a .list-content .brief {
    margin-top: 10px;
  }
}
#article .article .article-list ul li a .list-content .brief h2 {
  font-size: 1.8rem;
  line-height: 2.8rem;
}
@media only screen and (max-width: 750px) {
  #article .article .article-list ul li a .list-content .brief h2 {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
#article .article .article-list ul li a .list-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #ccc;
  margin-top: 15px;
  padding-top: 15px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-list ul li a .list-bottom {
    margin-top: 10px;
    padding-top: 10px;
  }
}
#article .article .article-detail .ttl {
  margin-bottom: 20px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .ttl {
    margin-bottom: 15px;
  }
}
#article .article .article-detail .ttl h1 {
  font-size: 2.4rem;
  line-height: 3.4rem;
  color: #009f0f;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .ttl h1 {
    font-size: 2rem;
    line-height: 3rem;
    text-align: left;
  }
}
#article .article .article-detail .share {
  margin-bottom: 10px;
}
#article .article .article-detail .share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#article .article .article-detail .share ul li .fb_iframe_widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#article .article .article-detail .share ul li + li {
  margin-left: 5px;
}
#article .article .article-detail .content .row + .row {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row + .row {
    margin-top: 20px;
  }
}
#article .article .article-detail .content .row + .text {
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row + .text {
    margin-top: 10px;
  }
}
#article .article .article-detail .content .row.text-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row.text-left {
    display: block;
  }
}
#article .article .article-detail .content .row.text-left .text {
  width: 49%;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row.text-left .text {
    width: 100%;
  }
}
#article .article .article-detail .content .row.text-left .img {
  width: 49%;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row.text-left .img {
    width: 100%;
    margin-top: 20px;
  }
}
#article .article .article-detail .content .row.text-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row.text-right {
    display: block;
  }
}
#article .article .article-detail .content .row.text-right .text {
  width: 49%;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row.text-right .text {
    width: 100%;
  }
}
#article .article .article-detail .content .row.text-right .img {
  width: 49%;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row.text-right .img {
    width: 100%;
    margin-top: 20px;
  }
}
#article .article .article-detail .content .row.text-center .text {
  width: 100%;
}
#article .article .article-detail .content .row.text-center .text + .img {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row.text-center .text + .img {
    margin-top: 20px;
  }
}
#article .article .article-detail .content .row.text-center .img {
  width: 49%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row.text-center .img {
    width: 100%;
    margin-top: 20px;
  }
}
#article .article .article-detail .content .row.text-center .img + .text {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content .row.text-center .img + .text {
    margin-top: 20px;
  }
}
#article .article .article-detail .content p {
  font-family: "Noto Sans Thai", sans-serif !important;
  font-size: 1.4rem !important;
  line-height: 2.4rem !important;
}
#article .article .article-detail .content p span {
  font-family: "Noto Sans Thai", sans-serif !important;
  font-size: 1.4rem !important;
  line-height: 2.4rem !important;
}
#article .article .article-detail .content p + p {
  margin-top: 10px;
}
#article .article .article-detail .content p + ul {
  margin-top: 5px;
}
#article .article .article-detail .content p + img {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content p + img {
    margin-top: 20px;
  }
}
#article .article .article-detail .content p + h2 {
  margin-top: 20px;
}
#article .article .article-detail .content span {
  font-family: "Noto Sans Thai", sans-serif !important;
  font-size: 1.4rem !important;
  line-height: 2.4rem !important;
}
#article .article .article-detail .content img + img {
  margin-top: 10px;
}
#article .article .article-detail .content img + p {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content img + p {
    margin-top: 20px;
  }
}
#article .article .article-detail .content img + ul {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content img + ul {
    margin-top: 20px;
  }
}
#article .article .article-detail .content img + h2 {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content img + h2 {
    margin-top: 20px;
  }
}
#article .article .article-detail .content img.center {
  margin-left: auto;
  margin-right: auto;
}
#article .article .article-detail .content ul {
  margin-left: 20px;
}
#article .article .article-detail .content ul + img {
  margin-top: 30px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content ul + img {
    margin-top: 20px;
  }
}
#article .article .article-detail .content ul + p {
  margin-top: 10px;
}
#article .article .article-detail .content ul li {
  list-style: disc;
}
#article .article .article-detail .content h2 {
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 5px;
}
#article .article .article-detail .content .video {
  margin-top: 20px;
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 0;
  padding-bottom: 30%;
}
#article .article .article-detail .content .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#article .article .article-detail .content .video + .video {
  margin-top: 10px;
}
#article .article .article-detail .content .video + p {
  margin-top: 20px;
}
@media only screen and (max-width: 750px) {
  #article .article .article-detail .content iframe {
    width: 100%;
    height: 280px;
  }
}
#article .load_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 38px;
  margin-top: 54px;
  margin-bottom: 27px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  color: #fff !important;
  background-color: #000;
  border-radius: 5px;
  text-transform: uppercase;
}
#article .load_more:hover {
  cursor: pointer;
  opacity: 0.8;
}
#article .animation_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 110px;
  height: 38px;
  margin-top: 54px;
  margin-bottom: 27px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  color: #fff !important;
  background-color: #000;
  border-radius: 5px;
  text-transform: uppercase;
  text-align: center;
}

/* Contact */
#contact .contact .contact-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 750px) {
  #contact .contact .contact-flex {
    display: block;
  }
}
#contact .contact .contact-flex .contact-map {
  width: 50%;
  position: relative;
  height: 646px;
}
@media only screen and (max-width: 750px) {
  #contact .contact .contact-flex .contact-map {
    width: 100%;
    height: 0;
    padding-bottom: 80%;
  }
}
#contact .contact .contact-flex .contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#contact .contact .contact-flex .contact-form {
  width: 50%;
  padding-left: 27px;
}
@media only screen and (max-width: 750px) {
  #contact .contact .contact-flex .contact-form {
    width: 100%;
    padding-left: 0;
    margin-top: 5%;
  }
}
#contact .contact .contact-flex .contact-form.thank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#contact .contact .contact-flex .contact-form.thank .btm {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  #contact .contact .contact-flex .contact-form.thank .btm {
    height: auto;
    padding: 50px 0;
  }
}
#contact .contact .contact-flex .contact-form.thank .btm p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  #contact .contact .contact-flex .contact-form.thank .btm p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
}
#contact .contact .contact-flex .contact-form .address h2 {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
#contact .contact .contact-flex .contact-form .address p + h2 {
  margin-top: 15px;
}
#contact .contact .contact-flex .contact-form .form {
  margin-top: 27px;
}
@media only screen and (max-width: 750px) {
  #contact .contact .contact-flex .contact-form .form {
    margin-top: 7%;
  }
}
#contact .contact .contact-flex .contact-form .form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#contact .contact .contact-flex .contact-form .form .form-row + .form-row {
  margin-top: 10px;
}
#contact .contact .contact-flex .contact-form .form .form-row .topic {
  min-width: 80px;
}
#contact .contact .contact-flex .contact-form .form .form-row .field {
  width: 100%;
  padding-left: 5px;
  padding-right: 6px;
  position: relative;
}
#contact .contact .contact-flex .contact-form .form .form-row .field.important::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 8;
  width: 3px;
  height: 100%;
  background-color: #009f0f;
}
#contact .contact .contact-flex .contact-form .form .form-row.button {
  padding-left: 80px;
}
#contact .contact .contact-flex .contact-form .form .form-row.button ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 5px;
}
#contact .contact .contact-flex .contact-form .form .form-row.button ul li + li {
  margin-left: 10px;
}

.textbox {
  width: 100%;
  padding: 1px 5px;
  border: 0;
  font-family: "Noto Sans Thai", sans-serif;
  font-size: 14px;
  line-height: 24px;
  background-color: #fff;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

textarea.textbox {
  display: block;
  resize: none;
  height: 93px;
  font-family: "Noto Sans Thai", sans-serif;
  font-size: 14px;
  line-height: 24px;
}

button {
  border: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Footer */
footer {
  padding-bottom: 10px;
}
@media only screen and (max-width: 750px) {
  footer .footer {
    width: 100%;
  }
}
footer .footer .footer-tel {
  padding: 15px 20px;
  color: #fff;
  background-color: #000;
}
@media only screen and (max-width: 750px) {
  footer .footer .footer-tel {
    padding: 15px 5%;
  }
}
footer .footer .footer-tel a {
  font-size: 1.4rem;
  line-height: 2rem;
}
@media only screen and (max-width: 750px) {
  footer .footer .footer-tel a {
    display: table;
    margin: 0 auto;
  }
}
footer .footer .footer-flex {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  footer .footer .footer-flex {
    display: block;
  }
}
footer .footer .footer-flex p {
  font-size: 1.4rem;
  line-height: 2rem;
  color: #000;
}
@media only screen and (max-width: 750px) {
  footer .footer .footer-flex p {
    text-align: center;
  }
}

.show1080 {
  display: none;
}
@media only screen and (max-width: 1080px) {
  .show1080 {
    display: block;
  }
}

@media only screen and (max-width: 1080px) {
  .hide1080 {
    display: none;
  }
}

.show834 {
  display: none;
}
@media only screen and (max-width: 834px) {
  .show834 {
    display: block;
  }
}

@media only screen and (max-width: 834px) {
  .hide834 {
    display: none;
  }
}

.show750 {
  display: none;
}
@media only screen and (max-width: 750px) {
  .show750 {
    display: block;
  }
}

@media only screen and (max-width: 750px) {
  .hide750 {
    display: none !important;
  }
}