@charset "utf-8";

/*數字用*/
@import url("https://fonts.googleapis.com/css?family=Lato:400,700");

:root {
  --HY_C1: #d77b7b;
  --HY_C2: #eb9b92;
  --HY_C3: #fdf3f1;
  --HY_C4: #e69999;
  --HY_C5: #b13a3a;
  --HY_C6: #f4d8d2;
  --HY_gray: #4a4a4a;
}

.HY_C1 {
  color: var(--HY_C1);
}
.HY_C2 {
  color: var(--HY_C2);
}
.HY_C3 {
  color: var(--HY_C3);
}
.HY_C4 {
  color: var(--HY_C4);
}
.HY_C5 {
  color: var(--HY_C5);
}
.HY_gray {
  color: var(--HY_gray);
}

.bg-HY_a {
  background: var(--HY_C1);
}
.bg-HY_C1 {
  background: var(--HY_C1);
}
.bg-HY_C2 {
  background: var(--HY_C2);
}
.bg-HY_C3 {
  background: var(--HY_C3);
}
.bg-HY_C4 {
  background: var(--HY_C4);
}
.bg-HY_C5 {
  background: var(--HY_C5);
}
.bg-HY_C6 {
  background: var(--HY_C6);
}
.bg-HY_C {
  background: var(--HY_C);
}
.btn-dpink {
  background: var(--a);
}
.bor-dpink {
  border: 1px solid var(--HY_C1);
}
.bor-c6 {
  border-color: var(--HY_C6);
}

body {
  font-family: Lato, Arial, Helvetica, "微軟正黑體", "新細明體", sans-serif;
  font-size: 14px;
  color: var(--HY_gray);
  /*background: #ececec;*/
}
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,
font,
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;
  background: transparent;
}
/* HTML5 display-role reset for older browsers */
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;
}
a {
  text-decoration: none;
  color: #3c3c3c;
  transition: 300ms;
}

a:hover {
  text-decoration: none;
  color: #808080;
}

a:active,
a:focus {
  text-decoration: none;
}

.a-animate {
  transition: 350ms;
}

@media (max-width: 414px) {
  body {
    font-size: 12px;
  }
}

/*修正BS max-width:100%問題*/
.img-responsive {
  width: 100%;
  height: auto;
}

.container-xl {
  max-width: 1320px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (max-width: 1024px) {
  .container-xl {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  .container-xl {
    max-width: 100%;
  }
}
