@charset "UTF-8";
@import url(//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css);
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;
  font-family: "Spoqa Han Sans Neo", "sans-serif";
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.2;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.blind {
  position: absolute;
  top: -9999px;
  left: -999999px;
}

input {
  outline: none;
  border: none;
  margin: 0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@font-face {
  font-family: "NanumSquareNeo-Variable";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/NanumSquareNeo-Variable.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
.logo {
  text-transform: capitalize;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}
.logo strong {
  color: #fbd66e;
}
.logo a {
  color: #fff;
}

.fade {
  position: relative;
}

.btn {
  display: inline-block;
  position: relative;
  width: 250px;
  overflow: hidden;
  padding: 20px 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fcde82+0,facc53+100 */
  background: linear-gradient(to bottom, rgb(252, 222, 130) 0%, rgb(250, 204, 83) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-radius: 10px;
  text-align: center;
  color: #333;
  font-size: 20px;
  font-family: "Spoqa Han Sans Neo", "sans-serif";
  font-weight: 700;
}
.btn:after {
  background: #fff;
  content: "";
  height: 255px;
  left: -45%;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
}
.btn:hover {
  transform: translateY(-10%);
}
.btn:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media only screen and (max-width: 1080px) {
  .logo {
    font-size: 5vw;
  }
  .btn {
    width: 50%;
    padding: 3vw 0;
    border-radius: 3vw;
    font-size: 3.5vw;
  }
  .btn:after {
    display: none;
  }
}
/*-------------------------------------------------------------------

   header

-------------------------------------------------------------------*/
.header {
  padding: 17px 0;
  background-color: #000;
}
.header__wrap {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header nav li {
  margin-left: 45px;
}
.header nav a {
  font-size: 18px;
  font-weight: 700;
  color: #fbd66e;
}
.header nav li:last-child a {
  display: inline-block;
  padding: 11px 16px 10px;
  border: 2px solid #fbd66e;
  border-radius: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}
.header nav li:last-child a:hover {
  background-color: #fbd66e;
  color: #000;
  transition: 1s;
}

@media only screen and (max-width: 1440px) {
  .header__wrap {
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1080px) {
  .header {
    width: 100%;
    padding: 3vw 0;
  }
  .header__wrap {
    width: 90%;
    margin: 0 auto;
  }
  .header nav li {
    margin-left: 0;
  }
  .header nav li:first-child {
    display: none;
  }
  .header nav a {
    font-size: 3vw;
  }
  .header nav li:last-child a {
    padding: 2vw 3vw 1.7vw;
    border-width: 1px;
    border-radius: 3vw;
    text-transform: capitalize;
    color: #fbd66e;
    font-weight: 700;
  }
  .header nav li:last-child a:hover {
    color: #fbd66e;
    background-color: transparent;
  }
}
/*-------------------------------------------------------------------

   footer

-------------------------------------------------------------------*/
.footer {
  padding: 65px 0 95px;
  background-color: #333;
  color: #fff7f7;
}
.footer a {
  color: #fff7f7;
}
.footer .logo {
  margin-right: 100px;
}
.footer__wrap {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__wrap > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__menu {
  width: 380px;
  padding-top: 12px;
}
.footer__menu dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.footer__menu dt {
  width: 100%;
  margin-bottom: 18px;
  font-family: "NanumSquareNeo-Variable";
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}
.footer__menu span {
  display: inline-block;
  margin-right: 10px;
}
.footer__menu dd {
  padding-bottom: 10px;
  font-weight: 300;
  font-size: 13px;
}
.footer__menu dd:not(.footer__menu dd:nth-child(odd))::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: 0 10px;
  background-color: #fff;
}
.footer__menu dd:last-child {
  width: 100%;
  padding-top: 35px;
}
.footer__menu dd:last-child::after {
  display: none !important;
}
.footer__family select {
  width: 180px;
  padding: 18px 28px;
  border-radius: 30px;
  background-color: #eaebee;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='7'%3E%3Cpath fill-rule='evenodd' fill='%2311141E' d='m12.181 1.723-4.949 4.95a.998.998 0 0 1-.732.288.998.998 0 0 1-.732-.288L.819 1.723A.999.999 0 1 1 2.233.309L6.5 4.576 10.767.309a.999.999 0 1 1 1.414 1.414z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 85% center;
  outline: none;
  -webkit-appearance: none;
  /*select 내부 스타일 제거 (화살표 제거)*/
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
}

@media only screen and (max-width: 1440px) {
  .footer {
    padding: 65px 0 95px;
  }
  .footer .logo {
    margin-right: 100px;
  }
  .footer__wrap {
    width: 90%;
    margin: 0 auto;
  }
  .footer__menu {
    width: 380px;
    padding-top: 12px;
  }
  .footer__menu dt {
    width: 100%;
    margin-bottom: 18px;
    font-size: 13px;
  }
  .footer__menu span {
    margin-right: 10px;
  }
  .footer__menu dd {
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 13px;
  }
  .footer__menu dd:not(.footer__menu dd:nth-child(odd))::after {
    width: 1px;
    height: 10px;
    margin: 0 10px;
  }
  .footer__menu dd:last-child {
    padding-top: 35px;
  }
  .footer__family select {
    width: 180px;
    padding: 18px 28px;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 1080px) {
  .footer {
    padding: 8vw 0 12vw;
  }
  .footer .logo {
    width: 100%;
    font-size: 5vw;
    margin-right: 0;
  }
  .footer__wrap {
    width: 85%;
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
  }
  .footer__wrap > div {
    flex-wrap: wrap;
  }
  .footer__menu {
    width: 100%;
    padding-top: 5vw;
  }
  .footer__menu dt {
    margin-bottom: 5vw;
    font-size: 3vw;
  }
  .footer__menu span {
    margin-right: 3vw;
    font-weight: 500;
  }
  .footer__menu dd {
    width: 100%;
    padding-bottom: 2vw;
    font-size: 3vw;
  }
  .footer__menu dd:not(.footer__menu dd:nth-child(odd))::after {
    display: none;
  }
  .footer__menu dd:last-child {
    padding-top: 5vw;
  }
  .footer__family {
    position: absolute;
    top: 0;
    right: 0;
  }
  .footer__family select {
    width: 30vw;
    padding: 2vw 4vw;
    border-radius: 4vw;
    background-position: 90% center;
    background-size: 2vw;
    font-size: 3vw;
  }
}
/*-------------------------------------------------------------------

    Index 페이지 

-------------------------------------------------------------------*/
br.m {
  display: none;
}

.wrap {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.wrap-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrap-loading .spinner {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 101;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  border: 5px solid #ffffff;
  border-top-color: #fbd66e;
  border-radius: 100%;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 1080px) {
  .wrap-loading .spinner {
    top: calc(50% - 5vw);
    left: calc(50% - 5vw);
    width: 10vw;
    height: 10vw;
  }
}
/* main */
.main {
  background: #fff;
}
.main * {
  text-align: center;
}
.main h3 {
  width: 100%;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  color: #333;
}
.main span {
  display: block;
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 700;
}
.main p {
  font-size: 18px;
  font-weight: 300;
}
.main .con .main__wrap {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.main .con.fade-in .main__wrap {
  opacity: 1;
}
.main__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.main__wrap:not(.main__con01 .main__wrap) {
  justify-content: center;
  padding: 90px 0;
}
.main__con01 {
  padding: 85px 0;
  background-color: #1e1e1e;
  background-repeat: no-repeat;
  background-position: center 0;
  background-image: url(/assets/img/main/main01-bg.png);
}
.main__con01-txt {
  font-size: 25px;
  color: #fff;
  line-height: 1.8;
  text-align: left;
}
.main__con01-img {
  position: relative;
}
.main__con01-img *:not(.phone) {
  position: absolute;
  left: 0;
}
.main__con01-img .phone {
  margin-right: 185px;
}
.main__con01-img .ad01 {
  top: 148px;
  left: -40px;
  opacity: 0;
  animation: fadeAnimation01 infinite 3s;
  animation-delay: 1.3s;
  animation-duration: 3s;
}
@keyframes fadeAnimation01 {
  50% {
    top: 118px;
    opacity: 1;
  }
}
.main__con01-img .ad02 {
  top: 315px;
  left: 120px;
  opacity: 0;
  animation: fadeAnimation02 infinite 3s;
  animation-delay: 1s;
  animation-duration: 3s;
}
@keyframes fadeAnimation02 {
  50% {
    top: 285px;
    opacity: 1;
  }
}
.main__con01-img .coin01 {
  top: 21px;
  left: 242px;
  animation: visualAnimation01 infinite 3s;
}
@keyframes visualAnimation01 {
  50% {
    top: 30px;
  }
}
.main__con01-img .coin02 {
  top: 51px;
  left: 390px;
  animation: visualAnimation02 infinite 2.5s;
}
@keyframes visualAnimation02 {
  50% {
    top: 40px;
  }
}
.main__con01-img .coin03 {
  top: 160px;
  left: 310px;
  animation: visualAnimation03 infinite 4s;
}
@keyframes visualAnimation03 {
  50% {
    top: 170px;
  }
}
.main__con01 p {
  text-align: left;
  margin: 50px 0;
}
.main__con01 .logo {
  text-align: left;
  font-size: 50px;
}
.main__con02 h3 {
  margin: 40px 0;
}
.main__con02 h3::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 0 auto 20px;
  background-color: #333;
}
.main__con02 p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.8;
}
.main__con03 {
  background-color: #888;
}
.main__con03 h3,
.main__con03 * {
  color: #fff;
}
.main__con03 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 70px;
}
.main__con03 strong {
  color: #fbd66e;
}
.main__con03 span::before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  background-color: #fff;
  border-radius: 50%;
}
.main__con03 li:nth-child(3) span::before {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/assets/img/main/main03-img03.png);
}
.main__con03 li:nth-child(2) span::before {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/assets/img/main/main03-img02.png);
}
.main__con03 li:nth-child(1) span::before {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/assets/img/main/main03-img01.png);
}
.main__con04 * {
  text-align: center;
}
.main__con04 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 70px;
}
.main__con04 span::before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  background-color: #fbd66e;
  border-radius: 50%;
}
.main__con04 li:nth-child(3) span::before {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/assets/img/main/main04-img03.png);
}
.main__con04 li:nth-child(2) span::before {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/assets/img/main/main04-img02.png);
}
.main__con04 li:nth-child(1) span::before {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/assets/img/main/main04-img01.png);
}
.main__con05 {
  background-color: #e7e7e7;
}
.main__con05 .main__wrap > p {
  width: 100%;
  margin: 25px 0 60px;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 500;
}
.main__con05-slide {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.main__con05 img {
  display: block;
  margin: 0 auto 16px;
}
.main__con06 p {
  width: 100%;
  margin: 30px 0 50px;
  font-size: 32px;
  text-align: center;
  font-weight: 500;
}

@media only screen and (max-width: 1440px) {
  .main h3 {
    font-size: 35px;
  }
  .main span {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .main p {
    font-size: 15px;
  }
  .main__wrap {
    width: 90%;
    margin: 0 auto;
  }
  .main__wrap:not(.main__con01 .main__wrap) {
    padding: 60px 0;
  }
  .main__con01 {
    padding: 85px 0;
    background-image: url(/assets/img/main/main01-bg.png);
  }
  .main__con01-txt {
    font-size: 25px;
  }
  .main__con01 p {
    margin: 20px 0 50px;
  }
  .main__con01 .logo {
    font-size: 50px;
  }
  .main__con02 h3 {
    margin: 30px 0;
  }
  .main__con02 h3::before {
    width: 44px;
    height: 3px;
    margin: 0 auto 20px;
  }
  .main__con02 p {
    font-size: 18px;
  }
  .main__con03 ul {
    max-width: 1100px;
    margin-top: 70px;
  }
  .main__con03 span::before {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
  }
  .main__con03 li:nth-child(3) span::before {
    background-image: url(/assets/img/main/main03-img03.png);
  }
  .main__con03 li:nth-child(2) span::before {
    background-image: url(/assets/img/main/main03-img02.png);
  }
  .main__con03 li:nth-child(1) span::before {
    background-image: url(/assets/img/main/main03-img01.png);
  }
  .main__con04 ul {
    max-width: 1100px;
    margin-top: 70px;
  }
  .main__con04 span::before {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
  }
  .main__con04 li:nth-child(3) span::before {
    background-image: url(/assets/img/main/main04-img03.png);
  }
  .main__con04 li:nth-child(2) span::before {
    background-image: url(/assets/img/main/main04-img02.png);
  }
  .main__con04 li:nth-child(1) span::before {
    background-image: url(/assets/img/main/main04-img01.png);
  }
  .main__con05 .main__wrap > p {
    margin: 25px 0 60px;
    font-size: 18px;
  }
  .main__con05 img {
    width: 60%;
    margin: 0 auto 16px;
  }
  .main__con06 p {
    margin: 30px 0 50px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 1080px) {
  br.m {
    display: block;
  }
  br.p {
    display: none;
  }
  .main h3 {
    font-size: 6vw;
    line-height: 1.5;
  }
  .main span {
    margin-bottom: 3vw;
    font-size: 5.5vw;
  }
  .main p {
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .main__wrap {
    width: 90%;
    margin: 0 auto;
  }
  .main__wrap:not(.main__con01 .main__wrap) {
    padding: 15vw 0 20vw;
  }
  .main__con01 {
    position: relative;
    min-height: 160vw;
    padding: 5vw 0;
    background-size: 100%;
    background-image: url(/assets/img/main/main01-bgM.png);
  }
  .main__con01 .main__wrap {
    display: block;
    flex-wrap: wrap;
  }
  .main__con01 .btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10vw;
  }
  .main__con01-txt {
    font-size: 3vw;
  }
  .main__con01-img {
    margin-top: 7vw;
  }
  .main__con01-img .phone {
    width: 55%;
    margin-right: 0;
    margin-left: -15vw;
  }
  .main__con01-img .ad01 {
    width: 70%;
    top: 21vw;
    left: 5vw;
  }
  @keyframes fadeAnimation01 {
    50% {
      top: 18vw;
      opacity: 1;
    }
  }
  .main__con01-img .ad02 {
    width: 55%;
    top: 45vw;
    left: 32vw;
  }
  @keyframes fadeAnimation02 {
    50% {
      top: 43vw;
      opacity: 0.7;
    }
  }
  .main__con01-img .coin01 {
    width: 16vw;
    top: 2vw;
    left: 52vw;
    animation: visualAnimation01 infinite 3s;
  }
  @keyframes visualAnimation01 {
    50% {
      top: 4vw;
    }
  }
  .main__con01-img .coin02 {
    width: 10vw;
    top: 3vw;
    left: 72vw;
    animation: visualAnimation02 infinite 2.5s;
  }
  @keyframes visualAnimation02 {
    50% {
      top: 5vw;
    }
  }
  .main__con01-img .coin03 {
    width: 13vw;
    top: 22vw;
    left: 58vw;
    animation: visualAnimation03 infinite 4s;
  }
  @keyframes visualAnimation03 {
    50% {
      top: 25vw;
    }
  }
  .main__con01 p {
    margin: 2vw 0;
  }
  .main__con01 .logo {
    font-size: 8vw;
  }
  .main__con02 h3 {
    margin: 2vw 0 10vw;
  }
  .main__con02 h3::before {
    width: 13vw;
    height: 1vw;
    margin: 0 auto 8vw;
  }
  .main__con02 p {
    font-weight: 400;
    font-size: 3.5vw;
  }
  .main__con03 ul {
    margin-top: 6vw;
    flex-wrap: wrap;
  }
  .main__con03 ul li {
    width: 100%;
    margin-bottom: 15vw;
  }
  .main__con03 ul li:last-child {
    margin-bottom: 0;
  }
  .main__con03 span::before {
    width: 40vw;
    height: 40vw;
    margin: 0 auto 5vw;
    background-size: 60%;
  }
  .main__con03 li:nth-child(3) span::before {
    background-size: 40%;
  }
  .main__con04 ul {
    margin-top: 6vw;
    flex-wrap: wrap;
  }
  .main__con04 ul li {
    width: 100%;
    margin-bottom: 15vw;
  }
  .main__con04 ul li:last-child {
    margin-bottom: 0;
  }
  .main__con04 span::before {
    width: 40vw;
    height: 40vw;
    margin: 0 auto 5vw;
    background-size: 45%;
  }
  .main__con04 li:nth-child(1) span::before {
    background-size: 60%;
  }
  .main__con05 .main__wrap {
    padding-bottom: 12vw !important;
  }
  .main__con05 .main__wrap > p {
    margin: 3vw 0 5vw;
    font-size: 3.5vw;
  }
  .main__con05-slide {
    width: 60%;
  }
  .main__con05 img {
    width: 100%;
    margin: 0 auto 2vw;
  }
  .main__con05 span {
    margin-top: 5vw;
    font-size: 6vw;
  }
  .main__con05 p {
    font-weight: 400;
    font-size: 4vw;
  }
  .main__con05 .slick-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 3vw;
    height: 8vw;
    padding: 0;
    text-indent: 101%;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    background: url(/assets/img/main/arrow.png) no-repeat center/100%;
  }
  .main__con05 .slick-prev {
    left: -12vw;
  }
  .main__con05 .slick-next {
    top: 37%;
    right: -12vw;
    transform: rotate(-180deg);
  }
  .main__con06 p {
    margin: 5vw 0;
    line-height: 1.8;
    font-size: 3.5vw;
  }
}
/*-------------------------------------------------------------------

   contact us 페이지

-------------------------------------------------------------------*/
.contact {
  padding: 60px 0;
  background-color: #e7e7e7;
}
.contact * {
  color: #333;
  font-family: "Spoqa Han Sans Neo", "sans-serif";
}
.contact h3 {
  margin-bottom: 18px;
  font-size: 25px;
  font-weight: 700;
  text-align: left;
}
.contact .btn {
  margin-top: 80px;
}
.contact__form {
  width: 700px;
  margin: 0 auto;
}
.contact__form > form {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.contact__form h2 {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.contact__form > p {
  padding: 25px 0;
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}
.contact__form label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}
.contact__form label span {
  color: #db5858;
}
.contact__form input,
.contact__form textarea {
  width: calc(100% - 36px);
  padding: 18px;
  border: 1px solid #c5c5c5;
  border-radius: 10px;
  font-size: 14px;
}
.contact__form input::-moz-placeholder, .contact__form textarea::-moz-placeholder {
  color: #999999;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: #999999;
}
.contact__form textarea {
  width: calc(100% - 36px);
  height: 200px;
  outline: none;
  resize: none;
}
.contact__form ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact__form ul li {
  width: 48%;
}
.contact__form li:nth-child(1),
.contact__form li:nth-child(2) {
  margin-bottom: 35px;
}
.contact__section {
  padding: 25px;
  margin: 0 auto 15px;
  background-color: #fff;
  border-radius: 20px;
  text-align: left;
}
.contact__section p {
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 500;
}
.contact__location {
  width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}
.contact__location #map iframe {
  width: 100%;
  height: 450px;
}
.contact__location ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}
.contact__location li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 80px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.contact__location li::before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #333;
  background-repeat: no-repeat;
  background-position: center;
}
.contact__location li:nth-child(2)::before {
  background-image: url(/assets/img/sub/sub-ico02.png);
}
.contact__location li:nth-child(1)::before {
  background-image: url(/assets/img/sub/sub-ico01.png);
}

