@charset "utf-8";

@font-face {
    font-family: 'GENJ';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/GenJyuuGothic-Medium.eot');
    src: url('../fonts/GenJyuuGothic-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GenJyuuGothic-Medium.ttf') format('truetype'),
    url('../fonts/GenJyuuGothic-Medium.woff') format('woff');
	font-display: swap;
}
@font-face {
    font-family: 'GENJ';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/GenJyuuGothic-Bold.eot');
    src: url('../fonts/GenJyuuGothic-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GenJyuuGothic-Bold.ttf') format('truetype'),
    url('../fonts/GenJyuuGothic-Bold.woff') format('woff');
	font-display: swap;
}


/* +++++++++++++++++++++++
共通
+++++++++++++++++++++++++ */
 .contentsWrap{
	display: block;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}
 .contentsWrap::after{
 	content: "";
	display: block;
	clear: both;
}
.flexBox{
	display: flex;
	width: 100%;
	flex-flow: row wrap;
	justify-content: center;
	align-content: stretch;
}
h2.line{
	display: block;
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	padding-bottom: 18px;
	background: url(../images/title_parts.png) no-repeat center bottom / 80px auto;
	line-height: 120%;
	margin-bottom: 40px;
}

@media print, screen and (min-width:751px){/* for PC */
	.sp{ display: none;	}
}

@media screen and  (max-width:750px){ /* for SP*/
	.pc{ display: none;	}
	h2.line{
		font-size: 20px;
		background-size: 60px auto;
		margin-bottom: 24px;
	}
}



/* +++++++++++++++++++++++
header
+++++++++++++++++++++++++ */

header{
	display: block;
	width: 100%;
	height: 75px;
	position: fixed;
	top: 0;
	left: 0;
	background: #FFF;
	z-index: 5;
}
header .contentsWrap{
	max-width: 1120px;
}
header #logo{
	display: inline-flex;
	height: 100%;
	float: left;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
	padding-top: 10px;
}
header #logo picture,
header #logo picture img{
	max-width: 151px;
}
header #logo h1{
	display:inline-block;
	font-size: 10px;
	line-height: 120%;
	margin-left: 15px;
}
header nav{
	display: inline-block;
	height: 100%;
	float: right;
	padding-top: 20px;
}
header nav #spMenuKey{
	display: none;
}
header nav ul{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
	font-size: 14px;
}
header nav li{
	margin-left: 30px;
}
header nav a{
	text-decoration: none;
}
header nav a i{
	font-size: 18px !important; 
	color: #FF9505;
	margin-right: 8px;
	vertical-align: middle;
}
header nav li:last-child a{
	color: #FFF;
	display: inline-block;
	width: 142px;
	text-align: center;
	padding: 6px 0;
	border-radius: 20px;
	background: #f77102;
	background: -moz-linear-gradient(-45deg,  #f77102 0%, #f8bb05 100%);
	background: -webkit-linear-gradient(-45deg,  #f77102 0%,#f8bb05 100%);
	background: linear-gradient(135deg,  #f77102 0%,#f8bb05 100%);
}
header nav li:last-child a i{
	color: #FFF;
}

@media print, screen and (min-width:751px){/* for PC */
	header nav li:last-child a:hover{
		opacity: 0.65;
		-webkit-transition:all 0.3s ease;
		-moz-transition:all 0.3s ease;
		transition:all 0.3s ease;
	}
}
@media screen and  (max-width:750px){ /* for SP*/

	header{
		height: 50px;
	}
	header #logo{
		display: block;
		width: auto;
		height: auto;
		float: none;
		padding-top: 5px;
		text-align: center;
	}
	header #logo picture,
	header #logo picture img{
		max-width: 110px;
	}
	header #logo h1{
		display:none;
	}
	header nav{
		display: block;
		width: 100%;
		height: auto;
		float: none;
		padding-top: 0;
		position: fixed;
		top: 0;
		left: 0;
	}
	header nav #spMenuKey{
		display: block;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 5px;
		right: 5px;
		border-radius: 5px;
	}
	header nav #spMenuKey picture,
	header nav #spMenuKey picture img{
		width: 40px;
		height: 40px;
	}
	header nav #spMenuKey picture.act{ display: none; }
	header nav #spMenuKey picture.def{ display: block; }
	header nav #spMenuKey.active{
		background: #FF9505;
	}
	header nav #spMenuKey.active picture.act{ display: block; }
	header nav #spMenuKey.active picture.def{ display: none; }
	header nav ul{
		display: none;
		flex-flow: column wrap;
		justify-content: flex-start;
		align-items: center;
		font-size: 14px;
		padding-top: 50px;
		background: #FCF5E0;
	}
	header nav li{
		margin-left: 0;
		padding: 10px 20px;
		font-size: 16px;
		text-align: left;
	}
	header nav li:last-child{
		display: block;
		padding: 30px 20px;
	}
	header nav li:last-child a{
		display: block;
		font-size: 16px;
		font-weight: bold;
		padding-top: 8px;
		padding-bottom: 8px;
		max-width: none;
		width: 100%;
	}
}


