@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@400;700&family=Roboto+Mono&display=swap");
:root {
  --range-fill: #777;
  --range-bg: #e6e6e6;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  overflow: hidden;
  border-radius: 0;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100vw;
  min-height: 100dvh;
  box-sizing: border-box;
  background-color: #f0f0f0;
  position: relative;
}
body.is-dragover::after {
  content: "ファイルをドロップして読み込み";
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.4666666667);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  font-family: "LINE Seed JP", sans-serif;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 0.2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
::-webkit-scrollbar {
  display: none;
}

::-moz-selection {
  background-color: rgba(0, 0, 0, 0.1333333333);
}

::selection {
  background-color: rgba(0, 0, 0, 0.1333333333);
}

header {
  position: fixed;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 72px;
  pointer-events: none;
}
header svg {
  height: 36px;
  fill: rgba(0, 0, 0, 0.2666666667);
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
  width: 100vw;
  height: 100dvh;
  box-sizing: border-box;
}

section.upload {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 400px;
  height: 100%;
}
section.upload .main_input {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 360px;
  height: 280px;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 0 24px -12px rgba(0, 0, 0, 0.4666666667);
  margin-bottom: 24px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
section.upload .main_input input {
  display: none;
}
section.upload .main_input svg {
  width: 64px;
  fill: #777;
  transition: fill 0.3s;
}
section.upload .main_input p {
  display: block;
  margin-top: 8px;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 20px;
  color: #777;
  transition: color 0.3s;
}
section.upload .main_input span {
  position: absolute;
  bottom: 12px;
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 14px;
  color: rgba(119, 119, 119, 0.6666666667);
  transition: color 0.3s;
}
section.upload .main_input:active {
  scale: 0.95;
}
section.upload .main_input:hover svg {
  fill: #e06c75;
}
section.upload .main_input:hover p {
  color: #e06c75;
}
section.upload p.notice {
  display: block;
  margin-right: auto;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 16px;
  color: #777;
  font-weight: 400;
  margin-bottom: 4px;
}
section.upload p.notice::before {
  content: "※";
  margin-right: 4px;
}

section.preview {
  display: none;
  align-items: center;
  justify-content: center;
  width: 312px;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
section.preview.active {
  display: flex;
}
section.preview.visible {
  opacity: 1;
  transform: translateY(0);
}
section.preview .preview_container {
  display: grid;
  place-items: center;
  width: 312px;
  aspect-ratio: 1;
  border: 1px solid #aaa;
  border-radius: 16px;
  background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #f0f0f0 75%), linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0;
  background-color: #fff;
}
section.preview .preview_container img {
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  transition: border-radius 0.3s ease;
}
section.preview .preview_container img.round {
  border-radius: 50%;
}
section.preview .preview_container img.rounded-rect {
  border-radius: 20%;
}

section.settings {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
  justify-content: center;
  flex-direction: column;
  width: min(100% - 2rem, 512px);
}
section.settings.active {
  display: flex;
}
section.settings.visible {
  opacity: 1;
  transform: translateY(0);
}
section.settings .preview_sizes,
section.settings .preview_files,
section.settings .preview_others,
section.settings .preview_download_type {
  display: block;
  margin-top: 32px;
  width: 512px;
}
section.settings .preview_sizes p,
section.settings .preview_files p,
section.settings .preview_others p,
section.settings .preview_download_type p {
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #642121;
  font-size: 24px;
}
section.settings .preview_sizes .radius_slider_container,
section.settings .preview_files .radius_slider_container,
section.settings .preview_others .radius_slider_container,
section.settings .preview_download_type .radius_slider_container {
  display: none;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 12px;
}
section.settings .preview_sizes .radius_slider_container.active,
section.settings .preview_files .radius_slider_container.active,
section.settings .preview_others .radius_slider_container.active,
section.settings .preview_download_type .radius_slider_container.active {
  display: flex;
}
section.settings .preview_sizes .radius_slider_container input[type=range],
section.settings .preview_files .radius_slider_container input[type=range],
section.settings .preview_others .radius_slider_container input[type=range],
section.settings .preview_download_type .radius_slider_container input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  flex: 1;
  height: 28px;
  background: transparent;
  padding-block: 4px;
  cursor: pointer;
}
section.settings .preview_sizes .radius_slider_container input[type=range].styled,
section.settings .preview_files .radius_slider_container input[type=range].styled,
section.settings .preview_others .radius_slider_container input[type=range].styled,
section.settings .preview_download_type .radius_slider_container input[type=range].styled {
  background-image: linear-gradient(90deg, #777 0%, #777 50%, #e6e6e6 50%);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 100% 4px;
}
section.settings .preview_sizes .radius_slider_container input[type=range]::-webkit-slider-runnable-track,
section.settings .preview_files .radius_slider_container input[type=range]::-webkit-slider-runnable-track,
section.settings .preview_others .radius_slider_container input[type=range]::-webkit-slider-runnable-track,
section.settings .preview_download_type .radius_slider_container input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
  border-radius: 12px;
}
section.settings .preview_sizes .radius_slider_container input[type=range]::-moz-range-track,
section.settings .preview_files .radius_slider_container input[type=range]::-moz-range-track,
section.settings .preview_others .radius_slider_container input[type=range]::-moz-range-track,
section.settings .preview_download_type .radius_slider_container input[type=range]::-moz-range-track {
  height: 4px;
  background: transparent;
  border-radius: 12px;
}
section.settings .preview_sizes .radius_slider_container input[type=range]::-webkit-slider-thumb,
section.settings .preview_files .radius_slider_container input[type=range]::-webkit-slider-thumb,
section.settings .preview_others .radius_slider_container input[type=range]::-webkit-slider-thumb,
section.settings .preview_download_type .radius_slider_container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
  border: 2px solid #777;
  -webkit-transition: transform 0.12s ease, box-shadow 0.12s ease;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
section.settings .preview_sizes .radius_slider_container input[type=range]::-moz-range-thumb,
section.settings .preview_files .radius_slider_container input[type=range]::-moz-range-thumb,
section.settings .preview_others .radius_slider_container input[type=range]::-moz-range-thumb,
section.settings .preview_download_type .radius_slider_container input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
  border: 2px solid #777;
}
section.settings .preview_sizes .radius_slider_container input[type=range]:active::-webkit-slider-thumb,
section.settings .preview_files .radius_slider_container input[type=range]:active::-webkit-slider-thumb,
section.settings .preview_others .radius_slider_container input[type=range]:active::-webkit-slider-thumb,
section.settings .preview_download_type .radius_slider_container input[type=range]:active::-webkit-slider-thumb {
  transform: scale(1.06);
}
section.settings .preview_sizes .radius_slider_container input[type=range]:hover::-webkit-slider-thumb,
section.settings .preview_files .radius_slider_container input[type=range]:hover::-webkit-slider-thumb,
section.settings .preview_others .radius_slider_container input[type=range]:hover::-webkit-slider-thumb,
section.settings .preview_download_type .radius_slider_container input[type=range]:hover::-webkit-slider-thumb {
  transform: scale(1.04);
}
section.settings .preview_sizes .radius_slider_container span,
section.settings .preview_files .radius_slider_container span,
section.settings .preview_others .radius_slider_container span,
section.settings .preview_download_type .radius_slider_container span {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #777;
  font-size: 16px;
  width: 48px;
  text-align: right;
}
section.settings .preview_sizes .preview_sizes_container,
section.settings .preview_sizes .preview_files_container,
section.settings .preview_sizes .preview_others_container,
section.settings .preview_sizes .preview_download_type_container,
section.settings .preview_files .preview_sizes_container,
section.settings .preview_files .preview_files_container,
section.settings .preview_files .preview_others_container,
section.settings .preview_files .preview_download_type_container,
section.settings .preview_others .preview_sizes_container,
section.settings .preview_others .preview_files_container,
section.settings .preview_others .preview_others_container,
section.settings .preview_others .preview_download_type_container,
section.settings .preview_download_type .preview_sizes_container,
section.settings .preview_download_type .preview_files_container,
section.settings .preview_download_type .preview_others_container,
section.settings .preview_download_type .preview_download_type_container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
section.settings .preview_sizes .preview_sizes_container label,
section.settings .preview_sizes .preview_files_container label,
section.settings .preview_sizes .preview_others_container label,
section.settings .preview_sizes .preview_download_type_container label,
section.settings .preview_files .preview_sizes_container label,
section.settings .preview_files .preview_files_container label,
section.settings .preview_files .preview_others_container label,
section.settings .preview_files .preview_download_type_container label,
section.settings .preview_others .preview_sizes_container label,
section.settings .preview_others .preview_files_container label,
section.settings .preview_others .preview_others_container label,
section.settings .preview_others .preview_download_type_container label,
section.settings .preview_download_type .preview_sizes_container label,
section.settings .preview_download_type .preview_files_container label,
section.settings .preview_download_type .preview_others_container label,
section.settings .preview_download_type .preview_download_type_container label {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
section.settings .preview_sizes .preview_sizes_container label input,
section.settings .preview_sizes .preview_files_container label input,
section.settings .preview_sizes .preview_others_container label input,
section.settings .preview_sizes .preview_download_type_container label input,
section.settings .preview_files .preview_sizes_container label input,
section.settings .preview_files .preview_files_container label input,
section.settings .preview_files .preview_others_container label input,
section.settings .preview_files .preview_download_type_container label input,
section.settings .preview_others .preview_sizes_container label input,
section.settings .preview_others .preview_files_container label input,
section.settings .preview_others .preview_others_container label input,
section.settings .preview_others .preview_download_type_container label input,
section.settings .preview_download_type .preview_sizes_container label input,
section.settings .preview_download_type .preview_files_container label input,
section.settings .preview_download_type .preview_others_container label input,
section.settings .preview_download_type .preview_download_type_container label input {
  display: block;
  width: 16px;
  height: 16px;
  cursor: pointer;
  transition: scale 0.2s ease;
}
section.settings .preview_sizes .preview_sizes_container label span,
section.settings .preview_sizes .preview_files_container label span,
section.settings .preview_sizes .preview_others_container label span,
section.settings .preview_sizes .preview_download_type_container label span,
section.settings .preview_files .preview_sizes_container label span,
section.settings .preview_files .preview_files_container label span,
section.settings .preview_files .preview_others_container label span,
section.settings .preview_files .preview_download_type_container label span,
section.settings .preview_others .preview_sizes_container label span,
section.settings .preview_others .preview_files_container label span,
section.settings .preview_others .preview_others_container label span,
section.settings .preview_others .preview_download_type_container label span,
section.settings .preview_download_type .preview_sizes_container label span,
section.settings .preview_download_type .preview_files_container label span,
section.settings .preview_download_type .preview_others_container label span,
section.settings .preview_download_type .preview_download_type_container label span {
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #777;
  font-size: 18px;
  transition: scale 0.2s ease;
}
section.settings .preview_sizes .preview_sizes_container label:has(input:checked) span,
section.settings .preview_sizes .preview_files_container label:has(input:checked) span,
section.settings .preview_sizes .preview_others_container label:has(input:checked) span,
section.settings .preview_sizes .preview_download_type_container label:has(input:checked) span,
section.settings .preview_files .preview_sizes_container label:has(input:checked) span,
section.settings .preview_files .preview_files_container label:has(input:checked) span,
section.settings .preview_files .preview_others_container label:has(input:checked) span,
section.settings .preview_files .preview_download_type_container label:has(input:checked) span,
section.settings .preview_others .preview_sizes_container label:has(input:checked) span,
section.settings .preview_others .preview_files_container label:has(input:checked) span,
section.settings .preview_others .preview_others_container label:has(input:checked) span,
section.settings .preview_others .preview_download_type_container label:has(input:checked) span,
section.settings .preview_download_type .preview_sizes_container label:has(input:checked) span,
section.settings .preview_download_type .preview_files_container label:has(input:checked) span,
section.settings .preview_download_type .preview_others_container label:has(input:checked) span,
section.settings .preview_download_type .preview_download_type_container label:has(input:checked) span {
  color: #212121;
}
section.settings .preview_sizes .preview_sizes_container label:active input,
section.settings .preview_sizes .preview_files_container label:active input,
section.settings .preview_sizes .preview_others_container label:active input,
section.settings .preview_sizes .preview_download_type_container label:active input,
section.settings .preview_files .preview_sizes_container label:active input,
section.settings .preview_files .preview_files_container label:active input,
section.settings .preview_files .preview_others_container label:active input,
section.settings .preview_files .preview_download_type_container label:active input,
section.settings .preview_others .preview_sizes_container label:active input,
section.settings .preview_others .preview_files_container label:active input,
section.settings .preview_others .preview_others_container label:active input,
section.settings .preview_others .preview_download_type_container label:active input,
section.settings .preview_download_type .preview_sizes_container label:active input,
section.settings .preview_download_type .preview_files_container label:active input,
section.settings .preview_download_type .preview_others_container label:active input,
section.settings .preview_download_type .preview_download_type_container label:active input {
  scale: 0.8;
}
section.settings .preview_sizes .preview_sizes_container label:active span,
section.settings .preview_sizes .preview_files_container label:active span,
section.settings .preview_sizes .preview_others_container label:active span,
section.settings .preview_sizes .preview_download_type_container label:active span,
section.settings .preview_files .preview_sizes_container label:active span,
section.settings .preview_files .preview_files_container label:active span,
section.settings .preview_files .preview_others_container label:active span,
section.settings .preview_files .preview_download_type_container label:active span,
section.settings .preview_others .preview_sizes_container label:active span,
section.settings .preview_others .preview_files_container label:active span,
section.settings .preview_others .preview_others_container label:active span,
section.settings .preview_others .preview_download_type_container label:active span,
section.settings .preview_download_type .preview_sizes_container label:active span,
section.settings .preview_download_type .preview_files_container label:active span,
section.settings .preview_download_type .preview_others_container label:active span,
section.settings .preview_download_type .preview_download_type_container label:active span {
  color: #212121;
}
section.settings .preview_sizes .preview_sizes_container.preview_sizes_container label span,
section.settings .preview_sizes .preview_files_container.preview_sizes_container label span,
section.settings .preview_sizes .preview_others_container.preview_sizes_container label span,
section.settings .preview_sizes .preview_download_type_container.preview_sizes_container label span,
section.settings .preview_files .preview_sizes_container.preview_sizes_container label span,
section.settings .preview_files .preview_files_container.preview_sizes_container label span,
section.settings .preview_files .preview_others_container.preview_sizes_container label span,
section.settings .preview_files .preview_download_type_container.preview_sizes_container label span,
section.settings .preview_others .preview_sizes_container.preview_sizes_container label span,
section.settings .preview_others .preview_files_container.preview_sizes_container label span,
section.settings .preview_others .preview_others_container.preview_sizes_container label span,
section.settings .preview_others .preview_download_type_container.preview_sizes_container label span,
section.settings .preview_download_type .preview_sizes_container.preview_sizes_container label span,
section.settings .preview_download_type .preview_files_container.preview_sizes_container label span,
section.settings .preview_download_type .preview_others_container.preview_sizes_container label span,
section.settings .preview_download_type .preview_download_type_container.preview_sizes_container label span {
  width: 82px;
}
section.settings .preview_sizes .preview_sizes_container.preview_files_container label span,
section.settings .preview_sizes .preview_files_container.preview_files_container label span,
section.settings .preview_sizes .preview_others_container.preview_files_container label span,
section.settings .preview_sizes .preview_download_type_container.preview_files_container label span,
section.settings .preview_files .preview_sizes_container.preview_files_container label span,
section.settings .preview_files .preview_files_container.preview_files_container label span,
section.settings .preview_files .preview_others_container.preview_files_container label span,
section.settings .preview_files .preview_download_type_container.preview_files_container label span,
section.settings .preview_others .preview_sizes_container.preview_files_container label span,
section.settings .preview_others .preview_files_container.preview_files_container label span,
section.settings .preview_others .preview_others_container.preview_files_container label span,
section.settings .preview_others .preview_download_type_container.preview_files_container label span,
section.settings .preview_download_type .preview_sizes_container.preview_files_container label span,
section.settings .preview_download_type .preview_files_container.preview_files_container label span,
section.settings .preview_download_type .preview_others_container.preview_files_container label span,
section.settings .preview_download_type .preview_download_type_container.preview_files_container label span {
  width: 160px;
}
section.settings .preview_name {
  display: block;
  margin-top: 32px;
}
section.settings .preview_name p {
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #642121;
  font-size: 24px;
}
section.settings .preview_name label {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  max-width: 512px;
}
section.settings .preview_name label input {
  display: block;
  width: auto;
  min-width: 128px;
  max-width: 100%;
  height: 44px;
  border: none;
  border-bottom: 1px solid #aaa;
  outline: none;
  background-color: transparent;
  padding-inline: 8px;
  box-sizing: border-box;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #212121;
  font-size: 18px;
  transition: border-color 0.2s ease, width 0.15s ease;
}
section.settings .preview_name label input:focus {
  border-color: #642121;
}
section.settings .preview_name label span {
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #aaa;
  font-size: 16px;
  padding-bottom: 4px;
  line-height: 1.3;
}
section.settings .preview_export {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 224px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  margin-top: 32px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.2s ease;
}
section.settings .preview_export svg {
  width: 30px;
  fill: #000;
  transition: all 0.2s ease;
}
section.settings .preview_export p {
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 18px;
  transition: all 0.2s ease;
}
section.settings .preview_export:hover {
  background-color: #000;
  border-color: #fff;
}
section.settings .preview_export:hover svg {
  fill: #fff;
}
section.settings .preview_export:hover p {
  color: #fff;
}
section.settings .preview_export:active {
  scale: 0.96;
}

section.export_pop {
  position: fixed;
  inset: 0;
  margin: auto;
  display: none;
  place-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2666666667);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
}
section.export_pop.active {
  display: grid;
}
section.export_pop.visible {
  opacity: 1;
}
section.export_pop.visible .export_pop_container {
  scale: 1;
}
section.export_pop .export_pop_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: min(100% - 2rem, 1120px);
  min-height: 200px;
  background-color: #fff;
  box-shadow: 0 0 28px -12px rgba(0, 0, 0, 0.4666666667);
  border-radius: 20px;
  padding: 24px;
  box-sizing: border-box;
  margin: auto;
  scale: 0.9;
  transition: all 0.2s ease;
}
section.export_pop .export_pop_container p.ttl {
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #212121;
  font-size: 24px;
}
section.export_pop .export_pop_container .export_pop_html {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-top: 24px;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container {
  width: calc(50% - 9px);
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container p {
  display: block;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #777;
  font-size: 16px;
  margin-block: 16px 4px;
  overflow: visible;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container p span {
  background-color: #282a2c;
  padding: 0 4px;
  margin-inline: 4px;
  color: #babdbc;
  font-family: "Roboto Mono", monospace;
  border-radius: 4px;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container p span::-moz-selection {
  background-color: rgba(255, 255, 255, 0.1333333333);
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container p span::selection {
  background-color: rgba(255, 255, 255, 0.1333333333);
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container .pre_header {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 36px;
  background-color: #1e1f20;
  border-bottom: 1px solid #555;
  border-radius: 8px 8px 0 0;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container .pre_header .pre_copy {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease, border-radius 0.2s ease;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container .pre_header .pre_copy svg {
  width: 20px;
  fill: #bcbfbe;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container .pre_header .pre_copy:hover {
  background-color: #393939;
  border-radius: 50%;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre {
  display: block;
  width: 100%;
  background-color: #1e1f20;
  padding: 8px 16px 0 16px;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 4px 4px;
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre::-moz-selection, section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre ::-moz-selection {
  background-color: rgba(255, 255, 255, 0.1333333333);
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre::selection, section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre ::selection {
  background-color: rgba(255, 255, 255, 0.1333333333);
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre code {
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  color: #bcbfbe;
  font-size: 16px;
  overflow: visible;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre.language-html .token.tag {
  color: #e06c75;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre.language-html .token.attr-name {
  color: #d19a66;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre.language-html .token.attr-value {
  color: #98c379;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre.language-js .token.property {
  color: #e06c75;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre.language-js .token.string {
  color: #98c379;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre.language-js .token.number {
  color: #d19a66;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre.language-js .token.boolean, section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre.language-js .token.null {
  color: #569cd6;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre.language-js .token.punctuation {
  color: #abb2bf;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre::-webkit-scrollbar {
  height: 8px;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre::-webkit-scrollbar-thumb {
  background-color: #777;
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: content-box;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}
section.export_pop .export_pop_container .export_pop_html .export_pop_html_container pre::-webkit-scrollbar-track {
  background-color: transparent;
}
section.export_pop .export_pop_container .export_close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 2rem, 220px);
  height: 36px;
  border: 1px solid #212121;
  border-radius: 8px;
  margin-top: 24px;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #212121;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, scale 0.15s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section.export_pop .export_pop_container .export_close:hover {
  background-color: #212121;
  color: #fff;
}
section.export_pop .export_pop_container .export_close:active {
  scale: 0.96;
}

footer {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100px;
  background-color: #346cba;
}
footer a {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100px;
  padding-inline: 24px;
}
footer a svg {
  fill: #fff;
  height: 36px;
}
footer a:hover svg {
  fill: rgba(255, 255, 255, 0.6666666667);
}
footer p {
  display: flex;
  align-items: end;
  justify-content: end;
  margin: auto 12px 12px auto;
  text-align: right;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6666666667);
  font-size: 16px;
}