/*フォントサイズリセット*/
html{
	font-size: 62.5%;
	margin: 0;
	padding: 0;
}
body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
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, canvas, details, figcaption, figure, 
footer, header,  menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:1.1rem;
	font-weight: normal;
	font-family: Arial, Helvetica, "sans-serif";
    vertical-align:baseline;
    background:transparent;
	box-sizing: border-box;
}

body {
    line-height:1.5;
}

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

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
/*clerarfix*/
.clerarfix:after{/*floatを指定したときの親要素に適応する*/
	clear: both;
	content: "";
	display: block;
}

/*------------------PC-------------------*/

/*header*/
.wrap-header{
	background: rgba(125,204,243,.8);
	position: fixed;
	top:0;
	margin: 0 auto;
	width: 100%;
	z-index: 1000;
}
.header{
	width: 1200px;
	margin: 0 auto;
	display: flex;
    justify-content: space-between;
	height: 80px;
	padding-top: 20px;
}
ul{
	list-style: none;
}
.header img{
	width: 250px;
	margin-left: 20px;
}
.main-nav{
	display: flex;
	margin-left: 20px;
}
.main-nav li {
	font-size: 2rem;
	font-weight: bold;
    margin-left: 10px;
	text-align: center;
}
.main-nav li a{
	text-decoration: none;
	padding: 10px 30px;
	color: #000;
	display: block;
}
.main-nav li a:hover{
	color: #009FE8;
}

