/* CSS Document */
@charset "utf-8";
/*-------------------------------------
    common　CSS
--------------------------------------*/
@media screen and (max-width:1024px) {
    html {
        font-size: 1.5vw;
    }
}
html {
    scroll-behavior: smooth;
}
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, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body, html, div, p, span, li, ul, a, h1, h2, h3, h4, h5, h6, input, button {
    font-family: "Helvetica", "Century Gothic", "Avenir", sans-serif, "Hiragino Sans", "Hiragino Kaku Gothic ProN";
    line-height: 1.5;
}
body.IE, .IE div, .IE p, .IE span, .IE li, .IE ul, .IE a, .IE h1, .IE h2, .IE h3, .IE h4, .IE h5, .IE h6, .IE input, .IE button {
    font-family: "Helvetica", "Century Gothic", "Avenir", sans-serif, "Hiragino Sans", "Hiragino Kaku Gothic ProN";
}
p {
    font-family: "Helvetica", "Arial", "museo-sans", "sans-serif";
    font-size: 1rem;
}
.secInner {
    max-width: 1920px;
    margin: 0 auto;
}
h1, p {
    margin: 0px;
}
ul, li {
    list-style-type: none;
    padding: 0px;
																																																																																																																																										margin: 0px;
																																																																																																																																									}
																																																																																																																																									a {
    text-decoration: none;
}
* {
    box-sizing: border-box;
}

header{
	position: relative;
}

/*-------------------------------------
    SEO
--------------------------------------*/
.product-copy-wrap {
    width: 100%;
	background:#161616;
    margin: 0 auto;
    padding-block: 20px 0;
	position: relative;
	box-sizing: border-box;
	min-height: 230px;
	@media screen and (min-width: 800px) {
		padding-block:20px;
	}
}
.product-copy-board{
	background: var(--baseColor);
    display: block;
    height: fit-content;
    width: 90%;
    max-width: 900px;
	top: 8%;
    left: 50%;
    filter: drop-shadow(10px 10px 0 #000);
	padding: 1rem;
	margin: 0 auto;
}
.product-copy-title {
    font-size: calc(17px + 10 * (100vw - 320px)/1020) !important;
    font-weight: 600;
    text-align: center;
    color: #141414 !important;
    display: block;
}
.product-copy-text {
	max-width: 900px;
    text-align: center;
    margin: 10px auto;
    font-size: calc(15px + 4 * (100vw - 320px)/1020);
    background: var(--baseColor);
    /*padding: 2rem;*/
}
@media screen and (max-width: 416px) {
    .product-copy-wrap {
        /*width: 90%;*/
        margin: 0 auto;
        padding-bottom: 30px;
    }
    .product-copy-text {
		width: 90%;
        text-align: center;
        margin: 10px auto 0;
        font-size: calc(15px + 4 * (100vw - 320px)/1020);
        background: #fff;
        /*padding: 2rem;*/
    }
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


svg {
  width: 100%;
  height: auto;
  display: block;
}

:root {
    --baseColor: #fff;
    /*--mainColor: #ff4e00;*/
	--mainColor: #ffea00;
    --textColor: #000;
	--narutoColor:#f06509;
	--newheroColor:#FE0000;
    --container: 1350px;
}
:root {
  --c-flex-gap: 2%;
}

a {
  color: inherit;
  text-decoration: none;
}


/* コンテイナー */
.l-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
	&:nth-child(n+2){
		margin: 100px auto 0;
	}
}

@media screen and (max-width: 1370px) {
  .l-container {
    padding-left: 4%;
    padding-right: 4%;
  }
}

/* PC/SP */
@media screen and (min-width: 801px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

/* clearfix */
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

#totop a {
  position: fixed;
  bottom: 9%;
  right: 0.5%;
  -webkit-transition: 1s cubic-bezier(0.38, -0.25, 0, 1);
  transition: 1s cubic-bezier(0.38, -0.25, 0, 1);
}

#totop a.flying {
  bottom: 100%;
  opacity: 0 !important;
}