/* +++++++++++++++++++++++
main
+++++++++++++++++++++++++ */
main{
	margin-top: 75px;
}

@media screen and  (max-width:750px){ /* for SP*/
	main{
		margin-top: 50px;
	}
}


/* メインビジュアル */
#mainVisual{
	display: block;
	height: 522px;
	box-sizing: border-box;
	background: #fcdca7;
	background: -moz-linear-gradient(top,  #fcdca7 0%, #fcf5e0 50%);
	background: -webkit-linear-gradient(top,  #fcdca7 0%,#fcf5e0 50%);
	background: linear-gradient(to bottom,  #fcdca7 0%,#fcf5e0 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcdca7', endColorstr='#fcf5e0',GradientType=0 );
}
#mainVisual .contentsWrap{
	display: block;
	height: 522px;
	padding: 20px 0;
	position: relative;
	background: url(../images/main_parts.png) repeat-x left top -30px / 394px auto;
	box-sizing: border-box;
}
#mainVisual #mainVisual_bg{
	display: block;
	width: 100%;
	height: 482px;
	text-align: center;
	position: absolute;
	top: 20px;
	left: 0;
	overflow: hidden;
}
#mainVisual #mainVisual_bg picture{
	display: block;
	height: 482px;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	transform:translateX(-50%);
}
#mainVisual #mainVisual_bg picture img{
	width: auto;
	height: 482px;
}
#mainVisual #main_textWrap{
	display: block;
	width: 406px;
	text-align: center;
	z-index: 2;
	padding-top: 15px;
	position: absolute;
	top: 20px;
	left: 50%;
	margin-left: -560px;
}
#mainVisual #main_textWrap picture,
#mainVisual #main_textWrap picture img{
	display: block;
	width: 100%;
	max-width: 317px;
	margin-left: auto;
	margin-right: auto;
}
#mainVisual #main_textWrap p.read{
	display: block;
	margin-top: 30px;
	font-size: 13px;
	line-height: 200%;
}
#mainVisual #main_textWrap .registBtn{
	display: block;
	text-align: center;
}
#mainVisual #main_textWrap .registBtn a{
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 30px auto 20px auto;
	padding: 12px 0;
	color: #FFF;
	text-decoration: none;
	font-weight: 700;
	font-size: 22px;
	border-radius: 30px;
	background: #F80E01;
	background: -moz-linear-gradient(-45deg,  #F80E01 0%, #F77102 100%);
	background: -webkit-linear-gradient(-45deg,  #F80E01 0%,#F77102 100%);
	background: linear-gradient(135deg,  #F80E01 0%,#F77102 100%);
}
#mainVisual #main_textWrap .registBtn a i{
	color: #FFF;
	vertical-align: middle;
	margin-right: 8px;
}
#mainVisual #main_textWrap small{
	display: block;
	text-align: center;
	font-size: 12px;
	line-height: 180%;
	color: #FF0000;
}