/*picture*/
.picture{
	height: 100vh;
	position: relative;
}
.picture-logo{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.picture-p{
	position: absolute;
	top:81%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.picture-p h1{
	font-size: 2.6rem;
	font-weight: bold;
}
.picture-p a {
	text-decoration: none;
	color: #000;
}
.picture-p a:hover{
	color: red;
}

/*top動画アイコン*/
.cp_arrows *, .cp_arrows *:before, .cp_arrows *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_arrows {
	position: absolute;
	top:89%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 50px;
	height: 50px;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.cp_arrows .cp_arrow {
	position: relative;
	display: inline-block;
	padding-top: 1.8em;
	-webkit-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-animation: arrow-move06 2s 1s ease-in-out infinite;
	        animation: arrow-move06 2s 1s ease-in-out infinite;
	text-decoration: none;
	color: #000;
	border-color: #000;
}
.cp_arrows .cp_arrow:before {
	font-size: 2em;
	line-height: 1.9em;
	position: absolute;
	top: 0;
	left: 50%;
	width: 2em;
	height: 2em;
	margin-left: -0.7em;
	content: '▼';
	-webkit-transition: transform 0.5s ease-in;
	        transition: transform 0.5s ease-in;
	text-align: center;
	border: 0.13em solid #ffffff;
	border-color: inherit;
	border-radius: 10em;
}
.cp_arrows .cp_arrow:hover {
	color: #e50011;
	border-color: #e50011;
}
.cp_arrows .cp_arrow:hover:before {
	transform: rotate(360deg);
}
@-webkit-keyframes arrow-move06 {
	0% {
		top: 1%;
		opacity: 0.1;
	}
	70% {
		top: 5%;
		opacity: 1;
	}
	100% {
		top: 1%;
		opacity: 0.3;
	}
}
@keyframes arrow-move06 {
	0% {
		top: 1%;
		opacity: 0.1;
	}
	70% {
		top: 5%;
		opacity: 1;
	}
	100% {
		top: 1%;
		opacity: 0.3;
	}
}

/*about*/
.wrap{
	position: relative;
}
.about{
	width: 1000px;
	margin: 0 auto;
	background: #fff;
	padding-top: 5px;
	padding-bottom: 90px;
}
.about-note{
	width: 650px;
	margin: 50px auto -80px;
}
.about-sentence{
	width: 100%;
	text-align: center;
	margin: 30px 0 50px;
}
.about-sentence h2{
	font-size: 5.5rem;
	font-weight: bold;
	margin-top: 0px;
}
.about-sentence h1{
	font-size: 6.5rem;
	font-weight: bold;
	margin-bottom: 90px;
}
.about-sentence p{
	font-size: 2.3rem;
	font-weight: 600;
	line-height: 3;
}
.about-button{
	width: 310px;
	height: 70px;
	border: 1px solid #000;
	margin: 0 auto;
}
.about-button p{
	font-size: 2.0rem;
	text-align: center;
	padding-top: 22px;
}
.about-button-inner a {
	text-decoration: none;
	color: #000;
}
.about-button-inner a:hover{
	color: #009FE8;
}
.slider-inner{
	width: 650px;
	margin: 90px auto 0;
}

/*about2*/
.back-blue{
	background:#7DCCF3;
	margin-bottom: 100px;
	padding-top: 70px;
	padding-bottom: 60px;
}
.about2{
	width: 1200px;
	margin: 0 auto 0px ;
	position: absolute;
	top:65%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.back-blue h2{
	font-size: 4rem;
	font-weight: 600;
	text-align: center;
	padding-top: 30px;
	margin-bottom: 20px;
}
.about2-p p{
	text-align: center;
	font-size: 3rem;
	font-weight: bold;
	line-height: 2.3;
	margin-bottom: 20px;
}
.photo-top{
	width: 100%;
	height: 100vh;
	background: url(./img/partition-top.jpg) center bottom no-repeat;
	background-size: cover;
	position: relative;
}
.about2 a {
	text-decoration: none;
	color: #000;
}
.about2 a:hover{
	color: #009FE8;
}
.box_list-about a {
	text-decoration: none;
	color: #000;
}
.box_list-about a:hover{
	color: #009FE8;
}
/*about2-box*/
.box_list-about{
	width: 1000px;
	margin: 0 auto 70px ;
	padding-bottom: 0px;
}
.box_list-about ul{
	overflow: hidden
}
.box_list-about li{
	float: left;
	list-style: none;
	width: 23%;
	height: 430px;
	margin: 0 1%;
}
.item{
	padding: 15px;
	margin: 0 auto;
}
.item-photo{
	width: 100px;
	margin: 0 auto;
}
.item h4{
	text-align: center;
	font-size: 2.7rem;
	font-weight: bold;
	color: #009FE8;
}
.item p{
	font-size: 1.8rem;
}
.item a{
	color: red;
	text-decoration: none;
}
.item a:hover{
	color: #009FE8;
}

/*assemble*/
.box_list-assemble{
	width: 1000px;
	margin: 0 auto;
	padding-bottom: 30px;
}
.box_list-assemble ul{
	overflow: hidden
}
.box_list-assemble li{
	float: left;
	list-style: none;
	width: 46%;
	margin: 0px 2% 20px;
}
.box_list-assemble img{
	max-width: 100%;
}
.assemble-part{
	font-size: 2rem;
}
.explanation{
	font-size: 2.8rem;
	font-weight: bold;
}
.assemble-note{
	width: 961px;
	background: #1D2088;
	margin: 0 auto;
	padding: 30px 40px;
}
.assemble-note h5{
	font-size: 2rem;
	display: inline-block;
	background: red;
	color: #fff;
	padding: 3px 15px;
	margin-bottom: 5px;
}
.assemble-note ul{
	padding-left: 18px;
}
.assemble-note li{
	list-style: disc;
	font-size: 2rem;
	color: #fff;
}

/*lineup*/
.back-blue-lineup{
	background:#7DCCF3;
	padding-top: 70px;
	padding-bottom: 80px;
	margin-bottom: 100px;
}
.back-blue-lineup h2{
	font-size: 4rem;
	font-weight: 600;
	text-align: center;
	padding-top: 30px;
	margin-bottom: 20px;
}
.lineup{
	width: 1200px;
	margin: 0 auto 50px;
	background: #fff;
}
.box_list-lineup{
	width: 1000px;
	margin: 0 auto;
	padding-bottom: 5px;
}
.box_list-lineup ul{
	overflow: hidden
}
.box_list-lineup li{
	float: left;
	list-style: none;
	width: 31.3333%;
	margin: 0 1%;
}
.box_list-lineup img{
	max-width: 100%;
}
.lineup-logo-inner{
	overflow: hidden;
	width: 900px;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 40px;
}
.lineup-logo{
	float: left;
	margin-right: 20px;
}
.lineup-logo-inner h3{
	font-size: 7rem;
	font-weight: bold;
	margin-top: 35px;
}
.txt_area{
	margin-left: 30px;
	margin-bottom: 30px;
}
.number{
	display: inline-block;
	background: #333;
	color: #fff;
	font-size: 2.4rem;
	padding: 2px 15px;
	margin-bottom: 2px;
}
.size{
	font-size: 2.4rem;
}
.price{
	font-size: 2.4rem;
	color: red;
}
.tax{
	font-size: 1.2rem;
	color: #000;
	padding-left: 3px;
}
.shipping{
	margin:0 130px;
	padding-bottom: 50px;
}
.shipping p{
	font-size: 1.8rem;
}
.shipping-t{
	display: inline-block;
	background: #000;
	color: #fff;
	padding: 3px 10px;
	margin-bottom: 3px;
}
.shipping-a a{
	text-decoration: none;
	display:inline-block;
	font-size: 1.5rem;
	margin-top: 3px;
	padding: 5px 30px;
	background: #E60012;
	border-radius: 15px;
	color: #fff;
	font-weight: bold;
}

.shipping-a a:hover{
	background: #009FE8;
	color: #000;
}
/*inquiry*/
.back-blue-inquiry{
	background:#7DCCF3;
	padding-top: 50px;
	padding-bottom: 100px;
}
.back-blue-inquiry h2{
	font-size: 4rem;
	font-weight: 600;
	text-align: center;
	padding-top: 30px;
	margin-bottom: 20px;
}
.inquiry{
	width: 1100px;
	margin: 0 auto;
}
.inquiry ul{
	overflow: hidden
}
.inquiry li{
	float: left;
	list-style: none;
	width: 48%;
	margin: 0 1%;
	padding: 60px;
	background: #fff;
}
.inquiry p{
	font-size: 2.4rem;
	text-align: center;
}
.inquiry-p{
	margin: 0 auto;
	width: 350px;
	font-weight: bold;
}
.inquiry-p a{
	text-decoration: none;
	background: #E60012;
	border-radius: 15px;
	color: #fff;
	display: block;
	margin-top: 20px;
}
.inquiry-p a:hover{
	background: #009FE8;
	color: #000;
}
.inquiry-p-inner{
	text-align: center;
	margin-top: 30px;
}

/*フッターの設定*/
.footer{
	background: #fff;
	color: #000;
	padding-bottom: 50px;
}
.footer-logo{
	width: 1200px;
	margin: 0 auto;
	padding-top: 60px;
	padding-bottom: 0px;
	text-align: center;
}
.footer img{
	width: 300px;
}
.footer p{
	font-size: 1.8rem;
	text-align: center;
	padding-top: 15px;
}
small{ font-size: 1.4rem;}
.footer-logo p{
	padding-top: 3px;
	font-size: 1.6rem;
}

.footer-button{
	margin: 60px auto 60px;
	width: 310px;
	height: 70px;
	border: 1px solid #000;
}
.footer-button p{
	font-size: 2.0rem;
	text-align: center;
	padding-top: 22px;
}
.footer-button-inner a {
	text-decoration: none;
	color: #000;
}
.footer-button-inner a:hover{
	color: #009FE8;
}
.column{
	text-align: center;
}
.column p{
	font-size: 2rem;
}
.column a {
	font-size: 1.6rem;
	text-decoration: none;
	color: #009FE8;
}
.column a:hover{
	color: red;
}
.footer-logo-inner{
	margin-bottom: 30px;
}

/*pagetop*/
.pagetop{ 
	background: #000;
	border-bottom: none;
	position: fixed; bottom: 10px; right: 30px;
	width: 60px;
	height: 40px;
}
.pagetop a{
	padding-top: 25px;
	background: url(./img/pagetop.png) no-repeat center;
	display: block;
	overflow: hidden;
	text-indent: 1000%;
	white-space: nowrap;
}
.margin-top-con{
	margin-top: 200px;
	margin-bottom: 100px;
}
.blue a{
	color: #009FE8!important;
}
/*消す*/
@media only screen and (min-width: 1026px){
	.menu-mobile{display: none;}
	.sm-only{display: none;}
}
	
/*-------------------------スマホ----------------------------*/
@media screen and (max-width:640px){
	.pc_only { display: none;}
	.sm-only { display: block;}
	
	/*menu*/
	.menu-mobile{
		position: fixed;
		width: 100%;
		margin:0px auto 0;
		padding: 0px;
		background-color: #fff;
		opacity: 0.7;
		border-top:2px solid #000;
		bottom: 0;
		z-index: 1000;
	}
	.menu-mobile ul{
		display: flex;
		list-style: none;
		justify-content: space-between;	
	}
	.menu-mobile ul li{
		text-align: center;
		width: 20%;
		font-size: 2rem;
	}
	.menu-mobile ul li i{
		font-size: 2rem ;
	}
	.menu-mobile ul li span{
		display: block;
	}
	.menu-mobile ul li a{
		padding-top: 10px;
		padding-bottom: 5px;
		display: block;
		color: #000;
		text-decoration: none;
	}
	.menu-mobile ul li a:hover{
		color: #000;
	}
	
	/*header*/
	.wrap-header{
		position:inherit;
	}
	.header{
		width: 100%;
		padding-top: 20px;
		display: block;
		text-align: center;
	}
	.header img{
		margin-left: 0;
	}
	/*picture*/
	.picture{
	height: 90vh;
	}
	.picture-logo{
		top:30%;
		width: 100%;
	}
	.picture-logo img{
	max-width: 100%;
	}
	.picture-p{
		top:60%;
	}
	.picture-p h1{
		font-size: 4vw;
	}
	
	/*矢印*/
	.cp_arrows {
		top:70%;
	}
	
	/*about*/
	.about{
		width: 85vw;
		margin: 0 auto;
		padding-top: 1px;
	}
	.about-sentence h2{
		font-size: 6vw;
	}
	.about-sentence h1{
		font-size: 7.5vw;
		margin-bottom: 39px;
	}
	.about-sentence p{
		font-size: 3.9vw;
		background-color: rgba(255, 255, 255, 0.5);
	}
	.about-note{
	width: 100%;
	margin-bottom: -80px;
	margin-left: 20px;
	}
	.about-button{
	width: 100%;
	height: 100%;
	border: none;
	margin: 0 auto;
	text-align: center;	
	}
	.about-button p{
		display: inline-block;
		border: 1px solid #000;
		font-size: 4vw;
		padding: 10px 39px;
		background: #fff;
	}
	.slider-inner{
		max-width: 100%;
	}

	/*about2*/
	.photo-top{
	width: 100%;
	height: 120vh;
	background: url(./img/partition-top-mob.jpg) center bottom no-repeat;
	background-size: cover;
	position: relative;
}
	.back-blue{
		margin-bottom: 100px;
		padding-top: 20px;
		padding-bottom: 30px;
	}
	.about2{
		width: 100%;
		top:39%;
	}
	.back-blue h2{
		font-size: 3rem;
		padding-top: 20px;
		margin-bottom: 20px;
	}
	.about2-p p{
		font-size: 4vw;
		line-height: 2.0;
		margin-bottom: 20px;
	}
	


	/*about2-box*/
	.box_list-about{
		width: 100%;
		padding-bottom: 30px;
	}
	.box_list-about ul{
		margin-bottom: 50px;
	}
	.box_list-about li{
		width: 46%;
		height: 400px;
		margin: 2% 2%;
	}
	.item{
		padding: 10px;
	}
	.item h4{
		font-size: 2.5rem;
	}
	.item p{
		font-size:3.6vw;
	}
	
	/*assemble*/
	.box_list-assemble{
		width: 100%;
		padding-bottom: 10px;
	}
	.box_list-assemble li{
		float: inherit;
		width: 94%;
		margin: 0px 3% 20px;
	}
	.assemble-note{
		width: 100%;
		padding: 20px 40px;
	}
	.assemble-note h5{
		font-size: 1.8rem;
	}
	.assemble-note li{
		font-size: 1.6rem;
	}

	/*lineup*/
	.back-blue-lineup{
		padding-top: 20px;
		padding-bottom: 10px;
		margin-bottom: 50px;
	}
	.back-blue-lineup h2{
		font-size: 3rem;
		margin-bottom: 35px;
	}
	.lineup{
		width: 100%;
		margin: 0 auto 50px;
	}
	
	.box_list-lineup{
		width: 100%;
		margin: 0 auto;
		padding-bottom: 0px;
	}
	.box_list-lineup li{
		width: 48%;
		margin: 0 1%;
	}
	.lineup-logo-inner{
		width: 100%;
		margin: 0 auto;
		padding-top: 30px;
		padding-bottom: 20px;
	}
	.lineup-logo{
		float: inherit;
		margin: 0 auto;
		text-align: center;
	}
	.lineup-logo-inner h3{
		font-size: 5rem;
		margin:0 auto;
		text-align: center;
	}
	.txt_area{
		margin-left: 25px;
		margin-bottom: 30px;
	}
	.number{
		font-size: 2.0rem;
		padding: 2px 10px;
	}
	.size{
		font-size: 4.3vw;
	}
	.price{
		font-size: 2.2rem;
	}
	.shipping{
		margin:0 30px;
		padding-bottom: 50px;
	}
	.shipping p{
		font-size: 1.6rem;
	}

	/*inquiry*/
	.back-blue-inquiry{
		padding-top: 30px;
		padding-bottom: 50px;
	}
	.back-blue-inquiry h2{
		font-size: 3rem;
		padding-top: 20px;
	}
	.inquiry{
		width: 100%;
	}
	.inquiry li{
		float: inherit;
		width: 94%;
		margin: 0 3% 10%;
		padding: 30px;
	}
	.inquiry p{
		font-size: 2.2rem;
	}
	.inquiry-p{
		width: 280px;
	}
	.inquiry-p a{
	display:inline-block;
	font-size: 5vw;
	padding: 5px 30px;
	}
	.inquiry-p-inner{
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.inquiry-p-inner p{
		font-size:3.3vw; 
	}

	/*フッターの設定*/
	.footer{
		padding-bottom: 100px;
	}
	.footer-logo{
		width: 100%;
		padding-top: 30px;
		padding-bottom: 0px;
	}
	.footer img{
		width: 280px;
	}
	.footer p{
		font-size: 1.6rem;
		text-align: center;
		padding-top: 0px;
	}
	small{
		font-size: 1.4rem;
	}
	.footer-button{
		margin: 60px auto 60px;
		width: 310px;
		height: 70px;
		border: none;
		text-align: center;
	}
	.footer-button p{
		display: inline-block;
		border: 1px solid #000;
		font-size: 4vw;
		padding: 10px 39px;
	}
	.column{
	margin-top: 20px;
	margin-bottom: 20px;
	}
	.column ul{
		margin-top: 30px;
	}
	.column li{
		margin-bottom: 30px;
	}
	/*pagetop*/
	.pagetop{ 
		background: none;
		display: none;
	}
	.pagetop a{
		background: none;
		display: none;
	}
	.margin-top-con{
		margin-top: 100px;
		margin-bottom: 100px;
	}


}

/*--------------------タブレット---------------------*/
@media screen and (min-width: 641px) and (max-width:1025px){
	.pc_only { display: none;}
	.mobi_only { display: none;}
	.sm-only{display: block;}
	/*menu*/
	.menu-mobile{
		position: fixed;
		width: 100%;
		margin:0px auto 0;
		padding: 0px;
		background-color: #fff;
		opacity: 0.7;
		border-top:2px solid #000;
		bottom: 0;
		z-index: 1000;
	}
	.menu-mobile ul{
		display: flex;
		list-style: none;
		justify-content: space-between;	
	}
	.menu-mobile ul li{
		text-align: center;
		width: 20%;
		font-size: 3rem;
	}
	.menu-mobile ul li i{
		font-size: 3rem;
	}
	.menu-mobile ul li span{
		display: block;
	}
	.menu-mobile ul li a{
		padding-top: 10px;
		padding-bottom: 5px;
		display: block;
		color: #000;
		text-decoration: none;
	}
	.menu-mobile ul li a:hover{
		color: #000;
	}
	
	/*header*/
	.wrap-header{
		position:inherit;
	}
	.header{
		width: 100%;
		padding-top: 20px;
		display: block;
		text-align: center;
	}
	
	/*picture*/

	.picture-logo{
		top:30%;
		left: 50%;
		
	}
	.picture-p{
		top:60%;
	}
	.picture-p h1{
		font-size: 2.5rem;
	}
	/*about*/
	.about{
		width: 85vw;
		margin: 0 auto;
		padding-top: 1px;
	}
	.about-sentence h2{
		font-size: 5vw;
	}
	.about-sentence h1{
		font-size: 6vw;
		margin-bottom: 39px;
	}
	.about-sentence p{
		font-size: 3.9vw;
	}
	
	/*矢印*/
	.cp_arrows {
		top:70%;
	}
	
	/*about2*/
	.back-blue{
		margin-bottom: 100px;
		padding-top: 20px;
		padding-bottom: 30px;
	}
	.about2{
		width: 100%;
		top:47%;
	}
	.back-blue h2{
		font-size: 4rem;
		padding-top: 20px;
		margin-bottom: 20px;
	}
	.about2-p p{
		font-size: 3vw;
		line-height: 2.0;
		margin-bottom: 20px;
	}

	/*about2-box*/
	.box_list-about{
		width: 100%;
		padding-bottom: 30px;
	}
	.box_list-about li{
		width: 46%;
		margin: 2% 2%;
	}
	.item{
		padding: 10px;
	}
	.item h4{
		font-size: 3rem;
	}
	.item p{
		font-size:2.8vw;
	}
	
	/*assemble*/
	.box_list-assemble{
		width: 100%;
		padding-bottom: 10px;
	}
	.box_list-assemble li{
		float: left;
		width: 46%;
		margin: 0px 2% 20px;
	}
	.assemble-note{
		width: 100%;
		padding: 20px 40px;
	}

	
/*lineup*/
	.back-blue-lineup{
		padding-top: 20px;
		padding-bottom: 10px;
		margin-bottom: 50px;
	}
	.back-blue-lineup h2{
		font-size: 4rem;
		margin-bottom: 35px;
	}
	.lineup{
		width: 100%;
		margin: 0 auto 50px;
	}
	
	.box_list-lineup{
		width: 100%;
		margin: 0 auto;
		padding-bottom: 15px;
	}
	.box_list-lineup li{
		width: 48%;
		margin: 0 1%;
	}
	.lineup-logo-inner{
		width: 100%;
		margin: 0 auto;
		padding-top: 30px;
		padding-bottom: 20px;
	}
	.lineup-logo{
		float: inherit;
		margin: 0 auto;
		text-align: center;
	}
	.lineup-logo-inner h3{
		font-size: 5rem;
		margin:0 auto;
		text-align: center;
	}
	.txt_area{
		margin-left: 25px;
		margin-bottom: 30px;
	}
	.number{
		font-size: 2.0rem;
		padding: 2px 10px;
	}
	.size{
		font-size: 3.5vw;
	}
	.price{
		font-size: 2.8rem;
	}
		.shipping{
		margin:0 30px;
		padding-bottom: 50px;
	}
	.shipping p{
		font-size: 1.8rem;
	}

	/*inquiry*/
	.back-blue-inquiry{
		padding-top: 30px;
		padding-bottom: 20px;
	}
	.back-blue-inquiry h2{
		font-size: 4rem;
		padding-top: 20px;
	}
	.inquiry{
		width: 100%;
	}
	.inquiry li{
		float: inherit;
		width: 500px;
		margin: 0 auto 5%;
		padding: 30px;
	}
	.inquiry p{
		font-size: 2.2rem;
	}
	.inquiry-p{
		width: 280px;
	}
	.inquiry-p-inner{
		margin-top: 0px;
		margin-bottom: 50px;
	}
	
/*フッターの設定*/
	.footer{
		padding-bottom: 100px;
	}
	.footer-logo{
		width: 100%;
		padding-top: 50px;
		padding-bottom: 0px;
	}
	.footer img{
		width: 280px;
	}
	.footer p{
		font-size: 1.6rem;
		text-align: center;
		padding-top: 5px;
	}
	small{ font-size: 1.4rem;}

	.footer-button{
		margin: 60px auto 60px;
		width: 310px;
		height: 70px;
	}
	.footer-button p{
		font-size: 2.0rem;
		padding-top: 22px;
	}
	.footer-logo-inner{
		margin-bottom: 30px;
	}
	/*pagetop*/
	.pagetop{ 
		background: none;
		display: none;
	}
	.pagetop a{
		background: none;
		display: none;
	}
	.margin-top-con{
	margin-top: 100px;
	margin-bottom: 100px;
	}

	

	
	
}