@charset "UTF-8";
@import url("font.css");
:root {
  --color-primary: #ff5100;
}

/* reset */
html, body, div, ul, ol, li, dl, dt, dd, p, strong, span, em, a, table, th, td, caption, input, button, textarea, label, form, legend, fieldset, select, hr, h1, h2, h3, h4, h5, h6, img {
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  background: none;
  line-height: inherit;
  font-size: inherit;
  font-family: inherit;
}

html, body {
  height: 100%;
  min-height: 100%;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  font-family: "Inter", "Noto Sans KR", "맑은 고딕", "Malgun Gothic", "Open Sans", HelveticaNeue-Light, AppleSDGothicNeo-Light, sans-serif !important;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

html {
  font-size: 10px;
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: 500;
}

*, :after, :before {
  box-sizing: border-box;
  vertical-align: top;
}

header, footer, nav {
  display: block;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

th, td {
  vertical-align: middle;
}

select, button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

i, em {
  font-style: normal;
}

textarea {
  resize: vertical;
}

textarea ul,
textarea ol {
  list-style: disc;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

input, textarea, button, select {
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

b {
  font-weight: 800;
}

::-moz-placeholder {
  color: #bbb;
}

::placeholder {
  color: #bbb;
}

/*** common ***/
.hide {
  display: none;
}

.blind, .sound_only, legend {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.1;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

.w100 {
  width: 100% !important;
}

.w50 {
  width: 50% !important;
}

.tac {
  text-align: center !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold;
}

.block {
  display: block;
}

.ib {
  display: inline-block;
}

.ellip {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.ellip2 {
  overflow: hidden;
  text-overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ellip3 {
  overflow: hidden;
  text-overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.point {
  color: var(--color-primary);
}

/* layout */
body.overflow_hidden {
  overflow: hidden;
}

body > div,
#wrap {
  font-size: 1.8rem;
}

.wfix {
  max-width: 1520px;
  margin: 0 auto;
}

@media screen and (max-width: 1560px) {
  html {
    font-size: 0.7142vw;
  }
  .wfix {
    padding: 0 1.28vw;
  }
}
@media screen and (max-width: 1400px) {
  .wfix {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 5px;
  }
}
.btn_comm {
  display: inline-flex;
  align-items: center;
  height: 3.6rem;
  padding: 0 1em;
  border-radius: 2rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  line-height: 1;
}
@media screen and (min-width: 1400px) {
  .btn_comm:hover {
    background: #000;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  border-bottom: 1px solid transparent;
  z-index: 9;
  transition: 0.2s;
}
@media screen and (min-width: 1400px) {
  #header:hover {
    background: #fff;
  }
}
#header:after {
  position: absolute;
  top: 10rem;
  left: 0;
  width: 100%;
  height: 1px;
  transition: 0.3s;
  content: "";
}
#header.up {
  transform: translateY(-100%);
}
#header.down {
  background: #fff;
}
#header .wfix {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1620px;
  z-index: 9;
}
@media screen and (max-width: 1660px) {
  #header .wfix {
    padding: 0 1.28vw;
  }
}
@media screen and (max-width: 1400px) {
  #header .wfix {
    padding: 0 20px;
  }
}
#header #h1 .logo {
  display: block;
  width: 20rem;
  height: 10rem;
  background: url(../img/logo.png) no-repeat center/contain;
  font-size: 0;
}
#header #gnb .list_menu {
  position: relative;
  display: flex;
  gap: 4rem;
  align-items: center;
  height: 10rem;
  padding: 0 6.4rem;
}
#header #gnb .list_menu.lang-kr {
	gap: 5.5rem;
}
#header #gnb a {
  display: block;
  transition: 0.3s;
  font-size: 1.8rem;
}
@media screen and (min-width: 1400px) {
  #header #gnb a:hover {
    color: var(--color-primary) !important;
  }
}
#header #gnb .d1 > a {
  padding: 0 1.2rem;
  font-weight: 600;
  line-height: 8rem;
}
#header #gnb .wrap_sub {
  display: flex;
  gap: 4.8rem;
  align-items: flex-start;
  position: absolute;
  top: 10rem;
  left: 0;
  width: 100%;
  height: 0;
  transition: 0.1s;
  overflow: hidden;
  padding: 0 4rem;
  background: #fff;
  border-radius: 0 0 1.5rem 1.5rem;
}
#header #gnb .wrap_sub:before {
  display: block;
  width: 34rem;
  height: 24rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background: no-repeat center/cover;
  flex-shrink: 0;
  content: "";
}
#header #gnb .wrap_sub .list_sub {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.4rem 3.6rem;
  padding-top: 2.4rem;
  flex-grow: 1;
}
#header #gnb .wrap_sub .list_sub li {
  width: calc(33.333% - 2.4rem);
}
#header #gnb .wrap_sub .list_sub a {
  position: relative;
  padding-left: 1.2rem;
  line-height: 2.2rem;
  color: #333;
}
#header #gnb .wrap_sub .list_sub a:before {
  position: absolute;
  top: 0.8rem;
  left: 0;
  width: 0;
  height: 0;
  border-left: 0.4rem solid #bbb;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
  content: "";
}
@media screen and (min-width: 1400px) {
  #header #gnb .wrap_sub .list_sub a:hover:before {
    border-left-color: var(--color-primary);
  }
}
#header #gnb .d1:nth-child(1) .wrap_sub:before {
  background-image: url(../img/gnb_bg001.jpg);
}
#header #gnb .d1:nth-child(2) .wrap_sub:before {
  background-image: url(../img/gnb_bg002.jpg);
}
#header #gnb .d1:nth-child(3) .wrap_sub:before {
  background-image: url(../img/gnb_bg003.jpg);
}
#header #gnb .d1:nth-child(4) .wrap_sub:before {
  background-image: url(../img/gnb_bg004.jpg);
}
#header #gnb .d1:nth-child(5) .wrap_sub:before {
  background-image: url(../img/gnb_bg005.jpg);
}
#header #gnb .d1:nth-child(6) .wrap_sub:before {
  background-image: url(../img/gnb_bg006.jpg);
}
#header #gnb .d1.on .wrap_sub {
  height: 30rem;
  padding: 2rem 4rem 4rem;
}
#header .right {
  display: flex;
  align-items: center;
}
#header .right .btn_comm {
  margin-right: 3rem;
}
#header .right .language {
  position: relative;
  margin-right: 2.5rem;
}
#header .right .language .btn_lang {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 6rem;
  height: 6rem;
  padding: 0.6rem;
  font-size: 1.8rem;
  font-weight: 600;
}
#header .right .language .btn_lang:after {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid #000;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  content: "";
}
#header .right .language .btn_lang.on:after {
  transform: rotate(180deg);
}
#header .right .language .list_lang {
  display: none;
  position: absolute;
  top: 6rem;
  left: 0;
  width: 100%;
  padding: 1.4rem 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
}
#header .right .language .list_lang li + li {
  margin-top: 0.4rem;
}
#header .right .language .list_lang li.on {
  display: none;
}
#header .right .language .list_lang a {
  display: block;
  text-align: center;
  line-height: 3.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  transition: 0.3s;
  color: #000;
}
@media screen and (min-width: 1400px) {
  #header .right .language .list_lang a:hover {
    color: var(--color-primary);
  }
}
#header .right .btn_menu {
  position: relative;
  display: inline-block;
  width: 6rem;
  height: 6rem;
  margin-right: -1.7rem;
  font-size: 0;
}
#header .right .btn_menu:before, #header .right .btn_menu:after, #header .right .btn_menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.6rem;
  height: 0.3rem;
  margin: -0.15rem 0 0 -1.3rem;
  background: #000;
  transition: 0.3s;
  content: "";
}
#header .right .btn_menu:before {
  margin-top: -0.9rem;
}
#header .right .btn_menu:after {
  margin-top: 0.7rem;
}
#header #sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: 0.6s;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
#header #sitemap .list_menu {
  display: flex;
  height: 100vh;
  max-width: 1620px;
  margin: 0 auto;
  padding: 0;
  gap: 0;
  text-align: center;
}
#header #sitemap a {
  display: block;
  transition: 0.5s;
  transform: translateY(3rem);
  opacity: 0;
}
@media screen and (min-width: 1400px) {
  #header #sitemap a:hover {
    color: var(--color-primary) !important;
  }
}
#header #sitemap .d1 {
  width: 100%;
  height: 100vh;
  padding-top: 19.6rem;
  transition: 0.5s ease-in-out;
}
#header #sitemap .d1 + .d1 {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
#header #sitemap .d1 > a {
  font-size: 3.6rem;
  font-weight: 600;
}
#header #sitemap .d1:nth-child(1) {
  padding-top: 20.6rem;
  transition-delay: 0s;
}
#header #sitemap .d1:nth-child(2) {
  padding-top: 21.6rem;
  transition-delay: 0.2s;
}
#header #sitemap .d1:nth-child(3) {
  padding-top: 22.6rem;
  transition-delay: 0.24s;
}
#header #sitemap .d1:nth-child(4) {
  padding-top: 23.6rem;
  transition-delay: 0.36s;
}
#header #sitemap .d1:nth-child(5) {
  padding-top: 24.6rem;
  transition-delay: 0.44s;
}
#header #sitemap .d1:nth-child(6) {
  padding-top: 25.6rem;
  transition-delay: 0.5s;
}
#header #sitemap .wrap_sub {
  position: relative;
  top: auto;
  left: auto;
  margin-top: 2.6rem;
  padding: 0;
  border-radius: 0;
  background: none;
}
#header #sitemap .wrap_sub .list_sub li:not(.on) + li {
  margin-top: 1.8rem;
}
#header #sitemap .wrap_sub .list_sub a {
  display: flex;
  width: 100%;
  height: 5.2rem;
  padding: 0 5.8rem;
  justify-content: center;
  align-items: center;
  color: #777;
}
#header #sitemap .btn_comm {
  display: none;
}
@media screen and (min-width: 1400px) {
  #header #sitemap .d1:hover > a {
    color: var(--color-primary);
  }
}
#header.active #gnb {
  display: none;
}
#header.active .right .btn_comm {
  display: none;
}
#header.active .btn_menu span {
  opacity: 0;
}
#header.active .btn_menu:before, #header.active .btn_menu:after {
  margin: -0.15rem 0 0 -1.3rem;
}
#header.active .btn_menu:before {
  transform: rotate(45deg);
}
#header.active .btn_menu:after {
  transform: rotate(-45deg);
}
#header.active #sitemap {
  height: 100vh;
}
#header.active #sitemap.on a {
  transform: translateY(0);
  opacity: 1;
}
#header.active #sitemap .d1 {
  padding-top: 19.6rem !important;
}
@media screen and (max-width: 1560px) {
  #header #gnb .list_menu {
    gap: 2rem;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 1024px) {
  #header {
    height: 60px;
  }
  #header #h1 .logo {
    width: 134px;
    height: 60px;
  }
  #header #gnb {
    display: none;
  }
  #header .right .language .btn_lang {
    width: 45px;
    height: 44px;
    padding: 0 4px;
    font-size: 12px;
  }
  #header .right .language .list_lang {
    top: 44px;
    padding: 7px 0;
  }
  #header .right .language .list_lang li + li {
    margin-top: 0;
  }
  #header .right .language .list_lang a {
    line-height: 25px;
    font-size: 12px;
  }
  #header .right .btn_comm {
    display: none;
  }
  #header .right .btn_menu {
    width: 60px;
    height: 60px;
    margin-right: -20px;
  }
  #header .right .btn_menu:before, #header .right .btn_menu:after, #header .right .btn_menu span {
    width: 26px;
    height: 2px;
    margin: -1px 0 0 -13px;
  }
  #header .right .btn_menu:before {
    margin-top: -9px;
  }
  #header .right .btn_menu:after {
    margin-top: 7px;
  }
  #header #sitemap {
    overflow-y: auto;
  }
  #header #sitemap .list_menu {
    padding-top: 60px;
    display: block;
    height: auto;
    text-align: left;
  }
  #header #sitemap .list_menu a {
    padding: 0 20px;
  }
  #header #sitemap .list_menu .d1 {
    height: auto;
    padding: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  #header #sitemap .list_menu .d1 + .d1 {
    border-left: none;
  }
  #header #sitemap .list_menu .d1 > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    font-size: 18px;
    pointer-events: none;
    cursor: default;
  }
  #header #sitemap .list_menu .d1 > a:after {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(../img/icon_arrow03.svg) no-repeat center/contain;
    transition: 0.3s;
    content: "";
  }
  #header #sitemap .list_menu .d1.on > a {
    color: var(--color-primary);
  }
  #header #sitemap .list_menu .d1.on > a:after {
    filter: invert(34%) sepia(68%) saturate(5401%) hue-rotate(13deg) brightness(114%) contrast(103%);
    transform: rotate(180deg);
  }
  #header #sitemap .wrap_sub {
    display: none;
    margin-top: 0;
    padding-bottom: 12px;
  }
  #header #sitemap .wrap_sub .list_sub a {
    justify-content: flex-start;
    height: 36px;
    padding: 0 20px;
    font-size: 12px;
  }
  #header #sitemap .btn_comm {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-radius: 0;
    height: 55px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
  }
  #header #sitemap .btn_comm:after {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(../img/icon_popup.png) no-repeat center/contain;
    content: "";
  }
  #header.active .right .btn_menu:before, #header.active .right .btn_menu:after {
    margin: -1px 0 0 -13px !important;
  }
  #header.active #sitemap .btn_comm {
    display: flex;
  }
}

