@charset "utf-8";

/* CSS Document */
html {
	scroll-padding-top: 100px;
}

#Wrapper {
	font-family: 'Sawarabi Gothic', sans-serif;
	background-color: #fafafa;
	color: #19072E;
	line-height: 2em;
	font-size: 18px;
	text-align: left;
	letter-spacing: -0.025em;
}

#Wrapper a:hover {
	opacity: 0.5;
}

/*-----------------*/
/*  文字の装飾▼ */
/*-----------------*/
#Wrapper h2 {
	font-size: 38px;
	margin: 70px 0 40px 0;
	font-weight: bold;
	line-height: 1.5em;
}

#Wrapper h2:first-letter {
	color: #E2001A;
	font-size: 46px;
}

#Wrapper h3.columnbox:before {
	position: relative;
	top: 10px;
	margin: 0 5px 0 0;
	content: url('http://focus.sweetpet.jp/rc/202208_rc_pupkit/cat/img/icon_column.png');
}

#Wrapper h3.columnbox {
	font-size: 24px;
	font-weight: bold;
	display: block;
	margin: 30px 0 15px 0;
}

#Wrapper .txtbox {
	width: 940px;
	margin: 0 auto;
}

#Wrapper .txtbox p {
	margin: 30px 0 30px 0;
	padding: 0 45px 0 45px;

}

#Wrapper p.small-txt {
	font-size: 16px;
	line-height: 1.6em;
	margin: 10px 0 10px 0;
}

#Wrapper span.pink {
	padding: 0.1em 0.3em;
	margin: 0 0.1em 0 0.1em;
	background-color: #FFE1E0;
	color: #000;
	border: 1px solid white;
}

#Wrapper span.lightblue {
	padding: 0.1em 0.3em;
	margin: 0 0.1em 0 0.25em;
	background-color: #CAEDEB;
	color: #000;
	border: 1px solid white;
}

#Wrapper u {
	text-decoration: none;
	background: linear-gradient(transparent 60%, #ffff00 60%);
}

#Wrapper span.healthtag {
	padding: 0.15em 0.5em 0.15em 0.5em;
	margin: 0.25em;
	background-color: #E2001A;
	;
	color: #FFF;
	border-radius: 20px;
	line-height: 2em;
}

/* 点滅 */
#Wrapper .blinking {
	color: red;
	font-size: 120%;
	-webkit-animation: blink 0.25s ease-in-out infinite alternate;
	-moz-animation: blink 0.25s ease-in-out infinite alternate;
	animation: blink 0.25s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes blink {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* 点滅 */
/*-----------------*/
/*  文字の装飾▲ */
/*-----------------*/
#Wrapper div.imgbox {
	margin: 20px 0 30px 0;
}

#Wrapper div.imgbox img {
	width: 100%;
}

#Wrapper div.inu_img_outer {
	float: right;
	margin-bottom: 5px;
	padding: 0 30px 0 30px;
}

/*-----------------*/
/*  リスト関連▼ */
/*-----------------*/
#Wrapper .mokuji ol {
	background: #fcfcfc;
	/*背景色*/
	padding: 0 0 0 3em;
	/*ボックス内の余白*/
	border: solid 1px gray;
	/*線の種類 太さ 色*/
	width: 40%;
	margin-bottom: 30px;
}

#Wrapper .mokuji ol li {
	margin: 0.5em 0;
	padding-left: 10px;
	list-style: decimal!important;
	display: list-item;
}

#Wrapper .asklist ol {
	background: #fcfcfc;
	/*背景色*/
	padding: 0.5em 0.5em 0.5em 30px;
	/*ボックス内の余白*/
	border: solid 1px gray;
	/*線の種類 太さ 色*/
	width: 100%;
	margin: 0.5em;
	display: flex;
	font-size: 16px;
}

#Wrapper .asklist ol li {
	margin-right: 45px;
	display: list-item;
}

