@charset "utf-8";
#main {
  position: relative;
}
#main .mainvisual{
	background: #000;
	text-align: center;
	position: relative;
}
#main .mainvisual .mvaction{
	width: 100%;
	position: relative;
	padding: 0px 0 20px;
}
#main .mainvisual .mvaction .mvaction_btns{
	display: flex;
	justify-content: center;
	column-gap: 20px;
	width: 96%;
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
#main .mainvisual .mvaction .mvaction_btns .mvaction_btn{
	color: #FFF;
	font-size: 25px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 520px;
	width: min(520px, 100%);
	flex: 1;
	height: 80px;
	text-decoration: none;
	transition: 0.3s;
	box-sizing: border-box;
}
#main .mainvisual .mvaction .mvaction_btns .mvaction_btn:hover{
	opacity: 0.7;
}
#main .mainvisual .mvaction .mvaction_btns .mvaction_btn.storebtn{
	background: #c9151d;
	border: 3px solid #c9151d;
	border-radius: 20px;
}
#main .mainvisual .mvaction .mvaction_btns .mvaction_btn.dlbtn{
	background: #FFF;
	border: 3px solid #c9151d;
	border-radius: 20px;
	color: #c9151d;
}


@media only screen and (max-width: 768px) {
	#main .mainvisual .mvaction{
		position: relative;
		height: auto;
		padding: 10px 0;
	}
	#main .mainvisual .mvaction .mvaction_btns {
		column-gap: 10px;
		padding: 0 16px;
	}
	#main .mainvisual .mvaction .mvaction_btns .mvaction_btn {
		border-radius: 10px !important;
		font-size: 14px;
		width: 100%;
		height: 44px;
		max-width: none;
	}
}
/*|||||||||||||| コンテンツ ||||||||||||||*/

/* point */
#point .centerborderttl{
	margin-bottom: 60px;
}
.point_container{
	border: 2px solid #c9151d;
	margin-top: 60px;
}
.point_list{
	padding: 40px 30px;
}
.point_list .point_detail{
	background: url("../img/icon_check.png") no-repeat left center;
	background-size: 77px auto;
	padding-left: 80px;
	margin-top: 50px;
	line-height: 1;
}
.point_list .point_detail:first-child{
	margin-top: 0;
}
.point_list .point_detail .point_label{
	color: #c9151d;
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 10px;
}
.point_list .point_detail p{
	font-size: 20px;
}

/* tool */
.toollist{
	margin-bottom: 65px;
}
.toollist ul{
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
}
.toollist ul li{
	text-align: center;
}
.toollist ul li img{
	height: 190px;
	width: auto;
}
.toollist ul li p{
	font-size: 10px;
	font-weight: bold;
}
.toolintroduction{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.toolintroduction .tooldetail{
	border: 1px solid #999;
	width: 48%;
	padding: 40px;
	margin-bottom: 50px;
}
.toolintroduction .tooldetail .tooldetail_img{
	margin-bottom: 15px;
}
.toolintroduction .tooldetail h3{
	font-size: 25px;
	font-weight: bold;
}
.toolintroduction .tooldetail h3 span{
	color: #c9151d;
	font-size: 18px;
	font-weight: 900;
	display: block;
	margin: 8px 0 5px;
}
.toolintroduction .tooldetail p{
	font-size: 18px;
	font-weight:400;
	line-height: 150%;
}

/* overview */
.overviewinfo{
	margin: 80px 0 120px;
}
.overviewinfo .infotable td{
	vertical-align: middle;
}

/* voice */
.voicelist{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.voicelist .voicedetail{
	border: 1px solid #999;
	width: 48%;
	padding: 30px;
	margin-bottom: 45px;
}
.voicelist .voicedetail h3{
	color: #c9151d;
	font-size: 19px;
	font-weight: bold;
	margin-bottom: 20px;
}
.voicelist .voicedetail .voiceflex{
	display: flex;
	justify-content: space-between;
}
.voicelist .voicedetail .voiceflex .flexleft{
	width: 110px;
	text-align: center;
}
.voicelist .voicedetail .voiceflex .flexleft .voiceimg{
	margin-bottom: 15px;
}
.voicelist .voicedetail .voiceflex .flexleft p{
	font-size: 15px;
}
.voicelist .voicedetail .voiceflex .flexright{
	flex: 1;
	font-size: 19px;
	line-height: 150%;
	margin-left: 25px;
}

/* schedule */
#schedule .centerborderttl{
	margin-bottom: 60px;
}
.scheduleinfo table th{
	width: 100px;
}
.scheduleinfo table td{
	padding: 15px 25px;
}
.scheduleinfo table tr td:first-child{
	width: 30%;
}
.scheduleinfo .infotable_container{
	margin-bottom: 40px;
}
.explain{
	text-align: center;
	margin-top: 60px;
}
.explain a{
	background: #FFF;
	border: 3px solid #000;
	border-radius: 20px;
	color: #000;
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 140%;
	padding: 20px 30px;
	text-decoration: none;
	transition: 0.3s;
}
.explain a:hover{
	background: #000;
	color: #FFF;
}

/* qa */
#qa{
	padding-bottom: 60px;
}
.questions{
	border: 1px solid #cccccc;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 30px;
	cursor: pointer;
}
.questions .question{
	background: #f3f3f3;
	padding: 30px 40px 30px 70px;
}
.questions .question::before{
	color: #c9151d;
	content: "Q";
}
.questions .answer{
	border-top: 1px solid #cccccc;
	padding: 30px 70px 30px 70px;
	display: none;
}
.questions .answer::before{
	content: "A";
}
.questions .question,.questions .answer{
	position: relative;
}
.questions .question::before,.questions .answer::before{
	position: absolute;
	left: 40px;
}
.questions .question::after{
	font-size: 22px;
	content: "+";
	position: absolute;
	right: 30px;
	top: 0;
  bottom: 0;
  margin: auto 0;
	display: flex;
  align-items: center;
}
.questions.open .question::after {
	content: "-";
}