@media print, screen and (min-width:751px){/* for PC */
	#mainVisual #main_textWrap .registBtn a:hover{
		opacity: 0.65;
		-webkit-transition:all 0.3s ease;
		-moz-transition:all 0.3s ease;
		transition:all 0.3s ease;
	}
}
@media screen and  (max-width:750px){ /* for SP*/

	#mainVisual{
		height: auto;
	}
	#mainVisual .contentsWrap{
		height: auto;
		padding: 0 0 30px 0;
	}
	#mainVisual #mainVisual_bg{
		position: relative;
		top: auto;
		left: auto;
		height: auto;
	}
	#mainVisual #mainVisual_bg picture{
		height: auto;
		position: relative;
		top: auto;
		left: auto;
		-webkit-transform:none;
		-moz-transform:none;
		transform:none;
	}
	#mainVisual #mainVisual_bg picture img{
		width: 100%;
		height: auto;
	}
	#mainVisual #main_textWrap{
		width: auto;
		text-align: center;
		position: relative;
		top: auto;
		left: auto;
		margin-top: -40px;
		margin-left: 0;
		padding-top: 0;
	}
	#mainVisual #main_textWrap picture,
	#mainVisual #main_textWrap picture img{
		max-width: 280px;
	}
	#mainVisual #main_textWrap p.read{
		margin-top: 15px;
		font-size: 12px;
		line-height: 180%;
	}
	#mainVisual #main_textWrap .registBtn a{
		margin: 15px auto 10px auto;
		padding: 10px 0;
		font-size: 20px;
	}
	#mainVisual #main_textWrap small{
		font-size: 10px;
		line-height: 150%;
	}

}


/* 全国で飲み会開催中 */
#section_kaisai{
	display: block;
	padding: 16px 0 0 0;
}
#section_kaisai .flexBox #kaisaiImg{
	margin-right: 10px;
	max-width: 250px;
}
#section_kaisai .flexBox #kaisaiImg picture,
#section_kaisai .flexBox #kaisaiImg picture img{
	max-width: 100%;
}
#section_kaisai .flexBox #kaisaiTitle{
	text-align: center;
	padding-top: 30px;
}
#section_kaisai .flexBox #kaisaiTitle h2{
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 7px;
	line-height: 100%;
}
#section_kaisai .flexBox #kaisaiTitle time{
	font-size: 14px;
}
#section_kaisai .flexBox #kaisaiPart{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	padding-top: 10px;
	margin-left: 20px;
}
#section_kaisai .flexBox #kaisaiPart .point{
	background: #FBF135;
	color: #EB5200;
	border-radius: 100%;
	width: 84px;
	height: 84px;
	text-align: center;
	padding-top: 19px;
	line-height: 140%;
	margin-right: 10px;
}
#section_kaisai .flexBox #kaisaiPart .point span{
	display: block;
	font-size: 14px;
	font-weight: 700;
}
#section_kaisai .flexBox #kaisaiPart .point b{
	display: block;
	font-size: 22px;
	font-weight: 700;
}
#section_kaisai .flexBox #kaisaiPart strong{
	text-align: right;
	font-size: 50px;
	font-weight: 700;
	padding-top: 18px;
	padding-left: 10px;
	line-height: 100%;
	position: relative;
}
#section_kaisai .flexBox #kaisaiPart strong i{
	position: absolute;
	width: 20px;
	height: 20px;
}
#section_kaisai .flexBox #kaisaiPart strong #p1{
	top: 6px;
	right: -10px;
	animation: anim-kira1 1s infinite ease-in-out;
}
#section_kaisai .flexBox #kaisaiPart strong #p2{
	left: -8px;
	bottom: -8px;
	animation: anim-kira2 1s infinite ease-in-out;
}
#section_kaisai .flexBox #kaisaiPart strong i picture,
#section_kaisai .flexBox #kaisaiPart strong i picture img{
	width: 100%;
	height: 100%;
}
#section_kaisai .flexBox #kaisaiPart small{
	font-size: 22px;
	padding-top: 40px;
	padding-left: 8px;
	font-weight: 700;
	line-height: 100%;
}

