/*
Theme Name: Artist
Author: Skyward
Author URI: https://skyward.jp
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* fonts
-------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;900&display=swap');

/* layout
-------------------------------- */
body {
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-display: swap;
  color: #000000;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.8;
  background-color: #ffffff;
}
a {
  color: #000000;
  text-decoration: underline dotted rgba(0, 0, 0, 0.64);
  transition: 0.6s;
}
a img {
  transition: 0.6s;
}
a:hover {
  color: inherit;
}
a:hover img {
  opacity: 0.64;
}
p {
  margin-bottom: 2.0rem;
}
dt {
  margin: 0;
  font-weight: 400;
}
dd {
  margin: 0;
}
@media(min-width:769px) {
  body {
    font-size: 16px;
  }
}

/* h
-------------------------------- */
h2 {
  display: inline-block;
  margin: 0 auto 40px auto;
  padding: 0;
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.64);
}
h3 {
  margin: 0 auto 16px auto;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;;
}
@media(min-width:769px) {
  h2 {
    font-size: 56px;
  }
  h3 {
    font-size: 24px;
  }
}

/* add to any
-------------------------------- */
.addtoany_shortcode {
  margin-bottom: 24px;
}

/* header
-------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  font-weight: 400;
  color: #000000;
  background-color: #2b2b2b;
  z-index: 900;
}
.logo {
  position: absolute;
  left: 16px;
  top: 13px;
  display: inline-block;
  width: auto;
  z-index: 10000;
}
.logo img {
  width: auto !important;
  height: 32px;
}
header ul {
  list-style-type: none;
}
.spSns {
  position: absolute;
  top: 11px;
  right: 72px;
  max-width: 180px;
  font-size: 24px;
}
.spMenu {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 24px;
  height: 20px;
  display: block;
  cursor: pointer;
  z-index: 9999;
}
.spMenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 1.0);
  border-radius: 6px;
}
.spMenu span:nth-of-type(1) { top: 0; }
.spMenu span:nth-of-type(2) { top: 9px; }
.spMenu span:nth-of-type(3) { bottom: 0; }
.spMenu.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.spMenu.active span {
  background-color: rgba(255, 255, 255, 0.8);
}
.spMenu.active span:nth-of-type(2) { opacity: 0; }
.spMenu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
nav {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  margin: 0 auto;
  padding: 80px 0;
  height: 100vh;
  width: 100%;
  font-size: 32px;
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.8s;
  opacity: 0;
  z-index: 9500;
}
nav.close {
  opacity: 0;
}
nav.open {
  opacity: 1.0;
}
nav ul {
  padding: 0;
}
nav ul li {
  height: calc((100vh - 240px) / 8);
}
nav a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-decoration: none;
  vertical-align: middle;
}
nav a:hover {
  color: rgba(255, 255, 255, 0.64);
  text-decoration: underline;
}
nav .sns {
  display: none;
}
@media(min-width:769px) {
  header {
    padding: 0 24px 0 0;
    height: 64px;
    font-size: 18px;
  }
  .logo {
    top: 14px;
    left: 24px;
    margin-top: 0;
  }
  .logo img {
    width: auto !important;
    height: 32px;
  }
  .spSns {
    display: none;
  }
  nav {
    position: absolute;
    top: 24px;
    right: 32px;
    display: block;
    margin: 0 0 0 auto;
    padding: 0;
    max-width: 720px;
    height: auto;
    font-size: 16px;
    background-color: transparent;
    opacity: 1.0;
  }
  nav .close {
    opacity: 1.0;
  }
  nav ul {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  nav li a {
    padding: 0 16px;
    height: auto;
  }
  nav li.sns a {
    padding: 0px 8px;
  }
  nav .sns {
    display: inline-block;
    position: relative;
    top: 4px;
  }
  nav .ticktok img {
    height: 16px;
  }
  .spMenu {
    display: none;
  }
}

/* main
-------------------------------- */
main {
  position: relative;
  padding-top: 56px;
}
@media(min-width:769px) {
  main {
    padding-top: 64px;
  }
}

/* layout
-------------------------------- */
section {
  padding: 64px 16px;
  width: 100%;
}
@media(min-width:769px) {
  section {
    padding: 128px 0;
  }
  section article {
    margin: 0 auto;
    max-width: 960px;
  }  
}

/* read more
-------------------------------- */
.readMore a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.6s;
}
.readMore a:hover {
  text-decoration: underline;
}

/* back button
-------------------------------- */
.btnBack a {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #000000;
  transition: 0.6s;
}
.btnBack a:hover {
  text-decoration: none;
}
.btnBack a:hover:after {
  transform: scale(1.6);
}

/* footer
-------------------------------- */
footer {
  padding: 8px 0 calc(env(safe-area-inset-bottom) + 8px) 0;
  color: #FFFFFF;
  text-align: center;
  background-color: #333333;
}
.copy {
  font-size: 11px;
}
@media(min-width:769px) {
  footer {
    padding: 8px 0;
  }
}
