@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,700&display=swap&subset=japanese");

/*==================================================
	Universal Reset
	Default Style
	hasLayout
==================================================*/
/*==================================================
	Base Layout
	Header Area
	Global Navigation
	Main Visual
	Contents Area
	Main Area
	Aside Area
	Footer Area
==================================================*/
/*==================================================
	Heading
	Text
	Unorderd List
	Orderd List
	Difinision List
	Link
	Table
	Form
	Layout
	Option
	Clear Fix
==================================================*/
/*--------------------------------------------------
	Universal Reset
--------------------------------------------------*/
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
del,
ins,
em,
img,
hr,
q,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

table,
th,
td {
  border: 0 none;
}

th {
  font-weight: normal;
  text-align: left;
}

caption {
  text-align: left;
}

strong {
  font-weight: normal;
}

em {
  font-style: normal;
}

img {
  border: 0;
  vertical-align: top;
}

dt {
  font-weight: normal;
}

fieldset {
  border: 0 none;
}

legend {
  display: none;
}

textarea {
  font-size: 1em;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------------------
	Default Style
--------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  margin-bottom: 0;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

a {
  color: #19378c;
}

a:link {
  color: #19378c;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

/* a:visited{
} */
p,
ul,
ol,
dl,
table {
  margin-bottom: 0;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: baseline;
}

/*--------------------------------------------------
	hasLayout
--------------------------------------------------*/
div,
ul,
dl,
dt,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  zoom: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*--------------------------------------------------
	Base Layout
--------------------------------------------------*/
body {
  width: 100%;

  color: #000;
  background-color: #fff;
}

a:hover {
  opacity: 0.7;
}

.pcOnly {
  display: block;
}

.spOnly {
  display: none;
}

@media only screen and (max-width: 750px) {
  body {
    width: 100%;
    min-width: 100%;
  }

  .pcOnly {
    display: none;
  }

  .spOnly {
    display: block;
  }
}

/*--------------------------------------------------
	Header Area
--------------------------------------------------*/
#section_top {
  background-color: #fff;
}

.header_inner {
  max-width:1080px;
  height: 104px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo_area {
  display: flex;
  align-items: center;
}

.header_logo_area img {
  width: 215px;
}

.header_sns_area {
  display: flex;
  align-items: center;
}

.header_sns_area li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 16px;
}

@media only screen and (max-width: 750px) {
  header {
    display: block;
    position: relative;
    /* z-index: -1; */
  }

  .header_inner {
    width: 100vw;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .header_logo_area {
    display: flex;
    align-items: center;
    width: 107px;
  }

  .header_logo_area img {
    width: 100%;
  }

  .header_sns_area {
    position: absolute;
    width: auto;
    height: 20px;
    right: 0;
    top: 50%;
    margin-top: -10px;
    margin-right: 15px;
  }

  .header_sns_area li {
    width: 20px;
    height: 20px;
    margin-left: 10px;
  }

  .header_sns_area li img {
    width: 100%;
  }
}

/*--------------------------------------------------
	Main Visual
--------------------------------------------------*/


.kv_wrap {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 100%;
	text-align: center;
	margin: 0 auto 0;
	/*height: 1067px;*/
	background: none;
	background: url(../img/bg_kv.jpg);
	background-repeat: no-repeat, no-repeat;
	background-size: cover;
	position: relative;
}
.kv_wrap img {
	pointer-events: none;
  width: 100%;
  }



.kv_wrap .kv_block {
  width: 100%;
  height: 67vw;
  min-height: 916px;
}

.kv_wrap .kv_block_inner {
  width: 100%;
  margin: 0 auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.kv_block_inner img.title_logo {
  width: 55vw;
  margin: 10vw auto 0;
  /*display: flex;
  align-items: center;
  position: relative;
  top: 68px;
  left:0;*/
  z-index: 10;
  pointer-events: none;
}

[data-ruby] {
  position: relative;
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 1.5rem;
}

@media only screen and (max-width: 750px) {

	.img_frame {
		width: 90%;
	}

  .kv_wrap {
    width: 100%;
    height: auto;
    min-width: initial;
    overflow-x: hidden;
    margin-top: 0;
    background: url(../img/bg_kv_sp.jpg) center top no-repeat;
    background-size: contain;
    position: relative;
  }


  .kv_wrap .kv_block {
    height: 100vw;
    min-height: initial;
  }

  .kv_wrap .kv_block_inner {
    width: 96%;
    margin: 0 auto 0;
    display: block;
    position: relative;
  }

  .kv_block_inner img.title_logo {
    width: 74vw;
    margin: 7vw auto;

  }

  [data-ruby] {
    position: relative;
  }

  [data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 2vw;
  }
}







@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,700&display=swap&subset=japanese");
@import url("style.css");

/*--------------------------------------------------
	headline
--------------------------------------------------*/
section {
	overflow-x: initial;
}


.section_inner {
	max-width: 1080px;
	margin: 0 auto;
}

#section_headline {
	position: relative;
	width: 100vw;

}

#section_headline .section_inner {
	margin: 0 auto;

}




/*--------------------------------------------------
	メインエリア
--------------------------------------------------*/
main {
	background-image: url(../img/bg_main.jpg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-attachment: fixed;
	background-position: bottom;

}

.inner_wrap {
	max-width: 1080px;
}

.nav_bar {
	width: 100vw;
	text-align: center;
	background-color: #000000;

}

#menu_bar {
	display: flex;
	max-width: 800px;
	margin: 0 auto;
}

#menu_bar li {

	padding: 20px;
	margin: 5px;
	width: 300px;
	border-left: 1px solid #919191;
	font-family: 'BIZ UDGothic', sans-serif;

}