@keyframes anim-kira1 {
    0%   { transform: rotate(5deg) scale(0.6);}
    50%  { transform: rotate(0deg) scale(0.9);}
    100% { transform: rotate(5deg) scale(0.6);}
}
@keyframes anim-kira2 {
    0%   { transform: rotate(0deg) scale(0.9);}
    50%  { transform: rotate(-5deg) scale(0.6);}
    100% { transform: rotate(0deg) scale(0.9);}
}
@media print, screen and (min-width:751px){/* for PC */
	#section_kaisai .flexBox #kaisaiImg_sp{
		display: none;
	}
}
@media screen and  (max-width:750px){ /* for SP*/
	
	#section_kaisai {
		padding-top: 30px;
	}
	#section_kaisai .flexBox{
		flex-flow: column wrap;
		align-items: center;
	}
	#section_kaisai .flexBox #kaisaiImg{
		display: none;
	}
	#section_kaisai .flexBox #kaisaiTitle{
		padding-top: 0;
	}
	#section_kaisai .flexBox #kaisaiTitle h2{
		font-size: 22px;
		margin-bottom: 0;
		color: #EB5200;
	}
	#section_kaisai .flexBox #kaisaiTitle time{
		font-size: 10px;
	}
	#section_kaisai .flexBox #kaisaiPart{
		margin-top: 5px;
		margin-left: 0;
	}
	#section_kaisai .flexBox #kaisaiPart .point{
		width: auto;
		height: auto;
		padding: 5px 20px 8px 20px;
		border-radius: 3px;
		line-height: 110%;
		margin-right: 20px;
	}
	#section_kaisai .flexBox #kaisaiPart .point span{
		font-size: 10px;
	}
	#section_kaisai .flexBox #kaisaiPart .point b{
		font-size: 18px;
	}
	#section_kaisai .flexBox #kaisaiPart strong{
		font-size: 34px;
		padding-top: 5px;
		padding-left: 0;
	}
	#section_kaisai .flexBox #kaisaiPart strong i{
		position: absolute;
		width: 15px;
		height: 15px;
	}
	#section_kaisai .flexBox #kaisaiPart strong #p1{
		top: -5px;
	}
	#section_kaisai .flexBox #kaisaiPart strong #p2{
		left: -14px;
		bottom: -10px;
	}
	#section_kaisai .flexBox #kaisaiPart small{
		font-size: 14px;
		padding-top: 21px;
		padding-left: 3px;
	}
	#section_kaisai .flexBox #kaisaiImg_sp{
		display: block;
		text-align: center;
		padding: 30px 0 0 0;
	}
	#section_kaisai .flexBox #kaisaiImg_sp picture,
	#section_kaisai .flexBox #kaisaiImg_sp picture img{
		width: 100%;
		max-width: 250px;
	}

}

