@charset "UTF-8";
/* Box sizing rules */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding n margin */
html, body, div, p, span, q, h1, h2, h3, h4, h5, h6, img,
dl, dt, dd, blockquote, ul, ol, li,
footer, header, hgroup, menu, nav, section, summary,
article, aside, canvas, details, figcaption, figure {
  margin: 0;
  padding: 0;
}

/* Set body default */
html {
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

/* Remove default list style from element with a class attribute */
ul {
  list-style: none;
}

/* Remove a default style */
a {
  text-decoration: none;
}

/* Set images normalized style */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* clearfix */
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==================== Breakpoint Setting ==================== */
/* BreakPoint
* desktop :      980 -     (1024 x 550)
* tablet :  481 - 979 (768 x 1024)
*/
/* ===== Base Setting ===== */
body {
  font-size: 1.6rem;
  font-family: "Century Gothic", CenturyGothic, "Helvetica Neue", HelveticaNeue, "メイリオ", Meiryo, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Sogoe UI", Verdana, sans-serif;
  color: #666666;
  background-color: #ffffff;
}

/* ===== Layout Setting ===== */
#container {
  position: relative;
  min-height: 100vh;
}

#container header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}

#container main {
  position: relative;
}

#container main article {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 140px;
}

#container footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px 10px;
}

@media screen and (min-width: 960px) {
  #container main {
    margin-top: -80px;
  }
  #container main aside, #container main article {
    width: 50%;
    padding: 180px 25px 100px;
  }
  #container main aside {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
    float: left;
    background: #f5f5f5;
  }
  #container main article {
    float: right;
  }
  #container main::after {
    content: "";
    display: block;
    clear: both;
    overflow: hidden;
    z-index: -1;
  }
}

/* ===== Header Design ===== */
header {
  height: 80px;
}

header h1 {
  position: absolute;
  left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

header .hamburger {
  position: absolute;
  z-index: 101;
  right: 5%;
  width: 40px;
  height: 40px;
  margin: 20px 0;
}

header .hamburger span {
  position: absolute;
  right: 0;
  display: block;
  height: 1px;
  background: #666666;
}

header .hamburger span:nth-child(1) {
  top: 14px;
  width: 15px;
}

header .hamburger span:nth-child(2) {
  top: 29px;
  width: 25px;
}

header nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.75s ease-in-out;
  transition: opacity 0.75s ease-in-out;
}

header nav ul {
  max-width: 400px;
  line-height: 3.0rem;
  text-align: center;
  line-height: 4rem;
}

.js-stickyHeader {
  background: rgba(255, 255, 255, 0.8);
}

.active .hamburger span {
  width: 30px !important;
}

.active .hamburger span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 20px;
}

.active .hamburger span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 20px;
}

.active nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 1;
}

@media screen and (min-width: 960px) {
  header .hamburger {
    display: none;
  }
  header nav {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    right: 5%;
    height: 100%;
    opacity: 1;
  }
  header nav ul:not([class]) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header nav ul:not([class]) li {
    padding: 0 15px;
    border-top: solid 2px rgba(255, 255, 255, 0);
    border-bottom: solid 2px rgba(255, 255, 255, 0);
  }
  header nav ul:not([class]) li:hover {
    border-top: solid 2px #00ffba;
    border-bottom: solid 2px #00ffba;
  }
}

/* ===== Tutorial Design ===== */
aside h2, aside nav {
  display: none;
}

aside .menuButton {
  position: fixed;
  bottom: 5%;
  right: 5%;
  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;
  width: 85px;
  height: 85px;
  border-radius: 42px;
  background: rgba(102, 102, 102, 0.8);
  color: #ffffff;
}

aside.active {
  position: fixed;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

aside.active h2 {
  display: block;
}

aside.active nav {
  display: block;
  height: auto;
  background: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

aside.active nav ol {
  list-style: none;
  line-height: 2.5;
  text-align: center;
}

@media screen and (min-width: 960px) {
  aside h2, aside nav {
    display: block;
  }
  aside .menuButton {
    display: none;
  }
}

/* ===== Footer Design ===== */
footer {
  background: #666666;
  color: #ffffff;
  text-align: right;
}

/* ===== Pagenation Design ===== */
#pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#pagenation ul #prePage::before {
  content: '\0ab';
  margin-right: 5px;
}

#pagenation ul #nextPage {
  text-align: right;
}

#pagenation ul #nextPage::after {
  content: '\0bb';
  margin-left: 5px;
}

#pagenation ul a {
  text-decoration: underline;
}

#pagenation ul a:hover {
  text-decoration: none;
}

h1 {
  font-size: 2.1rem;
}

h2 {
  font-size: 2.4rem;
  padding: 25px 0;
  width: 100%;
  text-align: center;
}

h3 {
  font-size: 2.4rem;
  margin-bottom: 2em;
}

h4 {
  font-size: 1.8rem;
  font-weight: normal;
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  padding: 15px 0;
  margin-bottom: 1em;
}

h5 {
  font-size: 1.8rem;
  margin: 2em 0 0.5rem;
}