#menu_bar li:last-child {
	border-right: 1px solid #919191;
}


#menu_bar li a {
	color: #ffffff;
	text-decoration: none;
	font-size: 2.5rem;
}


a.btn_reception {
	width: 24%;
	height: 5.6rem;
	margin-top: 60px;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 5.6rem;
	text-decoration: none;
	border-radius: 10px;
	background-color: #ff3f20;
	display: block;
}

a.btn_reception.end_reception {
	pointer-events: none;
}

img.thumb_goods {
	width: 100%;
	margin: 100px auto 0;
	display: block;
}

div.dots_line {
	width: 100%;
	height: 50px;
	margin: 0 auto 20px;
	background: url(../img/dotted_line.png) left bottom / 8px repeat-x, no-repeat;
	/*background-repeat: ,repeat-x,no-repeat;*/
	/*background-position: ,left top;*/
	/*background-size: 8px;*/
}

ul.event_goods_list {
	width: 100%;
	margin: 0 auto 0;
}

ul.event_goods_list li {
	width: 100%;
	margin-bottom: 4px;
	font-size: 2rem;
	text-indent: -1em;
	padding-left: 1em;
}

.goods_contents {
	width: 100%;
	margin: 40px auto 0;
}

h4.goods_subheading,
h4.goods_subheading2,
h4.goods_subheading3 {
	width: 100%;
	height: 5rem;
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	line-height: 5rem;
	text-indent: 1.5rem;
	border-radius: 10px;
	position: relative;
}

.wp-products .contents_box {
	position: relative;
}


.wp-products .contents_box h2 {
	position: absolute;
	top: -50px;
	right: 11%;
}


.contents_box h2 img {
	width: 100%;
}

.ornaments {
	margin: 0 auto;
	padding: 15px;
	max-width: 400px;
}

.ornaments img {
	width: 100%;
}

@media only screen and (max-width: 750px) {

	#menu_bar {
		margin: 0 auto;
		justify-content: space-between
	}

	#menu_bar li {
		padding: 2px;
		margin: 0;
		width: 100px;
		border-left: none;
		text-align: center;
		font-size: 3vw;

	}

	#menu_bar li:last-child {
		border-right: none;
	}


	#menu_bar li a {
		color: #ffffff;
		text-decoration: none;
	}



	.wp-products .contents_box h2 {
		width: 100%;
		top: -30px;
		right: 0%;
	}

	.ornaments {
		margin: 0 auto;
		padding: 5px;
		max-width: 200px;
	}

}

@media only screen and (max-width: 480px) {

main {
		background-image: url(../img/bg_main_sp.jpg);
	}

}
/*--------------------------------------------------
	基礎
--------------------------------------------------*/
.section_inner {
	margin: 0 auto;
}

.wp-products {
	margin: 73px auto 73px;
	z-index: 0;

}

.wp-products .title_wrap {
	padding: 30px;
	background: #fff;
	background-size: 60% 60%;
	background-repeat: no-repeat;
	text-align: center;

}

.wp-products .title_wrap p {
	padding: 80px 20px;
	border: solid 4px #ba64f0;
}

.wp-products .title_wrap p .tbold {
  font-weight: bold;
  font-size: 2rem;
}

