.q_btn {
  position: fixed;
  right: 16px;
  bottom: 76px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  z-index: 899;
}
.q_btn.sticky {
  bottom: 130px;
}
.q_btn > a {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 16px;
  border-radius: 50px;
  background-color: #000;
  padding: 8px 16px;
  font-weight: 500;
  color: white;
  opacity: 0.5;
  transition: 0.3s;
}
@media (max-width: 1280px) {
  .q_btn > a {
    font-size: 14px;
    width: 100%;
    max-width: 150px;
    padding: 10px 20px;
  }
}
.q_btn > a > img {
  width: 40px;
}
@media (max-width: 1280px) {
  .q_btn > a > img {
    width: 25px;
  }
}
.q_btn > a:hover {
  opacity: 1;
  transition: 0.3s;
}

@media (max-width: 1280px) {
  .q_btn.sticky {
    bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .q_btn.sticky {
    bottom: 150px;
  }
}
@media (max-width: 768px) {
  .q_btn {
    bottom: 66px;
  }
  .q_btn.sticky {
    bottom: 180px;
  }
  .q_btn > a {
    padding: 6px 14px;
    font-size: 13px;
    max-width: 122px;
  }
}
@media (max-width: 480px) {
  .q_btn.sticky {
    bottom: 162px;
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal .modal-content {
  background: #000;
  width: 100%;
  max-width: 610px;
  height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .modal .modal-content {
    width: 90%;
    padding: 20px;
    height: auto;
  }
}
.modal .modal-content > .top {
  width: 100%;
  height: 60px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.4509803922);
  position: relative;
}
@media (max-width: 1024px) {
  .modal .modal-content > .top {
    height: 0;
    border-bottom: 0px;
  }
}
.modal .modal-content > .top .close {
  position: absolute;
  top: -3px;
  right: 10px;
  font-size: 50px;
  cursor: pointer;
  color: white;
}
.modal .modal-content > .bot_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  padding: 31px 0;
}
.modal .modal-content > .bot_wrap > .tit {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}
@media (max-width: 1024px) {
  .modal .modal-content > .bot_wrap > .tit {
    margin-bottom: 20px;
  }
}
.modal .modal-content > .bot_wrap > .tit > h2 {
  font-size: 35px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
@media (max-width: 1024px) {
  .modal .modal-content > .bot_wrap > .tit > h2 {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.modal .modal-content > .bot_wrap > .tit > h3 {
  font-size: 19px;
  font-weight: 300;
  color: white;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .modal .modal-content > .bot_wrap > .tit > h3 {
    font-size: 14px;
    word-break: keep-all;
  }
}
.modal .modal-content > .bot_wrap > form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.modal .modal-content > .bot_wrap > form > .form-group {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.modal .modal-content > .bot_wrap > form > .form-group > label {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .modal .modal-content > .bot_wrap > form > .form-group > label {
    font-size: 15px;
  }
}
.modal .modal-content > .bot_wrap > form > .form-group > input {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  line-height: 1;
  color: #000;
  background: white;
  border: none;
  outline: none;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .modal .modal-content > .bot_wrap > form > .form-group > input {
    font-size: 15px;
  }
}
.modal .modal-content > .bot_wrap > form > .full-width > textarea {
  padding: 10px;
  font-size: 18px;
  line-height: 1.2;
  color: black;
  background-color: white;
  border: 1px solid black;
  resize: none;
  max-height: 100px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .modal .modal-content > .bot_wrap > form > .full-width > textarea {
    font-size: 15px;
  }
}
.modal .modal-content > .bot_wrap > form > .agree {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 20px;
}
.modal .modal-content > .bot_wrap > form > .agree > input {
  width: auto;
}
.modal .modal-content > .bot_wrap > form > .agree > label {
  margin-bottom: 0;
}
.modal .modal-content > .bot_wrap > form > .form-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .modal .modal-content > .bot_wrap > form > .form-buttons {
    margin-top: 10px;
  }
}
.modal .modal-content > .bot_wrap > form > .form-buttons > button {
  background-color: transparent;
  width: 100%;
  max-width: 220px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.548);
  font-size: 18px;
  font-weight: 700;
  color: white;
}
@media (max-width: 1024px) {
  .modal .modal-content > .bot_wrap > form > .form-buttons > button {
    height: 30px;
    font-size: 15px;
  }
}

.empty {
  width: 0;
  height: 0;
  opacity: 0;
}

.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  z-index: 800;
  transition: 0.2s all ease-in-out;
}
.m-menu-background.on {
  opacity: 1;
  visibility: visible;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 801;
  transition: 0.2s all ease-in-out;
}
.m-menu.on {
  transform: translateX(0);
}
.m-menu .top {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid black;
}
.m-menu .top .m-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.m-menu .top .m-menu-close > svg {
  width: 100%;
  height: auto;
  fill: black;
}
.m-menu .m-body {
  width: 100%;
}
.m-menu .m-body .m-depth1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-depth1 > li {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-depth1 > li.on .depth1-name {
  background: black;
  color: white;
}
.m-menu .m-body .m-depth1 > li.on .m-depth2 {
  max-height: 300px;
}
.m-menu .m-body .m-depth1 > li .depth1-name {
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: black;
  background: white;
  transition: 0.2s all ease-in-out;
}
.m-menu .m-body .m-depth1 > li .m-depth2 {
  width: 100%;
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}
.m-menu .m-body .m-depth1 > li .m-depth2 > a {
  display: block;
  width: 100%;
  padding: 20px 40px;
  font-size: 16px;
  line-height: 1;
  color: black;
  background: #f0f0f0;
}

.header {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 500;
}
.header .logo-row {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.header .logo-row .container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .logo-row .container .m-menu-open {
  width: 0;
  height: 0;
  opacity: 0;
}
.header .logo-row .container .h-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: auto;
  height: 95px;
}
.header .logo-row .container .h-logo > img {
  width: auto;
  height: 100%;
}
.header .logo-row .container .to-official-instagram {
  display: block;
  width: auto;
  height: 50px;
}
.header .logo-row .container .to-official-instagram > img {
  width: auto;
  height: 100%;
}
.header .nav-row {
  width: 100%;
  height: 80px;
}
.header .nav-row.sticky {
  position: fixed;
  left: 0;
  top: 0;
}
.header .nav-row .h-nav-depth1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}
.header .nav-row .h-nav-depth1 > li {
  position: relative;
  flex: 1 1 18%;
  height: 100%;
}
.header .nav-row .h-nav-depth1 > li:not(:last-of-type) {
  border-right: 1px solid #aaa;
}
.header .nav-row .h-nav-depth1 > li > a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: black;
  transition: 0.2s all ease-in-out;
}
.header .nav-row .h-nav-depth1 > li > a > span {
  position: relative;
  font-size: 22px;
  line-height: 1;
  color: white;
  text-align: center;
  transition: 0.2s all ease-in-out;
}
.header .nav-row .h-nav-depth1 > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: white;
  transition: 0.2s all ease-in-out;
}
.header .nav-row .h-nav-depth1 > li .depth2 {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 0px;
  display: flex;
  flex-direction: column;
  border: 1px solid #aaa;
  background: white;
  overflow: hidden;
  opacity: 0;
  transition: 0.2s all ease-in-out;
}
.header .nav-row .h-nav-depth1 > li .depth2 > a {
  width: 100%;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: black;
  text-align: center;
  background: transparent;
  transition: 0.2s all ease-in-out;
}
.header .nav-row .h-nav-depth1 > li .depth2 > a:hover {
  color: white;
  background: black;
}
.header .nav-row .h-nav-depth1 > li .depth2 > a:not(:last-of-type) {
  border-bottom: 1px solid #aaa;
}
.header .nav-row .h-nav-depth1 > li:hover > a > span {
  color: black;
}
.header .nav-row .h-nav-depth1 > li:hover > a::before {
  width: 100%;
  height: 100%;
}
.header .nav-row .h-nav-depth1 > li:hover .depth2 {
  max-height: 500px;
  opacity: 1;
}

