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

a {
  color: #350cbe;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #e2e2eb;
  color: #14111e;
}

header {
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  margin-bottom: 0.5em;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header ul li {
  border-right: solid 1px #14111e;
}

header ul li:last-child {
  border-right: none;
}

header ul li a {
  text-decoration: none;
  color: #14111e;
  font-weight: 500;
  padding: 0 1em;
}

.page_document {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(10px, 1.5vw, 20px);
}

.page_document .inner {
  background: #f5f5f5;
  padding: 40px clamp(20px, 3vw, 40px);
  border-radius: 10px;
}

.page_document .inner h2 {
  padding: 2em 0 0.5em;
}

.page_document .inner p {
  font-size: clamp(14px, 1.5vw, 16px);
  margin-bottom: 1em;
  line-height: 1.8;
}

.page_document .inner p code {
  display: inline-block;
  font-size: 0.8em;
  margin: 0 0.2em;
  background: #14111e;
  color: #f5f5f5;
  padding: 0 0.5em;
  border-radius: 0.2em;
}

.page_document .inner .code {
  padding: 20px 0;
}

.page_document .inner .code h3 {
  font-size: 16px;
  background: #14111e;
  display: inline-block;
  font-weight: normal;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #f5f5f5;
  padding: 0.2em 1em;
}

.page_document .inner .code code {
  font-size: 14px;
  line-height: 1.8;
  color: #f5f5f5;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: block;
  padding: 20px;
  background: #14111e;
  white-space: pre-wrap;
  word-break: break-all;
}

.generator {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(10px, 1.5vw, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}

@media only screen and (max-width: 600px) {
  .generator {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.generator main {
  width: 280px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}

@media only screen and (max-width: 600px) {
  .generator main {
    width: 100%;
  }
}

.generator main .controller {
  margin-bottom: 40px;
}

.generator main .controller ul li {
  margin-bottom: 10px;
}

.generator main .controller ul li label {
  font-size: 15px;
}

.generator main .controller ul li input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}

.generator main .controller ul li input[type="range"] {
  width: 100%;
  height: 1px;
  background-color: #14111e;
}

.generator main .controller ul li input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 12px;
  height: 12px;
  border: none;
  background: #14111e;
  border-radius: 10em;
}

.generator main .code .item {
  margin-bottom: 20px;
}

.generator main .code .item:last-child {
  margin-bottom: 0;
}

.generator main .code .item h3 {
  font-size: 16px;
  background: #14111e;
  display: inline-block;
  font-weight: normal;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #f5f5f5;
  padding: 0.2em 1em;
}

.generator main .code .item code {
  font-size: 14px;
  line-height: 1.6;
  color: #f5f5f5;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: block;
  padding: 20px;
  background: #14111e;
  white-space: pre-wrap;
  word-break: break-all;
}

.generator article {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #f5f5f5;
  padding: 40px clamp(20px, 3vw, 40px);
  border-radius: 10px;
}

.generator article p {
  margin-bottom: 1em;
  line-height: 2;
  font-size: clamp(14px, 1.5vw, 16px);
}

ul.list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  gap: 20px;
}

@media only screen and (max-width: 500px) {
  ul.list {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
}

ul.list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  height: 120px;
  background: #f5f5f5;
  padding: 40px 30px;
  border-radius: 10px;
  font-size: 16px;
  color: #14111e;
  font-weight: 500;
}

ul.list li a div {
  width: 100%;
}

ul.list li.type01 div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 10px;
}

ul.list li.type01 div:before, ul.list li.type01 div:after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 20px;
  height: 2px;
  background: #14111e;
}

ul.list li.type01:hover div {
  -webkit-animation: type01 2s infinite;
          animation: type01 2s infinite;
}

@-webkit-keyframes type01 {
  0%,
  100% {
    gap: 10px;
  }
  50% {
    gap: 30px;
  }
}

@keyframes type01 {
  0%,
  100% {
    gap: 10px;
  }
  50% {
    gap: 30px;
  }
}

ul.list li.type02 div span {
  display: block;
  padding: 0.8em 20px;
  background: #e7e7e7;
  border-left: solid 0.5em currentColor;
}

ul.list li.type02:hover div span {
  -webkit-animation: type02 2s infinite;
          animation: type02 2s infinite;
}

@-webkit-keyframes type02 {
  0%,
  100% {
    border-left: solid 0.5em currentColor;
  }
  50% {
    border-left: solid 1em currentColor;
  }
}

@keyframes type02 {
  0%,
  100% {
    border-left: solid 0.5em currentColor;
  }
  50% {
    border-left: solid 1em currentColor;
  }
}

ul.list li.type03 div span {
  display: block;
  padding: 0.5em 20px;
  border-left: solid 0.5em currentColor;
  border-bottom: solid 2px currentColor;
}

ul.list li.type03:hover div span {
  -webkit-animation: type03 2s infinite;
          animation: type03 2s infinite;
}

@-webkit-keyframes type03 {
  0%,
  100% {
    border-left: solid 0.5em currentColor;
    border-bottom: solid 2px currentColor;
  }
  40% {
    border-left: solid 2em currentColor;
  }
  80% {
    border-bottom: solid 6px currentColor;
  }
}

@keyframes type03 {
  0%,
  100% {
    border-left: solid 0.5em currentColor;
    border-bottom: solid 2px currentColor;
  }
  40% {
    border-left: solid 2em currentColor;
  }
  80% {
    border-bottom: solid 6px currentColor;
  }
}

ul.list li.type04 div span {
  display: block;
  position: relative;
  padding-bottom: 0.5em;
}

ul.list li.type04 div span::before {
  content: "";
  width: 100%;
  height: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #aaa;
  border-left: solid 100px currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
}

ul.list li.type04:hover div span::before {
  -webkit-animation: type04 2s infinite;
          animation: type04 2s infinite;
}

@-webkit-keyframes type04 {
  0%,
  100% {
    height: 3px;
    border-left: solid 100px currentColor;
  }
  40% {
    border-left: solid 50px currentColor;
  }
  80% {
    height: 6px;
  }
}

@keyframes type04 {
  0%,
  100% {
    height: 3px;
    border-left: solid 100px currentColor;
  }
  40% {
    border-left: solid 50px currentColor;
  }
  80% {
    height: 6px;
  }
}

ul.list li.type05 div span {
  display: block;
  background: #e8e8e8;
  padding: 0.6em 0.5em;
  border-top-style: solid;
  border-bottom-style: solid;
  border-width: 2px;
  border-color: currentColor;
}

ul.list li.type05:hover div span {
  -webkit-animation: type05 2s infinite;
          animation: type05 2s infinite;
}

@-webkit-keyframes type05 {
  0%,
  100% {
    border-width: 2px;
    padding: 0.6em 0.5em;
  }
  40% {
    padding: 0.8em 0.5em;
  }
  80% {
    border-width: 6px;
  }
}

@keyframes type05 {
  0%,
  100% {
    border-width: 2px;
    padding: 0.6em 0.5em;
  }
  40% {
    padding: 0.8em 0.5em;
  }
  80% {
    border-width: 6px;
  }
}

footer {
  color: #f5f5f5;
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: 100px;
  font-size: 14px;
}
/*# sourceMappingURL=style.css.map */