.underline{
  background: linear-gradient(transparent 50%, #ffee00 50%);
}


.top_text {
	z-index: 1;
	border-bottom: solid 5px #ffffff;
	border-image-slice: 1;
	width: 80%;
	margin: 0 auto;
	text-align: center;
	padding: 20px;

}




.wp-products .contents_box {
	width: 100%;
	position: relative;
	z-index: 0;
	margin: 0 auto;
	padding-top: 80px;
	padding-bottom: 80px;
	margin-top: 100px;
	background: #ffffff;
	box-shadow: 0 0 10px rgba(179, 179, 179, 0.7);


}






/*--------------------------------------------------
	概要
--------------------------------------------------*/

.wp-products .contents_box .back_wrap_top img,
.wp-products .contents_box .back_wrap_bottom img,
.wp-products .contents_box .back_wrap_resna img {
	width: 100%;
}

.wp-products .contents_box .back_wrap_top,
.wp-products .contents_box .back_wrap_bottom {
	width: 40%;
	opacity: 0.6;
}

.wp-products .contents_box .back_wrap_resna {
	width: 50%;
	opacity: 0.4;
}

.wp-products .contents_box .back_wrap_top {
	position: absolute;
	z-index: -1;
	top: -2%;

}

.wp-products .contents_box .back_wrap_bottom,
.wp-products .contents_box .back_wrap_resna {
	position: absolute;
	z-index: -1;
	bottom: 0%;
	right: 0;
}


.wp-products .contents_box .contents_box_inner {
	width: 80%;
	margin: 0 auto;
	padding-top: 20px;
}

.wp-products .contents_box .order {
	width: auto;
}



.wp-products .contents_box .contents_box_inner .overview_txt .overview_detail_wrap {
	display: flex;
}

.wp-products .contents_box .contents_box_inner .overview_txt .overview_detail {
	padding: 25px;
}

.wp-products .contents_box .contents_box_inner .overview_txt .overview_detail p {
	text-align: center;
	padding: 10px;
	line-height: 4rem;
	font-size: 1.5rem;
}

.wp-products .contents_box .contents_box_inner .overview_txt .overview_detail p .tbold {
  font-weight: bold;
  font-size: 2.1rem;
}

.wp-products .contents_box .contents_box_inner .overview_txt .overview_detail .center {
	text-align: center;
}

.wp-products .contents_box .contents_box_inner .overview_txt .overview_detail .information {
	font-size: 1.5rem;
	padding-top: 20px;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 3rem;
}

.wp-products .contents_box .benefits_inner {
	width: 100%;
	margin: 0 auto;

}

.wp-products .contents_box .benefits_inner h4 {
	width: 100%;
	max-width: 500px;

}

.wp-products .contents_box .benefits_inner .long_title {}


.wp-products .contents_box .benefits_wrap {
	display: flex;
	justify-content: space-between;
}

.wp-products .contents_box .contents_box_inner .benefits_content {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;

}

.wp-products .contents_box .contents_box_inner .benefits_content .content_img {

	margin: 0 auto;
}

.wp-products .contents_box .contents_box_inner .benefits_content .content_img img {
	width: 100%;
}

.wp-products .contents_box .contents_box_inner .benefits_content p {
	border: solid 2px #ffffff;
	border-image: linear-gradient(to right, #e04efa 0%, #62edcc 100%);
	border-image-slice: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	border-radius: 10px;
	padding: 10px;
	font-size: 1.5rem;
	line-height: 1.6rem;
	height: 100px;

}

.wp-products .contents_box .contents_box_inner .benefits_content .link_button {
	background-image: linear-gradient(90deg, rgb(129, 120, 255), rgb(255, 123, 152), rgb(255, 117, 117), rgb(129, 120, 255));
	height: 50px;
	border: initial;
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: bold;
	;

}

.wp-products .event_contents .link_button {
	background-color: rgb(255, 123, 152);
	border: initial;
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: bold;
	vertical-align: middle;
	padding: 20px;
	border-radius: 10px;
}


.wp-products .contents_box .contents_box_inner .benefits_content ul {
	font-size: 1.5rem;
	padding-bottom: 10px;
}


.wp-products .contents_box .contents_box_inner .benefits_content .benefits_cap {
	border: none;
	padding: 0;
	font-size: 1.8rem;
	line-height: 1.9rem;
	font-weight: bold;
	height: 60px;

}


@media only screen and (max-width: 750px) {

	.wp-products .contents_box .back_wrap_top,
	.wp-products .contents_box .back_wrap_bottom {
		width: 60%;
	}

	.wp-products .title_wrap p {
		padding: 10px;
		font-size: 3vw;
	}
  .wp-products .title_wrap p .tbold {
    font-weight: bold;
    font-size: 3.8vw;
  }

	.wp-products .event_contents .contents_box_inner .overview_txt .overview_detail .content_img {
		width: 70%;
	}

	.wp-products .contents_box .back_wrap_resna {
		width: 100%;
		right: -15%;
		bottom: -4%;
	}


	.wp-products .contents_box {
		width: 90%;
		padding-top: 100px;

	}

	.wp-products .event_contents {
		padding-bottom: 100px;

	}


	.wp-products .event_contents .link_button {
		background-color: rgb(255, 123, 152);
		border: initial;
		color: #ffffff;
		font-size: 1.4rem;
		font-weight: bold;
		vertical-align: middle;
		padding: 20px;
		border-radius: 10px;
	}

	.title_wrap {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		padding: 10px;
	}

	.wp-products .event_contents .contents_box_inner {
		width: auto;
	}


	.wp-products .contents_box .contents_box_inner .overview_txt .overview_detail {
		padding: 20px;
	}

	.wp-products .contents_box .contents_box_inner .overview_txt .overview_detail p {
		line-height: 6vw;
		font-size: 3.3vw;
	}
  
  .wp-products .contents_box .contents_box_inner .overview_txt .overview_detail p .tbold {
    font-weight: bold;
    font-size: 4.3vw;
  }

	.wp-products .contents_box .contents_box_inner .overview_txt .overview_detail .information {
		font-size: 3.3vw;
		line-height: 6vw;
	}

	.wp-products .contents_box .benefits_inner .long_title {
		width: 250px;
		margin: 0 auto;

	}

	.wp-products .contents_box .contents_box_inner .benefits_content {
		max-width: none;

	}

	.wp-products .contents_box .contents_box_inner .benefits_content p {
		font-size: 3.3vw;
		line-height: 4vw;
		height: auto;
	}

	.wp-products .contents_box .contents_box_inner .benefits_content .benefits_cap {
		font-size: 4.4vw;
		line-height: 4.5vw;
		height: auto;
	}


	.wp-products .contents_box .contents_box_inner {
		display: block;
	}

	.contents_box .contents_box_inner .goods_price .price_wrap {
		width: auto;
	}

	.wp-products .contents_box .benefits_wrap {
		display: block;
	}

	.wp-products .contents_box .contents_box_inner .content_img {
		width: 80%;
		padding-right: 0;
		margin: 0 auto;
	}

	.wp-products .coming_soon {
		background: linear-gradient(-45deg, #c8fda3, #4bc0ff);
		height: 50vh;
	}

	.benefits_wrap {
		width: 100%;
		margin: 0 auto;
	}

	.wp-products .benefits {
		padding-top: 45px;
		margin: 50px auto;
	}

	.wp-products .benefits h1 {
		top: 4%;
		font-size: 3.5vw;
	}

	.wp-products .benefits .contents_box_inner ::after {
		top: 0;
		left: 0;
		border-right: 130px solid transparent;
		border-top: 130px solid #ff9906;
	}

	.wp-products .benefits .benefits_title {
		width: 80%;
		font-size: 10vw;
	}

	.wp-products .benefits .benefits_title span {
		font-size: 5vw;
	}

}

@media only screen and (max-width: 480px) {
	.wp-products .title_wrap {
		padding: 20px;
		background: #fff;
		background-repeat: no-repeat;
		text-align: center;

	}

	.wp-products .contents_box {
		margin-top: 20px;
		padding-top: 40px;
		padding-bottom: 30px;

	}
}

/* ----------------------------------------------------------------------------------------------------------------------------*/
/*リンクエリア*/

.link_banner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	padding-bottom: 50px;
}

.linktext{
  text-align: center;
  margin: 15px auto;
  font-size: 24px;
  color: #260203;
}

#link_area {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	padding-bottom: 50px;
}

.contents_box_inner a {
	text-decoration: none;
}

.contents_box_inner .link_wrap {
	width: 600px;
	margin: 0 auto;
	text-align: center;

}

.contents_box_inner .kuji_link{
	width: auto;
	display: flex;
	margin: 0;
	justify-content: space-between;
}

.contents_box_inner .link_wrap img {
	width: 100%;
}

.contents_box_inner a img {
	width: 100%;
}

.contents_box_inner h4 {
	text-align: center;
	width: 50%;
	margin: 0 auto;
	font-size: 2.3rem;
	font-family: serif;
	font-weight: bold;
	color: #000000;
	font-family: 'BIZ UDGothic', sans-serif;
	padding: 10px;
}

#link_area .background_none {
	background: none;
	box-shadow: initial;
	text-align: center;
}

