@charset "UTF-8";
/* CSS Document */

/* 全画面表示CSS */

.parent {
text-align: center;
background-image:url("../img/about/about.png");
background-size: cover;
position: relative;
height: 50vh;

}
.child {
  position:relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.parent::before{
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,0.4);
}

p.description {
  color: white;
  text-align: center;
	margin: 0;
}

.aisatsu-container {
	margin: 30px 0;
	overflow: hidden;
}

/* 上書き
------------------------*/

h1.title {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	font-size: 26px;
	text-align: center;
	color: #fff;
}

h1.title span {
	position: relative;
	z-index: 2;
}

h1.title::before {
	content: attr(data-en);
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,0.2);
	font-size: 80px;
	font-style: italic;
}

h1.title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 4px;
	height: 40px;
	background-color: rgba(255,0,0,1);
}

h2.title-under {
	margin: 50px 0 30px 0;
}


