.head {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 40px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.head.background-transparent{
  background-color: transparent;
}

.head.shadow{
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .head {
    padding: 0 20px;
  }
}

.head.shadow {
  -webkit-box-shadow: 3px 3px 15px #c4c4c485;
          box-shadow: 3px 3px 15px #c4c4c485;
}

.head .head-detail {
  height: 100%;
  max-width: 1280px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-logo {
  flex-grow: 1;
}

.head-detail .main-logo {
    position: relative;
    float: left;
    width: 166px;
    height: 46px;
    margin: 0;
    display: block;
    background-image: url(../img/logo-black.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}

.head.shadow .head-detail .main-logo {
  background-image: url(../img/logo-black.svg);
}

.head.background-transparent .head-detail .main-logo{
  background-image: url(../img/logo-white.svg);
}
.head.shadow.background-transparent .head-detail .main-logo{
  background-image: url(../img/logo-black.svg);
}

@media (min-width: 1025px) {
  .head .nav-makeup {
    margin-left: auto;
  }
}

@media (max-width: 1024px) {
  .head .nav-makeup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.2);
    height: calc(100vh - 80px);
  }
  .head .nav-makeup:not(.show) {
    height: 0;
  }
  .head .head-detail .main-logo {
    /* top: 10px; */
    width: 120px;
  }
}

@media (max-width: 768px) {
  .head .nav-makeup {
    height: calc(100vh - 60px);
  }
  .head .head-detail .main-logo {
    width: 90px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  .head .nav-makeup {
    height: calc(100vh - 60px);
  }
}

.head .nav-clo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.head .nav-detail {
  display: flex;
  align-items: center;
}

@media (min-width: 1025px) {
  .head .nav-detail::after {
    display: block;
    content: "";
    clear: both;
  }
}

@media (max-width: 1024px) {
  .head .nav-detail {
    position: relative;
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    align-items: flex-start;
    flex-direction: column;
  }
  .head .nav-detail:not(.show) {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.head .nav-detail li {
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (min-width: 1025px) {
  .head .nav-detail li {
    /* float: left; */
  }
  .head .nav-detail li:not(:last-child) {
    margin-right: 21px;
  }
  .head .nav-detail li:nth-last-child(2) {
    margin-right: 0px;
  }
}

.head .nav-detail li > a {
  padding: 20px 0;
  position: relative;
  font-size: 16px;
  display: block;
  color: #222222;
}

.head .nav-detail.show li > a {
  color: #222222;
}

.head.background-transparent .nav-detail li > a {
  color: #fff;
}

.head.background-transparent .nav-detail.show li > a {
  color: #222222;
}

.head.shadow .nav-detail li > a {
  color: #222222;
}

.head .nav-detail li > a.call-to-action{
  display: flex;
  padding: 0;
}

/* not using */
.head.head-white-text .nav-detail li > a {
  color: white;
}

/* not using */
.head.shadow .head-white-text.nav-detail li > a {
  color: #222222;
}

/* not using */
.head .head-white-text.nav-detail.show li > a {
	color: #222222;
}


@media (max-width: 1024px) {
  .head .nav-detail li > a {
    padding: 12px 0;
    margin-left: 40px;
  }
  .head .nav-detail li > a:hover {
    text-decoration: underline;
  }
  /* not using */
  .head.head-white-text .nav-detail li > a {
    color: #222222;
  }
}

@media (max-width: 768px) {
  .head .nav-detail li > a {
    margin-left: 20px;
  }
}

@media (min-width: 1025px) {
  .head .nav-detail li > a.login-btn {
    padding: 20px;
  }
}

.head .navbtn {
  cursor: pointer;
  margin-left: auto;
  padding: 7px 5px;
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.head .navbtn .navline {
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background-color: #29354C;
  /* background-color: #fff; */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.head.background-transparent .navbtn .navline {
  background-color: #fff;
}

.head.shadow .navbtn .navline {
  background-color: #29354C;
}

/* not using */
.head.head-white-text .navbtn .navline {
  background-color: white;
}

/* not using */
.head.shadow.head-white-text .navbtn .navline {
  background-color: #29354C;
}

.head .navbtn .navline:not(:last-child) {
  /* margin-bottom: 8px; */
}

.head .navbtn .navline:nth-child(1) {
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}

.head .navbtn .navline:nth-child(3) {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.head .navbtn.show {
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}

.head .navbtn.show .navline:nth-child(1) {
  -webkit-transform: rotate(-42deg);
      -ms-transform: rotate(-42deg);
          transform: rotate(-42deg);
}

.head .navbtn.show .navline:nth-child(2) {
  opacity: 0;
}

.head .navbtn.show .navline:nth-child(3) {
  -webkit-transform: rotate(42deg);
      -ms-transform: rotate(42deg);
          transform: rotate(42deg);
}
.head .call-to-action {
  cursor: pointer;
  width: 96px;
  height: 26px;
  background-color: white;
  color: #29354C;
  border-radius: 4px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.head .head-detail > .call-to-action{
  margin-right: 12px;
}


.head .call-to-action.dark {
  background-color: #29354C;
  color: white;
}

@media (min-width: 1025px) {
  .head .call-to-action {
    width: 124px;
    height: 32px;
    font-size: 14px;

  }
}

.head,
.head-fill {
  height: 80px;
}

@media (max-width: 1024px) {
  .head,
  .head-fill {
    height: 56px;
  }
}

@media (max-width: 768px) {
  .head,
  .head-fill {
    height: 56px;
  }
}

@media (max-width: 576px) {
  .head,
  .head-fill {
    height: 56px;
  }
}

.footer {
  background-color: #FEE704;
  padding: 60px 0;
  text-align: center;
}

.footer .footer-main-logo {
  margin-bottom: 4px;
  width: 166px;
}

.footer .footer-main-title {
  font-size: 16px;
  margin-bottom: 60px;
}

.footer .footer-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .line-link,
.footer .whatsApp-link {
  position: fixed;
  bottom: 12px;
  right: 0;
  z-index: 999;
}

.footer .line-link-icon-mobile,
.footer .whatsApp-link-icon-mobile{
  display: none;
}

.footer .line-link-icon-desktop,
.footer .whatsApp-link-icon-desktop {
  width: 200px;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer .line-link-icon-desktop:hover .line-link-textBlock {
  background-color: #169B16;
}

.footer .whatsApp-link-icon-desktop:hover .whatsApp-link-textBlock {
	background-color: #1CB756;
  }

.footer .line-link-icon-desktop .cb-icon,
.footer .whatsApp-link-icon-desktop .cb-icon {
  width: 80px;
  height: auto;
  margin-bottom: -8px;
  z-index: 99;
}

.footer .line-link-textBlock {
  background-color: #00B900;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05), 0px 4px 16px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  width: 124px;
  height: 36px;
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .whatsApp-link-textBlock {
	background-color: #22D063;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05), 0px 4px 16px rgba(0, 0, 0, 0.15);
	border-radius: 4px;
	width: 132px;
	height: 36px;
	color: white;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
  }

.footer .line-link-textBlock .line-icon {
  margin: 0;
  content: '';
  background-image: url(/public/img/line_logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 28px;
  height: 28px;
  margin-right: 4px;
}

.footer .whatsApp-link-textBlock .whatsApp-icon {
	margin: 0;
	content: '';
	background-image: url(/public/img/whatsapp_logo.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 32px;
	height: 32px;
  }

.footer .line-link-icon-desktop:hover .line-link-textBlock  .line-icon {
  background-image: url(/public/img/line_logo_dark.png);
}

.footer .whatsApp-link-icon-desktop:hover .whatsApp-link-textBlock  .whatsApp-icon {
	background-image: url(/public/img/whatsapp_logo_dark.png);
  }

.footer .line-link-textBlock .line-text,
.footer .whatsApp-link-textBlock .whatsApp-text{
  margin: 0;
}

@media (max-width: 768px) {
  .footer .footer-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 350px;
    margin: auto;
  }
}

.footer .footer-item {
  width: 135px;
  margin-bottom: 60px;
}

@media (min-width: 769px) {
  .footer .footer-item {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer .footer-item {
    width: 50%;
  }
  .footer .footer-item .footer .footer-item .footer-title {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .footer .footer-item {
    width: 100%;
  }
  .footer .footer-item .footer .footer-item .footer-title {
    font-size: 20px;
  }
}

@media (max-width: 415px) {
  .footer .line-link {
    right: 12px;
  }
  .footer .line-link-icon-desktop,
  .footer .whatsApp-link-icon-desktop {
    display: none;
  }
  .footer .line-link-icon-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #00B900;
    height: 88px;
    width: 88px;
    border-radius: 50%;
  }
  .footer .whatsApp-link-icon-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #22D063;
    height: 88px;
    width: 88px;
    border-radius: 50%;
  }
  .footer .line-link-icon-mobile:hover {
    background-color: #169B16;
  }
  .footer .whatsApp-link-icon-mobile:hover {
    background-color: #1CB756;
  }
  .footer .line-link-icon-mobile .line-text-mobile,
  .footer .whatsApp-link-icon-mobile .whatsApp-text-mobile  {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: white;
  }
  .footer .line-link-icon-mobile .cb-icon,
  .footer .whatsApp-link-icon-mobile .cb-icon {
    width: 55px;
    height: auto;
    margin: 0;
  }
}

@media (min-width: 1025px) {
  .footer .footer-item:not(:last-child) {
    margin-right: 16px;
  }
  .footer .footer-item:not(:last-child) .footer .footer-item .footer-title {
    font-size: 16px;
  }
}

.footer .footer-item .footer-title {
  font-weight: bold;
  margin-bottom: 16px;
}

.footer .footer-item > a {
  font-size: 14px;
  display: block;
}

.footer .footer-item > a:not(:last-child) {
  margin-bottom: 8px;
}

.footer .footer-address {
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.footer .footer-copyright {
  font-size: 14px;
}

.star-rank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.star-rank.white > div {
  background-image: url("../img/star_white.png");
}

.star-rank.white > div.highlight-half {
  background-image: url("../img/star_white_half_highlight.png");
}

.star-rank > div {
  width: 20px;
  height: 20px;
  background: url("../img/star_normal.png") no-repeat center;
}

.star-rank > div:not(:last-child) {
  margin-right: 4px;
}

.star-rank > div.highlight {
  background-image: url("../img/star_highlight.png");
}

.star-rank > div.highlight-half {
  background-image: url("../img/star_normal_half_highlight.png");
}