#link_area .background_none h1 {
	font-size: 3rem;
	font-family: serif;
	font-weight: bold;
	padding: 20px;
	font-family: 'BIZ UDGothic', sans-serif;
}

@media only screen and (max-width: 750px) {

	#link_area .background_none h1 {
		font-size: 3.7vw;
		font-weight: bold;
		padding: 3vw 0 3vw 0;
		line-height: 4.5vw;
	}

	.contents_box_inner .link_wrap {
		width: auto;
	}
}

@media only screen and (max-width: 480px) {
	#link_area {
		min-height: auto;
	}
  
	.link_banner {
		min-height: auto;
	}
  
  .contents_box_inner .kuji_link{
    display: block;
  }

	.characters_wrap {
		height: 47vh;
	}


}


/* ----------------------------------------------------------------------------------------------------------------------------*/
/*ここから*/
/*グッズ*/

.container_cart {
	width: 90%;
	margin: 25px auto;
}

.container_cart li {
	text-indent: -1rem;
	margin-left: 1rem;
}

.text-center {
	text-align: center;
}

.btn-primary {
	background: #ba64f0;
	color: #FFFFFF;
	font-weight: 500;
	padding: 25px;
	font-size: calc(1.375rem + 1.5vw);
	margin: 0 auto;
	font-feature-settings: "palt";
	font-weight: bold;
	font-family: 'BIZ UDGothic', sans-serif;
	transition: .3s;

}

.btn-primary:hover{

	box-shadow: unset;
    transform: translateY(6px);
}

.wp-products .contents_box .banner_id_registration {
	width: 90%;
	margin: 50px auto;
	padding-top: 20px;
	padding-bottom: 20px;

}

.contents_box .banner_id_registration img {
	width: 100%;
	border: solid 1px #bdbdbd;
}

.contents_box .banner_id_registration a {
	text-decoration: none;
}

.contents_box .banner_id_registration img {
	width: 100%;
}

.order_conditions {
	width: 60%;
	height: 6.5rem;
	margin: 20px auto 0;
	color: #fff;
	font-family: 'Kosugi Maru', sans-serif;
	font-size: 3rem;
	font-weight: bold;
	line-height: 6.5rem;
	letter-spacing: 0.08em;
	text-align: center;
	background-color: #ffffff;

}

ol.order_flow {
	list-style-type: decimal;
	width: 90%;
	margin: 20px auto 0;

}

ol.order_flow li {
	width: 100%;
	height: 4.5rem;
	margin-top: 10px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 4.5rem;
	border-bottom: 1px solid #919191;
}

.wp-products .goods_contents {
	margin-top: 100px;
	background-color: rgba(255, 255, 255, 1.0);

}

ul.goods_list {
	width: 92%;
	margin: 20px auto 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	z-index: 10;
}

ul.goods_list li.goods_info {
	width: 100%;
	margin-top: 33px;
	padding-bottom: 40px;
	position: relative;
	z-index: 8;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 10px 4%;
	border-bottom: 1px dashed #919191;
}

ul.goods_list li.goods_info:last-child {
	border-bottom: none;
}