/* ノミトモはこんな方にご利用いただいています */
#section_riyou{
	display: block;
	background: url(../images/riyou_bg.png) repeat-x #FCF5E0 center bottom / 260px auto;
	padding: 50px 0 100px 0;
}
#section_riyou .contentsWrap{
	max-width: 1120px;
}
#section_riyou .flexParts{
	display: block;
	width: 100%;
	max-width: 360px;
	background: #FFF;
	padding: 20px 25px 25px 25px;
	margin-right: 20px;
	text-align: center;
	box-sizing: border-box;
}
#section_riyou .flexParts:last-child{
	margin-right: 0;
}
#section_riyou .flexParts span.title{
	display: block;
	background: url(../images/riyou_line.png) repeat-x left center / 2px  auto;
	text-align: center;
	margin-bottom: 15px;
}
#section_riyou .flexParts h3{
	display: inline-block;
	background: #FFF;
	padding: 0 12px;
	margin: 0 auto;
	color: #EB5200;
	font-size: 20px;
	line-height: 100%;
	font-weight: 700;
}
#section_riyou .flexParts figcaption{
	margin-top: 10px;
}
#section_riyou .flexParts figure{
	width: 100%;
	margin: 0 auto;
}
#section_riyou .flexParts picture{
	width: 100%;
	max-width: 300px;
}
#section_riyou .flexParts picture img{
	width: 100%;
	max-width: 300px;
}

@media screen and  (max-width:750px){ /* for SP*/
	#section_riyou{
		padding: 40px 0 80px 0;
	}
	#section_riyou .contentsWrap{
		padding-left: 10px;
		padding-right: 10px;
	}
	#section_riyou .flexParts{
		padding: 24px 20px 20px 18px;
		margin-right: 0;
		margin-bottom: 10px;
	}
	#section_riyou .flexParts:last-child{
		margin-bottom: 0;
	}
	#section_riyou .flexParts span.title{
		margin-bottom: 8px;
	}
	#section_riyou .flexParts h3{
		font-size: 16px;
	}
	#section_riyou .flexParts figcaption{
		font-size: 13px;
	}
	#section_riyou .flexParts picture{
		max-width: 240px;
	}
	#section_riyou .flexParts picture img{
		max-width: 240px;
	}
	
}

/* 現在募集中の飲み会 */
#section_genzai{
	padding: 50px 0;
}
#section_genzai .contentsWrap{
	width: 100%;
	height: 668px;
	padding-top: 60px;
	box-sizing: border-box;
	position: relative;
}
#section_genzai .contBg{
	display: block;
	width: 100%;
	height: 430px;
	overflow: hidden;
	position: absolute;
	top: 114px;
	left: 0;
}
#section_genzai .contBg picture{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	-moz-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
}
#section_genzai .contBg picture,
#section_genzai .contBg picture img{
	width: 100%;
	height: auto;
}
#section_genzai .mobileBg{
	display: block;
	width: 100%;
	max-width: 480px;
	height: 430px;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	transform:translateX(-50%);
	z-index: 2;
}
#section_genzai .mobileBg #nowTimeText{
	display: block;
	width: 60px;
	text-align: left;
	font-weight: bold;
	font-size: 16px;
	line-height: 100%;
	color: #C0B49E;
	position: absolute;
	top: 22px;
	left: 47px;
}
#section_genzai #slideWrap{
	display: block;
	width: 100%;
	max-width: 420px;
	height: 554px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
	overflow: hidden;
}
#section_genzai #slideWrap .slide{
	display: none;
	width: 100%;
	height: 131px;
	box-sizing: border-box;
	border: #FF9505 solid 2px;
	background: #FCF5E0;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 10px;
	position: absolute;
	top: 0;
}
#section_genzai #slideWrap .slide::after{
	content: "";
	display: block;
	clear: both;
}
#section_genzai #slideWrap .slide .user_icon{
	display: block;
	float: left;
	width: 20%;
	max-width: 78px;
	padding-right: 15px;
	box-sizing: border-box;
}
#section_genzai #slideWrap .slide .user_icon img{
	display: block;
	max-width: 100%;
}
#section_genzai #slideWrap .slide .footInfo{
	display: block;
	float: left;
	text-align: left;
	width: 79%;
	max-width: 310px;
}
#section_genzai #slideWrap .slide .footInfo h2{
	display: block;
	font-weight: bold;
	font-size: 16px;
	padding-top: 3px;
	margin-bottom: 15px;
	line-height: 100%;
	width: 100%;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	-webkit-text-overflow:ellipsis;
	-o-text-overflow:ellipsis;
}
#section_genzai #slideWrap .slide .footInfo li{
	font-size: 12px;
	margin-bottom: 6px;
	line-height: 120%;
}
#section_genzai #slideWrap .slide .footInfo li:last-child{
	margin-bottom: 0;
}
#section_genzai #slideWrap .slide .footInfo li i{
	font-size: 15px;
	color: #FFB34A;
	vertical-align: middle;
	margin-right: 5px;
}