@media only screen and (max-width: 1080px) {
  .contact {
    padding: 10vw 0;
  }
  .contact h3 {
    margin-bottom: 5vw;
    font-size: 5vw;
  }
  .contact .btn {
    margin-top: 5vw;
  }
  .contact__form {
    width: 100%;
    margin: 0 auto;
  }
  .contact__form form {
    width: 90%;
    margin: 0 auto;
  }
  .contact__form h2 {
    font-size: 10vw;
  }
  .contact__form > p {
    padding: 2vw 0 10vw;
    font-size: 3.5vw;
  }
  .contact__form label {
    font-size: 3.5vw;
    margin-bottom: 2vw;
  }
  .contact__form input,
  .contact__form textarea {
    width: calc(100% - 6vw);
    padding: 3vw;
    border-radius: 2vw;
    font-size: 3vw;
  }
  .contact__form textarea {
    height: 50vw;
  }
  .contact__form ul li {
    width: 100%;
  }
  .contact__form li:not(:last-child) {
    margin-bottom: 5vw;
  }
  .contact__section {
    padding: 6vw 5% 7vw;
    margin: 0 auto 15px;
    border-radius: 3vw;
  }
  .contact__section p {
    margin-bottom: 5vw;
    font-size: 3vw;
  }
  .contact__location {
    width: 100%;
    margin: 0 auto;
    margin-top: 8vw;
  }
  .contact__location #map iframe {
    height: 85vw;
  }
  .contact__location ul {
    flex-wrap: wrap;
    width: 90%;
    margin: 3vw auto;
  }
  .contact__location li {
    margin-right: 3vw;
    margin-bottom: 2vw;
    font-size: 4vw;
  }
  .contact__location li::before {
    width: 8vw;
    height: 8vw;
    margin-right: 2vw;
    background-size: 40%;
  }
  .contact__location li:nth-child(1)::before {
    background-size: 50%;
  }
}