@charset "utf-8";
/* CSS Document */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* outline: solid #f00 1px !important;
  background: #000 !important;
  color: #fff !important; */
}
html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
}
body {
  margin: 0px;
  padding: 0px;
  background-color: #fffceb;
  background: url("images/bg.jpg") top fixed;
  /* 　//設定背景圖片的呈現方式.jpg */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center top;
}
.main {
  font-family: "Noto Sans TC", sans-serif;
}
.main-container {
  max-width: 120rem;
  padding: 0 4.6rem;
  margin: 0 auto;
  letter-spacing: 0.2rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.7;
  color: #323733;
}
.span-inline-block {
  display: inline-block;
}
.nowrap {
  white-space: nowrap;
}
.scaled {
  transition: all 0.3s;
  cursor: pointer;
}
.scaled:hover,
.scaled:active {
  transform: scale(1.1);
}
.scaled2 {
  transition: all 0.3s;
  cursor: pointer;
}
.scaled2:hover,
.scaled2:active {
  transform: scale(1.05);
}

/*****************************/
/* SECTION HERO */
/*****************************/
.section-hero {
  width: 100%;
  /* background-image: url(images/bg-hero.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; */
  /* background-color: #fdf4f0; */
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: auto auto;
  margin-left: 7%;
}
.hero-pic-img {
  width: 60rem;
}
/* .hero-flex {
  display: flex;
  justify-content: end;
  margin-right: 7%;
}
.hero-flex-box {
  max-width: 77rem;
  align-items: center;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  line-height: 1.7;
} */
/* .hero-pic {
  display: none;
} */
.hero-title-box {
  margin-top: 9rem;
  max-width: 70rem;
}
.hero-title {
  margin-bottom: 3.6rem;
}
.hero-title-img {
  width: 57rem;
}
.hero-intro {
  background-color: rgba(255, 252, 235, 0.9);
  color: #333;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  line-height: 1.7;
  text-align: justify;
  padding: 4.6rem;
  margin: 0 auto;
}

/*****************************/
/* SECTION PICKS */
/*****************************/
.section-picks {
  width: 100%;
  /* background-image: url(images/bg.jpg);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; */
  background-color: rgba(255, 252, 235, 0.8);
  background-position: center top;
  background-repeat: repeat-y;
  position: relative;
  padding: 9rem 0;
}
.picks-flex {
  display: flex;
  justify-content: center;
  margin: 0 2.5rem;
}
.picks-box {
  max-width: 110rem;
  /* background-color: rgba(245, 242, 237, 0.8);
  padding: 5.4rem; */
}
.picks-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 3.6rem;
  align-items: center;
  margin-bottom: 4.5rem;
}
.book-content {
  padding: 6.3rem 0;
  border-bottom: solid 0.1rem rgba(51, 51, 51, 0.3);
}
.book-title {
  font-family: "Noto Serif TC", serif;
  font-size: 3rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 3.6rem;
  color: #628aad;
  transition: all 0.3s;
}
.book-title:hover,
.book-title:active {
  color: #d06970;
}
.book-intro {
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0.2rem;
  line-height: 1.7;
  padding-left: 2rem;
}
.book-img {
  height: 30rem;
}

/*****************************/
/* PICKS MONTHS */
/*****************************/
.picks-months-title {
  font-family: "Noto Serif TC", serif;
  font-size: 2rem;
  font-weight: bold;
  color: #777;
  /* text-transform: uppercase; */
  margin-top: 5.4rem;
  margin-bottom: 2.7rem;
}
.picks-months {
  display: flex;
  flex-wrap: wrap;
  gap: 3.6rem;
  justify-content: center;
}
.month-link {
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem;
  /* border: solid 0.1rem #333; */
}
.month-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #777;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateX(270deg);
  transform-origin: top;
  transition: all 0.5s;
}
.month-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d06970;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateX(270deg);
  transform-origin: top;
  transition: all 0.5s;
  transition-delay: 0.25s;
}
.month-link:hover::before,
.month-link:hover::after {
  transform: rotateX(0deg);
}
.month-link-01::before,
.month-link-01::after {
  content: "1月";
}
.month-link-02::before,
.month-link-02::after {
  content: "2月";
}
.month-link-03::before,
.month-link-03::after {
  content: "3月";
}
.month-link-04::before,
.month-link-04::after {
  content: "4月";
}
.month-link-05::before,
.month-link-05::after {
  content: "5月";
}
.month-link-06::before,
.month-link-06::after {
  content: "6月";
}
.month-link-07::before,
.month-link-07::after {
  content: "7月";
}
.month-link-08::before,
.month-link-08::after {
  content: "8月";
}
.month-link-09::before,
.month-link-09::after {
  content: "9月";
}
.month-link-10::before,
.month-link-10::after {
  content: "10月";
}
.month-link-11::before,
.month-link-11::after {
  content: "11月";
}
.month-link-12::before,
.month-link-12::after {
  content: "12月";
}

.month {
  font-family: "Noto Serif TC", serif;
}
.month-en {
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.month-num {
  font-size: 2.5rem;
}

/*****************************/
/* TOP */
/*****************************/
.top {
  position: fixed;
  bottom: 0;
  right: 10px;
  cursor: pointer;
}
