@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

:root {
  --main-bg-color: #222;
  --main-font-color: #fff;
  --template-color: #FFF100;
}

body {
  background: #eee;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 992pxpx) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 992pxpx) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 992pxpx) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 992pxpx) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 992pxpx) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

h1 {
  display: block;
  font-size: 2em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}

h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}

h3 {
  display: block;
  font-size: 1.17em;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  display: none;
}

/* フォームリセット */
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

#content {
  width: 90%;
  max-width: none;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 30px;
}

.wrapper * {
  font-size: 16px;
  font-family: "Verdana", sans-serif;
}

.aside {
  padding: 0 20px;
  padding: 0 1.25rem;
  width: 28%;
}

@media screen and (max-width: 992px) {
  .wrapper {
    flex-direction: column;
    padding-top: 0;
  }

  .aside {
    width: 100%;
  }

  .aside__container {
    margin-top: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .aside__sp-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .aside {
    padding: 0;
  }

  .aside__container {
    margin-top: 2.5rem;
    display: block;
  }

  .aside__sp-column {
    width: 100%;
  }
}
.aside__sp-column {
  margin-bottom: 20px;
}

.aside__sub-title h2 {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0;
}

.aside__youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 992px) {
  .aside__youtube {
    margin-top: 0;
  }
}
.aside__youtube iframe {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.aside__line-button img {
  display: inline;
  width: 50%;
}

.aside__icon {
  margin-top: 80px;
  margin-top: 5rem;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .aside__icon {
    width: 60%;
    margin: 2.5rem auto 0;
  }
}

.aside__item:not(:last-of-type) {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.aside hr {
  width: 100%;
  margin: 40px 0;
  border-top: 1px solid var(--main-bg-color);
}

.aside__select-template-text-radio {
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0.15em 1.5em 0 rgb(0 0 0 / 10%), 0 0 1em 0 rgb(0 0 0 / 3%);
}

.aside__select-template-text-radio p {
  margin-bottom: 5px;
  color: #111;
  font-size: 18px;
  font-weight: bold;
}

.select-template-text-radio-text {
  font-size: 14px;
  font-weight: normal;
}

.select-template-text-radio-text:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  padding: 2px;
  background-clip: content-box;
}

.aside__select-template-text-radio input[type="radio"]:not(:checked) + .select-template-text-radio-text:before {
  border-color: #72767b;
}

.aside__select-template-text-radio input[type="radio"]:checked + .select-template-text-radio-text:before {
  border-color: var(--main-bg-color);
  background-color: var(--main-bg-color);
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  padding: 80px 0;
  padding: 80px 0;
  padding: 5rem 0;
  width: 90%;
}

@media screen and (max-width: 992px) {
  .container {
    padding-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main {
  width: 70%;
}

div.template-wrapper {
  display: none;
}

div[id^="template-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}

@media screen and (max-width: 992px) {
  .main {
    margin-top: 120px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main {
    margin-top: 50px;
  }
}
.list {
  width: 48%;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .list {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .list {
    margin-bottom: 80px;
  }
  .list:last-child {
    margin-bottom: 0;
  }
}
.template {
  width: 100%;
}

.pBottom-5 {
  padding-bottom: 0.5em;
}

.copy {
  font-family: "Verdana", sans-serif;
  padding: 20px 0;
  width: 100%;
  background: #fff;
  border: #eee !important;
  border-radius: 1.25rem;
  color: #111 !important;
  -webkit-box-shadow: 0 4px 0 #ddd;
          box-shadow: 0 4px 0 #ddd;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.copy:active {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fefefe;
}

.pcr-app {
  position: static;
  position: initial;
  opacity: 1;
  visibility: visible;
}

.pcr-app .pcr-interaction .pcr-save,
.pcr-app .pcr-interaction .pcr-save:hover,
.pcr-app .pcr-interaction .pcr-save:focus {
  width: 100%;
  background: #fff;
  border: 1px solid #ddd !important;
  border-radius: 0.7rem;
  color: #111 !important;
  -webkit-box-shadow: 0 3px 0 #ddd;
  box-shadow: 0 3px 0 #ddd;
  font-size: 16px;
  font-size: 1rem;
}

.pcr-app .pcr-interaction .pcr-save:active {
  box-shadow: none;
  transform: translateY(3px);
}

.pcr-app .pcr-interaction .pcr-save:hover {
  filter: inherit;
}

.pcr-last-color {
  padding: 0;
}

.pickr {
  display: none;
}

.template__list {
  color: #75797e;
}

.pcr-app {
  width: 100% !important;
}

h1.ebay-template {
  margin: 40px 20px 10px 20px;
}

.aside__description {
  padding: 20px 15px;
  border-radius: 10px;
  background-color: var(--main-bg-color);
  color: var(--main-font-color);
}
.aside__description p {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
.aside__description li {
  line-height: 2rem;
}

.select-template-title,
.ebay-setting-title {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 10px 10px 20px;
  background-color: var(--main-bg-color);
  color: var(--main-font-color);
}

.template__main {
  font-family: "Verdana", sans-serif;
  width: 100%;
  background: #fff;
  border: 1px solid #000;
  padding: 0 20px 30px 20px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
  word-break: break-word;
}

main {
  background: inherit;
}

main .template .template__main h1 {
  font-size: 26px !important;
  margin: 30px 0;
  text-align: center;
  color: #111;
}

main .template .template__main h2 {
  margin: 0 0 15px 0;
  color: #111;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
}

main .template .template__main h3 {
  padding-left: 10px;
  font-size: 14px;
  color: #111;
}

main .template .template__main .product_dec {
  margin: 0;
  padding: 0 0 20px 20px;
  color: #111;
  text-align: left;
}

main .template .template__main .product__intro {
  line-height: 24px;
  font-size: 14px;
  padding: 0 0 20px;
}

main .template .template__main .product__intro ol {
  padding-left: 30px;
}

main .template .template__main .product__intro ol li {
  list-style-type: disc;
  font-size: 14px;
}

.no-list-style ol li {
  list-style-type: none !important;
}

main .template .template__main p {
  margin: 0;
  padding: 0 10px 20px;
  color: #111;
  text-align: left;
  line-height: 24px;
  font-size: 14px;
}

#s1 h2 {
  background-color: var(--template-color);
  color: #000;
  padding: 10px 10px;
}

#s2 h2 {
  position: relative;
  padding: 10px 10px;
  background-color: #fff;
  border: 2px solid var(--template-color);
  color: var(--template-color);
  border-radius: 6px;
}

#s3 h2 {
  position: relative;
  color: #111;
  padding: 10px 10px;
  border-radius: 5px;
}

#s3 h2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background-color: var(--template-color);
  border-radius: 3px;
}

#s4 h2 {
  position: relative;
  background-color: #eee;
  color: #111;
  margin-bottom: 15px;
  padding: 10px 10px 10px 40px;
  font-size: 17px;
}

#s4 h2::before {
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  color: var(--template-color);
}

#s4 .product_dec h2:before {
  content: "\f044";
  font-size: 18px;
}

