.waku {
	width: 1200px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

.waku2 {
	width: 600px;
	margin-right: auto;
	margin-left: auto;
}

.waku .right {
	width: 200px;
	right: 0px;
	position: absolute;
	top: 50px;
}

.waku .left {
	margin-top: 100px;
}

.left h2 {
	text-align: center;
	font-size: 40px;
	color: hsla(0, 0%, 50%, 1.00);
	font-weight: 800;
}

.left .logo {
	width: 50%;
	margin-top: 200px;
}

.list {
	width: 480px;
	margin-right: auto;
	margin-left: auto;
	height: 80px;
	line-height: 80px;
}

.list ul {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
}

.list ul li {
	float: left;
	width: 120px;
  font-size: clamp(0.9750rem, calc(0.9750rem + ((1vw - 0.225rem) * 0.3750)), 1.1250rem);
	text-align: center;
	color: hsla(0, 0%, 50%, 1.00);
}

.list ul a {
	display: block;
	color: hsla(0, 0%, 50%, 1.00);
}

.list ul a:hover {
	color: hsla(0, 0%, 50%, 1.00);
}

.company {
	margin-top: 60px;
}

.company h3 {
	width: 100%;
	border-bottom: 1px solid hsla(0, 0%, 50%, 1.00);
	font-size: 24pt;
	padding-bottom: 10px;
	margin-bottom: 50px;
	font-family: Arial, Helvetica, sans-serif;
	color: hsla(0, 0%, 50%, 1.00);
	font-weight: bold;
}

.company dl {
	display: table;
	font-size: 10pt;
	color: hsla(0, 0%, 30%, 1.00);
}

.company dl span {
	display: block;
}

.company dl .inline {
	display: inline;
}

.company dl dt {
	display: table-cell;
	padding-right: 0px;
	padding-left: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
	width: 100px;
	vertical-align: middle;
}

.company dl dd {
	display: table-cell;
	text-align: left;
	vertical-align: middle;
	line-height: 30px;
	padding-left: 40px;
}

.company .top {
	vertical-align: top;
	display: table-cell;
}

.staff {
	margin-top: 100px;
}

.staff h3 {
	width: 100%;
	border-bottom: 1px solid hsla(0, 0%, 50%, 1.00);
	font-size: 24pt;
	padding-bottom: 10px;
	margin-bottom: 70px;
	color: hsla(0, 0%, 50%, 1.00);
	font-weight: bold;
}

.staff .d-flex_pc {
	display: flex;
}

.staff dl {
	width: 28%;
}

.staff dl dt {}

.staff dl dd {
	text-align: center;
	margin-top: 10px;
}

.staff dl dd li {
	font-size: 8pt;
	color: hsla(0, 0%, 30%, 1.00);
}

.staff .fast {}

.staff .middle {
	margin-right: 15px;
	margin-left: 30px;
}

.staff .middle2 {
	margin-right: 30px;
	margin-left: 15px;
}

.staff .name {
	font-size: 10pt;
}

.access {
	margin-top: 70px;
}

.access h3 {
	width: 100%;
	border-bottom: 1px solid hsla(0, 0%, 50%, 1.00);
	font-size: 24pt;
	padding-bottom: 10px;
	margin-bottom: 20px;
	color: hsla(0, 0%, 50%, 1.00);
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}

.access iframe {
	width: 100%;
	height: 400px;
}

.about {
	margin-top: 50px;
	padding-top: 30px;
	text-align: center;
}

.about img {
	margin-bottom: 50px;
	width: 500px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.about p {
	margin-bottom: 20px;
	font-size: 15px;
	color: hsla(0, 0%, 31%, 1.00);
	text-align: center;
}

.about span {
	display: block;
	padding-top: 20px;
}

.tyousei {
	margin-bottom: 50px;
}

.works {
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
	display: table;
	padding-left: 60px;
}

.works a {
	display: block;
}

.works a:hover {}

.works .box0 {
	display: block;
	width: 500px;
}

.works .box {
	width: 300px;
	padding-bottom: 20px;
	margin-bottom: 30px;
	background-color: #EFEFEF;
}

.works .box img {
	width: 100%;
}

.overwrap {
	overflow: hidden;
}

.over {
	position: relative;
	width: 300px;
	height: 100%;
	transition-duration: 0.3s;
}

.over:hover {
	transform: scale(1.1);
}

.over:before {
	content: "";
	position: absolute;
	width: 300px;
	height: 100%;
	background: radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
	/* 円形グラデーション */
	transition-duration: 0.3s;
	opacity: 0;
	/* 見えないように透過しておく */
	content: "read more";
	/* 表示するテキスト */
	background: radial-gradient(rgba(0, 0, 0, 0.6), #000000);
	/* けっこう暗くしないと文字が見にくいので注意 */
	display: flex;
	/* 文字の中央配置 */
	justify-content: center;
	/* 文字の中央配置 */
	align-items: center;
	/* 文字の中央配置 */
	color: #fff;
	font-size: 18px;
	text-shadow: 0 0 2px #000;
	filter: blur(4px);
	/* ブラー効果 */
}

.over:hover:before {
	opacity: 1;
	/* マウスオーバーで可視化 */
	transform: scale(1.3);
	/* 文字の拡大率 */
	filter: blur(0);
	/* ブラー効果を解除 */
}

.works .box .box1 {
	width: 100%;
	position: relative;
	margin-right: auto;
	margin-left: auto;
}

.works .box .box2 {
	margin-top: 10px;
}

.works .box .box2 ul {}

.works .box .box2 ul li {
	font-size: 10pt;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	color: hsla(0, 0%, 30%, 1.00);
	line-height: 23px;
	text-align: center;
}

.works .box .box2 ul li:first-child {
	font-weight: bold;
	color: hsla(0, 0%, 0%, 1.00);
	font-size: 11pt;
	margin-bottom: 10px;
}

.works .box .box2 ul li:last-child {
	color: hsla(0, 0%, 30%, 1.00);
}

.works .box .box2 ul li span {
	display: block;
}

.works .box .box2 p {
	text-align: center;
	font-weight: 900;
	font-size: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-right: auto;
	margin-left: auto;
	border-radius: 10px;
	background-color: #9FA0A0;
	height: 10px;
	line-height: 10px;
	color: hsla(0, 0%, 100%, 1.00);
	margin-top: 10px;
	width: 40%;
}

footer span {
	display: inline-block;
}

.pc {
	display: none;
}

/*アニメーション始まり*/
/* 基本のスタイル */
.content.delighter {
	transition: all .3s ease-out;
	transform: translateX(-10%);
	opacity: 0;
}

/* スタート時のスタイル */
.content.delighter.started {
	transform: none;
	opacity: 1;
}

/* エンド時のスタイル */
.content.delighter.started.ended {
	border: solid red 10px;
}

.delighter.left {
	transform: translatey(30%);
	opacity: 0;
	transition: all .75s ease-out;
}

.delighter.left.started {
	transform: none;
	opacity: 1;
}


.sample-text1 {
	font-size: 20px;
	font-weight: bold;
	animation-name: fadein;
	animation-duration: 3s;

}

@keyframes fadein {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}