@charset "utf-8";

/*///////////////////////////////////////////////////////////////////////////////////////DEFAULT*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
re,
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,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
details,
figcaption,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

/*for IE*/
html {
	font-size: 62.5%;
}

body {
	text-align: center;
	font-size: 1.6em;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
input,
textarea {
	font-size: 100%;
}

img {
	border: none;
	vertical-align: bottom;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: inherit;
	font: 100%;
}

.hiddenTxt {
	font-size: 1px;
	line-height: 100%;
	text-indent: 100%;
	white-space: nowrap;
	display: block;
	overflow: hidden;
}

.clearfix:after {
	content: " ";
	display: block;
	clear: both;
}

p {
	line-height: 160%;
}

/*/////////////////////////////////////////////////////////////////////////
コンテンツ用CSS
/////////////////////////////////////////////////////////////////////////*/

body {
	color: #111;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
	letter-spacing: 0.1rem;
}

#wrapper {
	min-width: 1000px;
}

header h1 {
	width: 1000px;
	margin: 0 auto;
	padding: 10px 0 10px;
}

nav {
	background: #f60;
	position: sticky;
	top: 0;
	z-index: 999;
}

nav ul {
	display: flex;
	justify-content: space-between;
	width: 1000px;
	margin: 0 auto;
	padding: 25px 0;
}

nav ul li {
	font-size: 28px;
	font-family: 'Arvo', sans-serif;
	font-weight: 700;
}

nav ul li.cs {
	color: rgba(255, 255, 255, 0.3);
}

nav ul li a {
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
}

nav ul li a:hover {
	color: #337e3f;
}

article {
	background: #f3f4f8;
}

main {
	text-align: left;
	width: 1000px;
	margin: 0 auto;
	padding: 40px 0 60px;
}

br.sp {
	display: none;
}

@media all and (max-width: 767px) {
	br.sp {
		display: block;
	}

	#wrapper {
		min-width: 100%;
	}

	header h1 {
		width: 100%;
		padding: 50px 0;
	}

	#menuIcon {
		display: block;
		background: #f60;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 9999;
		padding: 13px 14px;
	}

	#menuIcon a,
	#menuIcon a span {
		display: inline-block;
		transition: all .4s ease-out;
		box-sizing: border-box;
	}

	#menuIcon a {
		position: relative;
		width: 28px;
		height: 12px;
	}

	#menuIcon a span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background: #fff;
	}

	#menuIcon a span:nth-of-type(1) {
		top: 0;
	}

	#menuIcon a span:nth-of-type(2) {
		bottom: 0;
	}

	#menuIcon a.active span:nth-of-type(1) {
		-webkit-transform: translateY(5px) rotate(-45deg);
		transform: translateY(5px) rotate(-45deg);
	}

	#menuIcon a.active span:nth-of-type(2) {
		-webkit-transform: translateY(-5px) rotate(45deg);
		transform: translateY(-5px) rotate(45deg);
	}

	nav {
		display: none;
		width: 100%;
		height: 100vh;
		position: fixed;
	}

	nav ul {
		display: block;
		width: 100%;
		padding: 40px 0;
	}

	nav ul li {
		margin-top: 30px;
	}

	nav ul li a {
		font-size: 26px;
	}

	main {
		box-sizing: border-box;
		width: 100%;
		padding: 30px 15px;
	}

}

/*-----------------------------------------------------------------------------intro*/

#intro #introIn {
	width: 1000px;
	height: 610px;
	background: url(../img/intro_img.jpg) no-repeat center top;
}


@media all and (max-width: 767px) {

	#intro #introIn {
		box-sizing: border-box;
		width: 100%;
		height: 0;
		background: url(../img/intro_img_sp.jpg) no-repeat center top;
		background-size: cover;
		padding-top: 179.6875%;
		border: 3px #f60 solid;
	}

}

/*-----------------------------------------------------------------------------news*/

#newsTwitter {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

#newsTwitter .block {
	width: 480px;
}

