/* 
将来的には /g/ のCSSと共有したいですが、運用中の箇所に影響を与えないため、微妙に違うため、分けています
*/

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}
main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* */
:root {
  --main-bg-color: #fee000;
  --main-bg-light-color: #fff86f;
  --main-dark-color: #f3ba41;
  --main-shadow-color: rgba(221,221,221,0.5);
  --main-thin-color: #666;
  --main-thinner-color: #bbb;
  --main-pale-color: #f4f4f4;
  --main-strong-color: #f70b89;
  --main-spot-color: #01cc01;
  --main-link-color: #0080ff;
  --sub-strong-color: #ea3323; /* 意図のわからない配色なので命名が適当です */
}


*{
  box-sizing: border-box;
}

html{
  height: 100%;
  font-family: sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  scroll-behavior: smooth;
}
body{
  color: #222;
  background: var(--main-bg-color) url(../img/bg.svg) 50% 0;
  background-size: auto 200vh;
  min-height: 100%;
  padding: 3.2rem 0 0;
}
p{
  margin: 0.75em 0;
}
a{
  color: inherit;
  word-break : break-all;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}
em{
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 900;
  font-style: normal;
}
ul{
  margin: 0.75em 0;
  padding-left: 0.75em;
}
ol{
  counter-reset:number;
  list-style:none;
  margin: 0.75em 0;
  padding-left: 1.25em;
}
li{
  margin: 0.5em 0;
}
ol > li:before{
  counter-increment: number;
  content: counter(number);
  display:inline-flex;
  align-items: center;
  justify-content: center;
  width:1.5em;
  height:1.5em;
  margin:0 0.25em 0 -1.5em;
  background: var(--main-bg-color);
  color:#fff;
  border-radius:50%;
  font-size:0.9em;
  font-family: 'Roboto', sans-serif;
  font-weight:bold;
  text-align:center;
  line-height:1;
  vertical-align:middle;
}
.ol--cpn > li::before{
  background: var(--main-spot-color);
}
.dl--cpn > dt{
  color: var(--main-spot-color);
  margin-top: 1rem;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-size: 1.1em;
  font-weight: bold;
}
.dl--cpn > dt::before{
  content: "◎";
  display: inline;
}
strong{
  color: var(--sub-strong-color); 
}
strong > strong{
  font-family: "source-han-sans-japanese", sans-serif;
  font-size: 1.2em;
}
h3{
  font-size: 1.1em;
}
input{
  font-size: 14px;
  padding: 1em;
  border-radius: 0.5rem;
  border: solid thin var(--main-thin-color);
  background: var(--main-pale-color);
  width: 30em;
  max-width: 100%;
}
::placeholder{
  color: var(--main-thinner-color);
}
.nobreaking:not(.nobreaking--long){
  display: inline-block;
  white-space: nowrap;
}
@media (min-width:55rem) {
  .sponly{
    display: none !important;
  }
  .nobreaking--long{
    display: inline-block;
    white-space: nowrap;
  }
}
@media (max-width:29.99rem) {
  .pctabonly{
    display: none !important;
  }
}
@media (max-width:54.99rem) {
  .pconly{
    display: none !important;
  }
}
.btnarea{
  margin: 3rem auto;
}
.btn,
.uppy-Dashboard-browse{
  display: block;
  position: relative;
  width: 100%;
  margin: 1em auto;
  padding: 0.75em 1em;
  border: none;
  border-radius: 1em;
  background: var(--main-spot-color);
  color: #fff;
  white-space: nowrap;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  font-size: 1.2em;
  text-align: center;
  text-decoration: none;
}
.btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1.25em;
  box-shadow: 0.2em 0.2em var(--main-shadow-color);
  mix-blend-mode: multiply;
}
.btn--mini{
  display: table;
  width: auto;
  padding-left: 2em;
  padding-right: 2em;
}
.btn--sub{
  color: var(--main-spot-color);
  background: #fff;
}
.btn--hasicon,
.uppy-Dashboard-browse{
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn--hasicon::before,
.uppy-Dashboard-browse::before{
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  margin: -0.25em 0.5em -0.25em 0;
  background: url(../img/icon_point.svg) no-repeat 50% 50%;
  background-size: contain;
}
.btn--hasicon.btn--line::before{
  background-image: url(../img/icon_line.svg);
}
.btn--hasicon.btn--sub.btn--line::before{
  background-image: url(../img/icon_line_green.svg);
}
.btn--hasicon.btn--reload::before{
  background-image: url(../img/icon_reload.svg);
}
.uppy-Dashboard-browse::before{
  background-image: url(../img/icon_image.svg);
}
.btn--inheader{
  position: relative;
}
.btn--full.btn--hasicon{
  flex-direction: column;
}
.btn--full.btn--hasicon::before{
  margin: 0 auto 0.5em;
  width: 2em;
  height: 2em;
}
.btn--simple{
  background: #275ca0;
  border: none;
  margin: 0.5em auto;
  padding: 0.5em 1em;
  font-size: 0.9em;
  font-weight: normal;
  text-shadow: none;
}
.btn--simple:hover{
  background: #3f73b6;
}

:root {
  --tiktok-vertical: 1800;
  --tiktok-horizontal: 720;
  --portrait-vertical: 1280;
  --portrait-horizontal: 720;
}

.videoarea{
  background: #000;
}
.videoframe{
  max-width: calc(80vh / var(--portrait-vertical) * var(--portrait-horizontal));
  margin: 0 auto;
}
.videoframe--tiktok{
  max-width: none;
  max-height: 757px;
  aspect-ratio: var(--tiktok-horizontal) / var(--tiktok-vertical);
}
.videoframe__inner--portrait{
  position: relative;
  width: 100%;
  height: 0;
  aspect-ratio: 720 / 1280;
  background: #000;
  padding-bottom: calc(100% / var(--portrait-horizontal) * var(--portrait-vertical));
}
.videoframe__inner--tiktok{
  padding-bottom: calc(100% / var(--tiktok-horizontal) * var(--tiktok-vertical));
}
.videoframe__inner--portrait > *{
  position: absolute !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100% !important;
  aspect-ratio: 720 / 1280;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 auto;
}
.videoframe__inner--tiktok > *{
  aspect-ratio: var(--tiktok-horizontal) / var(--tiktok-vertical);
}


.uppy-Dashboard-browse{
  display: flex !important;
  margin: 1rem auto !important;
  padding: 0.75em 1em !important;
  border-radius: 1em !important;
  color: #fff !important;
  background: var(--main-spot-color) !important;
  white-space: nowrap !important;
  font-family: "heisei-maru-gothic-std", sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.1em !important;
  text-align: center !important;
}

@media (min-width:55rem) {
  .btn{
    margin: 2em auto;
    padding: 0.75em 2em;
    font-size: 1.6em;
  }
  .btn + .btn{
    margin-top: -1em;
  }
  .btn--simple{
    margin: 1em auto;
    font-size: 0.8em;
  }
  .btn.btn--l{
    max-width: 13em;
    border-radius: 2em;
    padding: 1.25em 2em;
    font-size: 1.8em;
  }
  .btn--hasicon.btn--l::before{
    width: 3.5em;
    height: 3.5em;
    margin-right: 1.25em;
  }
  .btn--inheader{
    max-width: 39.5rem;
    padding: 1rem;
  }
  .btncap{
    margin: 2rem 0 -2rem;
  }
}
@media (min-width:35rem) {
  .btn{
    width: auto;
    min-width: 14em;
    max-width: 22em;
  }
  .btn--mini{
    min-width: 10em;
  }
}
@media (max-width:22rem) {
  .btn__text{
    text-align: left;
  }
  .btn__nobreaking{
    display: block;
  }
}

.column{
  background: var(--main-bg-light-color);
  margin: 1em auto;
  padding: 0.5em 1.5em;
}

.ftr_linkarea{
  display: table;
  margin: 0 auto;
  text-align: left;
}
.link{
  display: table;
  position: relative;
  margin: 1em 0;
  padding-left: 1.5em;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  font-size: 1.1em;
  line-height: 1em;
  text-decoration: none;
}
.link::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0.6em;
  width: 0;
  height: 0;
  margin-right: 0.25em;
  border-top: solid 0.4em transparent;
  border-bottom: solid 0.4em transparent;
  border-left: solid 0.6em #fff;
  vertical-align: middle;
}
.link--line{
  color: var(--main-spot-color);
}
.link--line::before{
  border-left-color: var(--main-spot-color);
}
.link_aside{
  text-align: left;
  font-size: 0.8rem;
  font-family: sans-serif;
}
.link_aside::before {
  content: "\A";
  display: inline;
  white-space: pre;
}
@media (min-width:55rem) {
  .link{
    font-size: 1.7em;
  }
}

