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


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* mv */
.mv {
	background-image: url("/img/about/mv.jpg");
}



/* greeting */
.greeting__wrapper {
	display: flex;
}

.greeting__signature {
	display: block;
	text-align: right;
	margin-top: 20px;
}



/* outline */
.outline {
	background-color: #F7F7F7;
}



/* tbl */
.tbl {
	width: 100%;
	border-top: 1px solid #DDD;
}

.tbl tr th {
	width: 25%;
	padding: 20px;
	border-bottom: 1px solid #DDD;
	font-weight: bold;
}

.tbl tr td {
	width: 75%;
	padding: 20px;
	border-bottom: 1px solid #DDD;
	line-height: 1.8;
}

table a[href^="http"]:after,
table a[href^="//"]:after {
  margin: 0 0 0 5px;
  font-family: "Font Awesome 5 Free";
  content: '\f35d';
  font-weight: 600;
}

table a:hover {
	text-decoration: underline;
}



/******************************************************

タブレットの設定 960px〜1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){





}



/******************************************************

タブレットの設定 768px〜959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){




}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){
	
/* greeting */
.greeting__wrapper {
	display: block;
}

.greeting__signature {
	display: block;
	text-align: right;
	margin-top: 20px;
}
	


/* tbl */
.tbl tr th {
	display: block;
	width: 100%;
	padding: 15px 0 5px 5px;
	border-bottom: none;
	font-weight: bold;
}

.tbl tr td {
	display: block;
	width: 100%;
	padding: 0 0 15px 5px;
	border-bottom: 1px solid #DDD;
}




}