@charset "UTF-8";

html, body {

	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #313131;;
	letter-spacing: 1px;
}


body {
	font-size: 1.5rem;
	line-height: 1.6;
	
	background-color: #fadfe6;           
	background-image: url("../img/bg_container.jpg"); 
	background-size: cover;               /* 全画面 */
	background-attachment: fixed;         /* 固定 */
	background-position: center center;   /* 縦横中央 */
}

@media only screen and (max-width: 750px) {
	
	body {
		font-size: 1.3rem;
		line-height: 1.4;
	}

}





@media only screen and (max-width: 750px) {

	.for_pc{
		display: none;
	}
	
}

@media only screen and (min-width: 751px) {

	.for_sp{
		display: none;
	}
	
}


#container{
	min-width: 100%; 
    background-color: transparent; 
}



/* メインビジュアル 
----------------------------------------*/

.main{
	width: 100%;
	margin: 7em auto 4em;
}

.main h1{
	text-align: center;
}


@media only screen and (max-width: 750px) {

.main{
	margin: 3em auto 1em;
	padding: 2%;
}


}



/* article・section --------------------*/

article{
    display: block;
    width: 860px;
    margin: 50px auto;
    overflow: hidden;
}
article h2{
	text-align: center;
}

section{
	text-align: center;
	margin: 4em auto;
}
section h3{
	font-weight: bold;
}

@media only screen and (max-width: 750px) {

article{
    width: 100%;
    margin: 25px auto;
	padding: 3%;
}

section{
	margin: 3em auto;
}

	
}
	

/* button --------------------*/

.button {
	display: table;
    margin: 1em auto;
	min-height: 54px;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.4;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
}
.button_form {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 1.2em 3em;
    text-decoration: none;
    color: #fff;
    background: #2aa339;
    transition: .4s;
    border-radius: 40px;
}
.button_form:hover {
  background: #dd594a;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  border-bottom: none;
}

@media only screen and (max-width: 750px) {

.button {
	font-size: 1.5rem;
}
.button_form {
}
.button_form:hover {
}

}




/* いろいろ --------------------*/

.center{ text-align: center; }
.red{ color: #E0070B; }
.bold{ font-weight: bold; }
.mt20{ margin-top: 20px; }
.mt30{ margin-top: 30px; }
.mb15{ margin-bottom: 15px; }
.mb30{ margin-bottom: 30px; }
.f18{ font-size: 18px; }
span{ font-weight: bold;}




/* 改行 --------------------*/

@media screen and (min-width: 751px) {

	.br-sp { display:none;
	}

}

@media screen and (max-width: 750px) {

	.br-pc { display:none;
	}

}







/* header/footer --------------------*/

.header_simple {
    background-color: #000;
}

.footer_simple {
    background: #000;
}

.footer_simple .copyright{
	color: #fff;
}