.goods_image {
	width: 40%;
	height: auto;
	margin: 0 auto 20px;
	filter: drop-shadow(3px 3px 3px #888888);
}

.listtype {
	width: 90%;
	margin-left: 0;
	margin-right: 20px;

}

.goods_image img {
	width: 100%;
	/*aspect-ratio: 4/3.3;*/
	margin: 0;
}

.goods_image_wrap {
	display: block;
}

.goods_all_wrap {
	display: flex;
}

.goods_image_wrap.goods_image {
	width: 40%;
	height: auto;
	margin: 0 auto;
	background-color: white;
	filter: drop-shadow(3px 3px 3px #888888);
}

.goods_image_wrap.goods_image img {
	width: 100%;
	/*aspect-ratio: 4/3.3;*/
	margin: 0;
}


.new_badge {
	color: white;
	background-color: red;
	width: 30%;
	text-align: center;
	font-size: 2.3rem;
	font-weight: bold;
	margin: 10px auto;

}

.goods_name {
	width: 100%;
	margin: 0 auto 20px;
	padding-bottom: 10px;
	font-size: 2.0rem;
	font-weight: bold;
	text-align: left;
	border-bottom: solid 5px #ffffff;
	border-image-slice: 1;
}

.goods_name span {
	font-size: 2.3rem;
}

.new_badge {
	background-color: #000000;
	width: 100%;
}

.limited {
	background-color: #ff4a5f;
	width: 100%;
}


.goods_price {
	width: 100%;
	margin: 0 auto;
	font-size: 1.8rem;
	font-weight: bold;
	border-bottom: 1px solid #919191;
	color: #000;
	vertical-align: baseline;
}

.goods_price span {
	font-size: 3rem;
}

.goods_price .price_wrap {
	display: flex;
	justify-content: space-between;

}

.goods_price .price_wrap p {
	padding: 10px;
}

.goods_cap {
	border-bottom: 1px solid #919191;
	font-size: 1.5rem;
	margin: 10px auto 0;
	padding-bottom: 10px;
}

.goods_detail {
	border-bottom: 1px solid #919191;
	width: 100%;
	margin: 10px auto 0;
	padding-bottom: 10px;
	font-size: 1.4rem;

}

.goods_detail p {
	padding-left: 1em;
	text-indent: -1em;
}


.bg_goods_txt {
	width: 50%;
	margin: 0 auto 0;
	padding: 0;
}


.listtype_text {
	width: 135%;
	margin: 0 auto 0;
	padding: 0;
}

.single_price .price_wrap {
	display: flex;
	justify-content: space-between;

}

.goods_price .purchase_btn,
.single_price .purchase_btn {
	text-decoration: none;
	color: #ffffff;
	background-color: #ff9906;
	width: 150px;
	max-height: 50px;
	text-align: center;
	border-radius: 30px;
	padding: 10px;
	display: block;
	font-size: 1.5rem;
}

.single_price .purchase_btn {
	width: 100px;
}


.single_price span {
	font-size: 1.6rem;

}


.single_price .price_wrap p {
	padding: 10px;
	font-size: 1.2rem;
}


.attention {
	width: 90%;
	margin: 0 auto;
	font-size: 1.3rem;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.7rem;
}

.goods_type_area {
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0px 8%;
	padding-bottom: 8px;
}

.type_all_area {
	width: 100%;
}

.bg_type_all {
	width: 33%;
	height: 3rem;
	font-size: 1.6rem;
	line-height: 3rem;
	color: #fff;
	background-color: #76bbf9;
	margin: 10px 10px 10px 0;
}

.bg_type_all input[type="checkbox"] {
	cursor: pointer;
	padding-left: 30px;
	/*label手前にチェックボックス用の余白を開ける*/
	vertical-align: middle;
	position: relative;
}


.purchase_box {
	width: 100%;
	margin: 0;
	padding-bottom: 8px;
	display: flex;
	justify-content: space-between;
}


.btn_purchase,
.btn_purchase2 {
	width: 35%;
	margin: auto 0;
	color: #fff;
	font-size: 1.5rem;
	line-height: 3rem;
	font-weight: 600;
	text-indent: 0.8em;
}

.btn_purchase {
	width: 20%;
	margin: 0 0 0 auto;
	text-align: right;
}

.btn_purchase input[type="checkbox"],
.btn_purchase2 input[type="checkbox"] {
	cursor: pointer;
	padding-left: 30px;
	/*label手前にチェックボックス用の余白を開ける*/
	vertical-align: middle;
	position: relative;
}

.btn_purchase input[type="checkbox"]::before,
.btn_purchase input[type="checkbox"]::after {
	content: "";
	display: block;
	position: absolute;
}

.btn_purchase2 input[type="checkbox"]::before,
.btn_purchase2 input[type="checkbox"]::after {
	content: "";
	display: block;
	position: absolute;
}

.btn_purchase input[type="checkbox"]::before,
.btn_purchase2 input[type="checkbox"]::before {
	background-color: #fff;
	border-radius: 0%;
	border: 1px solid #666464;
	width: 18px;
	/*チェックボックスの横幅*/
	height: 18px;
	/*チェックボックスの縦幅*/
	transform: translateY(-50%);
	top: 40%;
	left: 5px;
}

.btn_purchase input[type="checkbox"]::after,
.btn_purchase2 input[type="checkbox"]::after {
	border-bottom: 3px solid #666464;
	/*チェックの太さ*/
	border-left: 3px solid #666464;
	/*チェックの太さ*/
	opacity: 0;
	/*チェック前は非表示*/
	height: 6px;
	/*チェックの高さ*/
	width: 11px;
	/*チェックの横幅*/
	transform: rotate(-45deg);
	top: 1px;
	/*チェック時の位置調整*/
	left: 10px;
	/*チェック時の位置調整*/
}

.btn_purchase input[type="checkbox"]:checked::after,
.btn_purchase2 input[type="checkbox"]:checked::after {
	opacity: 1;
	/*チェック後表示*/
	top: -5px;
}

.btn_purchase select,
.btn_purchase2 select {
	margin-left: 20px;
	color: #4e4e4e;
}

.btn_purchase:hover {
	opacity: 0.6;
}




/*.btn_purchase, .btn_purchase2{
    display: none !important;
  }*/

.purchase_box p {
	width: 90%;
	padding-bottom: 0.5rem;
	color: red;
	font-size: 1.6rem;
	line-height: 2rem;
	font-weight: 600;
	text-align: left;
	border-bottom: 1px solid #919191;
}

span.kakioroshi {
	width: 40%;
	font-size: 1.2rem;
	line-height: 2rem;
	color: #fff;
	text-align: center;
	background-color: #ff4a5f;
	display: block;
}


img.bg_goods_content {
	width: 464px;
	height: 490px;
	position: absolute;
	bottom: 3vw;
	right: 4vw;
	display: block;
	z-index: 1;
	opacity: 0.6;
}

.new_goods_image img {
	width: 100%;
	/*opacity:1.0;*/
}



@media only screen and (max-width: 750px) {

	.wp-products {
		position: relative;
		z-index: 0;
		width: 100%;
		margin: 20px auto 80px;
	}


	.wp-products .title_wrap .small_title {
		width: 100%;
		font-size: 5vw;
		line-height: 7vw;
	}



	.wp-products .contents_box .contents_box_inner {
		width: 90%;
	}

	.wp-products .contents_box .banner_id_registration {
		width: auto;
		margin: 0 auto;
		padding-top: 20px;
	}

	.wp-products .contents_box .contents_box_inner .overview_txt .overview_detail {
		padding: 20px 0;
	}

	.contents_box_inner {
		width: 100%;
		margin: 0 auto;
	}


	.wp-products .goods_contents {
		margin-top: 50px;
	}




	.item_cartlink {
		font-size: 4vw;
	}

	.order_conditions {
		width: 93%;
		height: auto;
		margin: 20px auto 0;
		color: #fff;
		font-family: 'Kosugi Maru', sans-serif;
		font-size: 2.5rem;
		line-height: 4.5rem;
		letter-spacing: 0.08em;
		text-align: center;
	}

	.order_flow li {
		font-size: 3.5vw;
		line-height: 4vw;

	}


	ol.order_flow li {
		height: auto;
		font-size: 4vw;
		font-weight: bold;
		line-height: 5vw;
	}


	a.banner_id_registration {
		width: 94%;
		margin: 5vw auto 5vw;
		display: block;
	}



	.contents_box {
		width: 90%;
		margin: 0 auto;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	ul.goods_list {
		width: 92%;
		margin: 0 auto 0;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		z-index: 10;
	}

	ul.goods_list li {
		width: 100%;
	}

	.goods_image {
		width: 100%;
		margin: 0 auto;
	}

	.goods_image img {
		width: 100%;
		margin: 0;
	}

	.goods_all_wrap {
		display: block;
	}

	.bg_goods_txt {
		width: 100%;
		margin: 0 auto 0;
		padding: 0 0 10px;
	}

	.goods_name {
		width: 100%;
		margin: 5px auto 5px;
		font-size: 5vw;
		font-weight: bold;
		text-align: center;
		line-height: 5.5vw;
	}

	.purchase_box {
		width: 100%;
		margin: auto 0;
		padding-bottom: 0;
	}

	.purchase_box p {
		margin: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		font-size: 4vw;
		line-height: 4vw;
		font-weight: 600;
		text-align: center;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.new_goods_price,
	.goods_price {
		display: block;
		width: 100%;
		margin: 0 auto 0;
		font-size: 4vw;
		font-weight: bold;
		padding: 5px 0 5px 0;

	}

	.goods_price .price_wrap p {
		width: 90%;

	}



	.new_goods_price span,
	.goods_price span {
		font-size: 6vw;
	}

	.special_price {
		color: red;
		font-weight: bold;
	}

	.goods_detail {
		width: 100%;
		margin: 8px auto 0;
		font-size: 3.3vw;
		line-height: 3.5vw;
    border-bottom: none;

	}

	.type_all_area {
		width: 100%;
	}

	.bg_type_all {
		width: 50%;

	}


	img.bg_goods_content {
		width: 40vw;
		height: 42vw;
		position: absolute;
		bottom: 3vw;
		right: 4vw;
		display: block;
		z-index: 1;
		opacity: 0.6;
	}

	.bg_wp_goods {
		width: 100%;
		padding-top: 0;
		height: auto;
		background-image: url(../img/bg_crystal.jpg);
		background-repeat: repeat-y;
		background-size: contain;
		opacity: 1;
	}



	.img_wrap {
		padding: 0;
	}


	.info_set_area {
		margin: 0 auto 0;
	}

	a.banner_ktspot {
		width: 90%;
		height: auto;
		margin: 13vw auto 13vw;
		display: block;
	}

	a.banner_ktspot img {
		width: 100%;
		margin: 0;
	}

	.contents_box_inner h4 {
		width: 100%;
		font-size: 4vw;
		padding: 6px;
	}

	.slick-slider .slick-dots li {
		width: 12px;
		height: 12px;
		margin: 0 5px;
	}
	ul.goods_list li.goods_info {
    margin-top: 5px;
		padding-bottom: 5px;
	}

	/*spフォーム*/
	.content_body {
		width: 100%;
		margin: 30px auto 0;
	}
}

@media only screen and (max-width: 480px) {
	.goods_name {
		font-size: 4vw;
	}

	.goods_name span {
		font-size: 5.3vw;
	}

}

/*--------------------------------------------------
	slick
--------------------------------------------------*/
.slick-slider .slick-dots {
	display: flex;
	justify-content: center;
	position: absolute;
	left: 34%;
	bottom: -5%;
	width: 32%;

}

.slick-slider .slick-dots button {
	overflow: hidden;
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	background: #fff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
	white-space: nowrap;
	text-indent: 100%;
}

.slick-slider .slick-dots li {
	margin: 0 4px;
}

.slick-slider .slick-dots li.slick-active button {
	background: #919191;
}
.slick-dots li button:before{
	display: none;
}

.slick-next, .slick-prev{
	width: 50px;
	height: 50px;
}

.slick-next:before, .slick-prev:before{
font-size: 30px;
}


@media only screen and (max-width: 750px) {
	.slick-slider .slick-dots li {
		width: 12px;
		height: 12px;
		margin: 0 5px;
	}

}


/*--------------------------------------------------
	ハンバーガーメニュー
--------------------------------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100px;
  height: 100px;
  background-color: #ba64f0;
  transition: transform 250ms ease;
  cursor: pointer;
  z-index: 200;
  filter: drop-shadow(0px 0px 4px #4b1071);
}

.menu span {
  position: relative;
  display: block;
  width: 60%;
  height: 4px;
  background-color:#fff;
  float: left;
  transform-origin: center center;
  transition: transform 250ms ease;
  z-index: 200;
}

.menu span:nth-of-type(1) {
  transform: translateY(-5px);
  margin-top: 5px;
}

.menu span:nth-of-type(3) {
  transform: translateY(5px);
}

.menu p {
  position: relative;
  float: left;
  margin-top: 20px;
  font-size: 1em;
  color: #fff;
}

.disp_none {
  display: none;
}

#menu {
  display: none;
}

#menu:checked~.menu {
  /*background-color: transparent;
  transform: rotate(360deg);
  transition: transform 250ms ease;*/
}

#menu:checked~.menu span {
  background-color: #fff;
  transition: transform 250ms ease;
}

#menu:checked~.menu span:nth-of-type(1) {
  transform: translateY(1px) rotate(45deg);
}

#menu:checked~.menu span:nth-of-type(2) {
  display: none;
}