#totop img {
  -webkit-filter: drop-shadow(0 0 4px #000);
          filter: drop-shadow(0 0 4px #000);
}

@media screen and (max-width: 800px) {
  #totop a {
    bottom: 4%;
    max-width: 25vw;
  }
}

/* 汎用ボタン */
.c-btn > * {
  font-size: 3.0rem;
  text-align: center;
  padding: 0.5em 1em;
  background: var(--narutoColor);
  border: 10px solid var(--baseColor);
  /*border-radius: 10px;*/
  color: var(--baseColor);
  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;
  width: 100%;
  max-width: 420px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn > * .arrow {
  padding-right: 2.5em;
  padding-left: 2.5rem;
  position: relative;
}

@media screen and (max-width: 800px){
	.c-btn > * .arrow {
		padding-left: 1.5rem;
		font-size: 4vw;
	}	
}

.c-btn > * .arrow:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0.5em;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 0.5em solid transparent;
  border-left: 0.7em solid var(--baseColor);
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-btn > *:hover {
  background: var(--baseColor);
  color: var(--narutoColor);
}

.c-btn > *:hover .arrow:after {
  right: 0;
  border-left-color: var(--narutoColor);
}

.c-btn > *.fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: none;
}

.c-btn > *.left {
  margin-left: 0;
  margin-right: auto;
}

.c-btn > *.right {
  margin-left: auto;
  margin-right: 0;
}

.c-btn > *.center {
  margin-left: auto;
  margin-right: auto;
}

.c-btn > *.reverse {
  background: var(--baseColor);
  color: var(--mainColor);
}

.c-btn > *.reverse:hover {
  background: var(--mainColor);
  color: var(--baseColor);
}

