@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Noto Sans JP', serif;
}
body {
	text-align: center;
	background-color: #f5f5f5;
	line-height: 1.7;
	letter-spacing: 0.1em;
	font-size: 13px;
	color: #606060;
}
a {
	text-decoration: none;
}

section, article {
	margin: 2em auto;
	padding: 2em 3em;
}
section a {
	margin-right: 1em;
	color: #b04c7a;
}
section::after {
	display: block;
	content: '';
	clear: both;
}

h3 {
	position: relative;
	text-align: center;
	margin: 0.8em auto;
	padding: 0.25em 0;
	font-size: 1.2em;
	color: #a47cbe;
}

hr{
    height: 0;
    margin:60px 0;
    padding: 0;
    border: 0;
}

.hr-0{margin:100px 0;
border:none;
height:1em;
text-align:center;
}

.hr-0::before{
  position: absolute;
  content: '\f13d';
  color: #FE99C1;
  font-size: 35px;
  font-family: "Font Awesome 5 Free";
　font-weight: 900;
  margin-left: -20px;
  margin-top: -30px;
}

article {
	max-width: 500px;
	background-color: #fff;
	text-align: left;
}
article a {
	font-family: 'Josefin Sans', sans-serif;
	color: #a47cbe;
	display: inline-block;
	margin: 2em 1em;
	width: 40%;
}
article p {
	margin: 1.5em auto;
	word-break: break-all;
}
.menu {
	background-color: #f5f5f5;
}

strong {
    -webkit-text-emphasis: filled dot #606060;
   text-emphasis: filled dot #606060;
	font-weight: normal;
}



select,input[type],textarea{
font-family: 'Noto Sans JP', serif;
font-size:11px;
margin:10px 0;
padding:3px;
width:47%;
height:25px;
color:#434343;
background:#f5f5f5;
border:none;
border-radius:3px;
letter-spacing:2.2px;
line-height:1.8;
box-shadow:none;
text-shadow:none;
outline:none;
vertical-align:middle;
}

input[type="submit"]{
cursor:pointer;
width:60px;
}

input[type="submit"]:hover{color:#aaa;}

select{width:auto;}

#formWrap {
	width:100%;
	margin:9em auto 0;
	color:#555;
	line-height:120%;
	font-size:90%;
	text-align:center;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}



/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:100%;
	margin:2em auto 0;

}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
input[type="text"], textarea {
	width:50%;
	height:27px;
	padding:5px;
	font-size:90%;
	display:inline;
}
select{width:30%;}

input[type="submit"], input[type="reset"], input[type="button"] {
	width:auto;
	height:27px;
}
}

@media screen and (min-width:768px) {
	#wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		max-width: 1024px;
		margin: 3em auto;
	}
	section {
		padding: 0;
		flex-basis: 30%;
	}
