@charset "UTF-8";
/* CSS Document */

/*=========================================== 
スマホ向けのレイアウトの指定：～768px 
===========================================*/
@media only screen and (min-width: 0px) {

html,body{
	overflow-x: hidden;
}
	
#container{
	width:100%;
	margin:0 auto;
}


/*パンくずリスト*/
.breadcrumb{
	margin: 15px 0 15px 10px;
	font-size: 10px;
	overflow: hidden;
}

.breadcrumb li{
	line-height: 1.5;
	float: left;
}

.breadcrumb li:last-child{
	font-weight: bold;
}

.breadcrumb li a{
	color: rgb(100,100,100);
}

.breadcrumb .next::after{
	content: ">";
	margin: 0 10px;
}


#wrapper{
	width:90%;
	margin:0 auto;
}


/*タイトル周り*/
.title_box{
	position: relative;
	width: 100%;
	height: 200px;
	background: url(../images/privacy_mv.jpg) no-repeat top center;
	background-size: cover;
}

.title_box .float_box{
	position: absolute;
	top: 54px;
	left: 0;
	right: 0;
	width: 247px;
	margin: auto;
}

h1.title{
	padding: 18px 24px;
	font-size: 22px;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.28rem;
	background: rgba(255,255,255,0.8);
	border-radius: 4px;	
	float: left;
}

h1.title .small{
	margin: 12px 0 0 0;
	font-size: 14px;
	text-align: center;
	font-weight: normal;
	letter-spacing: 0.2rem;
	color: rgb(234,109,164);
	font-family: Makinas-Scrap;
	display: block;
}


/*コンテンツ*/
#privacy .text{
	margin: 40px auto;
	font-size: 14px;
	line-height: 1.7;
	padding-left: 14px;
	text-indent: -14px;
	text-align: justify;
	text-justify:inter-ideograph;
}

#privacy .text:first-child{
	margin: 60px auto 40px;
	padding-left: 0;
	text-indent: 0;
}

#privacy .day{
	font-size: 14px;
	float: right;
}
}

/*=========================================== 
PC向けのレイアウトの指定：768px〜
===========================================*/
@media only screen and (min-width: 769px) {
	
html,body{
	overflow: visible;
}
	
#container{
	margin:0 auto;
	width:100vw;
}


/*パンくずリスト*/
.breadcrumb{
	max-width: 1080px;
	margin: 15px auto;
}

.breadcrumb li a:hover{
	opacity:0.8;
	filter:alpha(opacity=80); /* IE 6,7*/
	-ms-filter: "alpha(opacity=80)"; /* IE 8,9 */
	-moz-opacity:0.8; /* FF , Netscape */
	-khtml-opacity: 0.8; /* Safari 1.x */
	zoom:1; /*IE*/
}


#wrapper{
	width:100%;
	max-width: 960px;
}


/*タイトル周り*/
.title_box{
	width: 100vw;
	height: 310px;
}

.title_box .float_box{
	top: 105px;
	width: 391px;
}

h1.title{
	padding: 18px 40px;
	font-size: 36px;
}

h1.title .small{
	font-size: 20px;
}
}