* {
  position: relative;
}
body {
  margin: 0px;
  padding: 0px;
  color: #000;
  font-weight: 400;
  font-family: 'Custom', 'Noto Sans TC', 'Nobel Book';
  text-align: left;
  letter-spacing: 1px;
  font-size: 18px;
}
@font-face {
  font-family: 'Custom';
  font-style: normal;
  font-weight: 100;
  unicode-range: U+00-024F;
  unicode-range: U+4E00-9FFF;
  src: url(../library/fonts/NotoSansTC-Regular.woff2) format('woff2'), url(../library/fonts/NotoSansTC-Regular.woff) format('woff'), url(../library/fonts/NotoSansTC-Regular.otf) format('opentype');
}
@font-face {
  font-family: 'Custom';
  font-style: normal;
  font-weight: 700;
  unicode-range: U+00-024F;
  unicode-range: U+4E00-9FFF;
  src: url(../library/fonts/NotoSansTC-Bold.woff2) format('woff2'), url(../library/fonts/NotoSansTC-Bold.woff) format('woff'), url(../library/fonts/NotoSansTC-Bold.otf) format('opentype');
}
centerwrap {
  max-width: 1240px;
  position: relative;
  margin: auto;
  text-align: center;
  height: 100%;
  display: block;
}
centerwraps {
  max-width: 960px;
  position: relative;
  margin: auto;
  text-align: center;
  height: 100%;
  display: block;
}
li {
  list-style: none;
}
a {
  display: contents;
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-start: 0;
  margin-block-end: 0;
  font-weight: normal;
}
/* placeholder */
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 300;
  color: #999;
}
::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 300;
  color: #999;
}
:-ms-input-placeholder {
  /* IE 10+ */
  font-weight: 300;
  color: #999;
}
:-moz-placeholder {
  /* Firefox 18- */
  font-weight: 300;
  color: #999;
}
/* 開發測試 */
.dev,
dev {
  display: none;
}
input,
textarea,
select {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -moz-outline: none !important;
  -webkit-outline: none !important;
  outline: none !important;
}
.formeach {
  display: block;
  text-align: left;
  margin-bottom: 15px;
}
.formeach label {
  color: #555;
  display: block;
  margin-bottom: 5px;
}
.formeach label[required="true"]:after,
.formeach label[required="required"]:after {
  content: '*';
  position: absolute;
  left: -15px;
  color: #bf2828;
  top: 2px;
}
.formeach select {
  background-color: #f5f5f5;
  border: none;
  display: block;
  font-size: 16px;
  padding: 10px;
  width: calc(100% - 0px);
  border: 2px solid #f5f5f5;
  border-right: 15px solid #f5f5f5;
}
.formeach input {
  background-color: #f5f5f5;
  border: none;
  display: block;
  font-size: 16px;
  padding: 10px;
  width: calc(100% - 24px);
  border: 2px solid #f5f5f5;
}
.formeach input[disabled] {
  background-color: transparent;
}
.formeach label.radio {
  display: inline-block;
  margin: 0px;
  padding: 10px;
  padding-left: 0px;
}
.formeach label.radio input {
  display: inline-block;
  width: auto;
}
.formeach textarea {
  background-color: #f5f5f5;
  border: none;
  display: block;
  font-size: 16px;
  padding: 10px;
  width: calc(100% - 24px);
  border: 2px solid #f5f5f5;
  min-height: 180px;
}
.sliderArea {
  /* 改變所有 bullet 的大小與顏色 */
  /* 被選中的 bullet（當前頁）樣式 */
}
.sliderArea .swiper-slide .photo {
  width: 100%;
  padding-bottom: 66%;
  background-size: cover;
  background-position: center;
}
.sliderArea .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  /* 預設顏色 */
  opacity: 1;
  /* 預設會淡出，這裡設為全不透明 */
}
.sliderArea .swiper-pagination-bullet-active {
  background-color: #FFF;
  /* 藍色表示 active */
  transform: scale(1.3);
  /* 可放大一點點當強調 */
}
.animateScroll[aniName="totop"] {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.animateScroll[aniName="totop"].active {
  animation: UpfadeIn 0.5s;
  -webkit-animation: UpfadeIn 0.5s;
  opacity: 1;
}
@keyframes UpfadeIn {
  0% {
    opacity: 0;
    transform: translate(0px, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.animateScroll[aniName="toleft"] {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.animateScroll[aniName="toleft"].active {
  animation: LeftfadeIn 0.5s;
  -webkit-animation: LeftfadeIn 0.5s;
  opacity: 1;
}
@keyframes LeftfadeIn {
  0% {
    opacity: 0;
    transform: translate(50px, 0px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.animateScroll[aniName="toright"] {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.animateScroll[aniName="toright"].active {
  animation: RightfadeIn 0.5s;
  -webkit-animation: RightfadeIn 0.5s;
  opacity: 1;
}
@keyframes RightfadeIn {
  0% {
    opacity: 0;
    transform: translate(-50px, 0px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
.videoView {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
}
.videoView .wrap {
  background-color: #000;
  width: 960px;
  padding-bottom: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -480px;
  margin-top: -300px;
  max-height: 100vh;
}
.videoView .wrap iframe {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100%;
}
.videoView .cancel {
  background-color: #000;
  opacity: 0.8;
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.videoView .cancelbtn {
  position: fixed;
  z-index: 100;
  right: 0px;
  top: 0px;
  background-color: #FFF;
  font-size: 30px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
}
/*  rwd  */
@media screen and (max-width: 960px) {
  .videoView .wrap {
    width: 100vw;
    height: 100vh;
    padding-bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-left: 0;
    margin-top: 0;
  }
}
select {
  height: 40px;
  border-radius: 5px;
  border: 2px solid #d1cccc;
  width: 220px;
  font-size: 16px;
  text-align-last: center;
}
.pc {
  display: block;
}
.m {
  display: none;
}
pc {
  display: block;
}
m {
  display: none;
}
#fb-root {
  display: none;
  opacity: 0;
}
.dotcover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0,0,0,0.1); */
  z-index: 2;
  background: url(/images/screentone.png) repeat 0 0;
  opacity: 0.8;
}
horizon {
  display: block;
  margin-bottom: 30px;
  margin-top: 30px;
  border-top: 1px dashed #e9e9e9;
}
body {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}
section .text {
  text-align: left;
  padding: 30px;
  line-height: 1.8;
  font-size: 16px;
}
.valuenone[value=""] {
  display: none;
}
footer {
  background-color: #0e0e0e;
  min-height: 300px;
}
footer .contactWrap {
  color: #9F9F9F;
  text-align: center;
  width: 400px;
  padding-top: 70px;
  padding-bottom: 70px;
  font-size: 14px;
  line-height: 1.6;
  border-right: 1px solid #515151;
}
footer .contactWrap .email {
  margin-bottom: 20px;
}
footer .contactWrap .logo {
  width: 150px;
}
footer .contactWrap .socials {
  text-align: center;
  padding-top: 20px;
}
footer .contactWrap .socials img {
  width: 30px;
  opacity: 0.9;
  padding-left: 6px;
  padding-right: 6px;
}
footer .contactWrap .socials img:hover {
  opacity: 1;
}
footer .contactWrap .platform {
  text-align: center;
  padding-top: 0px;
}
footer .contactWrap .platform img {
  width: 80px;
  opacity: 0.9;
  padding-left: 5px;
  padding-right: 5px;
}
footer .contactWrap .platform img:hover {
  opacity: 1;
}
footer .contactWrap .tsa {
  background-color: #393939;
  display: inline-block;
  padding: 3px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 50px;
  margin-top: 11px;
  font-size: 13px;
}
footer .contactWrap .tsa:hover {
  color: #FFF;
}
footer .copyright {
  color: #FFF;
  padding: 50px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 13px;
  text-align: center;
  background-color: #1c1c1c;
}
footer .copyright a {
  color: #939393;
  margin-left: 10px;
  display: inline;
}
footer .sitemap {
  position: absolute;
  left: 500px;
  top: 0;
  color: #FFF;
  font-size: 14px;
  width: calc(100% - 500px);
  padding-top: 75px;
}
footer .sitemap .each {
  width: 24%;
  display: inline-block;
  vertical-align: top;
}
footer .sitemap .each li {
  line-height: 1.6;
  color: #9F9F9F;
  cursor: pointer;
}
footer .sitemap .each li:hover {
  color: #FFF;
}
footer .sitemap .each .subtitle {
  font-size: 22px;
  margin-bottom: 15px;
  color: #FFF;
}
section.banner {
  background-color: #F9F9F9;
  height: 40vw;
  background-size: cover;
  background-position: center;
}
section .thetitleWrap {
  border-bottom: 1px solid #e8e8e8;
  text-align: left;
  margin-left: 0;
  padding: 30px;
  padding-bottom: 15px;
  padding-top: 15px;
  margin-bottom: 20px;
}
section .thetitleWrap centerwrap {
  text-align: left;
}
section .thetitleWrap .en {
  font-family: serif;
  font-size: 40px;
  color: #555;
  display: inline-block;
  vertical-align: middle;
}
section .thetitleWrap .line {
  height: 1px;
  width: 50px;
  background-color: #a9a9a9;
  display: inline-block;
  vertical-align: middle;
}
section .thetitleWrap .tw {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  font-family: serif;
  font-size: 27px;
  letter-spacing: 9px;
}
section .subtitleWrap {
  margin-left: 0;
  padding: 30px;
  padding-bottom: 15px;
  padding-top: 15px;
  margin-bottom: 20px;
  text-align: center;
}
section .subtitleWrap .in {
  display: inline-block;
}
section .subtitleWrap .en {
  font-family: serif;
  font-size: 40px;
  color: #555;
  display: inline-block;
  vertical-align: middle;
}
section .subtitleWrap .line {
  height: 1px;
  width: 50px;
  background-color: #a9a9a9;
  display: inline-block;
  vertical-align: middle;
}
section .subtitleWrap .tw {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  font-family: serif;
  font-size: 27px;
  letter-spacing: 9px;
}
nav {
  z-index: 100;
}
nav .pc_header {
  position: fixed;
  top: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(61, 56, 56, 0);
  background: -moz-linear-gradient(top, rgba(33, 33, 33, 0.6) 37%, rgba(33, 33, 33, 0.58) 39%, rgba(33, 33, 33, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(33, 33, 33, 0.6) 37%, rgba(33, 33, 33, 0.58) 39%, rgba(33, 33, 33, 0) 100%);
  background: linear-gradient(to bottom, rgba(33, 33, 33, 0.6) 37%, rgba(33, 33, 33, 0.58) 39%, rgba(33, 33, 33, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#99212121', endColorstr='#00212121', GradientType=0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
nav .pc_header .logo {
  height: auto;
  position: absolute;
  left: calc(50% - 125px);
  top: -15px;
  width: 250px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
nav .pc_header .logo2 {
  display: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
nav .pc_header centerwrap {
  height: 90px;
}
nav .pc_header .applybtn {
  background-color: #FFF;
  width: 200px;
  height: 50px;
  font-size: 17px;
  line-height: 50px;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 27px;
  color: #a47e3a;
  border: 1px solid #c9a970;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
nav .pc_header .applybtn:hover {
  background-color: #f9f9f9;
}
nav .pc_header .applybtn:active {
  background-color: #ededed;
}
nav .pc_header .btns_wrap {
  position: absolute;
  left: 30px;
  top: 10px;
  z-index: 4;
  color: #FFF;
  webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
nav .pc_header .btns_wrap.right {
  left: auto;
  right: 245px;
}
nav .pc_header .btns_wrap .btn {
  display: inline-block;
  color: #FFF;
  font-weight: 400;
  font-size: 16px;
  padding: 14px;
  letter-spacing: 3px;
  height: 61px;
  line-height: 60px;
}
nav .pc_header .btns_wrap .btn:hover {
  color: #C9B289;
}
nav .pc_header .fb {
  width: 35px;
  right: 40px;
  position: absolute;
  top: 20px;
}
nav .pc_header .subbtns {
  position: absolute;
  display: none;
  background-color: #5b5b5b;
  width: 150px;
  margin-left: -37px;
  line-height: 50px;
  margin-top: 16px;
}
nav .pc_header .subbtns li {
  color: #FFF;
}
nav .pc_header .subbtns li:hover {
  background-color: #434343;
}
nav .m_header {
  background-color: #FFF;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
nav .m_header .logo {
  height: auto;
  top: 8px;
  left: 50%;
  width: 86px;
  margin-left: -43px;
}
nav .m_header .btns_wrap {
  background-color: #3d3838;
  width: 100%;
  height: auto;
  position: fixed;
  top: 60px;
  text-align: center;
  color: #FFF;
  padding-top: 20px;
  padding-bottom: 50px;
  transition: opacity 0.1s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
nav .m_header .btns_wrap .btn {
  height: 40px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
}
nav .m_header .btns_wrap .bookbtn {
  color: #d4be97;
  border: 1px solid #c9a970;
  margin-left: 30px;
  margin-right: 30px;
}
nav .m_header .menu-icon {
  position: fixed;
  left: 0px;
  font-size: 12px;
  top: 0px;
  cursor: pointer;
  z-index: 950;
  width: 30px;
  height: 25px;
  transition: all 0.3 ease;
  padding: 18px;
}
nav .m_header .menu-icon span {
  height: 2px;
  width: 30px;
  background-color: #999;
  display: block;
  transition: all 0.3s ease;
}
nav .m_header .menu-icon:before {
  content: '';
  height: 2px;
  width: 30px;
  background-color: #999;
  display: block;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  margin-top: 5px;
}
nav .m_header .menu-icon:after {
  content: '';
  height: 2px;
  width: 30px;
  background-color: #999;
  display: block;
  margin-top: 5px;
  transition: all 0.3s ease;
}
nav.open .m_header .btns_wrap {
  opacity: 1;
  pointer-events: auto;
}
body[scrolled="true"] nav .pc_header {
  background: 0 0;
  filter: none;
  background-color: #FFF;
  box-shadow: 0px 0px 25px #00000029;
}
body[scrolled="true"] nav .pc_header .btns_wrap {
  top: 0px;
}
body[scrolled="true"] nav .pc_header .btns_wrap .btn {
  color: #000;
}
body[scrolled="true"] nav .pc_header .btns_wrap .btn[page="orders"] {
  color: #a47e3a;
}
body[scrolled="true"] nav .pc_header .applybtn {
  top: 17px;
}
body[scrolled="true"] nav .pc_header .logo {
  display: none;
}
body[scrolled="true"] nav .pc_header .logo2 {
  height: auto;
  position: absolute;
  left: calc(50% - 65px);
  top: 10px;
  width: 130px;
  display: block;
}
body[page="note"] {
  padding-top: 100px;
}
.button {
  border: 1px solid #FFF;
  padding: 5px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
}
.subbtns_cancel {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: fixed;
  z-index: 2;
  display: none;
  opacity: 0;
}
/* noteAlert  */
/* ...............................  */
.noteAlert {
  display: none;
  background-color: #0000009c;
  width: 300px;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999;
  margin-left: -150px;
  margin-top: -50px;
  border-radius: 10px;
  text-align: center;
}
.noteAlert i {
  color: #FFF;
  font-size: 50px;
  margin-top: 17px;
}
.noteAlert .text {
  color: #FFF;
  text-align: center;
  margin: 15px;
  font-size: 18px;
  margin-top: 5px;
}
body[page="home"] .btn[page="home"] {
  color: #C9B289;
  border-bottom: 1px solid #C9B289;
}
body[page="about"][scrolled="true"] nav .pc_header .btns_wrap .btn[page="about"],
body[page="room"][scrolled="true"] nav .pc_header .btns_wrap .btn[page="room"],
body[page="tour"][scrolled="true"] nav .pc_header .btns_wrap .btn[page="tour"],
body[page="news"][scrolled="true"] nav .pc_header .btns_wrap .btn[page="news"],
body[page="orders"][scrolled="true"] nav .pc_header .btns_wrap .btn[page="orders"],
body[page="book"][scrolled="true"] nav .pc_header .btns_wrap .btn[page="book"] {
  color: #C9B289;
  border-bottom: 1px solid #C9B289;
  background-color: #f9f9f9;
}
.topBtn {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 30;
  height: 65px;
  width: 65px;
  line-height: 32px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  color: #ad8686;
  background-color: #FFF;
  font-size: 14px;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.topBtn .top {
  width: 20px;
  height: 20px;
  color: #beb3b3;
  border-left: 4px solid;
  border-top: 4px solid;
  transform: rotate(45deg);
  margin: auto;
  margin-top: 26px;
}
body[scrolled="true"] .btn[page="newprojects"] {
  background-color: #191919;
}
article {
  text-align: left;
}
article blockquote {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  padding: 2px 0;
  border-style: solid;
  border-color: #ccc;
  border-width: 0;
  border-left: 6px solid #ccc;
  padding-left: 35px;
}
article p {
  font-size: 18px;
}
section.content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  letter-spacing: 4px;
  margin-top: 5px;
}
section.content h4 {
  font-weight: 300;
  color: #af925e;
}
section.content h5 {
  margin-top: 5px;
  color: #9D9180;
  font-family: serif;
  letter-spacing: 1px;
  font-size: 21px;
}
section.content article {
  margin-top: 30px;
  margin-bottom: 100px;
  margin-left: 50px;
  margin-right: 50px;
  color: #555555;
  line-height: 2;
}
section.content article p {
  margin-block-start: 0;
  margin-block-end: 0;
}
section.content article strong {
  font-weight: 700;
}
section.content article img {
  max-width: 100%;
}
section.content article li {
  list-style: disc;
}
section.photofull {
  padding-bottom: 54%;
  background-color: #ececec;
  background-size: cover;
  background-position: center;
}
/*  rwd  */
/* -----------------------------------*/
@media screen and (max-width: 1240px) {
  section.banner {
    height: 50vw;
  }
  section .thetitleWrap .en {
    font-size: 28px;
    margin: auto;
    display: block;
    position: relative;
    text-align: center;
  }
  section .thetitleWrap .tw {
    display: block;
    font-size: 20px;
    font-size: 23px;
    text-align: center;
  }
  section .thetitleWrap .line {
    height: 23px;
    width: 1px;
    background-color: #a9a9a9;
    display: block;
    vertical-align: middle;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 5px;
  }
  section .subtitleWrap .en {
    font-size: 28px;
    margin: auto;
    display: block;
    position: relative;
    text-align: center;
  }
  section .subtitleWrap .line {
    height: 23px;
    width: 1px;
    background-color: #a9a9a9;
    display: block;
    vertical-align: middle;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 5px;
  }
  section .subtitleWrap .tw {
    display: block;
    font-size: 20px;
    font-size: 23px;
    text-align: center;
  }
  nav .pc_header .btns_wrap .btn {
    padding-left: 5px;
    padding-right: 5px;
  }
  footer .pc_wrap {
    padding: 30px;
  }
  footer .pc_wrap .in .logoWrap {
    display: block;
    text-align: center;
  }
  footer .pc_wrap .in .addressWrap {
    display: block;
    width: auto;
  }
  footer .pc_wrap .in .addressWrap .each {
    display: block;
    width: auto;
    margin: auto;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
  }
  footer .pc_wrap .in .addressWrap {
    width: auto;
    font-size: 16px;
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 0px;
    border: none;
    border-bottom: 1px solid #FFF;
    padding-bottom: 20px;
    margin-bottom: 25px;
    padding-top: 25px;
    margin: auto;
    display: block;
  }
  footer .pc_wrap .in .contactWrap {
    display: block;
  }
  footer .pc_wrap .in .addressWrap .each .address {
    font-size: 12px;
    text-align: center;
  }
  footer .pc_wrap .in .addressWrap .each .address:before {
    position: relative;
    display: inline-block;
  }
  footer .pc_wrap .in .contactWrap h4 {
    text-align: center;
  }
  footer .pc_wrap .in .contactWrap h3 {
    text-align: center;
  }
  footer .pc_wrap .in .contactWrap .socials {
    text-align: center;
  }
  footer .pc_wrap .in .logoWrap .logo {
    width: 110px;
    margin-right: 0px;
    margin-left: 0px;
  }
  footer .pc_wrap .in .addressWrap .each:nth-child(even) {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  pc {
    display: none;
  }
  m {
    display: block;
  }
  .pc {
    display: none;
  }
  .m {
    display: block;
  }
  footer .sitemap {
    position: relative;
    left: 0px;
    top: 0;
    color: #FFF;
    font-size: 14px;
    width: auto;
    padding-top: 75px;
    padding-bottom: 20px;
  }
  footer .copyright a {
    display: block;
    margin-top: 5px;
    margin-left: 0px;
  }
  footer .contactWrap {
    width: auto;
    padding-bottom: 50px;
    border: 0;
    border-bottom: 1px solid #515151;
    margin-bottom: 40px;
    padding-top: 50px;
  }
  footer .sitemap {
    left: 0px;
    top: 0;
    color: #FFF;
    font-size: 14px;
    width: auto;
    padding-top: 0px;
    text-align: center;
  }
  footer .sitemap .each {
    width: 40%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 25px;
  }
  article p {
    font-size: 16px;
  }
  section.content article li {
    font-size: 16px;
  }
  section.content article {
    margin-left: 25px;
    margin-right: 25px;
  }
  section.content article img {
    max-width: 100%;
    height: auto !important;
  }
  footer .copyright {
    padding: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 11px;
    text-align: center;
    letter-spacing: 0.5px;
  }
}