.block h2 {
	color: #fff;
	font-size: 30px;
	font-family: 'Arvo', sans-serif;
	font-weight: 700;
	display: inline-block;
	background: #cf2626;
	padding: 10px 20px;
}

.block .contentBox {
	background: #fff;
	border: 2px #dfdfe3 solid;
	padding: 56px;
}

#newsTwitter .block .contentBox {
	box-sizing: border-box;
	height: 380px;
	overflow-y: auto;
	padding: 0;
}

#newsTwitter #news .contentBox dl {
	padding: 20px 30px;
}

#newsTwitter #news .contentBox dl dt {
	color: #f60;
	font-weight: bold;
	padding-top: 15px;
}

#newsTwitter #news .contentBox dl dd {
	border-bottom: 2px #dfdfe3 dotted;
	padding-bottom: 15px;
}


@media all and (max-width: 767px) {

	#newsTwitter {
		display: block;
		margin-top: 20px;
	}

	#newsTwitter .block {
		width: 100%;
	}

	#newsTwitter #twitter {
		margin-top: 20px;
	}

	.block h2 {
		font-size: 20px;
		padding: 5px 15px;
	}

	.block .contentBox {
		border: 1px #dfdfe3 solid;
		padding: 15px;
	}

	#newsTwitter #news .contentBox dl {
		padding: 10px 20px;
	}

	#newsTwitter #news .contentBox dl dt {
		font-size: 13px;
		padding-top: 15px;
	}

	#newsTwitter #news .contentBox dl dd {
		font-size: 13px;
		padding-bottom: 15px;
	}

}



/*-----------------------------------------------------------------------------goods*/

#goods {
	margin-top: 40px;
}

#goods .br_sp {
	display: none;
}

#goods .contentBox p {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}

#goods .contentBox p.btn {
	font-size: 20px;
	width: calc(310%/7.4);
	padding: 20px 0;
	margin: 0.90196vw auto 0;
	clear: both;
	background-color: #8e8e8e;
	color: #fff;
	text-align: center;
}

#goods .contentBox p.btn {
	color: #fff;
	display: block;
	text-decoration: none
}

#dvd .contentBox p.btn i {
	margin-left: 10px;
}

#goods .contentBox div.officialgoods img {
	width: 100%;
}

#goods .contentBox p {
	text-align: center;
}


@media all and (max-width: 767px) {

	#goods {
		margin-top: 20px;
	}

	#goods .br_sp {
		display: block;
	}

	#goods .contentBox p {
		font-size: 13px;
	}

	#goods .contentBox p.btn {
		width: 66%;
		background-color: #8e8e8e;
		text-align: center;
		font-size: 3.73333vw;
		border-radius: 5px;
		font-weight: bold;
	}

	#goods .contentBox p.btn i {
		margin-left: 10px;
	}

	#goods .contentBox p.btn a {
		color: #fff;
		display: block;
	}

}

/*-----------------------------------------------------------------------------dvd*/

#dvd {
	margin-top: 40px;
}

#dvd .contentBox div.product_cf {
	padding: 2.94118vw calc(50%/9) 4.90196vw;
	background: #fef8e8;
}

#dvd .contentBox div.product_cf div.pd_detail {
	margin-bottom: 1.88235vw;
}

#dvd .contentBox div.product_cf div.pd_detail figure.jk img {
	width: calc(170%/8);
	float: left;
	margin-right: calc(30%/8);
}

#dvd .contentBox div.product_cf div.pd_detail p.ttl {
	font-size: 1.4em;
	color: #0000ee;
	font-weight: bold;
	overflow: hidden;
}

#dvd .contentBox div.product_cf div.pd_detail p.ttl a {
	text-decoration: underline;
}

#dvd .contentBox div.product_cf div.pd_detail p.release {
	color: #cf2626;
	font-size: 1.3em;
	font-weight: bold;
	margin: 1.47059vw 0;
	overflow: hidden;
}

#dvd .contentBox div.product_cf div.pd_detail p.detail {
	margin: 1.47059vw 0;
	overflow: hidden;
}

