﻿@charset "UTF-8";
/* ================================================ */
/*               全体設定                */
/* ================================================ */

body {
	font-family:
}
html,body,h1, h2, h3, h4, h5, h6,
div, p, blockquote, pre, address,
ul, ol, li, dl, dt, dd,
table, th, td {
  margin: 0;
  padding: 0;
  font-family:
  "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
   sans-serif, Verdana, "メイリオ", "Meiryo", 
   "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}
*{
	box-sizing: border-box;/*はみ出さないように*/
}



/* ================================================ */
/*メインコンテンツ*/
/* ================================================ */
body{
	background: #cfb2ce40;
}
.wrap{
	width: 500px;
	height: 100vh;
	margin: 0 auto;
	display: flex;
  	justify-content: center; /* 左右中央 */
  	align-items: center; /* 上下中央 */
}
.thanks{
	text-align: center;
	box-shadow: 1px 1px 6px #d9cbdc;
	background: #fff;
	padding: 80px 80px 63px;
}
.thanks_text h1{
	font-size: 30px;
	padding-bottom: 20px;
	letter-spacing: 2px;
	font-weight: lighter;
	color: #555;
}
.thanks_text p{
	color: #555;
	font-size: 14px;
	line-height: 28px;
}
.thanks_text img{
	width: 126px;
	padding-left: 5px;
	margin-bottom: 36px;

}
.back_btn a{
	display: block;
	border:1px solid #cfb2ce; 
	font-size: 14px;
	line-height: 40px;
	width: 220px;
	height: 40px;
	margin:37px auto 0;
	color: #533d70;
	text-decoration: none;
	letter-spacing: 2px;
	transition: all 0.3s;
	}

.back_btn a:hover{
	color: #fff;
	text-decoration: none;
	background: #cfb2ce;
}

/*==============================
		Smartphone :  画面の横幅が640pxまで*/
@media screen and (max-width:640px){
.wrap{
	max-width: 500px;
	width: 100%;
	height: 88vh;
}
.thanks_text img{
	width: 86px;
}
.thanks_text h1{
	font-size: 20px;
}
.thanks_text p{
	font-size: 12px;
	line-height: 19px;
}
.thanks{
	 padding: 50px 30px 43px;
}
.back_btn a{
	font-size: 12px;
	line-height: 33px;
    width: 190px;
    height: 33px;
}
}