@charset "UTF-8";
/* CSS Document */
/* ---reset.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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  background: url("../images/bg.jpg") top center repeat;
}

/* PC */
.WRAPPER {
  position: relative;
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .WRAPPER {
    min-width: 100%;
  }
}
.container {
  overflow: hidden;
}

.kv_m {
  display: none;
}

.for_pc {
  display: block;
}

.for_m {
  display: none;
}

/* m */
@media screen and (max-width: 991px) {
  .kv_m {
    display: block;
    width: 100%;
  }
  .kv_pc {
    display: none;
  }
  .for_pc {
    display: none;
  }
  .for_m {
    display: block;
  }
}
/*--  錨點微調--*/
.target-fix {
  position: relative;
  top: 0px;
  display: block;
  height: 0;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .target-fix {
    top: -30px;
  }
}
/*--goto top--*/
#gotop {
  display: inline-block;
  background-color: #000;
  opacity: 0.3;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 100%;
  position: fixed;
  bottom: 0px;
  right: 0px;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  margin: 30px;
}

#gotop::after {
  font-family: FontAwesome;
  content: "　";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
  opacity: 0.5;
  background: url(../images/top.png) center no-repeat;
  background-size: 50%;
  background-position: 50% 20%;
}

#gotop:hover {
  cursor: pointer;
  background-color: #666;
}

#gotop:active {
  background-color: #ccc;
}

#gotop.show {
  opacity: 0.4;
  visibility: visible;
}

@media screen and (max-width: 991px) {
  #gotop {
    bottom: 70px;
    right: 0;
    margin: 2vw;
  }
}
/* share url */
#share {
  display: inline-block;
  background-color: #000;
  opacity: 0.4;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 100%;
  position: fixed;
  bottom: 50px;
  right: 0px;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  z-index: 1000;
  margin: 30px;
}

#share::after {
  font-family: FontAwesome;
  content: "　";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
  opacity: 0.5;
  background: url(../images/share.png) center no-repeat;
  background-size: 20px;
  background-position: 50% 30%;
}

#share:hover {
  cursor: pointer;
  background-color: #666;
}

#share:active {
  background-color: #666;
}

@media screen and (max-width: 991px) {
  #share {
    bottom: 115px;
    right: 0;
    margin: 2vw;
  }
}
@media screen and (max-width: 991px) {
  html {
    padding-bottom: 80px;
  }
}
.btn-outlink, .btn-download, .picBox {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.btn-outlink:hover, .btn-download:hover, .picBox:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/**--  修正  --**/
#gotop::after {
  position: absolute;
  display: block;
  background-size: 50%;
  background-position: 85% 35%;
}

#share::after {
  position: absolute;
  display: block;
  background-size: 50%;
  background-position: 80% 35%;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
