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

@media screen and (min-width: 1200px) {
.cd-primary-nav >li:nth-child(2) {
	box-shadow:inset 0 -4px 0 #ccc /*#d90000*/;
}
}

.slder-background {
	width: 100%;
	height: 50vh;
	position: relative;
	background-image: url(images/title-bg.avif);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-bottom: 3%;
}

.filter {
	width: 100%;
	height: 100%;
	padding-top: 120px;
}
.filter .inner {
	color: #fff;
}
.filter .inner h1 {
	font-family: serif;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-top:50px;
}
#path a { color:#fff;}

/* 事例 */

dl.dljirei {
	display: table;
	max-width: 1000px;
	margin-right: auto;
	margin-bottom: 100px;
	margin-left: auto;
}
dl.dljirei dt{
	float : left;
	clear : both;
	width: 30%;
	vertical-align: middle;
	text-align: center;
	padding: 50px;
}
dl.dljirei dd{
	width: 100%;
	border-bottom: 1px solid #ccc;
	min-height: 300px;
	padding-top: 80px;
	padding-bottom: 20px;
}
dl.dljirei h3 {
	font-size: 18px;
	margin-bottom: 14px;
}
dl.dljirei p {
	font-size:16px;
}

.circle {
	position: relative;     /* 文字を中央配置する際の基準点にします */
	width: 180px;           /* 円の幅（お好みのサイズに変更してください） */
	height: 180px;          /* 円の高さ（幅と同じ値にすることで正円になります） */
	border-radius: 50%;     /* 四角形をきれいな円形にします */
	overflow: hidden;
	border: 2px solid #ccc;
}

.circle img {
  width: 100%;            /* 円の幅に画像を合わせます */
  height: 100%;           /* 円の高さに画像を合わせます */
  object-fit: cover;      /* 画像の縦横比を崩さずに円全体を覆うようにトリミングします */
  display: block;
}

.circle span {
  position: absolute;     /* 円を基準にして位置を固定します */
  top: 0;
  left: 0;
  width: 100%;            /* 円と同じ幅を持たせます */
  height: 100%;           /* 円と同じ高さを持たせます */
  
  /* Flexboxを使って文字を上下左右中央に配置 */
  display: flex;
  justify-content: center; /* 左右中央配置 */
  align-items: center;     /* 上下中央配置 */
  
  /* 見やすさのための装飾（必要に応じて調整・削除してください） */
  color:#999;            /* 文字色を白に */
  font-weight: bold;       /* 太字に */
  background-color: rgba(0, 0, 0, 0.4); /* 画像の上にうっすら黒い透過背景を敷いて文字を読みやすくします */
}

ul.ullist02 {
	margin-right: auto;
	margin-left: auto;
	padding-right: 1%;
	padding-left: 1%;
}
ul.ullist02 li {
	border-bottom: 1px dotted #CCC;
	margin-bottom: 1em;
	padding-right: 1em;
	padding-left: 1em;
}


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

}

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

.circle {
	margin-right: auto;
	margin-left: auto;
}
dl.dljirei dt{
	float : none;
	padding: 20px;
	clear : none;
	width: 100%;
}
dl.dljirei dd{
	width: 100%;
	border-bottom: 1px solid #ccc;
	min-height: auto;
	padding-top: 0px;
	padding-bottom: 20px;
}

}

@media screen and (max-width: 768px) {
.filter {
	padding-top:50px;
}

}








