@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: #efece4;
  /* 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: 100rem;
  padding: 0 2.4rem;
  margin: 0 auto;
  letter-spacing: 0.1rem;
  text-align: left;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
}
.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: #d65138;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  padding: 1rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: auto auto;
  max-width: 100rem;
  align-items: center;
}
.hero-title-img {
  width: 50rem;
}
.hero-pic-img {
  width: 58rem;
}

/*****************************/
/* SECTION CONTENTS */
/*****************************/
.section-contents {
  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: 5.6rem 0 9rem 0;
}
.content-list-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #c73232;
  padding-bottom: 1rem;
  /* border-bottom: solid 1px #777; */
}
.ordered-list {
  margin-left: 2.4rem;
  margin-bottom: 6.4rem;
}
.unordered-list {
  margin-left: 2.4rem;
  list-style: disc;
}
.content-list-content {
  margin-bottom: 1rem;
}
.calendar-img {
  width: 100%;
  margin-bottom: 9rem;
}
.content-end {
  text-align: center;
  color: #c73232;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
}

/*****************************/
/* TOP */
/*****************************/
.top {
  position: fixed;
  bottom: 0;
  right: 10px;
  cursor: pointer;
}
