body {
  background-color: #fff;
}
header {
  background-color: #006298;
}
header img {
  width: 100%;
}
.sp {
  display: block;
}
.pc {
  display: none;
}
.mv {
  width: 100%;
}
.wrapper {
  max-width: 750px;
  margin: 0 auto;
}

/* index.html */
.form-content,
.share-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 25px 48px;
}
.form h2 {
  width: 72.5%;
  max-width: 470px;
  margin: 0 auto;
  padding-top: 30px;
}
.form-list-deco {
  width: 4%;
}
.form-list-q {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 30px;
  padding-bottom: 12px;
  font-weight: bold;
}
.form-list-q span {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  background-color: #f1aaca;
  border-radius: 10px;
  padding: 3px 10px 4px;
}

/* 注記 */
.form-list-note {
  margin-top: 8px;
  font-size: 12px;
  color: #808080;
}

/* 推し選手画像アップロード */
input[type='file'] {
  display: none;
}
.form-input {
  display: flex;
  width: 75%;
  height: 43px;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  color: #333;
  cursor: pointer;
}
.form-input .form-icon {
  width: 43px;
  height: 41px;
  position: absolute;
  top: 0px;
  right: 0%;
  display: block;
  background-color: #ccc;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background-image: url('../img/upload-icon.png');
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: right 13px center;
  pointer-events: none;
}
.form-input p {
  padding-top: 12px;
  padding-left: 10px;
  font-size: 14px;
}
/* 推し選手画像プレビュー部分 */
.form-preview {
  padding-bottom: 20px;
}
.form-preview img {
  width: 100px;
}

/* タイトル部分 */
.form-ttl img {
  width: auto;
  height: 100%;
}
.form-ttl {
  margin: 60px auto 0;
  width: auto;
  height: 42px;
}
.l .form-ttl {
  margin: 120px auto 0;
  height: 85px;
}

.form-preview-btn {
  width: 52.5%;
}
.form-list-comment {
  letter-spacing: -1.5px;
}

/* share */
.share-content {
  position: relative;
}
.share-fixes-btn {
  width: 45.4%;
}
.share-img {
  margin: 0 auto;
  padding-top: 47px;
}
/* キャラクター */
.share-deco1 {
  width: 15.8%;
  position: absolute;
  top: 109px;
  left: 16px;
}
.share-deco2 {
  width: 14%;
  position: absolute;
  bottom: 39px;
  right: 16px;
}
/* シェアボタン */
.share-btn {
  width: 16%;
}
.share-btn._download {
  position: absolute;
  bottom: 19%;
  right: 31%;
}
.share-btn._x {
  position: absolute;
  bottom: 19%;
  left: 32%;
}

/*****************
 * ローディング
*****************/
.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999;
}
.c-loadingIcon {
  --uib-size: 40px;
  --uib-color: #006298;
  --uib-speed: 2s;
  --uib-bg-opacity: 0;
  height: var(--uib-size);
  width: var(--uib-size);
  transform-origin: center;
  animation: rotate var(--uib-speed) linear infinite;
  will-change: transform;
  overflow: visible;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-loadingTrack {
  fill: none;
  stroke: var(--uib-color);
  opacity: var(--uib-bg-opacity);
  transition: stroke 0.5s ease;
}
.c-loadingCar {
  fill: none;
  stroke: var(--uib-color);
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: stretch calc(var(--uib-speed) * 0.75) ease-in-out infinite;
  will-change: stroke-dasharray, stroke-dashoffset;
  transition: stroke 0.5s ease;
}

@keyframes rotate {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes stretch {
  0% {
    stroke-dasharray: 0, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 75, 150;
    stroke-dashoffset: -25;
  }
  100% {
    stroke-dashoffset: -100;
  }
}

@media screen and (750px < width) {
  header img {
    width: min(46.5vw, 750px);
    margin: 0 auto;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  .mv {
    max-width: 1440px;
    margin: 0 auto;
  }
}