@media screen and  (max-width:750px){ /* for SP*/

	#section_genzai{
		padding: 40px 0;
	}
	#section_genzai .contentsWrap{
		height: auto;
		padding-top: 0;
		padding-left: 10px;
		padding-right: 10px;
	}
	#section_genzai .contBg{
		display: none;
	}
	#section_genzai .mobileBg{
		display: none;
	}
	#section_genzai #slideWrap .slide{
		padding: 12px;
	}
	#section_genzai #slideWrap .slide .user_icon{
		padding-right: 8px;
	}
	#section_genzai #slideWrap .slide .footInfo h2{
		font-size: 14px;
		padding-top: 10px;
		margin-bottom: 13px;
	}
	
}

/* ノミトモのご紹介 */
#section_movie{
	display: block;
	background: #FCF5E0;
	padding: 50px 0;
}
#section_movie .contentsWrap{
	max-width: 630px;
	text-align: center;
}
#section_movie #movieArea{
	margin-bottom: 30px;
	width: 100%;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}
#section_movie p{
	text-align: center;
	line-height: 180%;
	margin-bottom: 30px;
}
#section_movie .aboutBtn{
	display: block;
	text-align: center;
}
#section_movie .aboutBtn a{
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 40px auto 15px auto;
	padding: 12px 0;
	color: #FFF;
	text-decoration: none;
	font-weight: 700;
	font-size: 22px;
	border-radius: 30px;
	background: #f77102;
	background: -moz-linear-gradient(-45deg,  #f77102 0%, #f8bb05 100%);
	background: -webkit-linear-gradient(-45deg,  #f77102 0%,#f8bb05 100%);
	background: linear-gradient(135deg,  #f77102 0%,#f8bb05 100%);
}
#section_movie .aboutBtn a i{
	color: #FFF;
	vertical-align: middle;
	margin-right: 8px;
}

@media print, screen and (min-width:751px){/* for PC */
	#section_movie .aboutBtn a:hover{
		opacity: 0.65;
		-webkit-transition:all 0.3s ease;
		-moz-transition:all 0.3s ease;
		transition:all 0.3s ease;
	}
}
@media screen and  (max-width:750px){ /* for SP*/
	#section_movie{
		padding: 40px 10px;
	}
	#section_movie #movieArea{
		margin-bottom: 20px;
		height: 51vw;
	}
	#section_movie p{
		line-height: 150%;
		margin-bottom: 20px;
	}
	#section_movie .aboutBtn a{
		margin: 10px auto 10px auto;
		padding: 8px 0;
		font-size: 18px;
	}
}

/* 会員様の声 */
#section_voice{
	display: block;
	padding: 50px 0;
}
#section_voice .contentsWrap{
	max-width: 1120px;
}
#section_voice .flexBox{
	justify-content: space-between;
}
#section_voice .flexParts{
	display: block;
	width: 100%;
	max-width: 270px;
	box-sizing: border-box;
}
#section_voice .flexParts picture,
#section_voice .flexParts picture img{
	width: 100%;
	max-width: 270px;
}
#section_voice .flexParts strong{
	display: block;
	color: #EB5200;
	font-weight: bold;
	font-size: 16px;
	margin-top: 12px;
	margin-bottom: 4px;
}
#section_voice .flexParts strong small{
	font-size: 12px;
}
#section_voice .flexParts strong i{
	font-size: 16px;
	color: #FF9505;
	margin-right: 7px;
	vertical-align: middle;
}
#section_voice .flexParts p{
	font-size: 14px;
	line-height: 180%;
}