#menu:checked~.menu span:nth-of-type(3) {
  transform: translateY(-1px) rotate(-45deg);
}

#menu:checked~.nav {
  left: 0px;
  transition: left 500ms ease;
}

#menu:checked~main {
  transform: translateX(250px);
  transition: transform 500ms ease;
}

.nav {
  position: fixed;
  top: 0;
  left: -25vw;
  width: 25vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.8);
  transition: left 500ms ease;
  z-index: 300;
  
}

.nav ul {
  position: relative;
  list-style-type: none;
  margin: 100px 0;
  padding: 0;
}

.nav ul li {
  position: relative;
  display: block;
  border-bottom: 1px solid #ba64f0;
}

.nav ul .gray {
  background-color: #444;

}

.nav ul .gray a:hover {
  background-color: #444;
}

.nav ul .gray a {
  color: #979797;
}

.nav ul li a {
  position: relative;
  display: block;
  margin: 0;
  padding: 15px 20px;
  color: #ba64f0;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;

}

.nav ul li a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 250ms ease;
  z-index: -1;
}

.nav ul li a:hover {
  color: #444;
}

.nav ul li a:hover:before {
  width: 100%;
  height: 100%;
  background-color: #b3b3b3;
  transition: width 250ms ease;
}




@media only screen and (max-width: 750px) {
  .menu {
    width: 19vw;
    height: 19vw;
  }

  .menu p {
    margin-top: 3vw;
  }

  .nav {
    left: -45vw;
    width: 45vw;
  }
  .nav ul li a {
    padding: 15px 10px;
    font-size: 13px;
  
  }
}