#Wrapper ul.dlist {
	margin: 0;
	padding: 0;
}

#Wrapper ul.dlist li {
	margin: 0;
	padding: 0 0 0.25em 1.5em;
	position: relative;
	line-height: 1.6em;
}

#Wrapper ul.dlist li:before {
	content: "";
	position: absolute;
	top: .4em;
	left: 6px;
	-webkit-transform: rotate(50deg);
	-ms-transform: rotate(50deg);
	transform: rotate(50deg);
	width: 3px;
	height: 7px;
	border-right: 2px solid #E2001A;
	border-bottom: 2px solid #E2001A;
}

#Wrapper ul.dlist li:after {
	content: "";
	position: absolute;
	top: .2em;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #E2001A;
	border-radius: 2px;
}


#Wrapper ul.bhnlist {
	background: #fcfcfc;
	/*背景色*/
	padding: 0.5em 0.5em 0.5em;
	/*ボックス内の余白*/
	border: solid 1px gray;
	/*線の種類 太さ 色*/
	display: flex;
	flex-wrap: wrap;
	padding-left: 20px;
}

#Wrapper ul.bhnlist li {
	list-style-type: disc;
	/* リストの左側に黒丸 */
	margin-left: 25px;
	/* リストの左側に余白 */
	margin-right: 30px;
	text-align: left;
	display: list-item;
}

#Wrapper dl {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0 0 0;
	padding: 0;
}

#Wrapper dl dt {
	width: 23%;
	margin: 0;
	padding: 0;
	font-size: 180%;
	font-weight: bold;
}

#Wrapper dl dd {
	width: 77%;
	margin: 0 0 30px 0;
	padding: 0;
}

/*-----------------*/
/*  リスト関連▲ */
/*-----------------*/

#Wrapper .flexbox {
	display: flex;
	width: 100%;
}

#Wrapper .flexitem {
	width: 80%;
	margin-left: 15px;
}


/*--ツールチップ --*/
#Wrapper .tooltip {
	/* 補足説明するテキストのスタイル */
	position: relative;
	cursor: pointer;
	padding: 0 5px;
	color: #4682b4;
	line-height: 1.2em;
}

#Wrapper .balloon_top {
	/* ツールチップのスタイル */
	width: 250px;
	position: absolute;
	left: 50%;
	bottom: 80%;
	/* Y軸の位置 */
	transform: translateX(-50%);
	margin-bottom: 15px;
	/* テキストとの距離 */
	padding: 12px;
	border-radius: 15px;
	/* 角の丸み */
	background-color: #666;
	/* ツールチップの背景色 */
	font-size: 0.9em;
	color: #fff;
	text-align: center;
	visibility: hidden;
	/* ツールチップを非表示に */
	opacity: 0;
	/* 不透明度を0％に */
	z-index: 1;
	transition: 0.5s all;
	/* マウスオーバー時のアニメーション速度 */
}

#Wrapper .balloon_top::before {
	/* 吹き出しの「しっぽ」のスタイル */
	content: "";
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 12px solid #666;
	/* 最後の値は「ツールチップの背景色」と合わせる */
	position: absolute;
	top: 99%;
	left: 50%;
	transform: translateX(-50%);
}

#Wrapper .tooltip:hover .balloon_top {
	/* マウスオーバー時のスタイル */
	bottom: 100%;
	/* Y軸の位置 */
	visibility: visible;
	/* ツールチップを表示 */
	opacity: 1;
	/* 不透明度を100％に */
}

/* ------------------------- */
/* -------- 吹き出し -------- */
/* ------------------------- */
#Wrapper .balloon {
	display: flex;
	align-items: flex-start;
	margin: 0 0 1em 0;
	line-height: 1.8em;

}

#Wrapper .balloonR {
	flex-direction: row-reverse;
}

#Wrapper .balloon-img {
	width: 140px;
	height: 140px;
	flex-shrink: 0;
}