header img {
  display: inline;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  body,
  header {
    min-width: 1200px;
  }
}
/**--  animation  --**/
@-webkit-keyframes floatAni {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
@keyframes floatAni {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
/**--  kv  --**/
.kv_pc {
  position: relative;
  width: 100%;
}

.kv_pc img {
  width: 100%;
}

.topbox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.kv_item {
  position: absolute;
}

.kv_item-title {
  width: 25%;
  top: 8%;
  left: 23%;
}

.kv_m img {
  width: 100%;
}

.side-menu2,
#TopMenu2,
#MainEventMenu-pc,
#closebtn,
#share,
#gotop,
header,
footer,
.edmNoShow {
  /*display: none !important;*/
}

.showByDate {
  /*display: block !important;*/
}

/**--  共用  --**/
@font-face {
  font-family: ChenYuluoyan;
  src: url("../fonts/ChenYuluoyan-2.0-Thin.ttf");
}
html,
body {
  background-image: url(../images/bg.jpg);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
}

.container {
  background-image: url(../images/kv_foot.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  overflow: unset;
  max-width: unset;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .container {
    padding: 3vw;
    background-image: url(../images/kv_m_foot.png);
  }
}

p {
  font-family: "Noto Serif TC", serif;
  font-weight: 600;
  font-size: 18px;
  text-align: justify;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  p {
    font-size: 16px;
  }
}

.btt {
  font-family: "Noto Serif TC", serif;
  font-size: 38px;
  background-color: #f9f9f9;
  border: 1px solid #000;
  padding: 0.2em 0.5em;
}
@media screen and (max-width: 450px) {
  .btt {
    font-size: 30px;
  }
}

.blk_bas {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (max-width: 450px) {
  .blk_bas {
    margin-top: 10px;
  }
}

.blk_head {
  font-size: 38px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto -1em;
  padding: 4px;
  background-color: #f9f9f9;
  border: 1px solid #000;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .blk_head {
    font-size: 30px;
  }
}

.blk_body {
  padding: 20px 6%;
  background-color: #f9f9f9;
  border: 1px solid #000;
}
.blk_body:nth-of-type(1) {
  margin-top: 0;
}

.notice {
  font-size: 11px;
  line-height: 1.2;
  color: #555;
}
@media screen and (max-width: 991px) {
  .notice {
    font-size: 12px;
  }
}
.notice br {
  display: none;
}
@media screen and (max-width: 450px) {
  .notice br {
    display: block;
  }
}

.picBox {
  display: block;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #000;
}

.btn-download {
  display: block;
  font-family: "Noto Serif TC", serif;
  font-size: 33px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #ee734a;
  padding: 0.5em 0.5em;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .btn-download {
    margin-top: 1em;
    font-size: 28px;
  }
}
@media screen and (max-width: 450px) {
  .btn-download {
    font-size: 24px;
    border-radius: 10px;
  }
}
.btn-download:after {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_download.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.5em;
  -webkit-animation: floatAni 0.7s -1s ease-in-out infinite alternate;
          animation: floatAni 0.7s -1s ease-in-out infinite alternate;
}
.btn-download:hover {
  color: #fff;
  background-color: rgb(233.6212121212, 78.9393939394, 27.3787878788);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-outlink {
  display: block;
  background-color: #95b569;
  border-radius: 999em;
  border: 2px solid #f9f9f9;
  color: #fff;
  font-family: "Noto Serif TC", serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 0.5em 0.5em;
  margin: 1em 0;
}
@media screen and (max-width: 450px) {
  .btn-outlink {
    font-size: 24px;
  }
}
.btn-outlink:hover {
  color: #fff;
  background-color: rgb(123.7946428571, 157.3660714286, 77.6339285714);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/**--  本月桌布療癒上架  --**/
.block_1 .blk_body {
  padding-right: 5%;
  padding-top: 50px;
}
.block_1 .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block_1 .wallpaper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 991px) {
  .block_1 .wallpaper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.block_1 .wallpaper .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
}
.block_1 .wallpaper .wallpaperBox {
  background-image: url(../images/phone.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  padding: 10%;
  position: relative;
}
.block_1 .wallpaper .wallpaperBox:after {
  content: "";
  display: block;
  background-image: url(../images/phoneTime.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  position: absolute;
  top: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 35%;
  padding-bottom: 50%;
  z-index: 10;
}
.block_1 .wallpaper .wallpaperBox img {
  border-radius: 15px;
}
@media screen and (max-width: 991px) {
  .block_1 .wallpaper .wallpaperBox img {
    border-radius: 2.5vw;
  }
}
.block_1 .info p {
  margin: 1.5em 0;
}
.block_1 .info .name {
  color: #ee734a;
  font-size: 18px;
  font-weight: 700;
}
.block_1 .info .name small {
  font-size: 0.7em;
}

/**--  每月書摘  --**/
.block_2 {
  position: relative;
  margin-top: 10px;
}
.block_2 .highlight {
  display: inline-block;
  background-color: #ffe45d;
  font-family: ChenYuluoyan;
  font-size: 28px;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .block_2 .highlight {
    font-size: 24px;
  }
}
.block_2 .txt {
  font-size: 20px;
  margin: 1.5em 0;
}
@media screen and (max-width: 991px) {
  .block_2 .txt {
    font-size: 16px;
  }
}
.block_2 .bookName {
  text-align: right;
}
@media screen and (max-width: 991px) {
  .block_2 .bookName {
    font-size: 12px;
  }
}
.block_2:before, .block_2:after {
  content: "";
  display: block;
  background-image: url(../images/line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  width: 10px;
  height: 40px;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-65%);
          transform: translateY(-65%);
}
.block_2:before {
  left: 60px;
}
.block_2:after {
  right: 60px;
}

/**--  Link & AD  --**/
.block_3 {
  margin-bottom: 30px;
}
.block_3 .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}