#container {
  min-height: calc(100vh - 60.6rem);
}
@media screen and (max-width: 1024px) {
  #container {
    min-height: calc(100vh - 60px);
  }
}

#visual {
  padding-top: 10rem;
}
@media screen and (max-width: 1024px) {
  #visual {
    padding-top: 60px;
  }
}

#footer {
  padding: 7rem 0;
  background: #f5f5f5;
  color: #777;
  font-size: 1.6rem;
}
#footer .floating_wrap {
  position: fixed;
  right: 5rem;
  bottom: 8rem;
  z-index: 8;
}
#footer .floating_wrap .msg_box {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 37rem;
  padding: 2.8rem;
  border-radius: 1.5rem;
  border: 1px solid #ddd;
  background: #fff;
  z-index: 8;
}
#footer .floating_wrap .msg_box .tit {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #000;
}
#footer .floating_wrap .msg_box .conts {
  margin-top: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.3;
}
#footer .floating_wrap .msg_box .btn_comm {
  height: 4rem;
  margin-top: 3.2rem;
  width: 100%;
  justify-content: center;
}
#footer .floating_wrap .msg_box .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  background: url(../img/icon_close.png) no-repeat center/1.3rem;
  font-size: 0;
}
#footer .floating_wrap .btn_floating {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 11rem;
  height: 11rem;
  border-radius: 1.5rem;
  background: url(../img/floating_box.png) no-repeat center/cover;
  box-shadow: 0.5rem 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  z-index: 8;
  transition: 0.2s;
}
#footer .floating_wrap .btn_floating:before {
  display: block;
  width: 5.8rem;
  height: 4.9rem;
  background: url(../img/floating_obj.png) no-repeat center/contain;
  content: "";
}
@media screen and (min-width: 1400px) {
  #footer .floating_wrap .btn_floating:hover {
    background-image: url(../img/floating_box_on.png);
  }
}
#footer .ft_newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .ft_newsletter .tit_newsletter .tit {
  display: block;
  font-size: 2.8rem;
  color: #000;
  font-weight: 600;
}
#footer .ft_newsletter .tit_newsletter .desc {
  font-size: 1.8rem;
}
#footer .ft_newsletter .tit_newsletter .wrap_admin_link { width: fit-content; background: #222; border-radius: 20px; margin-top: 10px; }
#footer .ft_newsletter .tit_newsletter .wrap_admin_link a{ color: #fff; font-size: 1.4rem; display: block; padding: 10px 15px; font-weight: 900; }