/* order */
.orderbtns{
	display: flex;
  justify-content: center;
  column-gap: 40px;
  width: 96%;
  max-width: 880px;
  margin: 40px auto;
}
.orderbtns a,.orderbtns span{
	background: #FFF;
  border: 3px solid #c9151d;
  border-radius: 20px;
  color: #c9151d;
	font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 520px;
  width: 50%;
  flex: 1;
  height: 64px;
  text-decoration: none;
  transition: 0.3s;
}
.orderbtns a:hover,.orderbtns span:hover{
	background: #c9151d;
	color: #FFF;
}
.orderbtns span.copy_btn.copied{
	background: #c9151d;
	color: #FFF;
}
#order .contentstext p{
	font-size: 21px;
	font-weight: 400;
	line-height: 160%;
}

@media only screen and (max-width: 1001px) {
	.toollist ul{
		flex-wrap: wrap;
	}
	.toollist ul li{
		width: 24%;
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 768px) {
	
	/* point */
	#point .centerborderttl {
		margin-bottom: 30px;
	}
	.point_container {
		margin-top: 30px;
	}
	.point_list {
		padding: 20px 10px;
	}
	.point_list .point_detail {
		background: url("../img/icon_check.png") no-repeat left center;
		background-size: 38px auto;
		padding-left: 45px;
		margin-top: 25px;
	}
	.point_list .point_detail .point_label {
		font-size: 18px;
		margin-bottom: 5px;
	}
	.point_list .point_detail p {
		font-size: 16px;
	}
	
	/* tool */
	.toollist {
		margin-bottom: 30px;
	}
	.toollist ul li{
		width: 48%;
	}
	.toolintroduction .tooldetail {
		width: 100%;
		padding: 20px;
		margin-bottom: 20px;
	}
	.toolintroduction .tooldetail h3 {
		font-size: 20px;
	}
	.toolintroduction .tooldetail h3 span {
		font-size: 16px;
		margin: 8px 0 5px;
	}
	.toolintroduction .tooldetail p {
		font-size: 16px;
	}
	
	/* overview */
	.overviewinfo {
		margin: 40px 0 60px;
	}
	.infotable_container{
		overflow: auto;
		padding-bottom: 5px;
	}
	.infotable_container table.infotable{
		width: 800px;
	}
	.infotable th, .infotable td{
		font-size: 15px;
	}
	
	/* voice */
	.voicelist .voicedetail {
		width: 100%;
		padding: 15px;
		margin-bottom: 20px;
	}
	.voicelist .voicedetail .voiceflex .flexright {
		font-size: 16px;
	}
	
	/* schedule */
	#schedule .centerborderttl {
		margin-bottom: 30px;
	}
	.explain{
		margin-top: 30px;
	}
	.explain a{
		border: 2px solid #000;
		border-radius: 10px;
		font-size: 18px;
		padding: 15px 15px;
	}
	
	/* qa */
	#qa {
		margin-top: 65px;
		padding-bottom: 20px;
	}
	.questions {
		border-radius: 10px;
		margin-bottom: 15px;
	}
	.questions .question {
		padding:15px 40px 15px 40px;
	}
	.questions .question::before, .questions .answer::before {
		left: 20px;
	}
	.questions .question::after {
		font-size: 20px;
		right: 15px;
	}
	.questions .answer {
		padding: 15px 40px 15px 40px;
	}
	
	/* order */
	#order .contentstext p {
		font-size: 16px;
	}
	.orderbtns {
		flex-wrap: wrap;
	}
	.orderbtns a,.orderbtns span {
		border: 2px solid #c9151d;
		border-radius: 10px;
		font-size: 16px;
		max-width: 750px;
		width: 100%;
		height: 64px;
		margin-bottom: 15px;
		flex: none;
	}
	
	
}


.product_movie{
  width: 100%;
	max-width: 640px;
  aspect-ratio: 16 / 9;
	margin: 0 auto;
}
.product_movie iframe {
  width: 100%;
  height: 100%;
}
.product_movie p{
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin-top: 10px;
}