@media screen and  (max-width:750px){ /* for SP*/
	#section_voice{
		padding: 40px 10px;
	}
	#section_voice .flexBox{
		flex-flow: column wrap;
		justify-content: flex-start;
		align-items: flex-start;
	}
	#section_voice .flexParts{
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-start;
		align-items: stretch;
		max-width: none;
		margin-bottom: 15px;
	}
	#section_voice .flexParts picture{
		width: 30%;
	}
	#section_voice .flexParts section{
		width: 70%;
		padding-left: 15px;
		box-sizing: border-box;
	}
	#section_voice .flexParts strong{
		font-size: 12px;
		margin-top: 0;
	}
	#section_voice .flexParts strong small{
		font-size: 10px;
	}
	#section_voice .flexParts strong i{
		font-size: 12px;
		margin-right: 5px;
	}
	#section_voice .flexParts p{
		font-size: 13px;
		line-height: 150%;
	}
}

/* ご利用料金 */
#section_plan{
	display: block;
	background: #FCF5E0;
	padding: 50px 0;
}
#section_plan .contentsWrap{
	max-width: 878px;
}
#section_plan .flexBox{
	justify-content: space-between;
}
#section_plan .flexParts{
	display: block;
	width: 100%;
	text-align: center;
	padding-bottom: 22px;
	background: #FFF;
	box-sizing: border-box;
}
#section_plan .flexParts picture.image,
#section_plan .flexParts picture.image img{
	display: block;
	width: 100%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 182px;
}
#section_plan .flexParts h3{
	display: block;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	padding: 16px 0;
	line-height: 100%;
	margin-bottom: 20px;
}
#section_plan .flexParts h3 sup{
	font-size: 10px;
	vertical-align: 0.4em
}
#section_plan .flexParts p{
	font-size: 14px;
	line-height: 180%;
	margin-top: 10px;
}
#section_plan .flexParts.free{
	max-width: 270px;
}
#section_plan .flexParts.free h3{
	background: #F8D823;
}
#section_plan .flexParts.free picture.price,
#section_plan .flexParts.free picture.price img{
	width: 100%;
	max-width: 122px;
	margin-top: 10px;
}
#section_plan .flexParts.premire{
	max-width: 300px;
}
#section_plan .flexParts.premire h3{
	background: #FF9505;
}
#section_plan .flexParts.premire picture.price,
#section_plan .flexParts.premire picture.price img{
	width: 100%;
	max-width: 242px;
	margin-top: 10px;
}
#section_plan .registBtn{
	display: block;
	text-align: center;
}
#section_plan .registBtn a{
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 40px auto 15px auto;
	padding: 12px 0;
	color: #FFF;
	text-decoration: none;
	font-weight: 700;
	font-size: 22px;
	border-radius: 30px;
	background: #F80E01;
	background: -moz-linear-gradient(-45deg,  #F80E01 0%, #F77102 100%);
	background: -webkit-linear-gradient(-45deg,  #F80E01 0%,#F77102 100%);
	background: linear-gradient(135deg,  #F80E01 0%,#F77102 100%);
}
#section_plan .registBtn a i{
	color: #FFF;
	vertical-align: middle;
	margin-right: 8px;
}
#section_plan small{
	display: block;
	text-align: center;
	font-size: 11px;
}

