@charset "utf-8";

section {
  width: auto;
  margin-left: 20px;
  margin-right: 20px;
}

section b {
  font-weight: bold;
  color: blue;
  margin-right: 5px;
}

p {
  font-size: 14px;
}

.customers-voice {
  background-color: #FFC;
  display: block;
  padding: 30px;
  box-shadow: 2px 2px 1px dimgray;
  border-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
}

.shop-response {
  background-color: #CFF;
  display: block;
  padding: 30px;
  box-shadow: 3px 3px 1px dimgray;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-navi {
  font-size: 16px;
  display: block;
  text-align: right;
  margin-top: -40px;
  margin-bottom: 20px;
}

.page-navi:hover {
  color: red;
}

.general-view {
  margin: 0px;
  margin-right: 20px;
  margin-left: 20px;
  float: left;
  width: 300px;
}

.general-view-alt {
  margin: auto;
  display: block;
  width: 60%;
}

.instrument-name {
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  border-bottom: solid 3px #CC9999;
  font-size: 20px;
  margin-bottom: 10px;
  clear: none;
  margin-top: auto;
}

.outline {
  padding-left: 50px;
  padding-right: 50px;
}

.repair-menu {
  height: 30px;
  margin-left: 20px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  border-bottom: solid 3px #CC9999;
  font-size: 18px;
  margin-bottom: 10px;
  clear: none;
  margin-top: auto;
}

.repair-menu-sub {
  font-size: 14px;
  clear: both;
  color: whitesmoke;
  background-color: #339933;
  margin-top: 20px;
  padding-left: 40px;
  border-bottom: 10px;
  border-radius: 5px;
  margin-left: 20px;
  margin-right: 20px;
}

.step-picture-list {
  width: auto;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 320px);
  column-gap: 40px;
  row-gap: 30px;
  justify-content: center;
}

.step-picture-list li {
  width: 300px;
  position: relative;
  margin-top: -10px;
  margin-bottom: -10px;
}

.step-picture-list li,
ol {
  list-style-type: none;
}

.step-picture-list dd {
  font-size: 12px;
  line-height: 14px;
}

.step-movie-list {
  width: auto;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 400px);
  column-gap: 40px;
  row-gap: 30px;
  justify-content: center;
}

.step-movie-list li {
  position: relative;
}

.step-movie-list li,
ol {
  list-style-type: none;
}

.step-movie-list dd {
  font-size: 12px;
  line-height: 14px;
}

.movie {
  width: 400px;
  max-width: 90%;
  background-color: #f8f8f8;
  box-shadow: 2px 2px 1px dimgray;
  padding: 10px 10px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

.step-movie-list iframe {
  display: block;
  width: 100%;
  height: 190px;
  /* magic number */
  margin-top: 5px;
}

.step-movie-list dd {
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
  text-align: center;
}

@media screen and (width >=1100px) {
  .step-picture-list li {
    width: 400px;
    position: relative;
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .step-picture-list {
    width: auto;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 450px);
    column-gap: 40px;
    row-gap: 30px;
    justify-content: center;
  }

  .step-movie-list {
    width: auto;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 500px);
    column-gap: 40px;
    row-gap: 30px;
    justify-content: center;
  }

  .step-movie-list iframe {
    display: block;
    width: 100%;
    height: 210px;
    /* magic number */
    margin-top: 5px;
  }
}

@media screen and (width >=1500px) {
  .step-picture-list li {
    width: 500px;
    position: relative;
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .step-picture-list {
    width: auto;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 500px);
    column-gap: 40px;
    row-gap: 30px;
    justify-content: center;
  }

  .general-view {
    margin: 0px;
    margin-right: 20px;
    margin-left: 20px;
    float: left;
    width: 400px;
  }
}

@media screen and (width <=800px) {
  section {
    width: auto;
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 10px;
    padding-right: 10px;
  }

  p {
    font-size: 12px;
  }

  .customers-voice {
    background-color: #FFC;
    display: block;
    padding: 20px;
    box-shadow: 2px 2px 1px dimgray;
    border-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .shop-response {
    background-color: #CFF;
    display: block;
    padding: 20px;
    box-shadow: 3px 3px 1px dimgray;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .page-navi {
    font-size: 14px;
    display: block;
    text-align: right;
    margin-top: -40px;
    margin-bottom: 20px;
  }

  .outline {
    padding-left: 10px;
    padding-right: 10px;
  }

  .general-view {
    margin: 0px;
    margin-right: 10px;
    margin-left: 5px;
    float: left;
    width: 100px;
  }

  .general-view-alt {
    margin: auto;
    display: block;
    width: 300px;
  }

  .instrument-name {
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    border-bottom: solid 3px #CC9999;
    font-size: 16px;
    margin-bottom: 10px;
    clear: none;
    margin-top: auto;
  }

  .repair-menu {
    height: 30px;
    margin-left: 10px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    border-bottom: solid 3px #CC9999;
    font-size: 16px;
    margin-bottom: 10px;
    clear: none;
    margin-top: auto;
  }

  .repair-menu-sub {
    font-size: 12px;
    clear: both;
    color: whitesmoke;
    background-color: #339933;
    margin-top: 20px;
    padding-left: 20px;
    border-bottom: 10px;
    border-radius: 5px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .step-movie-list {
    width: auto;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    column-gap: 40px;
    row-gap: 20px;
    justify-content: center;
  }

  .step-movie-list li {
    position: relative;
  }

  .step-movie-list li,
  ol {
    list-style-type: none;
  }

  .step-movie-list dd {
    font-size: 12px;
    line-height: 14px;
  }

  .movie {
    width: 300px;
    max-width: 90%;
    background-color: #f8f8f8;
    box-shadow: 2px 2px 1px dimgray;
    padding: 10px 10px;
    margin-top: 10px;
    justify-content: center;
  }

  .step-movie-list iframe {
    display: block;
    width: 100%;
    height: 170px;
    /* magic number */
    margin-top: 5px;
    justify-content: center;
  }

  .step-movie-list dd {
    font-size: 12px;
    line-height: 18px;
    margin-top: 5px;
    text-align: center;
  }

  .step-picture-list {
    width: auto;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, 320px);
    column-gap: 40px;
    row-gap: 30px;
    justify-content: center;
  }

  .step-picture-list li {
    position: relative;
    margin-top: -10px;
    margin-bottom: -10px;
  }

  .step-picture-list li,
  ol {
    list-style-type: none;
  }

  .step-picture-list dd {
    font-size: 12px;
    line-height: 14px;
  }
}