#dvd .contentBox div.product_cf div.dvd_tokuten h3 {
	font-size: 1.1em;
	font-weight: bold;
	border-bottom: 2px solid;
	border-top: 2px solid;
	padding: 0.4902vw 0;
}

#dvd .contentBox div.product_cf div.dvd_tokuten p {
	padding: 20px 0;
	font-size: 1.1em;
}

#dvd .contentBox div.product_cf div.dvd_tokuten2 {
	text-align: center;
}

#dvd .contentBox div.product_cf div.dvd_tokuten2 img {
	width: 30%;
}

#dvd .contentBox div.product_cf div.dvd_tokuten i {
	margin-right: 2px;
}

.fa-chevron-circle-right:before {
	content: "\f138";
}

#dvd .contentBox div.product_cf div.dvd_tokuten p.catch {
	color: #cf2626;
	font-weight: 700;
	font-size: 24px;
}

#dvd .contentBox div.product_cf p.btn {
	font-size: 20px;
	width: calc(310%/7.4);
	padding: 20px 0;
	margin: 1.90196vw auto 0;
	clear: both;
	background-color: #cf2626;
	color: #fff;
	text-align: center;
}

#dvd .contentBox div.product_cf p.btn a {
	color: #fff;
	display: block;
	text-decoration: none
}

#dvd .contentBox div.product_cf p.btn i {
	margin-left: 10px;
}

#dvd .contentBox div.product_cf div.kako p.btn {
	font-size: 20px;
	width: 85%;
	padding: 15px 0;
	margin: 10px auto 0;
	clear: both;
	background-color: #cf2626;
	color: #fff;
	text-align: center;
	border-radius: 5px;
}

#dvd .contentBox div.product_cf div.kako li img {
	margin-bottom: 10px;
}

#dvd .contentBox div.product_cf div.kako p.btn a {
	color: #fff;
	display: block;
	text-decoration: none;
	font-weight: 700;
}

#dvd .contentBox div.product_cf div.kako p.btn i {
	margin-left: 10px;
}

#dvd .contentBox div.product_cf h1 {
	background-color: #cf2626;
	text-align: center;
	padding: 2vw 0;
	font-size: 40px;
	color: #fff;
}

#dvd .contentBox div.product_cf div.oritoku ul {
	display: flex;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
}

#dvd .contentBox div.product_cf div.oritoku li {
	display: block;
	width: 45%;
	margin-top: 40px;
}

#dvd .contentBox div.product_cf div.kako ul {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	justify-content: flex-start;
}

#dvd .contentBox div.product_cf div.kako li {
	display: block;
	width: 33%;
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
#dvd .contentBox div.product_cf div.kako li p{
color: #0000ee;	
font-weight: 700;
}

#dvd .contentBox div.product_cf div.sales ul {
	display: flex;
	justify-content: center;
	text-align: center;
	flex-wrap: wrap;
	padding: 20px 0;
}

#dvd .contentBox div.product_cf div.sales li {
	display: block;
	width: 25%;
	margin: 80px 0;
}

#dvd .contentBox div.product_cf div.dvd_tokuten2 {
	text-align: center;
}

section.kouhen h1:after {
	background: url(../../images/ttl_bg_kou.png) no-repeat;
	background-size: 100%;
}

#dvd .contentBox div.product_cf div.houjin cf figure.still img {
	width: initial;
	height: 23.03922vw;
}

#dvd .contentBox div.product_cf div.houjin_cf {
	padding: 2.94118vw calc(60%/9.6) 4.90196vw;
	border-bottom: 2px solid #c0a031;
}

#dvd .contentBox div.product_cf div.houjin_cf div.tokuten_detail h2 {
	font-size: 2.15686vw;
	font-weight: bold;
	margin-bottom: 1.47059vw;
}

#dvd .contentBox div.product_cf div.houjin_cf div.tokuten_detail h2 i {
	color: #cf2626;
}

#dvd .contentBox div.product_cf div.houjin_cf div.tokuten_detail p {
	font-size: 1.3em;
}