#Wrapper .balloon-img img {
	width: 100%;
}

#Wrapper .balloon-text {
	padding: 1em;
	border-radius: 20px;
	position: relative;

	width: 100%;
	text-align: left;
}

#Wrapper .balloon-text-inner {
	margin: auto;
}

#Wrapper .balloon-text::before,
#Wrapper .balloon-text::after {
	content: '';
	position: absolute;
	top: 19px;
	font-size: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

#Wrapper .balloonL .balloon-text {
	margin: 0 155px 0 15px;
	background: #FFE1E0;
}

#Wrapper .balloonR .balloon-text {
	margin: 0 15px 0 155px;
	background: #CAEDEB;
}

#Wrapper .balloonL .balloon-text::before {
	left: -16px;
	border-right: 16px solid #FFE1E0;
}

#Wrapper .balloonR .balloon-text::before {
	right: -16px;
	border-left: 16px solid #CAEDEB;
}



/* 左右分割 メディア▼ */
@media screen and (max-width: 600px) {
	#Wrapper {
		width: 98%;
		padding: 1%;
	}

	#Wrapper .txtbox {
		padding-left: 3px;
		width: 98%;
		margin: 0 auto 0 auto;
	}

	#Wrapper .asklist ol {
		width: 90%;
		display: inline-block;
		padding: 0.5em;
	}

	#Wrapper .asklist ol li {
		list-style-type: decimal;
		display: list-item;
		width: 80%;
		margin-left: 2em;
	}

	#Wrapper .mokuji ol {
		background: #fcfcfc;
		/*背景色*/
		padding: 0.5em;
		border: solid 1px gray;
		/*線の種類 太さ 色*/
		width: 90%;
		margin-bottom: 30px;
		margin: 0 auto 0 auto;
	}

	#Wrapper div.inu_img_outer img {
		width: 100%;
		height: auto;
	}

	#Wrapper .inu_img_outer {
		width: 50%;
		float: right;
		padding: 5px 0 0 10px !important;
	}

	#Wrapper .mokuji ol li {
		width: 80%;
		margin-left: 2em;
	}

	#Wrapper dl dt {
		width: 90%;
		margin: 0 auto 5px auto;
		border-right: none;
	}

	#Wrapper dl dd {
		width: 90%;
		margin: 0 auto 20px auto;
	}

	#Wrapper span.healthtag {
		line-height: 2.5em;
		margin: 0 5px 0 0;
	}

	#Wrapper .txtbox p {
		padding: 0;

	}

	/* ------------------------- */
	/* -------- 吹き出し -------- */
	/* ------------------------- */

	.balloon-img {
		width: 100px;
		height: 100px;
		flex-shrink: 0;
	}

	.balloon-text {
		padding: 0.75em;
		border-radius: 20px;
		position: relative;
		width: 100%;
		text-align: left;
		line-height: 1.6em;
		font-size: 16px;
	}

	.balloonL .balloon-text {
		margin: 0 15px 0 15px;
		background: #FFE1E0;
	}

	.balloonR .balloon-text {
		margin: 0 15px 0 15px;
		background: #CAEDEB;
	}

	.balloonL .balloon-text::before {
		left: -16px;
		border-right: 16px solid #FFE1E0;
	}

	.balloonR .balloon-text::before {
		right: -16px;
		border-left: 16px solid #CAEDEB;
	}

	/* ツールチップ */
	.tooltip {
		/* 補足説明するテキストのスタイル */
		width: -moz-fit-content;
		/* Firefox */
		width: fit-content;
		/* other browsers */
		display: block;

	}

	.balloon_top {
		width: 70vw;
		margin-left: 20vw;
	}

	.balloon_top::before {
		/* 吹き出しの「しっぽ」のスタイル */
		left: 15%;
	}

	span.healthtag {
		margin-bottom: 0.5em;
		line-height: 2em;
	}

}