@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

:root {
  --font-md: 0.9375rem;
  --bg-main: #fafafa;
  --bg-surface: #e5e5e5;
  --text-primary: #111;
  --text-secondary: #666;
  --border: #ddd;
}

html {
  font-size: 16px;
}
html.font-small {
  font-size: 12px;
}
html.font-medium-small {
  font-size: 14px;
}
html.font-medium {
  font-size: 16px;
}
html.font-medium-large {
  font-size: 18px;
}
html.font-large {
  font-size: 20px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background-image: linear-gradient(#2054a8, #11336b);
  color: #111;
}

main {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-main);
  position: relative;
}
main header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 1.25rem;
  border-bottom: solid 1px var(--border);
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 600px;
  height: 4em;
  background: var(--bg-main);
  z-index: 200;
  line-height: 0;
}
main header .logo {
  margin-right: auto;
}
main header .logo img {
  width: 8.75rem;
}
main header .drawer_btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: none;
  border-radius: 0.3rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  transition: background 0.3s;
  width: 7rem;
}
main header .drawer_btn:hover {
  background: var(--border);
}
main header .drawer_btn .drawer_icon {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: all 0.3s ease;
}
main header .drawer_btn .drawer_icon::before, main header .drawer_btn .drawer_icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
main header .drawer_btn .drawer_icon::before {
  top: -0.4rem;
}
main header .drawer_btn .drawer_icon::after {
  bottom: -0.4rem;
}
main header .drawer_btn .drawer_icon.active {
  background: transparent;
}
main header .drawer_btn .drawer_icon.active::before {
  top: 0;
  transform: rotate(45deg);
}
main header .drawer_btn .drawer_icon.active::after {
  bottom: 0;
  transform: rotate(-45deg);
}
main header .drawer_btn .drawer_text {
  font-size: 0.875rem;
  color: var(--text-primary);
  white-space: nowrap;
  text-align: center;
  flex: 1;
}
main .drawer_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}
main .drawer_overlay.active {
  opacity: 1;
  pointer-events: auto;
}
main .drawer_content {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  position: fixed;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  background: var(--bg-main);
}
main .drawer_content.active {
  opacity: 1;
  visibility: visible;
}
main .drawer_content .inner {
  position: relative;
  z-index: 100;
  background: var(--bg-main);
  width: 100%;
  height: 100%;
  padding: 5rem 1.5rem 1.5rem;
}
main .drawer_content .inner ul.nav li {
  border-top: solid 1px var(--border);
  padding: 0.5rem 0;
}
main .drawer_content .inner ul.nav li:last-child {
  border-bottom: solid 1px var(--border);
}
main .drawer_content .inner ul.nav li a {
  text-decoration: none;
  color: var(--text-primary);
  display: block;
  padding: 0.5rem 0;
}
main .drawer_content .sns {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}
main .drawer_content .sns a {
  text-decoration: none;
}
main .drawer_content .sns a img {
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
}
main .drawer_content .size {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
main .drawer_content .size ul {
  display: flex;
  gap: 0.5rem;
}
main .drawer_content .size ul li .size-button {
  flex: 1;
  padding: 0.5rem 1rem;
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 0.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
main .drawer_content .size ul li .size-button:hover {
  background: var(--text-primary);
  color: var(--bg-main);
}
main .drawer_content .size ul li .size-button.active {
  background: var(--text-primary);
  color: var(--bg-main);
}
main .mainvisual {
  line-height: 0;
}
main .mainvisual img {
  width: 100%;
  height: auto;
}
main .news {
  margin-bottom: 5rem;
  padding: 1rem;
}
main .news .item {
  border-bottom: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  justify-content: space-between;
}
main .news .item a {
  position: absolute;
  inset: 0;
}
main .news .item .txt time {
  color: var(--text-secondary);
  display: block;
}
main .news .item .txt span {
  line-height: 1.6;
}
main .news .item .thumbnail img {
  width: 6rem;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3rem;
}
main .youtube {
  width: 100%;
  aspect-ratio: 16/9;
  padding: 1.875rem 1.25rem;
}
main .youtube iframe {
  width: 100%;
  height: 100%;
}
main #profile {
  padding: 1.875rem 1.25rem;
}
main #profile .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
main #profile .inner ul li {
  display: flex;
  background: var(--bg-surface);
  padding: 0.2rem 0.8rem;
  border-radius: 5px;
}
main #profile .inner ul li span:first-child::after {
  content: "/";
  margin: 0 0.4rem;
}
main #profile .inner .name {
  display: flex;
  white-space: nowrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
main #profile .inner .name div {
  line-height: 1.2;
}
main #profile .inner .name div span {
  display: block;
  text-align: center;
  letter-spacing: 0.15rem;
}
main #profile .inner .name div span:first-child {
  font-weight: 500;
}
main #profile .inner .name div span:last-child {
  font-size: 2rem;
  font-weight: 700;
}
main #profile .inner .birth {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}
main #profile .inner .sns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
main #profile .inner .sns a img {
  width: 2rem;
  border-radius: 100%;
}
main .message {
  padding: 1rem;
}
main #history {
  padding: 1.5rem;
}
main #history .item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: row;
  margin-bottom: 1rem;
}
main #history .item div:nth-child(1) {
  width: 6.5rem;
  border-radius: 0.3rem;
  background: var(--bg-surface);
  text-align: center;
}
main #history .item div:nth-child(2) {
  flex: 1;
}
main .data {
  padding: 1.5rem;
}
main .data .item {
  border-bottom: solid 1px var(--border-color);
  padding: 1rem 0;
}
main article {
  padding: 1.5rem;
  margin-bottom: 5rem;
}
main article h2,
main article h3,
main article h4,
main article h5,
main article h6 {
  font-weight: 600;
}
main article h2 {
  font-size: 1.4rem;
  padding: 4rem 0 2rem;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
main article h2::before {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: var(--text-primary);
}
main article h2:after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: var(--text-primary);
  content: "";
}
main article h2 + h3 {
  padding-top: 1rem;
}
main article h3 {
  font-size: 1.2rem;
  padding: 3rem 0 0.2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  border-bottom: solid 1px var(--text-primary);
}
main article h4 {
  font-size: 1.2rem;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  border-left: solid 2px var(--text-primary);
  line-height: 1.4;
}
main article h4 + h5 {
  padding-top: 1rem;
}
main article h5 {
  font-size: 1.2rem;
  padding: 2rem 0 0.5rem;
}
main article a {
  color: #777;
}
main article p {
  margin-bottom: 0.5rem;
}
main article p:last-child {
  margin-bottom: 0;
}
main article ul,
main article ol {
  padding-left: 1.5rem;
}
main article ul li,
main article ol li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
main article ul li:last-child,
main article ol li:last-child {
  margin-bottom: 0;
}
main article ul li {
  list-style: disc;
}
main article ol li {
  list-style: decimal;
}
main .footer {
  text-align: center;
  padding: 2rem;
  border-top: solid 1px #eee;
}
main .footer img {
  width: 80%;
  max-width: 12.5rem;
}

.drawer_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}
.drawer_overlay.active {
  opacity: 1;
  pointer-events: auto;
}/*# sourceMappingURL=style.css.map */