@media (max-width: 1640px) {
  .header .logo-row .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .header {
    height: auto;
  }
  .header .logo-row {
    height: 100px;
  }
  .header .logo-row .container .h-logo {
    height: 70%;
  }
  .header .logo-row .container .to-official-instagram {
    height: 40%;
  }
  .header .nav-row {
    height: 70px;
  }
  .header .nav-row .h-nav-depth1 > li > a > span {
    font-size: 20px;
  }
  .header .nav-row .h-nav-depth1 > li .depth2 > a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 50px;
  }
  .header .logo-row {
    border-bottom: 1px solid #ddd;
  }
  .header .logo-row .container .m-menu-open {
    width: 30px;
    height: 30px;
    opacity: 1;
    cursor: pointer;
  }
  .header .logo-row .container .m-menu-open > svg {
    width: 100%;
    height: 100%;
    fill: black;
  }
  .header .logo-row .container .to-official-instagram {
    width: 30px;
    height: 30px;
  }
  .header .nav-row {
    display: none;
  }
}
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: white;
}
.footer .contact-row {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: black;
}
.footer .contact-row.sticky {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1000;
}
.footer .contact-row .container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 100px;
}
.footer .contact-row .container .left {
  flex: 0 0 260px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 8px;
}
.footer .contact-row .container .left > img {
  width: 30px;
  height: auto;
}
.footer .contact-row .container .left > p {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.footer .contact-row .container .left > p span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.footer .contact-row .container .left > p strong {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: white;
}
.footer .contact-row .container .common-simple-contact {
  flex: 1 1 auto;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
}
.footer .contact-row .container .common-simple-contact > input {
  flex: 1 1 10%;
  height: 100%;
  min-width: 50px;
  padding: 0 10px;
  font-size: 16px;
  line-height: 1;
  color: #464646;
  background: white;
  border: none;
  outline: none;
}
.footer .contact-row .container .common-simple-contact .agree-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.footer .contact-row .container .common-simple-contact .agree-wrap > input {
  width: 16px;
  height: 16px;
}
.footer .contact-row .container .common-simple-contact .agree-wrap > p {
  font-size: 16px;
  line-height: 1;
  color: white;
}
.footer .contact-row .container .common-simple-contact .agree-wrap > p > em {
  padding-bottom: 2px;
  font-weight: 600;
  border-bottom: 1px solid white;
  cursor: pointer;
}
.footer .contact-row .container .common-simple-contact > button {
  flex: 0 0 120px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: white;
  border: 1px solid white;
  background-color: black;
}
.footer .main-row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  background: white;
}
.footer .main-row .left {
  flex: 0 0 30%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #464646;
}
.footer .main-row .left .f-logo {
  display: block;
  width: auto;
  height: 50%;
}
.footer .main-row .left .f-logo > img {
  width: auto;
  height: 100%;
}
.footer .main-row .center {
  flex: 0 0 30%;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #464646;
}
.footer .main-row .center .f-info-list {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
.footer .main-row .center .f-info-list .item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-gap: 10px 0;
}
.footer .main-row .center .f-info-list .item > span {
  position: relative;
  font-size: 16px;
  line-height: 1.4;
  color: black;
}
.footer .main-row .center .f-info-list .item > span:not(:first-of-type) {
  padding-left: 12px;
  margin-left: 12px;
}
.footer .main-row .center .f-info-list .item > span:not(:first-of-type)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background: black;
}
.footer .main-row .right {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
}
.footer .main-row .right > * {
  flex: 1 1 40%;
}
.footer .main-row .right .top {
  width: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #464646;
}
.footer .main-row .right .top .social-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  grid-gap: 20px;
}
.footer .main-row .right .top .social-nav > a {
  display: block;
  width: auto;
  height: 42px;
}
.footer .main-row .right .top .social-nav > a > img {
  width: auto;
  height: 100%;
}
.footer .main-row .right .top .family-brand {
  position: relative;
  flex: 0 0 300px;
  height: 50px;
  background-color: white;
  border: 1px solid #464646;
}
.footer .main-row .right .top .family-brand .depth1 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  color: black;
  text-align: center;
}
.footer .main-row .right .top .family-brand .depth2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: calc(100% + 2px);
  height: 55px;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  color: black;
  text-align: center;
  background: white;
  border: 1px solid #464646;
}
.footer .main-row .right .top .family-brand:hover .depth2 {
  display: flex;
}
.footer .main-row .right .copyright {
  width: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.footer .main-row .right .copyright .f-privacy-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.footer .main-row .right .copyright .f-privacy-nav > a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #464646;
}
.footer .main-row .right .copyright > span {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: #464646;
}

