html {
 scroll-behavior: smooth;
}
.yoko {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
 gap: 10px;
 max-width: 1000px;
 margin: 0 auto;
 width: 100%;
}
.svg-wrapper {
 width: 100%;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 position: absolute;
 max-height: 250px;
 z-index: 2;
}
.svg-wrapper svg.svg-animate {
 width: 100%;
 height: 100%;
 transform: rotate(90deg) scaleY(-1);
}
.txtbox {
 width: 100%;
 font-size: clamp(.8em, 1.6vw, 1.0em);
 position: relative;
 z-index: 7;
 display: grid;
 gap: .5em;
 text-align: center;
}
.txtbox h4 {
 font-weight: 800;
 font-size: 1.3em;
 line-height: 1;
 border: none;
 overflow: hidden;
 width: fit-content;
 margin: 0 auto;
 padding: 4px 2px;
 max-width: 140px;
 color: hsl(15.1, 90.4%, 55.1%);
 border-bottom: 4px solid hsl(15.1, 90.4%, 55.1%);
 -webkit-text-stroke: 4px #fff;
 text-stroke: 4px #fff;
 paint-order: stroke;
}
.txtbox > p {
 min-height: 51px;
 text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
 -webkit-text-stroke: 2px #fff;
 text-stroke: 2px #fff;
 paint-order: stroke;
 font-weight: 600;
}
.circle-box {
 position: relative;
 width: 100%;
 max-width: 250px;
 aspect-ratio: 1;
 display: grid;
 align-items: center;
 border-radius: 100px;
 /* overflow: hidden; */
 color: inherit;
 margin: 0 auto;
}
.circle-box + p {
 text-align: center;
 background: #fff7f4;
 min-height: 60px;
 font-size: 0.9em;
 padding: .3em;
 display: grid;
 place-content: center;
 border: 2px solid #f46233;
 border-radius: 3px;
 line-height: 1.3;
}
.circle-box img {
 position: absolute;
 top: 50%;
 left: 50%;
 translate: -50% -50%;
 z-index: 2;
 max-width: 220px;
 mix-blend-mode: multiply;
}
.circle-box .img-circle {
 max-width: 240px;
 z-index: 1;
}
.circle-box img.img-paper {
 opacity: .6;
 z-index: 6;
}
.circle-box:hover img.img-paper {
 opacity: .3;
 transition: all 0.5s ease;
}
.circle-box {
 opacity: 0;
}
.circle-box:hover {
 filter: saturate(300%);
 transition: all 0.5s ease;
}
.yoko.anime-div.move .circle-box {
 animation: fadeinBox 1s ease-out forwards;
}
.yoko.anime-div.move > div:nth-child(2) .circle-box {
 animation-delay: .3s;
}
.yoko.anime-div.move > div:nth-child(3) .circle-box {
 animation-delay: .6s;
}
.yoko.anime-div.move > div:nth-child(4) .circle-box {
 animation-delay: .9s;
}
@keyframes fadeinBox {
 0% {
  opacity: 0;
 }
 100% {
  opacity: 1;
 }
}
.img-circle {
  opacity: 0;
  transition: opacity .5s ease-in;
}

.yoko.anime-div.move .img-circle {
  opacity: 1;
}
.btn-play {
 background: #fff;
 width: 3em;
 aspect-ratio: 1;
 margin: 0 auto;
 border-radius: 50px;
 position: relative;
 border: 3px solid #06c;
}
.btn-play::after {
 content: "";
 clip-path: polygon(0 0, 100% 50%, 0 100%);
 width: 20px;
 aspect-ratio: .8;
 background: #06c;
 position: absolute;
 top: 50%;
 left: 54%;
 translate: -50% -50%;
}
.video_wrapper a.popup-iframe::before {
 content: "";
 width: 21%;
 aspect-ratio: 1;
 background: #fff !important;
 position: absolute;
 top: 50%;
 left: 50%;
 translate: -50% -50%;
 border-radius: 100px !important;
 border: 3px solid #06c !important;
}
.video_wrapper a.popup-iframe::after {
 content: "";
 clip-path: polygon(0 0, 100% 50%, 0 100%);
 width: 8%;
 aspect-ratio: .8;
 background: #06c !important;
 position: absolute;
 top: 50%;
 left: 51%;
 translate: -50% -50%;
}
.video_wrapper a.popup-iframe:hover {
 filter: saturate(300%);
}
.h5title-box {
  width: fit-content;
  margin: 0 auto;
 > span {
  display: inline-block;
  background: hsl(15.1, 90.4%, 55.1%);
  color: #fff;
  border-radius: 5px;
  line-height: 1;
  padding: 5px 8px;
  font-size: .9em;
  font-weight: bold;
}
}
h5.heading2 {
    display: grid;
    align-items: center;
    text-align: center;
    margin: 0 auto 30px;
    border: none;
    padding: 0;
    font-size: clamp(1.3em, 4.0vw, 1.5em);
    position: relative;
    width: fit-content;
	&::before, &::after {
  content: '';
  width: 3px;
  height: 100%;
  background: #94b3d7;
  position: absolute;
}
&::before {
  transform: rotate(-35deg);
    left:-.7em;
}
&::after {
  transform: rotate(35deg);
  right:-.7em;
}
}
.order-link a {
    background: #f2c300;
    font-weight: bold;
    -webkit-text-stroke: 2px #ae9839;
    text-stroke: 2px #ae9839;
    paint-order: stroke;
}
@media only screen and (max-width:1000px) {}
@media only screen and (max-width:768px) {
 .howto-n {
  grid-template-columns: 1fr;
  gap: 25px;
 }
 .howto-n .howto-box:not(:last-child)::after {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: -50% 0;
  left: 50%;
  bottom: -20px;
  top: auto;
  aspect-ratio: 3;
  width: auto;
  height: 20px;
 }
}
@media only screen and (max-width:640px) {}
@media only screen and (max-width:480px) {}