@media print, screen and (min-width:751px){/* for PC */
	#section_plan .registBtn a:hover{
		opacity: 0.65;
		-webkit-transition:all 0.3s ease;
		-moz-transition:all 0.3s ease;
		transition:all 0.3s ease;
	}
}
@media screen and  (max-width:750px){ /* for SP*/
	#section_plan{
		padding: 40px 10px;
	}
	#section_plan .flexBox{
		flex-flow: column wrap;
		justify-content: flex-start;
		align-items: flex-start;
	}
	#section_plan .flexParts{
		margin-bottom: 15px;
	}
	#section_plan .flexParts:last-child{
		margin-bottom: 0;
	}
	#section_plan .flexParts h3{
		font-size: 16px;
		padding: 12px 0;
	}
	#section_plan .flexParts p{
		font-size: 13px;
		line-height: 170%;
	}
	#section_plan .flexParts.free{
		max-width: none;
	}
	#section_plan .flexParts.premire{
		max-width: none;
	}
	#section_plan .registBtn a{
		margin: 20px auto 15px auto;
		padding: 8px 0;
		font-size: 18px;
	}
	#section_plan small{
		font-size: 10px;
	}
}

/* 各種メディア掲載 */
#section_media{
	display: block;
	padding: 50px 0;
}
#section_media .contentsWrap{
	max-width: 690px;
	text-align: center;
}
#section_media .contentsWrap picture,
#section_media .contentsWrap picture img{
	width: 100%;
	max-width: 689px;
}

@media screen and  (max-width:750px){ /* for SP*/
	#section_media{
		padding: 40px 10px;
	}
}

/* SP用登録 */
@media print, screen and (min-width:751px){/* for PC */
	#spRegistBtn{
		display: none;
	}
}
@media screen and  (max-width:750px){ /* for SP*/
	#spRegistBtn{
		display: block;
		width: 100%;
		box-sizing: border-box;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 5;
	}
	#spRegistBtn ul{
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;
		align-items: stretch;
	}
	#spRegistBtn ul li{
		width: 50%;
		box-sizing: border-box;
	}
	#spRegistBtn ul li a{
		display: block;
		text-align: center;
		height: 100%;
		font-size: 16px;
		font-weight: bold;
		color: #FFF;
		padding: 15px 5px;
		text-decoration: none;
		box-sizing: border-box;
	}
	#spRegistBtn ul li:nth-child(1) a{
		background: #F80E01;
		background: -moz-linear-gradient( #F80E01 0%, #F74B02 100%);
		background: -webkit-linear-gradient(  #F80E01 0%,#F74B02 100%);
		background: linear-gradient( #F80E01 0%,#F74B02 100%);
	}
	#spRegistBtn ul li:nth-child(2) a{
		background: #f77102;
		background: -moz-linear-gradient(  #f77102 0%, #F89803 100%);
		background: -webkit-linear-gradient(  #f77102 0%,#F89803 100%);
		background: linear-gradient(  #f77102 0%,#F89803 100%);
	}
	#spRegistBtn ul li:nth-child(1) a i{
		font-size: 18px;
		margin-right: 8px;
		vertical-align: -0.08em;
	}
	#spRegistBtn ul li:nth-child(2) a i{
		font-size: 18px;
		margin-right: 8px;
		vertical-align: -0.08em;
	}
}



/* +++++++++++++++++++++++
footer
+++++++++++++++++++++++++ */
footer{
	display: block;
	text-align: center;
}
footer .footBg{
	display: block;
	background: #F5F3EF;
	padding: 25px 0;
}
footer #footNav{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: stretch;
	max-width: 1120px;
	margin: 0 auto;
}
footer #footNav li{
	display: inline-block;
	width: 100%;
	max-width: 18em;
	font-size: 12px;
	text-align: left;
	margin-bottom: 3px;
	padding-left: 20px;
	background: url(../images/arrow_1.png) no-repeat left 2px top 5px / 10px auto;
}
footer #footNav li a{
	text-decoration: none;
}
footer small{
	display: block;
	padding: 15px 0 40px 0;
}

@media screen and  (max-width:750px){ /* for SP*/
	footer .footBg{
		padding: 25px 15px;
	}
	footer small{
		padding: 15px 0 80px 0;
	}
}
