@charset "utf-8";
/* CSS Document */

/*--------reset----------*/
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-family: "微軟正黑體", "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

body{
	background-attachment: fixed;
	background-size:cover;
}
.container{
  width: 840px;
  margin: 0 auto;
}
.event {
  display: flex;
  flex-wrap: wrap;
}
.event img {
   display: block;
   max-width: 100%; 
   height: auto;
}
.note{
  width: 840px;
  background-color: #d77074;
  padding: 15px 0;
}
.note p{
   width: 780px;
   margin: 0 auto;
   color: #fff;
   font-size: 24px;
   font-weight: 600;
   line-height: 1.5;
   letter-spacing: 1px;
}
.content-bg{
    width:840px;
    min-height:560px;
    background:url("../images/bg.jpg") no-repeat center top;
    background-size:cover;
    position:relative;
}

.content{
    width:760px;
    margin:0 auto;
    padding:28px 0 35px;
    color:#9a2a41;
    font-size:22px;
    font-weight:600;
    line-height:1.8;
}
.content p{
    text-align:justify;
    padding-left:2em;
    text-indent:-2em;
    padding-bottom: 16px;
}
.contact,
.download-list{
    list-style:none;
    margin:0;
    padding:0 0 0 42px;
}
.content p.no-padding{
  padding-bottom: 0;
}
.contact{
  padding-bottom: 16px;
}

.contact li{
    color: #3d3d3d;
    display:flex;
    align-items:flex-start;
}

.contact .label{
    width:120px;
    flex-shrink:0;
}
.contact .value{
    flex:1;
    padding-top: 4px;
    font-size:20px;
    line-height:1.6;
}
.phone {
  color: inherit;
  text-decoration: none;
}
.phone:hover {
  text-decoration: underline;
}
.download-list li{
    margin-bottom:8px;
}

.download-list a{
    color:#3d3d3d;
    font-weight:700;
    text-decoration:underline;
}

.download-list a:hover{
    color:#d43657;
}

.download-list img{
    width:30px;
    height:30px;
    margin-left:4px;
    vertical-align:text-bottom;  
}

img {
  vertical-align :bottom;
  border: 0;
}
.footer{
	clear: both;
	padding: 16px 0;
	text-align: center;
	line-height: 1.6;
	font-size: 14px;
	color: #333333;
	font-weight:600;
}
.footer a {
	color: #333333;
	text-decoration:none;
	font-weight:600;
	position: relative;
	margin: 0 4px;
}
.footer a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 50%;
  background-color: #2b2b2b;
  transition: all 0.3s ease;
}
.footer a:hover{
color: #505050;
}
.footer a:hover::after {
  width: 100%;
  left: 0;
  background-color: #505050;
}
.gotop {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background-image: linear-gradient(#eaa79e, #e2787c);
  cursor: pointer;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.gotop.show {
  opacity: 0.85;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.gotop:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.gotop::before,
.gotop::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 6px;
  background: #fff;
  border-radius: 6px;
  top: 50%;
  left: 50%;
}
.gotop::before {
  transform: translate(-75%, -80%) rotate(-50deg);
}
.gotop::after {
  transform: translate(-20%, -80%) rotate(50deg);
}
.gotop:active {
  transform: scale(0.95);
  box-shadow: 0 0 0 4px rgba(238, 144, 53, 0.4);
}
.gotop:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}