@charset "UTF-8";
/*------------------------------------------------------------
    Reset
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}
html {
  font-size: 62.5%;
  --hue: 50;
  --color-alpha: hsl(var(--hue), 100%, 50%);
  --color-dark: hsla(var(--hue), 3%, 15%, 0.75);
  --box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.025), 0 1px 5px rgba(0, 0, 0, 0.25);
}
body,
table,
input {
  font-family: inherit;
}
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}
table,
input,
textarea,
select,
option {
  line-height: 1.1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
img {
  vertical-align: top;
}
a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=80);
}
img {
  max-width: 100%;
}
.sp-only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}
body {
  background: #ebf0f3;
}
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fccd1e;
  padding: 29px 40px 20px 49px;
}
.c-header .c-header__logo img {
  width: 186px;
}
.c-header nav {
  width: 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  max-width: 323px;
}
.c-header .c-trial {
  color: #fff;
  background-color: #000;
  width: 160px;
  text-align: center;
  padding: 12px 0;
  border-radius: 3px;
}
.c-header .c-header__menu {
  width: 46px;
  height: 46px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: relative;
  cursor: pointer;
}
.c-header .menu {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  width: 46px;
  height: 46px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-header .menu::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-header .menu::after {
  content: "";
  position: absolute;
  width: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: 3px;
  background-color: #000;
  top: 29px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}
.l-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.l-container--977 {
  max-width: 977px;
  width: 100%;
  margin: 0 auto;
}
.sp-only {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .sp-only {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.c-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
}
.c-notice {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-align: center;
}
.c-subtitle {
  font-size: 2.4rem;
  letter-spacing: 0.14em;
  font-weight: 400;
  text-align: center;
  color: #fccd1e;
}
.title-wrapper {
  text-align: center;
  position: relative;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 2px auto 33px;
}
.title-wrapper::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  left: -50px;
  background: #fccd1e;
  -webkit-transform: rotate(68deg);
  transform: rotate(68deg);
  bottom: 9px;
}
.title-wrapper::before {
  content: "";
  position: absolute;
  width: 37px;
  height: 2px;
  background: #fccd1e;
  right: -44px;
  bottom: 13px;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.c-ssubtitle {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  color: #fccd1e;
}
.c-stitle {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.42em;
}
.c-slabel {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
}
.c-slabel span {
  font-size: 1.2rem;
  background-color: #333;
  color: #fff;
  line-height: 1;
  margin-left: 13px;
  border-radius: 2px;
  padding: 2px 2px 3px;
}
.c-actions {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-actions .c-btn2 {
  max-width: 273px;
  width: 100%;
  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;
  border: 1px solid #ccc;
  padding: 11px 0;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 30px;
  position: relative;
}
.c-actions .c-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 26px;
  height: 2px;
  background-color: #b3b3b3;
  right: 49px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.c-actions .c-arrow::before,
.c-actions .c-arrow::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  right: -4px;
  background-color: #b3b3b3;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.c-actions .c-arrow::before {
  top: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-actions .c-arrow::after {
  top: -5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-actions .c-back {
  background: #e6e6e6;
  color: #b3b3b3;
}
.c-actions .c-next {
  color: #fff;
  background: #a669ff;
  margin-top: 25px;
}
.c-actions .c-next .c-arrow {
  background-color: #fff;
}
.c-actions .c-next .c-arrow::before,
.c-actions .c-next .c-arrow::after {
  background-color: #fff;
}
.c-actions .c-save {
  width: 53px;
  margin-right: 30px;
}
.c-sActions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* Main
------------------------------------------------------------*/
.p-main {
  padding: 44px 20px 100px;
  background: #ebf0f3;
}
.p-main .c-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 39px;
}
.p-main .c-main__left {
  width: 51.1%;
}
.p-main .c-main__avt {
  background-color: #00a99d;
  border-radius: 25px;
  padding-top: 15px;
  padding-bottom: 32px;
  padding-right: 10px;
  padding-left: 10px;
}
.p-main .c-name {
  font-size: 40px;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
.p-main .c-avt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-main .c-avt__bg {
  background: url("../../assets/img/bear.svg") center no-repeat;
  width: 100%;
  height: 350px;
  margin-top: 5.7%;
  background-size: contain;
  z-index: 99999;
  position: relative;
}
.p-main .c-avt__img {
  position: absolute;
  max-width: 341px;
  top: 86px;
  width: 71.1%;
}
.p-main .c-main__right {
  width: 42.8%;
}
.p-main .c-btn {
  color: #a669ff;
  border: 1px solid #a669ff;
  border-radius: 20px;
  background-color: #e6e6e6;
}
.p-main .c-btn .c-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: #a669ff;
  left: 0;
}
.p-main .c-btn .c-arrow::before,
.p-main .c-btn .c-arrow::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  left: -4px;
  background-color: #a669ff;
}
.p-main .c-btn .c-arrow::before {
  top: 3px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-main .c-btn .c-arrow::after {
  top: -3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.p-main .c-btn1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100px;
  height: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  position: relative;
  padding-left: 17px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  margin-top: -10px;
}
.p-main .c-btn1 .c-arrow {
  width: 15px;
  height: 2px;
  background-color: #a669ff;
  left: 17px;
}
.p-main .c-inputpos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 28px;
}
.p-main .c-ninputpos {
  margin-top: 0;
}
.p-main .c-inputname {
  margin-top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.p-main .c-inputname input {
  border: 1px solid #29d3e2;
  border-radius: 5px;
}
.p-main .c-inputname input[type="text"] {
  width: 41.7%;
  font-size: 1.2rem;
  padding: 12px 10px;
}
.p-main .c-inputname input[type="text"]::-webkit-input-placeholder {
  color: #ccc;
}
.p-main .c-inputname input[type="text"]::-moz-placeholder {
  color: #ccc;
}
.p-main .c-inputname input[type="text"]:-ms-input-placeholder {
  color: #ccc;
}
.p-main .c-inputname input[type="text"]::-ms-input-placeholder {
  color: #ccc;
}
.p-main .c-inputname input[type="text"]::placeholder {
  color: #ccc;
}
.p-main .c-inputname input[type="file"] {
  background: transparent;
  color: transparent;
  display: inline-block;
  position: relative;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  max-height: 43px;
}
.p-main .c-inputname input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}
.p-main .c-inputname input[type="file"]::before {
  content: "写真を選択";
  display: inline-block;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  text-align: center;
  border-radius: 6px;
  color: #29d3e2;
  padding: 12px 0;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 1.6rem;
}
.p-main .c-inputname input[type="file"]:hover::before {
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #29d3e2;
}
.p-main .c-note {
  max-width: 228px;
  margin: 13px auto 0;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: 0.16em;
}
.p-main .c-range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 11px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-main .c-range .c-slabel {
  width: 22%;
}
.p-main .c-inputrange {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.p-main .c-inputrange input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 11px;
  border-radius: 5px;
  /* Set the track color here */
  background-color: #e6e6e6;
  outline: none;
  margin: 10px;
  cursor: pointer;
}
.p-main .c-inputrange input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  /* Set the thumb color here */
  background-color: #29d3e2;
  cursor: pointer;
  /* Adjust the thumb position */
  margin-top: 0;
  /* For a blue box shadow */
  -webkit-box-shadow: 3px 2px 5px 0 #aaafb0;
  transition: 0.4s;
  box-shadow: 3px 2px 5px 0 #aaafb0;
}
.p-main .c-inputrange input[type="range"]:disabled::-webkit-slider-thumb {
  background-color: #e6e6e6;
}