.lead{
  font-weight: bold;
}
.lead--short{
  color: var(--main-strong-color);
  font-weight: normal;
  font-size: 1.1em;
  text-align: center;
}
@media (min-width:55rem) {
  .lead{
    margin: 1.5rem 0;
  }
}
/* 16:9のifarme */
.movieframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movieframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border:none;
}
@media screen and (min-width: 768px) {
  .movieframe {
      width:450px;
      height:252px;
      margin:0 auto;
      padding:0;
   }
}

@media screen and (min-width:768px){
  .howto__movieframe > .movieframe{
    width: 100%;
    height: 0;
    padding-top: calc(100% / 16 * 9);
  }
}


@media(max-width:54.99rem){
 .narrow{
  margin: 0 1em;
 }
 .pc_only{
  display: none;
 }
}


.hdrarea{
  padding: 1rem;
}
.hdr__sub{
  box-sizing: content-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #000;
  color: #fff;
  padding: 1rem;
  line-height: 1;
}
.hdr__img{
  height: 1.25em;
}


.hdr{
  text-align: center;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
}
.hdr__sub{
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.hdr__main{
  display: grid;
  grid-template-columns: 17% 1fr;
  grid-gap: 0 0.5em;
  align-items: center;
  max-width: 20em;
  margin: 0 auto;
  font-size: 1.1em;
  text-align: left;
}
.hdr__main__catch{
  grid-column: 1 / 3;
  margin: 0.5rem 0;
  font-size: 1.11em;
  text-align: center;
  line-height: 1.4;
  text-shadow: 
  #fff 2px 2px,
  #fff -2px 2px,
  #fff 2px -2px,
  #fff -2px -2px,
  #fff 2px 1px,
  #fff -2px 1px,
  #fff 2px -1px,
  #fff -2px -1px,
  #fff 1px 2px,
  #fff -1px 2px,
  #fff 1px -2px,
  #fff -1px -2px
}
.hdr__main__catch > img{
  height: 1em;
}
.hdr strong{
  color: var(--main-strong-color); 
}

.hdr__lead{
  text-align: left;
  font-family: sans-serif;
  font-size: 1.1em;
}
.cpnhdr__lead{
  text-align: center;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-size: 1.1em;
  margin: 1.5em 0;
}

.hdr__cvs__list{
  display: grid;
  grid-template-columns: repeat(3, calc(33.3% - 0.5rem));
  grid-gap: 0.5rem;
  max-width: 53rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.hdr__cvs__list > li{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.5em;
  border-radius: 0.75em;
  background: #fff;
  line-height: 1;
  text-align: center;
}
/*
.hdr__cvs__list > li::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0.75em;
  box-shadow: 0.2em 0.2em var(--main-shadow-color);
  mix-blend-mode: multiply;
}
*/
.hdr__cvs__list > li > img{
  height: 0.8em;
}
.hdr__cvs__list > .hdr__cvs__list__li--ministop > img{
  height: 1.8em;
}

.hdr__cvs__catch{
  font-size: 1.4em;
  line-height: 1.1;
  margin: 0.5rem 0;
}
.hdr__cvs__catch > img{
  height: 1em;
}
@media (min-width:55rem) {
    .hdrarea{
    padding: 3rem;
  }
  .hdr__main{
    display: inline-grid;
    grid-template-columns: 3em 14em 1fr;
    max-width: 55rem;
    font-size: 1.5em;
  }
  .hdr__lead{
    font-size: 1.4em;
    text-align: inherit;
    max-width: 50em;
    margin-left: auto;
    margin-right: auto;
  }
  .cpnhdr__lead{
    font-size: 1.3em;
  }
      .hdr__main__catch{
        font-size: 0.9em;
    grid-column: auto;
    text-align: left;
    }
        .hdr__cvs__list{
      font-size: 1.7em;
      grid-gap: 1rem;
    }
    .hdr__cvs__catch{
      font-size: 1.9em;
    }
}

.main{
  /*
  margin: 1em auto;
  padding: 1em 0;
  */
  margin-top: 3rem;
  background: #fff;
}
.main--normal{
  margin: 0;
  padding: 1rem;
}
@media (min-width:55rem) {
  .main--normal{
    padding-left: calc(50% - 26.5rem);
    padding-right: calc(50% - 26.5rem);
  }
}

.ftr{
  padding: 1rem 2rem;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 1.8;
}
.ftr__copy{
  font-size: 0.7em;
  margin-top: 2rem;
}
.ftr__copy:first-child{
  margin-top: 0;
}
@media (min-width:55rem) {
  .ftr{
    padding: 2rem;
  }
    .ftr__copy{
    margin-top: 6rem;
  }
}

.pagettl{
  margin: 1rem 0;
  padding: 0.7em 1em 0.5em;
  background: var(--main-dark-color);
  color: #fff;
  font-size: 1.2rem;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  text-align: center;
}
.pagettl--cpn{
  background: var(--main-spot-color);
}
.shortsubttl{
  display: table;
  margin: 1.5rem auto 1rem;
  padding: 0.5em 1em;
  color: #fff;
  background: var(--main-spot-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
}
.shortsubttl--longcolumn{
  margin-top: 2.5em;
}
.pointttl{
  color: var(--main-spot-color);
  border: solid 3px var(--main-spot-color);
  margin: 3rem 0 2rem;
  padding: 0.75em;
  font-size: 1.2em;
  font-family: "heisei-maru-gothic-std", sans-serif;
  text-align: center;
}
.pointsubttl{
  color: var(--main-spot-color);
  font-size: 1.1em;
}
@media (min-width:55rem) {
  .pagettl{
    font-size: 1.5em;
    margin: 2.5rem 0 1.5rem;
  }
}


.sectab{
  position: relative;
  padding: 1px 1rem 3rem;
}
.sectab:nth-of-type(2n){
  background: var(--main-bg-color);  
}
.sectab:nth-of-type(2n-1) strong{
  color: var(--main-strong-color); 
}

.sectab__ttl{
  position: absolute;
  bottom: calc(100% - 0.75em);
  left: 50%;
  width: 9em;
  margin: 0 auto;
  padding: 0.75em;
  color: var(--main-bg-color);
  background: #fff;
  border-radius: 1.2em 1.2em 0 0;
  text-align: center;
  font-size: 1.1rem;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  line-height: 1;
  transform: translateX(-50%);
}

.sectab:nth-of-type(2n) > .sectab__ttl{
  background: var(--main-bg-color);
  color: #fff;
}
.sectab__cts{
  max-width: 55em;
  margin: 2em auto;
}

.cts--short{
  text-align: center;
}
.cts--shorter{
  text-align: center;
  max-width: 40em;
  margin: 0 auto;
}
.fig--full{
  display: block;
  margin: 0 auto;
}
.fig--large{
  display: block;
  margin: 0 auto;
  max-height: 30em;
}
.fig--short {
  display: block;
  margin: 0 auto;
  width: 28rem;
}
@media (min-width:55rem) {
  .sectab{
    padding-bottom: 5rem;
  }
  .sectab:nth-of-type(2n){
    padding: 4rem;
  }
  .sectab__ttl{
    font-size: 1.75em;
  }
  .sectab__cts{
    margin-top: 3rem;
  }
}

/* home */


.slider{
  margin: 2rem -1rem;
  padding: 0 1.5rem;
}
.slider__img{
  width: calc(100% - 2em);
  margin: 0 1em;
}
.slider__pagenation{
  position: static;
  margin: 0.75rem auto;
}
.swiper-pagination-bullet{
  width: 0.75em;
  height: 0.75em;
  margin-bottom: 0 !important;
  background: #fff;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background: var(--main-spot-color);
}
.homelist{
  font-size: 1.2em;
}

@media (min-width:55rem) {
  .homelist{
    font-size: 1.5em;
  }
  .slider{
    max-width: 58rem;
    margin: 2rem auto 4rem;
  }
  .swiper-wrapper{
    align-content: stretch;
  }
  .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(32% - 5px);
    height: auto;
  }
  .swiper-slide:nth-of-type(5){
    width: calc(36% - 5px);
  }
}

.flowlist{
  padding: 0;
}
.flowlist > li{
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.flowlist > li::before{
  display: none;

}
.flowlist > li::after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: solid 0.7em var(--main-spot-color);
  border-left: solid 0.5em transparent;
  border-right: solid 0.5em transparent;
  margin: 1em auto;
 /* filter: drop-shadow( 0.2em 0.2em var(--main-shadow-color));*/
}
.flowlist > li:last-of-type::after{
  display: none;
}
.flowlist__ttl{
  height: 1em;
  margin-bottom: 0.75rem;
  font-size: 1.65em;
}
.flowlist__fig{
  display: block;
  margin: 0 auto;
  width: 40rem;
}
@media (min-width:55rem) {
  .flowlist__ttl{
    font-size: 2.25em;
    margin-bottom: 1.25rem;
  }
  .flowlist > li::after{
    font-size: 2em;
  }
}

.bnr{
  display: block;
  margin: 2rem auto;
}
.bnr > img{
  width: 35em;

}

.catch{
  display: table;
  margin: 1rem auto;
  padding: 0.4em 1em;
  background: #fff;
  font-size: 1.2em;
}
.sectab:nth-of-type(2n-1) > .sectab__cts > .catch {
  background: var(--main-bg-color);
}
@media (min-width:55rem) {
  .catch{
    font-size: 1.4em;
    margin: 2rem auto;
  }
}

.shortttl{
  margin-left: -2rem;
  margin-right: -2rem;
  padding: 1em;
  background: var(--main-spot-color);
  color: #fff;
  font-size: 1.2em;
  text-align: center;
  font-family: "heisei-maru-gothic-std", sans-serif;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.shortttl--strong{
  font-size: 1.4em;
}

.secttl{
  margin: 2rem 1rem;
  font-size: 1.1em;
  text-align: center;
  color: var(--main-spot-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.secttl > img{
  height: 1.2em;
}
@media (min-width:55rem) {
  .shortttl{
    margin-left: auto;
    margin-right: auto;
  }
  .secttl{
    font-size: 1.9em;
  }
}
.mainftr__nav{
  margin:0.5em 0 1em;
  letter-spacing:-0.4em;
}
.mainftr__nav > ul{
  list-style: none;
}

.mainftr__nav > ul > li {
  display: inline-block;
  margin: 0;
}
.mainftr__nav a{
  display:inline-block;
  border-left:solid 1px #fff;
  border-right:solid 1px #fff;
  color:#fff;
  margin:0.4em -1px 0.4em 0;
  padding:0 0.7em;
  font-size:94%;
  line-height:1;
  letter-spacing:normal;
  text-decoration:none;
}

.qanda{
  margin: 1rem -1rem;
}
.qanda > dt:nth-of-type(2n-1),
.qanda > dd:nth-of-type(2n-1){
  background: #f8f8f8;
}
.qanda > dt,
.qanda > dd {
  position: relative;
  margin: 0;
  padding: 1rem 1rem 1rem 2.5rem;
}
.qanda > dt {
  padding-bottom: 0.5rem;
}
.qanda > dd {
  padding-top: 0.5rem;
}
.qanda > dt::before,
.qanda > dd::before {
  position: absolute;
  left: 1rem;
  font-family: "heisei-maru-gothic-std", sans-serif;
}
.qanda > dt::before {
  content: 'Q';
  color: var(--main-spot-color);
}
.qanda > dd::before {
  content: 'A';
  color: var(--sub-strong-color);
}
.qanda > dd > :first-child {
  margin-top: 0;
}
.qanda > dd > :last-child {
  margin-bottom: 0;
}
@media (min-width:53rem) {
  .qanda > dt,
  .qanda > dd {
    margin-left: calc(-50vw + 28.5rem);
    margin-right: calc(-50vw + 28.5rem);
    padding-left: calc(50vw - 28.5rem + 2rem);
    padding-right: calc(50vw - 28.5rem);
  }
  .qanda > dt::before,
  .qanda > dd::before {
    left: calc(50vw - 28.5rem);
  }
  
}

/* navi */
.number__ttl{
  font-weight: bold;
  text-align: center;
}
.printno{
  display: table;
  margin: 1rem auto;
  padding: 0.5rem 1.5rem;
  background: #ffffc4;
  border: solid thin var(--main-thinner-color);
  border-radius: 1.2rem;
  line-height: 1.2;
  font-weight: bold;
}
.printno__no{
  font-size: 1.8em;
  margin: 0.25rem 0;
}
.printno__until{
  margin: 0.25rem 0;
}
.uppy-Dashboard-AddFiles-title{
  margin: 1rem 0 !important;
  padding: 2rem 0 !important;
}
@media(min-width:55em){
  .uppy-Dashboard-AddFiles-title{
    padding: 4rem 0 !important;
  }
  .printno{
    font-size: 1.1em;
  }
}

.social{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.social__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  margin: 0.75rem;
  border-radius: 50%;
  background: var(--main-spot-color);
  color: #fff;
  font-size: 2.75em;
}
.social__btn > img{
  width: auto;
  height: 1em;
}
.social__btn--tiktok{
  background: #000;
}
.social__btn--yt{
  background: #F00;
}
.social__btn--yt > img{
  height: 0.75em;
}
.social__btn--hate{
  background: #00a4de;
}
.social__btn--hate > img{
  height: 0.8em;
}
.social__btn--x{
  background: #000;
}
.social__btn--x > img{
  height: 0.9em;
}
.social__btn--fb{
  background: #0866FF;
}
.social__btn--ig{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.social__btn--ig:before{
  content: '';
  position: absolute;
  top: 46%;
  left: -36%;
  z-index: 1;
  width: 120%;
  height: 120%;
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}
.social__btn--ig > img{
  position: relative;
  z-index: 2;
}

/* campaign */
.cpnhdr{
  margin: 1rem 0 2rem;
}
.cpnhdr__ttl{
  margin: 0;  
}
.cpnhdr__ttl__img{
  width: 100%;
}
.cpnhdr__span{
  background: #000;
  color: #fff;
  text-align: center;
  padding: 0.5em 1rem;
}
@media(min-width:55em){
  .cpnhdr{
    margin: 3rem 0 2rem;
  }
  .cpnhdr__span{
    font-size: 1.5em;
  }
}
.link--cpn{
  display: block;
  margin: 1.5rem 0;
  color: var(--main-spot-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
}

.videoarea--switchable{
  box-sizing: border-box;
  display: table;
  position: relative;
  width: 100%;
  max-width: 60em;
  margin: 1em auto;
  padding: 1em;
  border-radius: 1.25em;
  background: #fff;
}
.videoarea__video > iframe{
  width: 100%;
  height: 100%;
}
.videoarea__video--landscape{
  display: none;
}
.videoarea__video--portrait{
  aspect-ratio: 608 / 1080;
}
@media(orientation: landscape){
  .videoarea__video{
    aspect-ratio: 16 / 9;
  }
  .videoarea__video--landscape{
    display: block;
  }
  .videoarea__video--portrait{
    display: none;
  }
}
@media(min-width:55em){
  .videoarea--switchable{
    padding: 2em;
    border-radius: 1.5em;
  }
}

.imglist{
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 1rem));
  gap: 2rem;
}
.imglist__li{
  display: block;
}
.imglist__li__img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

@media(min-width:40em){
  .imglist{
    grid-template-columns: repeat(3, calc(33.3% - 2rem));
    gap: 3rem;
  }
}

/* topics */

.topicssec{
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
  counter-reset: subttlstep subttllevel subttlfeature;
}
.topicslead{
  text-align: center;
  color: var(--main-strong-color);
  font-size: 1.1em;
  font-weight: bold;
  overflow-wrap: anywhere;
  word-break: keep-all;
  line-break: strict;
}
.topicsubttl{
  margin: 1.5rem 0 -0.5rem;
  color: var(--main-strong-color);
}
.topicssec--shorttext > .topicsubttl{
  margin: 1rem;
  text-align: center;
}
.topicsttlimg{
  margin: 1.5rem auto 1rem;
}
.topicsubttl--step,
.topicsubttl--level{
  text-align: center;
  overflow-wrap: anywhere;
  word-break: keep-all;
  line-break: strict;
}
.topicsubttl--step::before{
  display: block;
  counter-increment: subttlstep;
  content: "STEP" counter(subttlstep);
}
.topicsubttl--level::before{
  display: block;
  counter-increment: subttllevel;
  content: "LEVEL" counter(subttllevel);
}
.topicsubttl--q::before{
  display: inline;
  content: "Q.";
  margin-right: 0.5em;
}
.topicsubttl--feature::before{
  display: block;
  counter-increment: subttlfeature;
  content: "特徴" counter(subttlfeature) "：";
}
.topiclink{
  color: var(--main-spot-color);
  font-size: 1.1em;
  font-weight: bold;
}
.topiclink::before{
  content: "●";
  display: inline;
  margin-right: 0.25em;
}
.topiclink > a{
  display: inline-block;
  color: var(--main-link-color);
}
.topicvideoarea{
  margin: 3rem -2rem;
  padding: 3rem 0;
  background: var(--main-bg-color);
}
.topicvideoarea > :not(.videoframe){
  margin-left: 2rem;
  margin-right: 2rem;
}
.topicvideoarea > .videoarea{
  background: var(--main-bg-color);
  margin: 0 auto;
}
.topicvideoarea > * > .videoframe__inner{
  background: var(--main-bg-color);
}
@media(min-width:30em){
  .topicslead{
    margin: 1.5rem 0;
  }
  .topicssec--shorttext{
    text-align: center;
    width: 100%;
  overflow-wrap: anywhere;
  word-break: keep-all;
  line-break: strict;
  }
  .topicssec__inner--longtext{
    text-align: left;
    word-break: break-all;
    white-space: wrap;
  }
  .topicssec{
    font-size: 1.1em;
  }
  .topicsubttl--step::before{
    display: inline;
    margin-right: 1em;
  }
  .topicvideoarea{
    margin-left: auto;
    margin-right: auto;
  }
  .topicsubttl--feature::before{
    display: inline;
  }
}
@media(min-width:55em){
  .topicssec > .pointttl{
    margin-left: -3rem;
    margin-right: -3rem;
  }
}