#dvd .contentBox div.product_cf div.houjin_cf div.tokuten_detail h3 {
	font-weight: bold;
	font-size: 1.3em;
	margin: 2.94118vw 0 0.98039vw;
	text-align: center;
}

#dvd .contentBox div.product_cf div.houjin_cf div.tokuten_detail figure {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
}

#dvd .contentBox div.product_cf div.houjin_cf div.animaru figure img {
	width: 35%;
}


@media all and (max-width: 767px) {

	#dvd {
		margin-top: 20px;
	}

	#dvd .contentBox div.product_cf div.pd_detail figure.jk img {
		display: block;
		width: calc(300%/6.3);
		float: none;
		margin: 0 auto 2.66667vw;
		text-align: center;
	}

	#dvd .contentBox div.product_cf div.dvd_tokuten p.catch {
		font-size: 18px;
	}

	#dvd .contentBox div.product_cf div.pd_detail p.ttl span {
		font-size: 15px;
	}

	#dvd .contentBox p {
		font-size: 15px;
		font-weight: 700;
	}

	#dvd .contentBox div.product_cf div.kako li p span {
		font-size: 0.8em;
	}

	#dvd .contentBox div.product_cf div.houjin_cf div.tokuten_detail p {
		font-size: 1em;
	}

	#dvd .contentBox div.product_cf div.dvd_tokuten2 img {
		width: 100%;
	}

	#dvd .contentBox div.product_cf p.btn {
		width: 80%;
		background-color: #cf2626;
		text-align: center;
		font-size: 3.73333vw;
		border-radius: 5px;
		font-weight: bold;
	}

	section.oritoku div.houjin p.btn i {
		margin-left: 10px;
	}

	section.oritoku div.houjin p.btn a {
		color: #fff;
		display: block;
		padding: 4vw 0;
	}

	#dvd .contentBox div.product_cf div.sales li {
		display: block;
		width: 50%;
		margin: 20px 0;
	}

	#dvd .contentBox div.product_cf h1 {
		font-size: 24px;
	}

	#dvd .contentBox div.product_cf div.kako li {
		width: 48%;
	}

	#dvd .contentBox div.product_cf div.kako p.btn {
		padding: 6px;
	}

	#dvd .contentBox div.product_cf div.kako p.btn a {
		font-size: 14px;
	}

}

/*-----------------------------------------------------------------------------bnr*/
.bnr {
	 text-align: center;
}
.bnr a{
	transition: .2s;
}
.bnr a:hover {
	opacity: .8;
	display: block;
}
.bnr a img{
	width:80%;
}

@media all and (max-width: 767px) {
.bnr a img{
	width:100%;
}

}
/*-----------------------------------------------------------------------------event*/

#event {
	margin-top: -40px;
}

#event .eventTitle {
	color: #f60;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

#event .video {
	height: auto;
	position: relative;
	margin-top: 40px;
}

#event .video::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}

#event .video iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#event dl {
	line-height: 180%;
	border-top: 2px #f60 dotted;
	margin-top: 50px;
}

#event dl dt {
	color: #f60;
	font-weight: bold;
	float: left;
	padding: 30px 0;
}

#event dl dd {
	padding: 30px 0 30px 14em;
	border-bottom: 2px #f60 dotted;
}

#event dl dd a {
	color: #f60;
}

#event dl dd a:hover {
	opacity: 0.6;
}


#event dl dd .orange {
	color: #f60;
}

@media all and (max-width: 767px) {

	#event {
		margin-top: -15px;
	}

	#event .eventTitle {
		font-size: 16px;
	}


	#event .video {
		margin-top: 10px;
	}

	#event dl {
		font-size: 13px;
		margin-top: 20px;
	}

	#event dl dt {
		float: none;
		padding: 10px 0 0;
	}

	#event dl dd {
		padding: 0 0 10px 0;
		border-bottom: 2px #f60 dotted;
	}

}

/*-----------------------------------------------------------------------------footer*/
footer {
	padding: 30px 0;
}

@media all and (max-width: 767px) {

	footer {
		padding: 15px 0;
	}

	footer p {
		font-size: 10px;
	}

}

/*eof*/