#footer .ft_newsletter .conts_newsletter {
  position: relative;
  padding-right: 6rem;
}
#footer .ft_newsletter .conts_newsletter .input {
  width: 100%;
  height: 5rem;
  padding: 0 0.5rem;
  border-bottom: 1px solid #ddd;
  font-size: 1.6rem;
}
#footer .ft_newsletter .conts_newsletter .input:focus {
  border-color: #000;
}
#footer .ft_newsletter .conts_newsletter .wrap_chk {
  display: flex;
  align-items: center;
  margin-top: 1.2rem;
}
#footer .ft_newsletter .conts_newsletter .wrap_chk .chk {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.5rem;
  background: #ddd;
}
#footer .ft_newsletter .conts_newsletter .wrap_chk .chk:checked {
  background: url(../img/icon_check.svg) var(--color-primary) no-repeat center/contain;
}
#footer .ft_newsletter .conts_newsletter .wrap_chk .label {
  margin-left: 1rem;
}
#footer .ft_newsletter .conts_newsletter .wrap_chk a {
  font-weight: 600;
  text-decoration: underline;
  transition: 0.3s;
}
@media screen and (min-width: 1400px) {
  #footer .ft_newsletter .conts_newsletter .wrap_chk a:hover {
    color: #000;
  }
}
#footer .ft_newsletter .conts_newsletter .btn_newsletter {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  background: var(--color-primary);
  font-size: 0;
  transition: 0.3s;
}
#footer .ft_newsletter .conts_newsletter .btn_newsletter:after {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(../img/icon_arrow02.svg) no-repeat center/contain;
  filter: invert(1);
  content: "";
}
@media screen and (min-width: 1400px) {
  #footer .ft_newsletter .conts_newsletter .btn_newsletter:hover {
    background-color: #000;
  }
}
#footer .ft_info {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 5.2rem;
  border-top: 1px solid #ddd;
}
#footer .ft_info .ft_left {
  display: flex;
  flex-direction: column;
}
#footer .ft_info .ft_left .logo {
  display: block;
  width: 20.8rem;
}
#footer .ft_info .ft_left .informations {
  margin-top: 9rem;
}
#footer .ft_info .ft_left .info {
  display: block;
}
#footer .ft_info .ft_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
#footer .ft_info .ft_right .list_menu {
  display: flex;
  gap: 5.8rem;
  flex-grow: 1;
}
#footer .ft_info .ft_right .list_menu a {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
}
#footer .ft_info .ft_right .list_sns {
  display: flex;
  gap: 1rem;
}
#footer .ft_info .ft_right .list_sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background: #777;
  transition: 0.3s;
}
#footer .ft_info .ft_right .list_sns a img {
  width: 3.2rem;
  height: 3.2rem;
  filter: invert(1);
}
@media screen and (min-width: 1400px) {
  #footer .ft_info .ft_right .list_sns a:hover {
    background-color: #000;
  }
}
#footer .ft_info .ft_right .copyright {
  margin-top: 2.8rem;
}
@media screen and (max-width: 1024px) {
  #footer {
    padding: 32px 0;
  }
  #footer .floating_wrap {
    right: 20px;
    bottom: 25px;
  }
  #footer .floating_wrap .btn_floating {
    font-size: 0;
    gap: 9;
    width: 50px;
    height: 50px;
    border-radius: 8px;
  }
  #footer .floating_wrap.on {
    bottom: 0;
  }
  #footer .ft_newsletter {
    display: block;
  }
  #footer .ft_newsletter .tit_newsletter .tit {
    font-size: 18px;
  }
  #footer .ft_newsletter .tit_newsletter .desc {
    font-size: 12px;
  }
  #footer .ft_newsletter .conts_newsletter {
    padding-right: 40px;
  }
  #footer .ft_newsletter .conts_newsletter .input {
    height: 35px;
    padding: 0 4px;
    font-size: 10px;
  }
  #footer .ft_newsletter .conts_newsletter .wrap_chk {
    margin-top: 10px;
  }
  #footer .ft_newsletter .conts_newsletter .wrap_chk .chk {
    width: 10px;
    height: 10px;
    border-radius: 2px;
  }
  #footer .ft_newsletter .conts_newsletter .label {
    margin-left: 4px;
    font-size: 10px;
  }
  #footer .ft_newsletter .conts_newsletter .btn_newsletter {
    width: 36px;
    height: 36px;