#s4 .shipping h2::before {
  content: "\f072";
  font-size: 18px;
}

#s4 .tyuui h2::before {
  content: "\f071";
  font-size: 18px;
}

#s5 h2 {
  position: relative;
  color: #111;
  padding: 10px 10px;
}

#s5 h2::before {
  margin-top: 38px;
  position: absolute;
  content: "";
  background-image: linear-gradient(to right, var(--template-color), var(--template-color) 6px, transparent 5px, transparent 15px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}

#s6 h2 {
  position: relative;
  background-color: var(--template-color);
  color: #000;
  padding: 12px 10px;
}

#s6 h2::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 14px 0 14px;
  border-color: var(--template-color) transparent transparent transparent;
  bottom: -10px;
}

.img-area {
  text-align: center;
}
.img-area img {
  display: inline;
  max-width: 1600px;
}

.main__table {
  padding-left: 45px;
  padding-bottom: 40px;
}

.main__table h3 {
  font-size: 14px;
  color: #111;
  text-align: center;
  padding-left: 0;
}

.main__table table {
  width: 100%;
  font-size: 14px;
}

.main__table table tr {
  background-color: #eee;
  color: #111;
}

.main__table table tr:first-of-type {
  background-color: var(--template-color);
  color: #111;
}

.main__table table th, .main__table table td {
  padding: 0.5em 0 0.5em 0.5em;
}

.pBottom-10 {
  padding-bottom: 10px;
}

.main__item p {
  padding-bottom: 20px;
}

.aside__item:not(:last-of-type) {
  padding-bottom: 20px;
}

@media screen and (max-width: 992px) {
  .template__main {
    margin: 0 auto 30px;
  }

  .copy {
    margin: 0 auto;
  }
}

.ebay-setting-title > p {
  line-height: 2rem;
}

.ebay-setting-image > img {
  margin-bottom: 30px;
  border: 1px solid #000;
}
.ebay-setting-image > img:last-child {
  margin-bottom: 0;
}

.feature-title {
  margin-bottom: 10px;
  text-align: center;
}

.feature-title-text {
  font-size: 2rem;
}

.feature-detail {
  margin-bottom: 20px;
  text-align: center;
}

.feature-detail>ul {
  display: inline-block;
}

.feature-detail-item {
  line-height: 2rem;
  text-align: left;
}
@media screen and (max-width: 489px) {
  .feature-detail-item {
    font-size: 1rem;
  }
}

.feature-image img {
  margin: 0 auto;
  border-radius: 10px;
}

.breadcrumbs {
  display: none;
}

.copy-text-box-wrap {
  display: none;
  background-color: #ffffff;
}
.copy-text-box {
  padding: 0.8em;
}
.copy-text-headline {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 0.8em;
  padding: 10px 5px;
  font-size: 0.9em;
}
.copy-text-box .copy-html-text {
  border: 1px solid #000000;
  border-radius: 8px;
  height: 200px;
}
