@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap');

@font-face {
  font-family: 'GenSenRounded2TW-H';
  src: url('fonts/GenSenRounded2TW-H.otf') format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'GenSenRounded2TW-M';
  src: url('fonts/GenSenRounded2TW-M.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'GenSenRounded2TW-B';
  src: url('fonts/GenSenRounded2TW-B.otf') format('opentype');
  font-display: swap;
}

/* CSS Reset */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a, button, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
}

/* custom */
img {
  width: 100%; 
  max-width: 100%;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;         /* 標準 */
  pointer-events: none;
}
html, body {
  touch-action: manipulation;
}
body{
    background-color: #381f1b;
    font-family: 'Noto Sans TC', '微軟正黑體', 'Heiti TC', '黑體', 'Arial', sans-serif;
}
.wrapper{
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    margin: 0 auto;
    background-image: url(../img/bg.png);
    background-position: 50% 0;
    background-size: cover;
    background-repeat: repeat-y;
}
.container{
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 760px;
    min-height: 100vh;
    box-sizing: border-box;
}


.mobile{display: none !important; }

/* mobile */
@media screen and (max-width: 767px) {
    .pc{display: none !important;}
    .mobile{display: block!important;}

    .wrapper{background-image: none;}
    .container{width: 100%;}
}

.redUnderline{
    color: #ff6d6d;
    text-decoration:underline;
}