@charset "UTF-8";
@import url("https://use.typekit.net/jid5chq.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Serif TC", serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #111;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #111;
  height: 100%;
}

a {
  color: #111;
  text-decoration: none;
  cursor: pointer;
}

a:hover, a:active, a.active {
  color: #999;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
.brsp {
  display: none;
}

header {
  width: 100%;
  opacity: 0;
  transition: all 0.25s ease-in 0s;
}
header.active {
  opacity: 1;
}
header ol {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 16px;
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 5;
}
header ol li {
  width: 30px;
}
header ol li a {
  width: 100%;
  height: 30px;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.25s ease-in 0s;
}
header ol li a:hover {
  opacity: 0.7;
}
header ol li:nth-child(1) a {
  background-image: url(../images/logo_x.svg);
}
header ol li:nth-child(2) a {
  background-image: url(../images/logo_insta.svg);
}
header ol li:nth-child(3) a {
  background-image: url(../images/logo_fb.svg);
}
header .hum {
  width: 60px;
  height: 60px;
  background-color: #e60012;
  border-radius: 0 0 0 10px;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 10;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .hum.on > div span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
header .hum.on > div span:nth-child(2) {
  opacity: 0;
}
header .hum.on > div span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}
header .hum > div {
  width: 30px;
  height: 16px;
  position: relative;
}
header .hum > div span {
  width: 100%;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  left: 0px;
  transition: all 0.25s ease-in 0s;
}
header .hum > div span:nth-child(1) {
  top: 0px;
}
header .hum > div span:nth-child(2) {
  top: 7px;
}
header .hum > div span:nth-child(3) {
  top: 14px;
}

nav {
  width: 30%;
  height: 100%;
  background-color: rgba(230, 0, 18, 0.35);
  backdrop-filter: blur(15px);
  position: fixed;
  top: 0px;
  right: -30%;
  z-index: 5;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all 0.35s ease-in 0s;
}
nav.on {
  right: 0px;
}
nav > div {
  width: 100%;
  padding: 120px 40px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
nav > div h3 {
  color: #FFF;
  font-family: "Noto Serif TC", serif;
  font-size: 3rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
nav > div ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px 0;
}
nav > div ul li a {
  color: #FFF;
  font-family: "Libre Baskerville", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  text-decoration: none;
  background-image: linear-gradient(90deg, #FFF, #FFF);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 1px;
  padding-bottom: 4px;
  transition: background-size 0.5s;
}
nav > div ul li a:hover {
  color: #FFF;
  background-size: 100% 1px;
}

footer {
  width: 100%;
  padding: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}
footer .inner {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px 0;
}
footer .inner h2 {
  width: 300px;
  height: 119px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
footer .inner h3 {
  color: #EEEEEE;
  font-family: "Noto Serif TC", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
}
footer .inner p {
  color: #EEEEEE;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }

  body {
    font-size: 1rem;
    line-height: 1.75;
    height: auto;
  }

  .brsp {
    display: block;
  }

  ol {
    right: 10px;
    top: 10px;
  }
  ol li {
    width: 25px;
  }
  ol li a {
    height: 25px;
  }
  ol li a:hover {
    opacity: 1;
  }

  header ol {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0 12px;
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 5;
  }
  header ol li {
    width: 20px;
  }
  header ol li a {
    height: 20px;
  }
  header ol li a:hover {
    opacity: 1;
  }
  header .hum {
    width: 40px;
    height: 40px;
    background-color: #e60012;
    border-radius: 0 0 0 10px;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 10;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  header .hum.on > div span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }
  header .hum.on > div span:nth-child(2) {
    opacity: 0;
  }
  header .hum.on > div span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
  }
  header .hum > div {
    width: 20px;
    height: 16px;
    position: relative;
  }
  header .hum > div span {
    width: 100%;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    left: 0px;
    transition: all 0.25s ease-in 0s;
  }
  header .hum > div span:nth-child(1) {
    top: 0px;
  }
  header .hum > div span:nth-child(2) {
    top: 7px;
  }
  header .hum > div span:nth-child(3) {
    top: 14px;
  }

  nav {
    width: 100%;
    height: 100%;
    background-color: rgba(230, 0, 18, 0.35);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0px;
    right: -100%;
    z-index: 5;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: all 0.35s ease-in 0s;
  }
  nav.on {
    right: 0px;
  }
  nav > div {
    width: 100%;
    padding: 80px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  nav > div h3 {
    color: #FFF;
    font-family: "Noto Serif TC", serif;
    font-size: 2.4rem;
    font-weight: 200;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
  }
  nav > div ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
  }
  nav > div ul li a {
    color: #FFF;
    font-family: "Libre Baskerville", serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    text-decoration: none;
    background-image: linear-gradient(90deg, #FFF, #FFF);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 0 1px;
    padding-bottom: 4px;
    transition: background-size 0.5s;
  }
  nav > div ul li a:hover {
    color: #FFF;
    background-size: 100% 1px;
  }

  footer {
    width: 100%;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
  }
  footer .inner {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
  }
  footer .inner h2 {
    width: 150px;
    height: 60px;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    margin-bottom: 16px;
  }
  footer .inner h3 {
    color: #EEEEEE;
    font-family: "Noto Serif TC", serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  footer .inner p {
    color: #EEEEEE;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
}

/*# sourceMappingURL=style.css.map */