h6 {
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}

a {
  color: #666666;
}

a:visited {
  color: #666666;
}

.textLink {
  text-decoration: underline;
  word-break: break-all;
}

.textLink:hover {
  text-decoration: none;
}

.linkRight {
  text-align: right;
}

.linkRight::after {
  content: '\0bb';
  padding-left: 5px;
}

section {
  margin-bottom: 5em;
}

section:last-child {
  margin-bottom: 0;
}

section p, section ul, section ol, section dl {
  margin-bottom: 1.5em;
}

section p img, section ul img, section ol img, section dl img {
  margin-bottom: 0.7em;
  border: solid 1px #cccccc;
}

section ul:not([class]), section ol:not([class]) {
  margin-left: 1em;
}

section ul:not([class]) li > ul, section ul:not([class]) ol, section ol:not([class]) li > ul, section ol:not([class]) ol {
  margin-bottom: 0;
}

section ul:not([class]) li {
  text-indent: -1.2em;
  margin-left: 0.2em;
}

section ul:not([class]) li::before {
  content: '＊';
  margin-right: 0.2em;
}

section ol > li ol {
  list-style-type: lower-latin;
}

.note {
  font-size: 1.2rem;
  color: #cccccc;
}

.point {
  margin-top: 5em;
  background-color: #f5f5f5;
  border-radius: 25px;
  padding: 25px 15px;
}

.point dt {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #cccccc;
}

.point dd ul {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.definition dt::after {
  content: '：';
}

.definition dd {
  padding: 0 0 0 1em;
}

.capture {
  margin: 0 0 1.5em 0;
}

.capture img {
  border: solid 1px #cccccc;
  cursor: pointer;
}

.capture p {
  margin: 0;
  font-size: 1.2rem;
  color: #cccccc;
}

.youtube {
  position: relative;
  margin: 0 0 15px 0;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

@media screen and (min-width: 481px) {
  .youtube {
    margin: 0 0 36px 0;
  }
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.niconico {
  position: relative;
  width: 720px;
  height: 0;
  max-width: 100%;
  padding-bottom: 66.7%;
  margin: 0 auto 2rem;
}

.niconico iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal {
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.75);
}

.modal p {
  display: none;
}

.aspectRatio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 250px;
}

.aspectRatio dl dt {
  font-weight: bold;
}

.aspectRatio dl dd .screenSizeList {
  margin: 0 0 0 1em;
}

#info ul li {
  line-height: 3;
  border-top: dashed 1px #cccccc;
  padding: 0 0.5em;
}

#info ul li:hover {
  background-color: rgba(245, 245, 245, 0.25);
  font-weight: bold;
}

#info ul li a {
  display: block;
}

#info ul li span {
  margin-right: 1.5em;
}

.red {
  color: #B30000;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

/* ========== Base Design ========== */
form {
  margin: 3em 0;
  font-size: 1.4rem;
}

form dl {
  max-width: 440px;
  padding: 1.5em 1em;
  background-color: #f5f5f5;
  border-radius: 25px;
}

form dl dt {
  font-weight: bold;
}

form dl dd {
  margin-bottom: 0.5em;
}

label input {
  display: none;
}

input {
  outline: none;
}

input::-webkit-input-placeholder {
  color: #cccccc;
}

input:-ms-input-placeholder {
  color: #cccccc;
}

input::-ms-input-placeholder {
  color: #cccccc;
}

input::placeholder {
  color: #cccccc;
}

/* ========== Parts Design ========== */
#file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#file p {
  margin: 0;
  padding: 7px;
  width: 150px;
  text-align: center;
  border-radius: 20.5px;
  border: solid 3px #f5f5f5;
  background-color: #ffffff;
}

#file p:hover {
  border: solid 3px #ffffff;
  background-color: #f5f5f5;
}

#file span {
  font-size: 1.2rem;
  margin-left: 1em;
}

#option ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#option ul li {
  padding: 3.5px 0;
}

#option ul li:last-child {
  padding: 0;
}

@media screen and (min-width: 481px) {
  #option ul li:last-child {
    padding: 3.5px 0;
  }
}

#option span {
  position: relative;
  padding: 0 0 0 25px;
}

#option span::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-color: #ffffff;
}

#option .inputCheckbox:checked + span::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 7px;
  display: block;
  width: 10px;
  height: 20px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: solid 5px #666666;
  border-right: solid 5px #666666;
  z-index: 2;
}

#option #originalPath {
  padding: 5px 10px;
  width: 200px;
  border: none;
  border-radius: 5px;
}

@media screen and (min-width: 481px) {
  #option #originalPath {
    margin-top: 10px;
  }
}

#upload {
  color: #ffffff;
  font-size: 1.6rem;
  padding: 5px 45px;
  border-radius: 32px;
  background-color: #00ffba;
  border: solid 5px #00ffba;
}

#upload:disabled {
  -webkit-filter: opacity(25%) saturate(20%);
          filter: opacity(25%) saturate(20%);
}
/*# sourceMappingURL=style.css.map */