/*--------------------------------------------------
	footer
--------------------------------------------------*/
.footer-bottom .footer-copy span {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}

.footer-bottom .footer-copy img {
  pointer-events: none;
  filter: drop-shadow(0 0 1px #000);
}

.logo-ps img {
  position: relative;
  top: 2px;
  height: 14px;
}

.logo-ps4 img {
  height: 10px;
}


/*--------------------------------------------------
	footer_area
--------------------------------------------------*/
.footer_area .footer_head {
  width: 1008px;
  margin: 85px auto 85px;
}

.footer_area .footer_head .bnr_item {
  width: 494px;
  display: block;
}

.footer_area .footer_head .bnr_item img {
  width: 100%;
}

.footer_area .footer_head .bnr_block {
  text-align: center;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 750px) {
  .footer_area .footer_head {
    width: 100%;
    padding-bottom: 0;
    margin: 0 auto 40px;
  }

  .footer_area .footer_head .bnr_block {
    width: 100%;
    padding: 0 25px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }

  .footer_area .footer_head .bnr_block a {
    text-align: left;
    display: block;
    margin-bottom: 30px;
  }

  .footer_area .footer_head .bnr_item02 {
    width: 100%;
  }

  .footer_area .footer_head .bnr_block img {
    width: 100%;
    display: block;
    margin: 0;
  }
}

.page-anchor {
  flex-direction: column;
  display: flex;
  align-items: center;
  position: fixed;
  right: 30px;
  bottom: 90px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
  /*margin-bottom:-70px;*/
}

.top-anchor {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
  /*margin-bottom:235px;*/
}

.top-anchor.active,
.page-anchor.active {
  opacity: 1;
  pointer-events: auto;
}

.top-anchor img,
.page-anchor img {
  width: 62px;
  height: 62px;
  margin-bottom: 13px;
  opacity: 1;
  transition: opacity .15s;
  cursor: pointer;
}

.top-anchor img:hover,
.page-anchor img:hover {
  opacity: .75;
}


/* footer */
.main-footer {
  position: relative;
  z-index: 2;
 
  background: url("https://shop.koeitecmo.com/assets/images/bg/footer_bg.jpg") 50% 0;
}


.footer-bottom {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  max-width: 1128px;
  margin: 0 auto;
  /*height: 105px;*/
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 0 2px #000;
}

.footer-bottom .footer-logo {
  margin-right: 60px;
  width: 200px;
}

.footer-bottom .footer-logo img {
  display: block;
  width: 100%;
}

.footer-bottom-links {
  display: flex;
  margin-bottom: 12px;
}

.footer-bottom-links li {
  margin-right: 18px;
  padding-right: 18px;
  line-height: 1;
  border-right: 1px solid #fff;
}

.footer-bottom-links li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.footer-bottom-links a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

.footer-bottom-links a[target="_blank"] {
  padding-left: 16px;
  background: url("../img/icon_blank_w.svg") no-repeat 0 50%/11px auto;
}

/* 購入特典 */

.tokuten_box{
	width: 90%;
	margin: 0 auto 20px;
	border: #CBCBCB 1px solid;
	padding: 15px;
}
.tokuten_boximg{
	text-align: center;
}
.tokuten_boximg img{
	width: 70%;
}
.tokuten_boxtitle{
	font-size: 2.8em;
	line-height: 1.1em;
	color:#840002;
	text-align: center;
	margin-bottom: 20px;
}
.tokuten_boxtext{
	font-size: 1em;
}
.tokuten_boxtext li{
	font-size: 0.8em;
	text-indent: -1em;
	margin-left: 1em;
}




@media screen and (max-width: 1800px) {
  .footer-grid {
    width: 60%;
    margin: 0 0 0 7.5%;
  }

  .footer-bottom {
    margin: 0 0 0 7.5%;
  }
}



@media only screen and (max-width: 750px) {



  /* footer */
  .main-footer {
    z-index: auto;
    min-width: 0;
    background-size: auto 300px;
    padding-top: 44px;
  }

  .main-footer::after {
    display: none;
  }

  .footer-grid {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    width: auto;
    height: auto;
    margin: 0;
    text-shadow: none;
  }

  .footer-bottom .footer-logo {
    order: 2;
    width: 60%;
    margin: 0;
    padding: 40px 0 70px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.05);
  }

  .footer-bottom .footer-logo img {
    margin: 0 auto;
  }

  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 0 0 25px;
  }

  .footer-bottom-links li {
    width: calc(50% - 25px);
    margin: 0 25px 30px 0 !important;
    padding: 0;
    border: none;
    font-size: 1.2rem;
  }

  .footer-bottom .footer-copy {
    position: relative;
    top: 100px;
    padding: 0 25px;
    font-size: 10.5px;
    text-align: center;
  }

  /* footer */
  .footer-bottom .footer-logo {
    margin-top: -21px;
    padding-bottom: 150px;
  }

  .footer-bottom .footer-copy {
    top: 0px;
  }

  .footer-bottom .footer-copy img {
    filter: none;
  }

	/* 購入特典 */

	.tokuten_box{
		width: 93%;
		margin: 0 auto 20px;
		border: #CBCBCB 1px solid;
		padding: 15px;
	}
	.tokuten_boximg{
		text-align: center;
	}
	.tokuten_boximg img{
		width: 90%;
	}
	.tokuten_boxtitle{
		font-size: 4.8vw;
		line-height: 5.5vw;
		color:#840002;
		text-align: center;
		margin-bottom: 20px;
	}
	.tokuten_boxtext{
		font-size: 3.3vw;
	}
	.tokuten_boxtext li{
		font-size: 2.8vw;
		text-indent: -1em;
		margin-left: 1em;
	}

	
	
}



/*--------------------------------------------------
	Option
--------------------------------------------------*/
.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-00 {
  margin-bottom: 0 !important;
}

.align-l {
  text-align: left !important;
}

.align-c {
  text-align: center !important;
}

.align-r {
  text-align: right !important;
}

.clrFix::after {
  display: block;
  clear: both;
  content: "";
}