@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Orbitron";
  src: url("../fonts/Orbitron/Orbitron-VariableFont_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-VariableFont_wdth_wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sankofa Display";
  src: url("../fonts/Sankofa_Display/SankofaDisplay-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Major Mono Display";
  src: url("../fonts/Major_Mono_Display/MajorMonoDisplay-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(55, 55, 55, 0.9803921569);
  z-index: 1000;
}
header h1 {
  position: absolute;
  display: inline-block;
  margin: auto 67px;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 134px);
  text-align: center;
  color: #fff;
}
header .menu {
  position: absolute;
  top: 70px;
  max-height: 0;
  overflow: hidden;
  background: rgba(55, 55, 55, 0.9803921569);
  width: 100%;
  transition: max-height 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .menu ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
header .menu ul li {
  position: relative;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  overflow: hidden;
}
header .menu ul li a {
  padding: 0.5rem;
  color: inherit;
  text-decoration: underline;
  background-size: 200% 100%;
  background-position: right center;
  background-image: linear-gradient(to left, transparent 51%, #FFF574 50%);
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
header .menu ul li a:hover {
  background-position: left center;
  color: rgba(55, 55, 55, 0.9803921569);
}
header .menu-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
header .menu-icon input[type=checkbox] {
  display: none;
}
header .navicon {
  display: block;
  width: 27px;
  padding: 27px 0;
  background: linear-gradient(to right, #fff 100%, transparent 100%);
  background-size: 27px 3px;
  background-position: 0 50%;
  background-repeat: repeat-x;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header .navicon:before, header .navicon:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 27px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
header .navicon:before {
  transform: translateY(calc(-50% + 7px)) rotate(0deg);
}
header .navicon:after {
  transform: translateY(calc(-50% - 7px)) rotate(0deg);
}
header .menu-icon input[type=checkbox]:checked ~ .navicon {
  background: linear-gradient(to right, #fff 0%, transparent 0%);
  background-position: 50%;
  transform: rotate(360deg);
}
header .menu-icon input[type=checkbox]:checked ~ .navicon:before {
  transform: translateY(-50%) rotate(45deg);
}
header .menu-icon input[type=checkbox]:checked ~ .navicon:after {
  transform: translateY(-50%) rotate(-45deg);
}
header .menu-icon:has(input[type=checkbox]:checked) ~ .menu {
  max-height: 1000px;
}

@keyframes header-hide {
  from {
    top: 0;
  }
  to {
    top: -70px;
  }
}
@keyframes header-show {
  from {
    top: -70px;
  }
  to {
    top: 0;
  }
}
header.show {
  animation: header-show 0.3s ease-in-out forwards;
}

header.hide {
  animation: header-hide 0.3s ease-in-out forwards;
}
header.hide .menu {
  max-height: 0 !important;
  transition: max-height 0.3s ease-in-out;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  margin: 0;
  padding: 0;
  font-family: "Roboto", "Noto Sans JP", sans-serif, comma;
  font-size: 1rem;
  font-weight: 400;
}

body {
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #2c3e50;
  font-size: 1rem;
  line-height: 1.6;
}

main {
  position: relative;
  top: 70px;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: #fafafa;
}

.title-wrapper {
  padding: 0 0.5rem;
}

.content-wrapper {
  padding: 0 1rem;
}

footer {
  position: relative;
  top: 100px;
  width: 100%;
  height: 100px;
  padding: 1rem;
  text-align: center;
  background: #e1e1e1;
  color: #2c3e50;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  font-family: "Sankofa Display";
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin: 2rem 0;
}

h2 {
  font-family: "Major Mono Display";
  font-size: 2rem;
  font-weight: 500;
  color: #2c3e50;
}

h3.toy {
  font-family: "Roboto", sans-serif;
  position: relative;
  padding: 0.5rem 1rem calc(0.5rem + 10px);
  background: #FFF574;
}
h3.toy:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: "";
  border: 4px solid #000;
}
h3.ribbon {
  position: relative;
  display: inline-block;
  margin: 1rem 0 1rem -10px;
  padding: 1rem 3rem;
  color: #2c3e50;
  border-radius: 0 100vh 100vh 0;
  background: #2c3e50;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h3.ribbon:before {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  content: "";
  border-top: 10px solid #2c3e50;
  border-left: 10px solid transparent;
}

a {
  padding: 0.5rem;
  color: inherit;
  text-decoration: underline;
  background-size: 200% 100%;
  background-position: right center;
  background-image: linear-gradient(to left, transparent 51%, rgba(55, 55, 55, 0.9803921569) 50%);
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

a:hover {
  background-position: left center;
  color: #FFF574;
}

table.common {
  width: 100%;
  margin: 20px auto;
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
table.common th {
  background-color: #f8fafc;
}
table.common th, table.common td {
  padding: 10px;
  text-align: center;
  border: 1px solid #d4d4d8;
}
table.horizontal {
  width: 100%;
  max-width: 767px;
  margin: 20px auto;
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
table.horizontal tr {
  border-bottom: solid 2px #2c3e50;
}
table.horizontal tr:last-child {
  border-bottom: none;
}
table.horizontal th {
  position: relative;
  text-align: center;
  width: 30%;
  background-color: #2c3e50;
  color: #2c3e50;
  padding: 10px 0;
}
table.horizontal th:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  border-left: 10px solid #2c3e50;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
table.horizontal td {
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #f1f5f9;
  padding: 10px 0;
}

.slide-in {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.slide-in.slide-in-visible {
  opacity: 1;
  transform: translateX(0);
}

.effect.slide-in {
  background: linear-gradient(to left, whitesmoke 51%, rgba(55, 55, 55, 0.9803921569) 50%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  background-position: left center;
  transition: background-position 0.8s ease-in-out;
}
.effect.slide-in.slide-in-visible {
  background-position: right center;
}

.next-btn {
  position: relative;
  display: inline-block;
  padding: 10px 25px;
  background-color: #f3f4f6;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  max-width: 240px;
  color: #374151;
}
.next-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #60a5fa;
  top: calc(90% - 3px);
  left: 10px;
  transition: all 0.3s ease-in-out;
}
.next-btn::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #60a5fa;
  top: calc(90% - 3px);
  left: calc(100% - 2px);
  transform: translateY(calc(-100% - 2px)) rotate(30deg);
  transition: 0.3s;
}
.next-btn:hover {
  background-color: #eff6ff;
  color: #60a5fa;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.next-btn:hover::before {
  left: 20%;
}
.next-btn:hover::after {
  left: calc(120% - 12px);
}/*# sourceMappingURL=style.css.map */