@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@400&display=swap");

.ctg_cataloglp {
  display: block;
  max-width: 1160px;
  margin-top: -30px!important;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  position: relative;
}


.spIn {
	display: none;
}

.pcIn {
	display: inline;
}

@media screen and (max-width: 767px){
.spIn {
	display: inline;
}

.pcIn {
	display: none;
}
}


/*-------------------------------------------------------------------
	firstview　（mainVisual）
-------------------------------------------------------------------*/

section {
	max-width: 90%;
	margin: 0 auto;
	margin-top: 3%;
}
@media screen and (max-width: 767px) {
	section {
		max-width: 95%;
	}
}

/* 匠タイトル */
section h2 {
	font-size: 1.8em;
	font-weight: 700;
	margin-bottom: 3%;
	text-indent: -1em;
}
section h2 span{
	text-decoration: underline #000 2px;
	text-underline-offset: 0.4em;
}
section h2::before {
	content: '';
	display: inline-block; /* widthとheightを有効にするため */
	width: 0.5em;          /* 幅 */
	height: 1.7em;         /* 高さ */
	background-color: #000; /* 長方形の色 */
	margin-right: 0.4em;
	vertical-align: bottom;
}
@media screen and (max-width: 767px) {
	section h2 {
		font-size: 1.5em;
	}
}

section h3 {
	text-align: center;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 2%;
}

h4 {
	text-align: center;
	margin: 0 auto;
	width: 100%;
	font-size: 1.3em;
	font-weight: 700;
	color: #fff;
	background-color: #00008b;
	padding: 10px 10px;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

section p {
	max-width: 90%;
	margin: 0 auto;
	text-align: left;
	font-size: 1.2em;
}

section img {
	display: inline-block;
	max-width: 50%;
	padding: 1%;
}

@media screen and (max-width: 767px) {
	section p {
		text-align: left;
		font-size: 1em;
	}
}



/*-------------------------------------------------------------------
	白背景指定
-------------------------------------------------------------------*/

.main-contents {
	background: #FFF!important;
	padding-top: 5%!important;
}
@media screen and (max-width: 767px) {
	.main-contents {
		background: #FFF!important;
	}
}


.firstview {
		background-color: #FFF!important;
	}




/*-------------------------------------------------------------------
　 注意事項
-------------------------------------------------------------------*/

.details {
	width: 90%;
	margin: 0 auto;
}

.details .itemName {
	font-size: 1.4em;
	font-weight: 700;
	margin-top: 0.4em;
	position: relative; /* ::before を絶対配置するための基準 */
	left: 1em;
}
.details .itemName::before {
	content: '■';
	position: absolute; /* 絶対配置に変更 */
	top: 5px;
	line-height: 1;
	left:-1em;
}

.details span {
	font-size: 0.8em;
	color: #777;
}

@media screen and (min-width: 768px){
	.details {	
		display: flex;
		width: 90%;
		gap: 15px;
		margin: 0 auto;
	}
	.details > div:first-child { /* ① */
		flex-basis: 50%;
	}
	.details > div:last-child { /* ② */
		flex-basis: 50%;
	}
	
	.details img {
		width: 100%;
		max-width: 500px; /* 最大幅を指定して、拡大しすぎ防止 */
		min-width: 300px; /* 必要に応じて最小幅も指定 */
		height: auto;
		display: block;
	}
	.details p {
		text-align: left;
		line-height: 1.5;
	}
	}
	
	@media screen and (max-width: 767px) {
		.details p {
			text-align: left;
		}
	
		.details img {
			width: 100%;
			max-width: 350px; /* 最大幅を指定して、拡大しすぎ防止 */
			min-width: 280px; /* 必要に応じて最小幅も指定 */
			height: auto;
			display: block;
		}

		.details .itemName {
			left:  -0.5em;
		}
		.details .itemName::before {
			top: 9px;
			left: -1em;
		}
	}


	:root {
		--list-item-indent: 1em; /* この値を調整してお好みのインデント幅に設定 */
	  }
	  
	  .caution {
		display: block;
		width: 85%;
		margin: 0 auto;
		text-align: left;
	  }
	  
	  .caution .itemName {
		font-size: 1.4em;
		font-weight: 700;
		margin-top: 0.4em;
		position: relative; /* ::before を絶対配置するための基準 */
		left: -1em;
	  }
	  
	  .caution .itemName::before {
		content: '◆';
		position: absolute; /* 絶対配置に変更 */
		left: -0.3em;
		top: 7px;
		line-height: 1;
		left:-1em;
	  }
	  
	  .dotList {
		position: relative;
		padding-left: var(--list-item-indent); /* itemName と同じインデント値を適用 */
	  }
	  
	  .dotList::before {
		content: "";
		display: block;
		width: 12px;
		height: 12px;
		border-radius: 50%;
		position: absolute;
		top: 10px;
		left: 0;
		background: #00bfff;
	  }

	  .caution > ul {
		padding-left: 0;      /* <ul> の左パディングをなくします */
		list-style-type: none; /* <ul> のデフォルトの黒丸も消します */
		/* 必要であれば、ulが持つデフォルトの上下マージンも調整できます */
		/* margin-top: 0; */
		/* margin-bottom: 0; */
	  }

	  @media screen and (max-width: 767px) {
		.caution .itemName {
			font-size: 1.4em;
			font-weight: 700;
			margin-top: 0.4em;
			position: relative; /* ::before を絶対配置するための基準 */
			padding-left: var(--list-item-indent); /* テキストの開始位置をインデント */
		  }
		  
		  .caution .itemName::before {
			content: '◆';
			position: absolute; /* 絶対配置に変更 */
			left: -0.3em;
			top: 7px;
			line-height: 1;
		  }
	  }