.p-main .c-inputrange input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  /* Set the thumb color here */
  border: 2px solid #e6e6e6;
  /* Set the thumb border color here */
  cursor: pointer;
}
.p-main .c-inputrange button {
  background: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  font-family: inherit;
}
.p-main .c-size img {
  width: 17px;
}
.p-main .c-pos img {
  width: 13px;
}
.p-main .c-rotate img {
  width: 15px;
}
.p-main .c-letterspacing img {
  width: 15px;
}
.p-main .c-wrap img {
  width: 16px;
}
.p-main .rotate-90-l {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.p-main .rotate-90-r {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.p-main .flip-y-axis {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.p-main .flip-x-axis {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.p-main .c-color__slider {
  --color: #29d3e2;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 24px;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-main .c-color__slider::-webkit-slider-runnable-track {
  border: 0;
  width: 100%;
  height: 10px;
  border-radius: 4px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#f00),
    color-stop(17%, #ff0),
    color-stop(33%, #0f0),
    color-stop(50%, #0ff),
    color-stop(67%, #00f),
    color-stop(83%, #f0f),
    to(#f00)
  );
  background: -webkit-linear-gradient(
    left,
    #f00 0%,
    #ff0 17%,
    #0f0 33%,
    #0ff 50%,
    #00f 67%,
    #f0f 83%,
    #f00 100%
  );
  background: linear-gradient(
    to right,
    #f00 0%,
    #ff0 17%,
    #0f0 33%,
    #0ff 50%,
    #00f 67%,
    #f0f 83%,
    #f00 100%
  );
}
.p-main .c-color__slider::-moz-range-track {
  border: 0;
  width: 100%;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    #f00 0%,
    #ff0 17%,
    #0f0 33%,
    #0ff 50%,
    #00f 67%,
    #f0f 83%,
    #f00 100%
  );
}
.p-main .c-color__slider::-ms-track {
  border: 0;
  width: 100%;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    #f00 0%,
    #ff0 17%,
    #0f0 33%,
    #0ff 50%,
    #00f 67%,
    #f0f 83%,
    #f00 100%
  );
}
.p-main .c-color__slider::-webkit-slider-thumb {
  margin-top: -3px;
  -webkit-appearance: none;
  appearance: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: var(--color);
  /* Set the thumb color here */
  cursor: pointer;
}
.p-main .c-display {
  position: relative;
  width: 100%;
  height: 111px;
}
.p-main .cursor {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: transparent;
  pointer-events: none;
  /* This ensures that the cursor doesn't capture mouse events, so clicks pass through to the backgroundContainer. */
  display: none;
}
.p-main .c-inputcolor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-main .c-inputcolor .c-slabel {
  width: fit-content;
}
.p-main .c-color {
  margin-top: 20px;
}
.p-main .colorpicker {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 25px;
}
.p-main .colorpicker .hue {
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, red),
    color-stop(17%, #ff0),
    color-stop(33%, #0f0),
    color-stop(50%, #0ff),
    color-stop(67%, #00f),
    color-stop(83%, #f0f),
    to(red)
  );
  background: -webkit-linear-gradient(
    left,
    red 0,
    #ff0 17%,
    #0f0 33%,
    #0ff 50%,
    #00f 67%,
    #f0f 83%,
    red
  );
  background: linear-gradient(
    to right,
    red 0,
    #ff0 17%,
    #0f0 33%,
    #0ff 50%,
    #00f 67%,
    #f0f 83%,
    red
  );
  height: 12px;
  position: relative;
  border-radius: 6px;
}
.p-main .colorpicker .hue .drag {
  --x: 0;
  --bg: #fff;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  left: var(--x);
  position: absolute;
  /* background: var(--bg); */
  cursor: pointer;
}
.p-main .colorpicker .field {
  --backgroundHue: 150;
  width: 100%;
  height: 80px;
  position: relative;
  background: hsl(var(--backgroundHue), 100%, 50%);
  margin-top: 18px;
}
.p-main .colorpicker .field .fieldOverlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(transparent),
      to(#000)
    ),
    -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
  background: -webkit-linear-gradient(top, transparent, #000),
    -webkit-linear-gradient(left, #fff, transparent);
  background: linear-gradient(to bottom, transparent, #000),
    linear-gradient(to right, #fff, transparent);
}
.p-main .colorpicker .field .fieldOverlay .drag {
  --x: 0;
  --y: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: -10px;
  top: -10px;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.8);
  -webkit-transform: translate(var(--x), var(--y));
  transform: translate(var(--x), var(--y));
}
.p-main .color {
  width: 40%;
  padding: 10px 0;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  border: 1px solid #e6e6e6;
  background: #f2f2f2;
  border-radius: 1px;
  text-transform: uppercase;
  text-align: center;
}
.p-main .c-input {
  position: relative;
}

.p-main .first-step .c-selectwrapper {
  margin-top: 20px;
}
.p-main .c-selectfont select {
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid #29d3e2;
  border-radius: 5px;
  font-size: 1.2rem;
  font-family: inherit;
  letter-spacing: 0.3em;
}
.p-main .c-selectfont {
  position: relative;
  margin-top: 7px;
}
.p-main .c-selectfont::before {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 13px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 9px solid #29d3e2;
}
.p-main .c-tabs ul {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 18px;
  margin-top: 25px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.p-main .c-stickerTabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 9px;
  margin-top: 25px;
  margin-bottom: 0;
  border: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.p-main .c-stickerTabs .c-stickerTab {
  width: 30%;
  max-width: 70px;
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 9px 0;
}
.p-main .c-stickerTabs .c-stickerTab img {
  width: 28px;
}
.p-main .c-stickerTabs .c-stickerTab.active {
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  border-top: 1px solid #fff;
  background-color: #29d3e2;
  border-right: 1px solid #fff;
  border-bottom: 0;
  border-left: 1px solid #fff;
}
.p-main .c-tab {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: #999;
  background: #e6e6e6;
  width: 30%;
  padding: 9px 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-main .c-tab.c-sticker {
  width: 47%;
}
.p-main .c-tab.active {
  background-color: #29d3e2;
  color: #fff;
  cursor: pointer;
}
.p-main .c-stickerContent {
  background: #fff;
  border: 1px solid #29d3e2;
  border-radius: 5px;
  padding: 22px 18px 0;
  max-height: 178px;
  overflow-y: auto;
}
.p-main .c-stickerContent::-webkit-scrollbar-track {
  border-radius: 10px;
  margin-right: 5px;
  background-color: transparent;
}
.p-main .c-stickerContent::-webkit-scrollbar {
  margin-right: 5px;
  width: 19px;
}
.p-main .c-stickerContent::-webkit-scrollbar-thumb {
  border-radius: 10px;
  margin-right: 5px;
  border: 3px solid #fff;
  background-color: #b3b3b3;
}
.p-main .c-stickerContent .c-stickerList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-main .c-stickerContent .c-stickerList img {
  width: 28px;
}
.p-main .c-stickerContent .icon {
  margin-bottom: 24px;
  width: 14.25%;
  text-align: center;
}
.p-main .switch {
  position: relative;
  display: inline-block;
  background-color: #e6e6e6;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  width: 47px;
  height: 24px;
  border-radius: 12px;
}
.p-main .switch input {
  display: none;
}
.p-main .switch input:checked + div {
  left: 27px;
  -webkit-box-shadow: 0 0 0 white;
  box-shadow: 0 0 0 white;
}
.p-main .switch div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  top: 4px;
  left: 5px;
  -webkit-box-shadow: 0 0 1px rgb(150, 150, 150);
  box-shadow: 0 0 1px rgb(150, 150, 150);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-main .switch div::before,
.p-main .switch div::after {
  position: absolute;
  content: "ON";
  width: 21px;
  height: 15px;
  font-size: 0.9rem;
  top: 1px;
}
.p-main .switch div::before {
  content: "OFF";
  color: #fff;
  left: 122%;
  top: 1px;
}
.p-main .switch div::after {
  content: "ON";
  right: 100%;
  color: #fff;
}
.p-main .switch-checked {
  background-color: #29d3e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.p-main .c-stroke img {
  width: 17px;
}
.p-main .c-inputrange.c-stroke {
  max-width: 243px;
  margin-left: 15px;
}
.p-main .c-inputrange.c-stroke:disabled::-webkit-slider-thumb {
  background-color: #3b3b3b;
}
.c-btn3 {
  background: #fff;
  border: 1px solid #29d3e2;
  color: #29d3e2;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-btn3:hover {
  color: #fff;
  background: #29d3e2;
}
.c-sPicker {
  margin-top: 25px;
}
.c-reset {
  width: 100%;
  max-width: 300px;
  height: 40px;
}
.c-undo {
  width: 50%;
  max-width: 200px;
  height: 40px;
  margin-top: 25px;
}
.c-copy {
  width: 50%;
  max-width: 200px;
  height: 40px;
  margin-top: 25px;
}
/* Edit
------------------------------------------------------------*/
.c-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* Progress
------------------------------------------------------------*/
.progress-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  max-width: 100%;
  width: 858px;
  margin: 56px auto 75px;
}
.progress-container::before {
  content: "";
  background-color: #d9d9d9;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
}
.progress {
  background-color: #fccd1e;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 4px;
  width: 0%;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.circle {
  background: #fff;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  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;
  border: 6px solid #d9d9d9;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  z-index: 1;
}
.circle.active {
  border-color: #fccd1e;
  background-color: #fff;
  scale: 1.43;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle.active::after {
  content: "";
  height: 13px;
  border-radius: 50%;
  display: block;
  background: #fccd1e;
  width: 13px;
}
.circle.activated {
  border-color: #fccd1e;
  background-color: #fff;
  scale: 1.43;
  position: relative;
}
.circle .icon {
  position: absolute;
  font-size: 25px;
  bottom: 25px;
}
.circle-wrapper {
  position: relative;
}
.circle-wrapper span {
  position: absolute;
  top: -54px;
  left: -15px;
  width: 66px;
  text-align: center;
  height: 33px;
  line-height: 1.3;
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
}
.circle .caption {
  position: absolute;
  font-size: 1.3rem;
  font-weight: 700;
  top: -30px;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
.li-wrap {
  display: flex;
  align-self: center;
  justify-content: center;
  width: 100%;
}
.c-sp {
  display: none;
}
.border-0 {
  border: 0px !important;
}
.cls-1.color {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3px;
}
.cls-1.wordspace {
  font-size: 39px;
  font-weight: 500;
}

.cls-1.wordspace,
.cls-1.bukurotext {
  fill: #fff;
}
.cls-2.wordspace {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
.cls-2.bukurotext {
  font-size: 59.54px;
  font-weight: 700;
}
.cls-1.warpon {
  fill: #fff;
}
.cls-2.warpon {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 3px;
}
.el-colorpicker {
  width: 100%;
  background: transparent;
}
.el-cp-palette {
  height: 80px;
}
.el-cp-slider__circle {
  box-shadow: none;
  cursor: pointer;
  border: 2px solid rgb(255, 255, 255);
  width: 16px;
  height: 16px;
  background-color: var(--palette-bg);
}
.el-cp-palette__pointer {
  cursor: pointer;
  box-shadow: none;
  border: 2px solid rgb(255, 255, 255);
  width: 16px;
  height: 16px;
}
.p-nigaoe .face-icon {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  align-items: center;
}
.p-nigaoe .tab-icon.active .cls-1 {
  fill: #534741;
}
.p-nigaoe .face-icon .cls-1 {
  fill: #999;
}
@media screen and (max-width: 960px) {
  .p-main .c-avt__img {
    position: absolute;
    top: 77px;
    width: 70.5%;
  }
}
@media screen and (max-width: 850px) {
  .p-main .c-avt__img {
    position: absolute;
    top: 73px;
    width: 69.1%;
  }
}
@media screen and (max-width: 1024px) {
  .c-header nav {
    width: 49%;
  }
}
.p-main .c-tab.wrap {
  display: none;
}
.c-back__holder {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-nigaoe .face-icon .cls-1 {
    fill: #fff;
  }
  .p-nigaoe .tab-icon.active .cls-1 {
    fill: #000;
  }
  .p-nigaoe .tab-icon.active .face-icon {
    color: #000;
  }
  .p-nigaoe .face-icon {
    height: 30px;
    align-items: center;
    justify-content: center;
    height: 30px;
  }
  .p-nigaoe .face-icon span {
    margin-top: auto;
  }

  .c-back__holder {
    display: block;
    width: 80px;
  }
  .p-main .c-range.pc-only {
    display: none;
  }
  .p-main .c-main {
    flex-direction: column;
    max-width: 499px;
    margin: auto;
  }
  .p-main .c-main__right,
  .p-main .c-main__left {
    width: 100%;
    text-align: center;
  }
  .p-main .c-tab.wrap {
    display: flex;
  }
  .li-sp .icon.bukurotext {
    width: 21px;
  }
  .p-main .c-tab.wrap .icon {
    width: 25px;
  }
  .p-main .c-main__left {
    margin-bottom: 10px;
  }
  .p-main .first-step .c-main__left {
    max-width: 250px;
    margin: 0 auto 10px;
  }
  .p-main {
    padding: 20px;
  }
  .p-main .c-tabs .spbar {
    position: fixed;
    bottom: 0px;
    left: 0px;
    display: flex;
    background-color: transparent;
    width: 100%;
    margin-bottom: 0px;
    z-index: 9999;
    padding: 0px;
    border-bottom: 1px solid #ccc;
  }
  .p-main .c-tabs .spbar.step-name,
  .p-main .c-tabs .spbar.step-stamp {
    background-color: #000;
  }
  .progress-container {
    display: none;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .p-main .c-tab.active {
    background-color: #fccd1e;
    color: #000;
  }
  .p-main .c-tab.active .cls-1.color,
  .p-main .c-tab.active .cls-2.wordspace,
  .p-main .c-tab.active .cls-2.warpon {
    stroke: #000;
  }
  .p-main .c-tab.active .cls-1.wordspace,
  .p-main .c-tab.active .cls-2.wordspace,
  .p-main .c-tab.active .cls-1.warpon,
  .p-main .c-tab.active .cls-1.bukurotext {
    fill: #000;
  }
  .p-main .c-tab.active .cls-2.bukurotext {
    fill: #fff;
  }
  .li-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 12px;
  }
  .li-sp span {
    margin-top: auto;
  }
  .icon-wrap {
    font-size: 12px;
    display: flex;
    align-items: center;
    height: 30px;
  }
  .li-sp .icon {
    width: 23px;
    margin-bottom: 0px;
  }
  .li-sp .icon.warpon {
    margin-bottom: 10px;
  }
  .p-main .c-tab {
    background-color: transparent;
    color: #fff;
  }
  .c-actions__sp {
    margin-top: 0px;
    border-radius: 0px;
    width: 150px;
  }
  .c-actions__sp .c-btn2 {
    border-radius: 0px;
    font-size: 12px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .c-actions__sp .c-arrow {
    top: 30%;
    width: 40px;
    right: unset;
  }
  .p-main .c-tab.c-sticker {
    width: 100%;
  }

  .p-main .c-main__right {
    padding-bottom: 90px;
    margin-top: -30px;
  }

  .p-main .first-step .c-main__right {
    margin-top: 0px;
  }
  .c-undo {
    margin-right: 10px;
  }
  .p-main .c-name {
    font-size: 3rem;
  }
  .p-main .c-avt__bg {
    height: 220px;
  }
  .c-title,
  .c-subtitle {
    display: none;
  }
  .c-header nav {
    width: auto;
  }
  .c-header .c-header__logo img {
    width: 140px;
  }
  .c-header {
    justify-content: space-between;
    align-items: center;
  }

  .c-header {
    padding: 10px 20px;
    position: relative;
  }
  .c-header nav {
    transform: none;
  }
  .p-main .c-btn1 {
    position: absolute;
    top: 57px;
    left: 20px;
    width: 80px;
    font-size: 12px;
    height: 30px;
  }
  .p-main .c-stickerContent {
    max-height: 115px;
  }
  .p-main .c-tab {
    width: 100%;
    font-size: 12px;
    padding: 0;
  }
  .c-slabel {
    font-size: 14px;
  }
  .p-main .c-selectfont select {
    margin-bottom: 10px;
  }
  .c-pc {
    display: none;
  }
  .p-main .c-selectfont::before {
    bottom: 21px;
  }
  .c-btn3 {
    font-size: 14px;
  }
  .p-main .c-tabs .spbar-single {
    min-height: 48px;
    justify-content: flex-end;
  }
  .c-actions__sp .c-btn2 {
    width: 100px;
    max-height: 72px;
    right: 0px;
  }
  .c-actions__sp {
    width: 100px;
  }
  .p-main .colorpicker {
    margin-top: 10px;
  }
  .c-sp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0px;
  }
  .c-sp .c-save {
    width: 30px;
  }
  .p-main .c-avt__img {
    position: absolute;
    max-width: 215px;
    top: 63px;
    width: 68%;
  }
  .c-stitle {
    font-size: 1.5rem;
  }
  .title-wrapper {
    margin-bottom: 15px;
  }
  .p-main .c-main__avt {
    max-width: 335px;
    margin: auto;
  }
  .title-wrapper::before {
    right: -34px;
  }
  .title-wrapper::after {
    left: -40px;
  }
  .c-actions .c-save {
    margin-right: 0;
    transform: translate(8px, 19px);
  }
  .p-main .c-inputcolor .c-slabel {
    width: 28%;
  }
}
@media screen and (max-width: 355px) {
  .p-main .c-avt__img {
    top: 57px;
  }
}

@media screen and (max-width: 329px) {
  .p-main .c-avt__img {
    top: 54px;
  }
}