@media (max-width: 1440px) {
  .footer .contact-row .container {
    padding: 0 16px;
    grid-gap: 50px;
  }
  .footer .contact-row .container .left {
    flex: 0 0 215px;
  }
  .footer .contact-row .container .left > img {
    width: 24px;
    height: auto;
  }
  .footer .contact-row .container .left > p span {
    font-size: 20px;
  }
  .footer .contact-row .container .left > p strong {
    font-size: 20px;
  }
  .footer .contact-row .container .common-simple-contact > input {
    font-size: 14px;
  }
  .footer .contact-row .container .common-simple-contact .agree-wrap > input {
    width: 14px;
    height: 14px;
  }
  .footer .contact-row .container .common-simple-contact .agree-wrap > p {
    font-size: 13px;
  }
  .footer .contact-row .container .common-simple-contact > button {
    flex: 0 0 100px;
    font-size: 14px;
  }
  .footer .main-row .left .f-logo {
    width: 70%;
    height: auto;
  }
  .footer .main-row .left .f-logo > img {
    width: 100%;
    height: auto;
  }
  .footer .main-row .center {
    padding: 20px;
  }
  .footer .main-row .center .f-info-list {
    grid-gap: 10px;
  }
  .footer .main-row .center .f-info-list .item {
    grid-gap: 10px 0;
  }
  .footer .main-row .center .f-info-list .item > span {
    font-size: 14px;
  }
  .footer .main-row .center .f-info-list .item > span:not(:first-of-type) {
    padding-left: 8px;
    margin-left: 8px;
  }
  .footer .main-row .center .f-info-list .item > span:not(:first-of-type)::before {
    width: 1px;
  }
  .footer .main-row .right .top {
    padding: 0 20px;
  }
  .footer .main-row .right .top .social-nav {
    grid-gap: 14px;
  }
  .footer .main-row .right .top .social-nav > a {
    height: 32px;
  }
  .footer .main-row .right .top .family-brand {
    flex: 0 0 200px;
    height: 40px;
  }
  .footer .main-row .right .top .family-brand .depth1 {
    font-size: 20px;
  }
  .footer .main-row .right .top .family-brand .depth2 {
    height: 35px;
    font-size: 16px;
  }
  .footer .main-row .right .copyright {
    padding: 0 20px;
  }
  .footer .main-row .right .copyright > span {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .footer .contact-row {
    height: 50px;
  }
  .footer .contact-row .container {
    grid-gap: 30px;
  }
  .footer .contact-row .container .left {
    flex: 0 0 180px;
  }
  .footer .contact-row .container .left > img {
    width: 22px;
    height: auto;
  }
  .footer .contact-row .container .left > p span {
    font-size: 16px;
  }
  .footer .contact-row .container .left > p strong {
    font-size: 16px;
  }
  .footer .contact-row .container .common-simple-contact {
    height: 30px;
  }
  .footer .contact-row .container .common-simple-contact > input {
    padding: 0 8px;
    font-size: 12px;
  }
  .footer .contact-row .container .common-simple-contact > button {
    font-size: 13px;
  }
  .footer .main-row {
    flex-direction: column;
  }
  .footer .main-row .left {
    flex: unset;
    border-right: none;
    border-bottom: 1px solid #3D3D3D;
  }
  .footer .main-row .left .f-logo {
    width: 100%;
    height: auto;
    padding: 16px;
    text-align: center;
  }
  .footer .main-row .left .f-logo > img {
    width: auto;
    height: 40px;
  }
  .footer .main-row .center {
    flex: unset;
    padding: 16px;
    border-right: none;
    border-bottom: 1px solid #3D3D3D;
  }
  .footer .main-row .center .f-info-list .item > span {
    font-size: 13px;
  }
  .footer .main-row .right {
    flex: unset;
  }
  .footer .main-row .right .top {
    padding: 16px;
  }
  .footer .main-row .right .top .family-brand {
    flex: 0 0 250px;
  }
  .footer .main-row .right .copyright {
    padding: 16px;
    justify-content: center;
  }
  .footer .main-row .right .copyright > span {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .footer .contact-row {
    height: auto;
    padding: 10px 0;
  }
  .footer .contact-row .container {
    height: auto;
    flex-direction: column;
    grid-gap: 10px;
  }
  .footer .contact-row .container .left {
    flex: unset;
  }
  .footer .contact-row .container .left > img {
    width: 20px;
  }
  .footer .contact-row .container .common-simple-contact {
    flex: unset;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer .contact-row .container .common-simple-contact {
    height: auto;
    flex-wrap: wrap;
  }
  .footer .contact-row .container .common-simple-contact > input {
    flex: 1 1 30%;
    height: 25px;
  }
  .footer .contact-row .container .common-simple-contact .agree-wrap {
    flex: 0 0 auto;
  }
  .footer .contact-row .container .common-simple-contact > button {
    flex: 1 1 60%;
    height: 25px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer .contact-row .container {
    gap: 8px;
  }
  .footer .contact-row .container .left > img {
    width: 16px;
  }
  .footer .contact-row .container .left > p > strong {
    font-size: 14px;
  }
  .footer .contact-row .container .common-simple-contact {
    gap: 8px;
  }
  .footer .contact-row .container .common-simple-contact > input {
    flex: 1 1 30%;
    height: 25px;
  }
  .footer .contact-row .container .common-simple-contact .agree-wrap {
    flex: 0 0 auto;
  }
  .footer .contact-row .container .common-simple-contact > button {
    flex: 1 1 40%;
    height: 25px;
    font-size: 12px;
  }
  .footer .main-row .right .top {
    flex-direction: column;
    justify-content: unset;
    grid-gap: 16px;
  }
  .footer .main-row .right .top .family-brand {
    flex: unset;
    width: 100%;
  }
  .footer .main-row .right .top .family-brand .depth1 {
    font-size: 16px;
  }
  .footer .main-row .right .top .family-brand .depth2 {
    font-size: 14px;
  }
}
.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: black;
  border-radius: 500rem;
  cursor: pointer;
  opacity: 0.3;
  z-index: 100;
  transition: 0.2s all ease-in-out;
}
.to-top.sticky {
  bottom: 70px;
}
.to-top > svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.to-top:hover {
  opacity: 1;
}

@media (max-width: 1280px) {
  .to-top.sticky {
    bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .to-top.sticky {
    bottom: 90px;
  }
}
@media (max-width: 768px) {
  .to-top.sticky {
    bottom: 120px;
  }
}
@media (max-width: 480px) {
  .to-top {
    width: 40px;
    height: 40px;
  }
  .to-top > svg {
    width: 25px;
    height: 25px;
  }
  .to-top.sticky {
    bottom: 112px;
  }
}
.policy-modal-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  visibility: hidden;
  opacity: 0;
  z-index: 900;
  transition: 0.2s all ease-in-out;
}
.policy-modal-background.on {
  visibility: visible;
  opacity: 1;
}

.policy-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  max-width: 0;
  max-height: 0;
  padding: 50px 30px;
  background: white;
  border: 2px solid black;
  opacity: 0;
  visibility: hidden;
  z-index: 901;
  transition: 0.2s all ease-in-out;
}
.policy-modal.on {
  max-width: 80vw;
  max-height: 80vh;
  opacity: 1;
  visibility: visible;
}
.policy-modal .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.policy-modal .container .modal-title-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.policy-modal .container .modal-title-area > img {
  width: auto;
  height: 28px;
}
.policy-modal .container .modal-title-area > h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: black;
  word-break: keep-all;
}
.policy-modal .container .modal-content-area {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  overflow: hidden;
}
.policy-modal .container .modal-content-area > p {
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: auto;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  word-break: keep-all;
}
.policy-modal .container .modal-content-area > p > em {
  font-weight: 600;
  font-size: 17px;
  color: #2B7FBB;
}
.policy-modal .container .modal-content-area > p > span {
  position: relative;
  padding-left: 16px;
}
.policy-modal .container .modal-content-area > p > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 9px;
  height: 9px;
  border: 3px solid #2B7FBB;
  border-radius: 500rem;
  background: transparent;
}
.policy-modal .container .modal-content-area::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 5px;
  background: transparent;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.3);
}
.policy-modal .container .modal-content-area::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 5px;
  background: transparent;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.3);
}
.policy-modal .container .confirm-close-modal {
  padding: 10px 25px;
  border: 2px solid black;
  background: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: black;
  border-radius: 500rem;
  transition: 0.2s all ease-in-out;
}
.policy-modal .container .confirm-close-modal:hover {
  background: black;
  color: white;
}

@media (max-width: 1280px) {
  .policy-modal {
    width: 90%;
    height: 90%;
  }
  .policy-modal.on {
    max-width: 90vw;
    height: 90vh;
  }
}
@media (max-width: 768px) {
  .policy-modal {
    padding: 30px 16px;
  }
  .policy-modal .container .modal-title-area > img {
    height: 22px;
  }
  .policy-modal .container .modal-title-area > h1 {
    font-size: 22px;
  }
  .policy-modal .container .modal-content-area > p {
    font-size: 13px;
  }
  .policy-modal .container .confirm-close-modal {
    padding: 6px 18px;
    font-size: 14px;
  }
}/*# sourceMappingURL=common.css.map */