@charset "utf-8";
/*==============================
	Base
==============================*/

/*	Reset
------------------------------*/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center, dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, main,menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	font-style:inherit;
	font-weight:inherit;
	font-size:100%;
	vertical-align:baseline;
}
main, article, aside, details, figcaption, figure, footer, header, menu, nav, section {
  display:block;
}
html {
	overflow-y:scroll;
	color:#333;
	font-size:62.5%;
	font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";
	-webkit-text-size-adjust:100%;
	text-size-adjust:100%;
}
body {
	width:100%;
	height:100%;
	font-size:1.4em; /* for GC. defalut font-size:1.4rem = 14px */
	line-height:1.5;
	word-break:break-word;
}
*, *:before, *:after {
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
input, textarea {
	margin:0;
	padding:0;
	border:none;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color:#a9a9a9;
}
input {
	-webkit-appearance:none;
	appearance:none;
	outline:none;
}
input, textarea, select {
	font-family: inherit;
}
ol, ul {
	list-style:none;
}
table{
	border-collapse:collapse;
	border-spacing:0;
	width:100%;
}
caption, th, td {
	text-align:left;
}
a {
	color:#333;
	text-decoration:none;
	outline:none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align:top;
}
hr {
	height:1px;
	margin:0;
	border:0;
}
.cf:after {
	content:"";
	clear:both;
	display:block;
}


/*	Structure
------------------------------*/

/*-- wrapper --*/
#wrapper{
width: 100%;
position: relative;
overflow: hidden;
}

.ttlLv1 {
    padding-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    position: relative;
    border-bottom: 4px solid #cc0000;
}

.ttlLv1 .heading {
    color: #333;
    font-size: 24px;
    line-height: 34px;
    font-weight: bold;
}

/*-- pageHeader --*/
.pageHeader {
	background-color: #fff;
}
.pageHeaderInr {
	max-width: 970px;
	margin: 0 auto;
	padding: 0 10px;
}
.pageHeader_logo {
	width: 333px;
	padding: 32px 0;
}

/*-- ancNav --*/
.ancNav {
	width: 100%;
	background: rgba(0,150,200,0.9);
	position: absolute;
	z-index: 1500;
}
.ancNavInr {
	max-width: 970px;
	margin: 0 auto;
	padding: 0 10px;
}
.ancNavItems {
	width: 100%;
	display: table;
	position: relative;
}
.ancNavItem {
	display: table-cell;
	vertical-align: middle;
	position: relative;
}
.ancNavItem .inr {
	display: block;
	min-height: 62px;
	padding: 17px 10px 25px;
	background: rgba(255,255,255,0);
	text-align: center;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.3;
	position: relative;
	transition: background ease 0.2s;
}
.ancNavItem .inr:hover {
	background: rgba(255,255,255,0.2);
}
.ancNavItem .inr:after {
	content: "";
	display: block;
	width: 16px;
	height: 8px;
	background: url(../img/icon_nav_arw.png) no-repeat 0 0;
	position: absolute;
	bottom: 10px;
	left: 50%;
	margin-left: -8px;
}

.pageHeader .ancNavItems ul.sub-menu {
	width: 1000px;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	letter-spacing: -0.4em;
	line-height: 1.5;
	margin: 0 0 0 -25px;
	background-color: rgba(0,0,0,0.6);
	height: 51px;
	-moz-animation: fadein 0.5s linear 0s 1;
	-webkit-animation: fadein 0.5s linear 0s 1;
	-o-animation: fadein 0.5s linear 0s 1;
	-ms-animation: fadein 0.5s linear 0s 1;
	cursor: default;
}




.pageHeader .ancNavItems ul::before {
	content: "";
	position: absolute;
	background-color: rgba(0,0,0,0.6);
	width: 100%;
	height: 51px;
	left: -100%;
	display: block;
	bottom: 0;
}
.pageHeader .ancNavItems ul::after {
	content: "";
	position: absolute;
	background-color: rgba(0,0,0,0.6);
	width: 100%;
	height: 51px;
	right: -100%;
	display: block;
	bottom: 0;
}



