@charset "UTF-8";
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

[v-cloak] {
  display: none;
}

.gas {
  text-align: center;
}

.header {
  margin-top: 20px;
  margin-bottom: 10px;
}
.header .logo {
  width: 320px;
  height: 80px;
  background-image: url("../img/mp3tube-logo.svg");
  background-size: 320px 80px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.header .doc {
  font-size: 0.9rem;
  color: #333;
  line-height: 150%;
  margin-top: 10px;
  margin-left: 8px;
  padding-right: 8px;
}

.convert {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.convert dl {
  background-color: #903;
  height: 88px;
  border-bottom: #fff 1px solid;
}
.convert dl dt {
  color: #fff;
  font-size: 0.9rem;
  height: 32px;
  margin-top: 8px;
  overflow: hidden;
  line-height: 32px;
  margin-left: 8px;
}
.convert dl dt .step {
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 10px;
}
.convert dl .join {
  background-image: url("../img/join-arrow.svg");
  background-size: 24px 20px;
  background-repeat: no-repeat;
  padding-left: 28px;
  background-position: 0px 2px;
}
.convert dl .join .inpput-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: bold;
  color: #333;
  background-color: #efefef;
  border: #ccc 2px solid;
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
  cursor: pointer;
}
.convert dl .join .inpput-label:hover {
  text-decoration: underline;
}
.convert dl .join .input-file[type=file] {
  display: none;
}
.convert dl .join .selected-file-name {
  padding-left: 5px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
}
.convert dl dd {
  height: 40px;
  margin-left: 8px;
}
.convert dl dd .form-item {
  height: 24px;
  font-size: 0.8rem;
}
.convert dl dd .button-reset {
  color: #333;
  background-color: #efefef;
  border: #ccc 2px solid;
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: 5px;
}
.convert dl dd .button-start {
  color: #000;
  font-weight: bold;
  background-color: #f1c40f;
  border: #f39c12 2px solid;
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
}
.convert dl dd .button-off {
  color: #999;
  background-color: #efefef;
  border: #ccc 2px solid;
  border-radius: 12px;
  padding-left: 12px;
  padding-right: 12px;
}

.execution {
  max-width: 832px;
  margin-left: auto;
  margin-right: auto;
  border-top: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
  margin-bottom: 10px;
  padding-top: 20px;
  padding-bottom: 10px;
}
.execution .loader-flex {
  position: relative;
}
.execution .loader-flex .process {
  position: absolute;
  color: #333;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.execution .loader-flex .process .num {
  letter-spacing: -0.05em;
  font-size: 3rem;
  font-weight: bold;
}
.execution .loader-flex .loading {
  display: flex;
  justify-content: center;
  height: 120px;
}
.execution .loader-flex .loading-css {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 0.8em solid #ccc;
  border-top-color: #36f;
  animation: spinner 1s linear infinite;
}
.execution .timer {
  display: block;
  color: #999;
  font-size: 0.8rem;
  text-align: center;
}
.execution .status {
  display: flex;
  flex-direction: column;
}
.execution .status .status-text {
  color: #36f;
  text-align: center;
  font-weight: bold;
}
.execution .status .convert-cancel {
  text-align: right;
  cursor: pointer;
}
.execution .status .convert-cancel .reset-button {
  color: #aaa;
  font-size: 0.8rem;
}
.execution .status .convert-cancel .reset-button:hover {
  color: #903;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.success {
  max-width: 832px;
  margin-left: auto;
  margin-right: auto;
  border-top: #903 1px solid;
  border-bottom: #903 1px solid;
  margin-bottom: 10px;
  padding-top: 24px;
  padding-bottom: 10px;
}
.success .download {
  margin-bottom: 20px;
  text-align: center;
}
.success .download .link {
  display: inline-block;
  background-color: #36f;
  color: #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 60px;
  padding-right: 24px;
  border-radius: 24px;
  font-size: 1.2rem;
  font-weight: bold;
  background-image: url("../img/blob-link-icon.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 24px;
}
.success .download .link:hover {
  background-color: #666;
}
.success .embed-player {
  text-align: center;
  margin-bottom: 10px;
}
.success .embed-player .player {
  width: 90%;
  max-width: 480px;
  background-color: #f5f5f5;
  background-image: url("../img/sound-only.svg");
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 40%;
  background-size: 360px 64px;
}

.unexpected {
  max-width: 832px;
  margin-left: auto;
  margin-right: auto;
  border-top: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
.unexpected .error {
  display: inline-block;
  background-color: #efefef;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 24px;
  font-weight: bold;
  color: #903;
}
.unexpected .mess {
  margin-top: 8px;
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.no-support {
  max-width: 832px;
  margin-left: auto;
  margin-right: auto;
  border-top: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
.no-support a {
  color: #36f;
  font-weight: bold;
}
.no-support .browser {
  display: inline-block;
  background-color: #f5f5f5;
  border: #903 2px solid;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 62px;
  padding-right: 24px;
  border-radius: 12px;
  font-weight: bold;
  color: #903;
  margin-left: 8px;
  margin-right: 8px;
  background-image: url("../img/attention-icon.svg");
  background-size: 32px;
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 16px;
}
.no-support .mess {
  margin-top: 8px;
  color: #666;
  font-size: 0.9rem;
}

.tips {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.tips dl dt {
  width: 320px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}
.tips dl dt span {
  display: block;
  background-size: 320px 120px;
  background-repeat: no-repeat;
  width: 320px;
  height: 120px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.tips dl dt .audio-to-video {
  background-image: url("../img/tips-autio-to-video.svg");
}
.tips dl dt .video-to-audio {
  background-image: url("../img/tips-video-to-audio.svg");
}
.tips dl .type {
  background-color: #efefef;
  text-align: center;
  margin-bottom: 8px;
  height: 32px;
  line-height: 32px;
  color: #333;
  text-shadow: 1px 1px 0px #fff;
  font-weight: 0.9rem;
  font-weight: bold;
}
.tips dl .info {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 8px;
  margin-left: 8px;
  margin-right: 8px;
}

.information {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  padding-left: 8px;
  padding-right: 8px;
  border-top: #efefef 1px solid;
  padding-top: 120px;
  background-image: url("../img/secure-dog.svg");
  background-size: 104px 96px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 16px;
}
.information .headline {
  font-size: 1rem;
  font-weight: bold;
  color: #111;
  background-image: url("../img/secure-mark-icon.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  padding-left: 32px;
  background-position-y: 2px;
  margin-bottom: 8px;
  min-height: 26px;
}
.information .descript {
  font-size: 0.85rem;
  color: #333;
}

.trash {
  margin-bottom: 10px;
  text-align: center;
}
.trash .link {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  color: #666;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 50px;
  padding-right: 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  background-image: url("../img/blob-trash-icon.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 18px;
  border: #ccc 1px solid;
}
.trash .link:hover {
  text-decoration: underline;
  color: #c00;
}

.footer .option-links {
  background-color: #f5f5f5;
  margin-bottom: 24px;
}
.footer .option-links .appstore {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.footer .option-links .appstore .link {
  display: block;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  height: 45px;
  background-size: auto 45px;
}
.footer .option-links .appstore .appstore-link-en {
  width: 136px;
  background-image: url("../img/appstore/appstore-icon-en.svg");
}
.footer .option-links .appstore .googleplay-link-en {
  width: 155px;
  background-image: url("../img/appstore/googleplay-icon-en.svg");
}
.footer .option-links .skin-download {
  border-top: #903 2px solid;
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer .option-links .skin-download .cc-link .creativecommons {
  display: block;
  width: 120px;
  height: 42px;
  background-image: url("../img/creativecommons.svg");
  background-size: 120px 42px;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
}
.footer .option-links .skin-download .stickers {
  padding-top: 16px;
  line-height: 135%;
  text-align: center;
}
.footer .option-links .skin-download .stickers p {
  font-size: 0.9rem;
  font-weight: bold;
  color: #903;
}
.footer .option-links .skin-download .stickers ul {
  color: #666;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
}
.footer .option-links .skin-download .stickers ul a {
  color: #333;
}
.footer .option-links .skin-download .stickers ul .twitter {
  background-image: url("../img/xlogo-icon.svg");
  background-repeat: no-repeat;
  min-height: 24px;
  padding-left: 18px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 1px 1px 0px #fff;
}
.footer .copy {
  padding-bottom: 8px;
}
.footer .copy .company {
  display: block;
  width: 248px;
  height: 64px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  background-image: url("../img/firewrench.svg");
  background-size: 248px 64px;
  background-repeat: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
}
.footer .copy .service-links {
  height: 24px;
  margin-bottom: 32px;
  padding: 0;
  line-height: 24px;
  text-align: center;
}
.footer .copy .service-links .li {
  display: inline;
  margin-right: 6px;
  padding-left: 10px;
  font-size: 0.85rem;
  list-style-type: none;
  border-left: 1px solid #999;
}
.footer .copy .service-links .li .link {
  color: #666;
  text-decoration: none;
}
.footer .copy .service-links .li:first-child {
  border: none;
}

@media screen and (min-width: 769px) {
  .gas {
    max-width: 832px;
    margin-left: auto;
    margin-right: auto;
  }
  .header {
    max-width: 832px;
    margin-left: auto;
    margin-right: auto;
  }
  .header .logo {
    width: 560px;
    height: 140px;
    background-size: 560px 140px;
    margin-left: auto;
    margin-right: auto;
  }
  .convert {
    flex-direction: row;
    max-width: 832px;
    margin-left: auto;
    margin-right: auto;
  }
  .convert dl:last-child {
    border-right: none;
  }
  .convert dl {
    height: 136px;
    padding-top: 16px;
    width: 33.3333333333%;
    border-right: #fff 1px solid;
  }
  .convert dl dt {
    height: auto;
    line-height: 24px;
  }
  .convert dl dt .step {
    display: block;
    font-size: 1.6rem;
  }
  .execution .status {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .execution .status p {
    width: 33%;
  }
  .tips {
    max-width: 832px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
  }
  .tips dl:last-child {
    margin-right: 0px;
  }
  .tips dl {
    margin-right: 8px;
    width: 50%;
  }
  .tips dl .type {
    border-radius: 5px;
  }
  .information {
    max-width: 832px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding-top: 16px;
    background-position-y: 16px;
    background-position-x: 24px;
    padding-left: 148px;
    min-height: 120px;
  }
  .footer {
    max-width: 832px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .option-links {
    display: flex;
  }
  .footer .option-links .appstore {
    width: 50%;
  }
  .footer .option-links .skin-download {
    border-top: none;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0px;
    border-left: #ccc 1px solid;
  }
  .footer .option-links .skin-download .stickers {
    padding: 0px;
  }
  .footer .option-links .skin-download .stickers p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #903;
  }
  .footer .option-links .skin-download .stickers ul {
    font-size: 0.85rem;
  }
}
.appstore-banner {
  display: block;
  width: 100%;
  background-color: #222;
  color: #f5f5f5;
  padding: 14px 16px;
  box-sizing: border-box;
  text-decoration: none;
}

.appstore-banner__inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.appstore-banner__top {
  display: flex;
  align-items: center;
  justify-content: center;
}

.appstore-banner__logo img {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.appstore-banner__text {
  flex: 1;
  margin: 0 18px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
}

.appstore-banner__note {
  margin: 14px auto 0;
  padding: 6px 14px;
  display: inline-block;
  border-radius: 999px;
  background-color: #ffcc33;
  color: #111;
  font-size: 0.9rem;
  font-weight: 700;
}

.appstore-banner__title {
  margin: 0 0 2px;
  font-size: 1rem;
  font-weight: 600;
}

.appstore-banner__description {
  margin: 0;
  opacity: 0.85;
}

.appstore-banner__button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.appstore-banner__store-icon {
  height: 56px;
  width: auto;
}

@media (max-width: 600px) {
  .appstore-banner {
    padding: 16px 10px;
  }
  .appstore-banner__logo img {
    height: 52px;
  }
  .appstore-banner__text {
    margin-right: 10px;
    font-size: 0.85rem;
  }
  .appstore-banner__note {
    margin-top: 12px;
    font-size: 0.9rem;
  }
  .appstore-banner__store-icon {
    height: 48px;
  }
}
.notfound {
  max-width: 832px;
  margin-left: auto;
  margin-right: auto;
  height: 200px;
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.notfound h1 {
  color: #333;
  font-size: 2.4rem;
  text-shadow: 1px 1px 0px #fff;
}
.notfound .home {
  background-color: #999;
  color: #fff;
  text-decoration: none;
  display: inline;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-radius: 24px;
}

.player {
  max-width: 640px;
  height: auto;
}

.button-start,
.button-reset,
.reset-button {
  cursor: pointer;
}

.button-start:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
