html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after{content:'';content:none}q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
*{
	box-sizing: border-box;
}
*::after,
*::before{
	box-sizing: inherit;
}
img{
	max-width: 100%;
}
html{
	font-family: serif;
}
body{
	background: url("./images/shine.png") repeat-x top center, #FDF4F4;
	background-size: 430px auto;
	color: #89304B;
	font-size: 14px;
}
a{
	text-decoration: none;
}
.l-header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255,255,255, .6);
	backdrop-filter: blur(12px);
	padding: 0 20px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 100;
}
.p-mainvisual{
	background: url("./images/flowers.png") no-repeat top 43px center;
	background-size: 100% auto;
	padding-top: 56px;
	line-height: 1.3;
}
.p-mainvisual__title{
	font-size: 30px;
	color: #FF4880;
	margin-top: 49px;
	font-weight: bold;
	text-align: center;
}
.p-mainvisual__titleSub{
	font-size: 20px;
	margin-top: 5px;
	font-weight: bold;
	text-align: center;
}
.l-header__button{
	padding: 9px 16px;
	text-align: center;
	background: #17CBA8;
	border-radius: 16px;
}
.l-header__buttonLink{
	display: block;
	color: #fff;
}
.l-main{
	padding-left: 20px;
	padding-right: 20px;
}
.p-profile{
	background: #F2DCDC;
	border-radius: 9px;
	border: 4px solid #FDF4F4;
	position: relative;
	padding: 50px 20px 20px 20px;
	margin-left: 20px;
	margin-right: 20px;
	box-shadow: 0px 0px 30px rgba(137,48,75,.2);
	margin-top: 71px;
	margin-bottom: 30px;
}
.p-profile__icon{
	position: absolute;
	top: -36px;
	left: 50%;
	margin-left: -36px;
	width: 72px;
	height: 72px;
	overflow: hidden;
	border-radius: 12px;
	border: 4px solid rgba(255,255,255,.8);
	box-shadow: 0px 0px 10px rgba(137,48,75,.2);
}
.p-profile__title{
	font-size: 18px;
	text-align: center;
}
.p-profile__name{
	font-size: 24px;
	text-align: center;
	margin-top: 8px;
}
.p-profile__table{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #fff;
	font-size: 12px;
	margin-top: 16px;
}
.p-profile__table dt{
	width: 72px;
	background: rgba(255,255,255,.1);
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 6px;
	text-align: center;
}
.p-profile__table dd{
	width: calc(100% - 72px);
	background: rgba(255,255,255,.25);
	border-bottom: 1px solid #fff;
	padding: 6px;
}
.c-archive{
	line-height: 2;
	margin-bottom: 30px;
}
.c-archive span{
	color: #FF4880;
}
.c-image{
	margin-bottom: 30px;
	overflow: hidden;
	border-radius: 8px;
}
.c-mailblock{
	padding: 20px;
	background: rgba(23,203,168,.08);
	border: 2px solid #fff;
	line-height: 2;
	margin-bottom: 30px;
}
.c-buttonLarge{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #17CBA8;
	color: #fff;
	height: 64px;
	font-size: 18px;
	font-family: sans-serif;
	font-weight: bold;
	border-radius: 32px;
	box-shadow: 0px 0px 20px rgba(23,203,168,.4);
	margin-bottom: 30px;
}
.c-buttonLarge i{
	width: 20px;
	margin-right: 10px;
}
.c-title{
	background: #89304B;
	color:#fff;
	display: flex;
	align-items: center;
	height: 64px;
	padding-left: 20px;
	font-size: 18px;
	position: relative;
	width: calc(100% - 11px);
	margin-bottom: 30px;
	margin-left: -20px;
}
.c-title::after{
	content: "";
	position: absolute;
	top: 0;
	right: -11px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 64px 11px 0 0;
	border-color: #89304B transparent transparent transparent;
}
.l-footer{
	background: #89304B;
	font-size: 12px;
	text-align: center;
	padding: 50px 0;
	color: #fff;
	line-height: 1.7;
}
@media screen and (min-width: 768px){
	.p-mainvisual,
	.l-main{
		max-width: 640px;
		margin-left: auto;
		margin-right: auto;
	}
	.c-image,
	.c-mailblock{
		max-width: 470px;
		margin-left: auto;
		margin-right: auto;
	}
	.c-buttonLarge{
		max-width: 350px;
		margin-left: auto;
		margin-right: auto;
	}
}