.pageHeader .ancNavItems ul.sub-menu li {
	position: relative;
	background: none !important;
	vertical-align: middle;
	letter-spacing: normal;
	display: inline-block;
	text-align: center;
	float: none;
	margin: 0 10px;
	padding: 18px 0 18px 0;
	color: #fff;
	font-size: 13px;
	line-height: 1;
}



.pageHeader .ancNavItems ul.sub-menu li > a {
	padding: 0 0 0 0;
	border: none;
	color: #fff;
}
.pageHeader .ancNavItems ul.sub-menu li > a:hover{
text-decoration: underline;
color: #fff;
}



/*-- slicknav --*/
.slicknav_menu {
	display: none;
}

/*-- contents --*/
.contents {
	background-color:#fff;
}
.contentsInr {
	max-width: 950px;
	margin: 0 auto;
}

/*-- pageFooter --*/
.pageFooter {
	background-color: #000;
	margin-top: 20px;
}
.pageFooterInr {
	max-width: 970px;
	margin: 0 auto;
	padding: 0 10px;
}
.pageFooter_copy {
	display: block;
	padding: 20px 0;
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
}

.toHome {
	display: none;
}

.pageTop {
	position: fixed;
	right: 20px;
	bottom: 20px;
}
.pageTop_inr {
	display: block;
	transition: opacity ease 0.2s;
}
.pageTop_inr:hover {
	opacity: 0.7;
}

/*-- showMoreArea --*/
.showMoreArea .showMoreBtn{
	display: block;
	border: 1px solid #b5b5b5;
	color: #b5b5b5;
	text-align: center;
	letter-spacing: normal;
	font-size: 20px;
	padding: 10px 0;
	max-width: 950px;
	margin: 20px 0 0 22px;
}

.priceLink span {
    padding-right: 20px;
    line-height: 35px;
    background: url(../img/icon_arrow_right_red_01.png) 100% 10px no-repeat;
	background-size: 9px 15px;
}


/*------------------------------
	for SP
------------------------------*/
@media screen and (max-width: 739px) {

/*	Reset
------------------------------*/
img {
	width: 100%;
}

.ttlLv1 .heading {
    font-size: 1.5rem;
	padding: 0 10px;
}

.btnRD {
	background: #cc0000;
	padding: 10px 90px;
	color:#FFFFFF;
	font-size: 24px;
	text-align: center;
}

.priceLink::after{
    width: 8px;
    height: 12px;
    background-position: 0 0;
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-image: url(img/icon_arrow_right_red_01.png);
    background-repeat: no-repeat;
    -webkit-background-size: 250px 250px;
    background-size: 250px 250px;
}
	
/*	Structure
------------------------------*/
/*-- pageHeader --*/
.pageHeader {
	position: relative;
}
.pageHeaderInr {
	width: 100%;
}
.pageHeader_logo {
	width: 193px;
	padding: 16px 0;
}

/*-- contents --*/
.contentsInr {
	width: 100%;
	padding: 0;
}

/*-- pageFooter --*/
.pageFooterInr {
	width: 100%;
}
.pageFooter_copy {
	padding: 12px 0;
	font-size: 1.0rem;

}

.toHome {
	display: block;
}
.toHomeInr {
	display: block;
	padding: 10px 0;
	background-color:#e7e7e7;
	text-align: center;
}
.toHome_txt {
	display: inline-block;
	padding-left: 23px;
	background: url(../img/icon_home_sp.png) no-repeat left center;
	background-size: 16px 13px;
	color: #333;
}

.pageTop {
	width: 44px;
	height: 44px;
	bottom: 10px;
	right: 10px;
}
.pageTop_inr {

}


}/* @media */



@keyframes fadein {
0% { opacity:0; }
25% { opacity:0.25; }
50% { opacity:0.5; }
100% { opacity:1; }
}

@-webkit-keyframes fadein {
0% { opacity:0; }
25% { opacity:0.25; }
50% { opacity:0.5; }
100% { opacity:1; }
}

@-moz-keyframes fadein {
0% { opacity:0; }
25% { opacity:0.25; }
50% { opacity:0.5; }
100% { opacity:1; }
}

@-o-keyframes fadein {
0% { opacity:0; }
25% { opacity:0.25; }
50% { opacity:0.5; }
100% { opacity:1; }
}