@media screen and (min-width: 801px) and (max-width: 1370px) {
  .c-btn > * {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  .c-btn > * {
    font-size: 4.5vw;
    /*border-radius: 6.67px;*/
  }
}

/* ブロック全体用リンク */
.c-blocklink a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* 画像用リンク */
.c-imglink.left {
  text-align: left;
}

.c-imglink.center {
  text-align: center;
}

.c-imglink.right {
  text-align: right;
}

.c-imglink img {
  display: inline;
}



.u-tal {
  text-align: left !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

.font-10 {
  font-size: 1rem !important;
  line-height: 2rem;
}

.font-11 {
  font-size: 1.1rem !important;
  line-height: 2.1rem;
}

.font-12 {
  font-size: 1.2rem !important;
  line-height: 2.2rem;
}

.font-13 {
  font-size: 1.3rem !important;
  line-height: 2.3rem;
}

.font-14 {
  font-size: 1.4rem !important;
  line-height: 2.4rem;
}

.font-15 {
  font-size: 1.5rem !important;
  line-height: 2.5rem;
}

.font-16 {
  font-size: 1.6rem !important;
  line-height: 2.6rem;
}

.font-17 {
  font-size: 1.7rem !important;
  line-height: 2.7rem;
}

.font-18 {
  font-size: 1.8rem !important;
  line-height: 2.8rem;
}

.font-19 {
  font-size: 1.9rem !important;
  line-height: 2.9rem;
}

.font-20 {
  font-size: 2rem !important;
  line-height: 3rem;
}

.font-21 {
  font-size: 2.1rem !important;
  line-height: 3.1rem;
}

.font-22 {
  font-size: 2.2rem !important;
  line-height: 3.2rem;
}

.font-23 {
  font-size: 2.3rem !important;
  line-height: 3.3rem;
}

.font-24 {
  font-size: 2.4rem !important;
  line-height: 3.4rem;
}

.font-25 {
  font-size: 2.5rem !important;
  line-height: 3.5rem;
}

.font-26 {
  font-size: 2.6rem !important;
  line-height: 3.6rem;
}

.font-27 {
  font-size: 2.7rem !important;
  line-height: 3.7rem;
}

.font-28 {
  font-size: 2.8rem !important;
  line-height: 3.8rem;
}

.font-29 {
  font-size: 2.9rem !important;
  line-height: 3.9rem;
}

.font-30 {
  font-size: 3rem !important;
  line-height: 4rem;
}

.mt-5 {
  margin-top: 0.5em !important;
}

.mt-10 {
  margin-top: 1em !important;
}

.mt-15 {
  margin-top: 1.5em !important;
}

.mt-20 {
  margin-top: 2em !important;
}

.mt-25 {
  margin-top: 2.5em !important;
}

.mt-30 {
  margin-top: 3em !important;
}

.mt-35 {
  margin-top: 3.5em !important;
}

.mt-40 {
  margin-top: 4em !important;
}

.mt-45 {
  margin-top: 4.5em !important;
}

.mt-50 {
  margin-top: 5em !important;
}

.u-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #F4DF42));
  background: linear-gradient(transparent 50%, #F4DF42 50%);
  padding-bottom: 0.3em;
}

.u-bold {
  font-weight: bold;
  font-family: "新ゴ B", "Shin Go Bold", sans-serif;
}

.u-link {
  text-decoration: underline;
}

.u-link:hover {
  text-decoration: none;
}

.u-mainColor {
  color: var(--mainColor);
}

.u-emp {
  color: #BD0010;
}

main {
  overflow: hidden;
}

h2.heading.js-scroll {
  opacity: 0;
  -webkit-transition: 0.6s cubic-bezier(0.25, 0.1, 0.5, 1.05) 0.3s;
  transition: 0.6s cubic-bezier(0.25, 0.1, 0.5, 1.05) 0.3s;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

h2.heading.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.slick-list{
	position: relative;
	overflow: visible;
	/*&:before{
		content: "";
		display: block;
		background-image: url("../img/header-fukidashi.svg");
		background-position: center;
    	background-size: contain;
		background-repeat: no-repeat;
		width: 100%;
		height: 130%;
		position: absolute;
		top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
	}*/
}
.slick li img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
}

.slick li:not(.slick-center) img {
  -webkit-transform: scale(0.8) translateY(-100px);
          transform: scale(0.8) translateY(-100px);
	@media screen and (max-width: 800px) {
		-webkit-transform: scale(0.9) translateY(-14px);
          transform: scale(0.9) translateY(-29px);
	}
}

.slick-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.slick-slide img {
  width: 100%;
  max-width: none;
  border: 4px solid transparent;
	@media screen and (max-width: 800px) {
		width:95%;
	}
}

.slick-center img {
  border-color: #fff;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 0 60px;
}

.slick-dots li {
  margin: 0 10px;
  font-size: 0;
}

.slick-dots button {
  font-size: 0;
  width: 20px;
  height: 20px;
  background: #b0b0b0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.slick-dots .slick-active button {
  background: #ff0000;
}

.slick.js-scroll {
  -webkit-transition: 1s ease 0.8s;
  transition: 1s ease 0.8s;
  -webkit-filter: blur(5px) brightness(0%) opacity(0);
          filter: blur(5px) brightness(0%) opacity(0);
}

.slick.is-scroll {
  -webkit-filter: none;
          filter: none;
}

@media screen and (max-width: 800px) {
  .slick-dots {
    padding: 10px 0 25px;
  }
  .slick-dots li {
    margin: 0 6px;
  }
  .slick-dots button {
    width: 12px;
    height: 12px;
  }
}

.parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
  background: url(../img/bodyBg.jpg) repeat-y center/100% auto;
  z-index: -1;
}
.c-product_title{
	display: block;
	color: var(--baseColor);
    font-size: clamp(1.313rem, 0.631rem + 3.41vw, 3.188rem) !important;
	text-transform: uppercase;
    text-shadow: 7px 7px #000;
	position: relative;
	z-index: 0;
	@media screen and (max-width: 800px) {
		text-shadow: 2px 3px #000;
	}
	&:after{
		content: "";
		display: block;
		width: 100%;
		height: 50px;
		clip-path: polygon(0 27%, 100% 92%, 100% 100%, 0% 100%);
		position: absolute;
		bottom: 6px;
		left: 0;
		z-index: -1;
		@media screen and (max-width: 800px) {
			clip-path: polygon(0 66%, 100% 92%, 100% 100%, 0% 100%);
			bottom: 0;
		}
	}
	&.naruto::after{
		background: var(--narutoColor);
	}
	&.newhero::after{
		background: var(--newheroColor);
	}
}
.c-product_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.c-product_list > li > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

/*.c-product_list > li > *:hover figure img {
  border-color: var(--narutoColor);
}*/

.c-product_list figure {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.c-product_list figure img {
  /*border-radius: 10px;*/
  border: 10px solid #ddd;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-product_list figcaption {
	font-size: 2.6rem;
	text-align: center;
	line-height: 1.3;
	color: #fff;
	margin-top: 0.5em;
	span{
		text-transform: uppercase;
	}
}

.c-product_list .price {
  font-size: 2.3rem;
  text-align: center;
  color: #fff;
  margin-top: 0.5em;
}

.c-product_list .c-btn {
  margin-top: 1em;
	font-weight: bold;
}

.c-product_list .c-btn > * {
  max-width: 100%;
}

.c-product_list.js-scroll > li {
  opacity: 0;
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}

.c-product_list.js-scroll > li:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.c-product_list.js-scroll > li:nth-child(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.c-product_list.js-scroll > li:nth-child(3) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.c-product_list.js-scroll > li:nth-child(4) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.c-product_list.js-scroll > li:nth-child(5) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.c-product_list.js-scroll > li:nth-child(6) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.c-product_list.js-scroll > li:nth-child(7) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.c-product_list.js-scroll > li:nth-child(8) {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

.c-product_list.js-scroll > li:nth-child(9) {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

.c-product_list.is-scroll > li {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (min-width: 801px) {
  .c-product_list.col2 > * {
    width: 46.66%;
    margin-left: 6.68%;
  }
  .c-product_list.col2 > *:nth-child(2n+1) {
    margin-left: 0;
  }
  .c-product_list.col2 > *:nth-child(n+3) {
    margin-top: 40px;
  }
  .c-product_list.col3 > * {
    width: 31.26%;
    margin-left: 3.11%;
  }
  .c-product_list.col3 > *:nth-child(3n+1) {
    margin-left: 0;
  }
  .c-product_list.col3 > *:nth-child(n+4) {
    margin-top: 40px;
  }
  .c-product_list.col3 figcaption {
    font-size: 1.5rem;
  }
  .c-product_list.col3 .price {
    font-size: 1.5rem;
  }
  .c-product_list.col3 .c-btn > * {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 801px) and (max-width: 1370px) {
  .c-product_list.col3 figcaption {
    font-size: 1.4vw;
  }
  .c-product_list.col3 .price {
    font-size: 1.2vw;
  }
  .c-product_list.col3 .c-btn > * {
    font-size: 1.8vw;
  }
  .c-product_list figcaption {
    font-size: 2vw;
  }
  .c-product_list .price {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 800px) {
  .c-product_list {
    margin-top: 1.5em;
  }
  .c-product_list.col2 > *:not(:first-child) {
    margin-top: 2em;
  }
  .c-product_list.col2 figcaption {
    font-size: 4vw;
  }
  .c-product_list.col2 .price {
    font-size: 4vw;
  }
  .c-product_list.col3 > * {
    width: 46.66%;
    margin-left: 6.68%;
  }
  .c-product_list.col3 > *:nth-child(2n+1) {
    margin-left: 0;
	  width: 80%;
  }
	.c-product_list.js-scroll > li:nth-child(2){
		margin-left: 0;
		margin-top: 3rem;
		width: 80%;
	}
	.c-product_list.js-scroll > li:nth-child(4){
		margin-left: 0;
		margin-top: 3rem;
		width: 80%;		
	}
  .c-product_list.col3 > *:nth-child(n+3) {
    margin-top: 40px;
  }
  .c-product_list.col3 figcaption {
    font-size: 4vw;
	  letter-spacing: -0.01em;
  }
  .c-product_list.col3 .price {
    font-size: 4vw;
  }
  .c-product_list.col3 .c-btn > * {
    font-size: 2.4vw;
  }
}
/******** ↓ 10/11 追加　↓　*********/
.c-product_list .puzzle-img-wrapper {
  border-radius: 10px;
  border: 5px solid #d9d7d7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: var(--baseColor);
}
.c-product_list > li > *:hover .puzzle-img-wrapper {
  border-color: var(--mainColor);
}
.c-product_list .puzzle-img-wrapper img{
  object-fit: contain;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}
.c-product_list .puzzle-name {
  font-size: 2.6rem;
  text-align: center;
  line-height: 1.3;
  color: var(--baseColor);
  margin-top: 0.5em;
}
@media screen and (min-width: 801px) {
  .c-product_list.col3 .puzzle-name {
    font-size: 2.3rem;
  }
}

@media screen and (min-width: 801px) and (max-width: 1370px) {
  .c-product_list.col3 .puzzle-name {
    font-size: 1.4vw;
  }
  .c-product_list .puzzle-name {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  .c-product_list.col2 .puzzle-name {
    font-size: 4vw;
  }
  .c-product_list.col3 .puzzle-name {
    font-size: 2.4vw;
  }
}
/******** ↑ 10/11 追加 ↑　*********/
.c-keepout {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(45deg, #ebac03, #ebac03 15px, #000 15px, #000 30px);
}

.c-keepout.js-scroll {
  opacity: 0;
  width: 150%;
  left: -25%;
  right: auto;
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
}

.c-keepout.is-scroll {
  opacity: 1;
  left: 0;
}

.p-kv {
	/*background: url(../img/kvBg.jpg) no-repeat center/cover;*/
	position: relative;
	overflow: hidden;
	background:#000414;
	background:linear-gradient(180deg, rgb(0 1 7) 0%, rgb(57 46 2) 50%, rgb(24 25 29) 100%);
}

.p-kv .logo img {
  margin: 0 auto;
	height: auto;
  display: block;
}

.p-kv .logo.js-scroll {
  opacity: 1;
  margin-top: 7rem;
  margin-bottom: 2rem;
  -webkit-transition: 0.5s cubic-bezier(0.5, 0.1, 0, 1) 0.3s;
  transition: 0.5s cubic-bezier(0.5, 0.1, 0, 1) 0.3s;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
@media screen and (max-width: 800px) {
  .p-kv .logo.js-scroll {
    margin-top: 5rem;
	margin-bottom: 1rem;
	}
}

.p-kv .logo.is-scroll {
	position: relative;
	opacity: 1;
	-webkit-transform: none;
			transform: none;
}

@media screen and (max-width: 800px) {
  /*.p-kv {
    background: url(../img/kvBgSp.jpg) no-repeat center/cover;
  }*/
  .p-kv .logo img {
    max-width: 40%;
  }
}

.p-menu {
  padding: 70px 0;
}

.p-menu_list {
  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-menu_list li:first-child a:after, .p-menu_list li:first-child img {
  border-radius: 10px 0 0 10px;
}

.p-menu_list li:last-child a:after, .p-menu_list li:last-child img {
  border-radius: 0 10px 10px 0;
}

.p-menu_list a {
  overflow: hidden;
  display: block;
  position: relative;
}

.p-menu_list a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 6px solid var(--baseColor);
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.p-menu_list a:hover:after {
  opacity: 1;
}

.p-menu_list.js-scroll li {
  opacity: 0;
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
}

.p-menu_list.js-scroll li:nth-child(1) {
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}

.p-menu_list.js-scroll li:nth-child(2) {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.p-menu_list.js-scroll li:nth-child(3) {
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
}

.p-menu_list.is-scroll li {
  opacity: 1;
  -webkit-transform: none !important;
          transform: none !important;
}

@media screen and (min-width: 801px) and (max-width: 1370px) {
  .p-menu_list a:after {
    border-width: 0.4vw;
  }
}

@media screen and (max-width: 800px) {
  .p-menu {
    padding: 5% 0;
  }
  .p-menu_list li:first-child a:after, .p-menu_list li:first-child img {
    border-radius: 6.66px 0 0 6.66px;
  }
  .p-menu_list li:last-child a:after, .p-menu_list li:last-child img {
    border-radius: 0 6.66px 6.66px 0;
  }
  .p-menu_list a:after {
    border-width: 0.8vw;
  }
}

.p-game {
																																																																																																																																																																																																																																																																																																																																															padding: 60px 0 100px;
																																																																																																																																																																																																																																																																																																																																															/*background: url(../img/gameBg.jpg) no-repeat center/cover;
	background-color: #000000;
	opacity: 0.8;*/
	background-image:  linear-gradient(135deg, #161616 25%, transparent 25%), linear-gradient(225deg, #161616 25%, transparent 25%), linear-gradient(45deg, #161616 25%, transparent 25%), linear-gradient(315deg, #161616 25%, #000000 25%);
	background-position:  23px 0, 23px 0, 0 0, 0 0;
	background-size: 46px 46px;
	background-repeat: repeat;
}

@media screen and (max-width: 800px) {
  .p-game {
    padding: 6% 0;
  }
}

.p-makingToy {
  padding: 60px 0;
  background: url(../img/makingToyBg.jpg) no-repeat center/cover;
}

.p-makingToy h2 {
  position: relative;
}

.p-makingToy h2 .btn {
  font-size: 3.0rem;
  font-family: "新ゴ B", "Shin Go Bold", sans-serif;
  text-align: center;
  color: var(--baseColor);
  background: #08abff;
  border: 3px solid var(--baseColor);
  border-radius: 10px;
  width: 300px;
  height: 76px;
  aspect-ratio: 3.95 / 1;
  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;
  position: absolute;
  top: 0;
  right: 3.2%;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-makingToy h2 .btn:hover {
  background: var(--baseColor);
  color: #08abff;
}

@media screen and (min-width: 801px) and (max-width: 1370px) {
  .p-makingToy h2 .btn {
    font-size: 2vw;
    width: 20vw;
    height: calc(20vw * 0.25);
  }
}

@media screen and (max-width: 800px) {
  .p-makingToy {
    padding: 6% 0;
  }
  .p-makingToy h2 .btn {
    font-size: 2.1vw;
    width: 24vw;
    height: calc(24vw * 0.25);
    border-width: 0.5vw;
    border-radius: 6.67px;
    right: 2%;
  }
}

.p-puzzle {
  padding: 60px 0;
  background: url(../img/puzzleBg.jpg) no-repeat center/cover;
  position: relative;
}

.p-puzzle .moreButton a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.p-puzzle .moreButton a:hover {
  -webkit-filter: drop-shadow(0 0 10px var(--baseColor));
          filter: drop-shadow(0 0 10px var(--baseColor));
}

.p-puzzle .copyright {
  font-size: 1.4rem;
  color: var(--baseColor);
  text-align: center;
  letter-spacing: 0.025em;
  margin-top: 2em;
}

@media screen and (max-width: 800px) {
  .p-puzzle {
    padding: 6% 0 10%;
  }
  .p-puzzle .moreButton a {
    margin-top: 2em;
    max-width: 50vw;
  }
  .p-puzzle .copyright {
    font-size: 2vw;
  }
}
.copyright{
	color: var(--baseColor);
	text-align: center;
	padding-block:50px 0;
}