/*    margin-top: -18px;*/
  }
  #footer .ft_newsletter .conts_newsletter .btn_newsletter:after {
    width: 12px;
    height: 12px;
  }
  #footer .ft_info {
    display: block;
    margin-top: 30px;
    padding-top: 30px;
  }
  #footer .ft_info .ft_left .logo {
    width: 104px;
  }
  #footer .ft_info .ft_left .informations {
    margin-top: 16px;
    font-size: 10px;
  }
  #footer .ft_info .ft_right {
    display: block;
    text-align: left;
  }
  #footer .ft_info .ft_right .list_menu {
    display: none;
  }
  #footer .ft_info .ft_right .list_sns {
    gap: 8px;
    margin-top: 30px;
  }
  #footer .ft_info .ft_right .list_sns a {
    width: 32px;
    height: 32px;
  }
  #footer .ft_info .ft_right .list_sns a img {
    width: 20px;
    height: 20px;
  }
  #footer .ft_info .ft_right .copyright {
    margin-top: 15px;
    font-size: 10px;
  }
}
/* Global Brochure / Resources Download Modal Overlay */
.inquiry_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99999;
}

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  max-width: 900px;
  height: 75vh;
  max-height: 800px;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.overlay-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

#closeresources {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100000;
  padding: 8px;
}

#closeresources img {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 767px) {
  .overlay-content {
    width: 92vw;
    height: 85vh;
    border-radius: 14px;
    padding: 15px 5px;
  }
  #closeresources {
    top: 10px;
    right: 10px;
  }
}