@charset "utf-8";

@font-face {
	font-family: 'FontAwesome';
	src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.eot');
	src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.eot') format('embedded-opentype'),
		url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2') format('woff2'),
		url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff') format('woff'),
		url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf') format('truetype'),
		url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.svg') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

body{
	user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-drag:none;
	-khtml-user-drag:none;
}
body {
	background: #FFFFFF;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
}

.pure-button {
	color: white;
	border-radius: 4px;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	max-width: 100%;
	white-space: normal;
	background: rgb(247, 64, 174);
	/* this is a maroon */
}

.pure-button:hover {
	background: rgb(247, 64, 204);
	/* this is a maroon */
	color: #FFF;
}

a {
	color: #ff32ab;
	text-decoration: none;
}

a:hover {
	color: #ff0000;
}

a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}

.asp {
	width: 100%;
	height: 0;
	position: relative;
	overflow: hidden;
}

.asp img {
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	object-fit: cover;
	object-position: center;
	position: absolute;
	box-sizing: border-box;
}

/* Layout */
#wrap {
	max-width: 900px;
	min-width: 300px;
	margin: 20px auto;
}

@media screen and (max-width:939px) {
	#wrap {
		margin: 0px auto;
	}
}


/* header */
header {
	margin-bottom: 5px;
}

header img {
	max-width: 100%;
	height: auto;
	margin: 0;
}

h1 {
	margin-bottom: 5px;
}

header h2 {
	font-size: 1.0em;
	font-weight: normal;
	color: #FFF;
	padding: 5px;
	margin-bottom: 1px;
	background: #f740ae;
	border-radius: 3px;
}

@media only screen and (max-width: 939px) {
	h1 {
		padding: 5px;
	}

	header h2 {
		border-radius: 0;
	}
}

@media only screen and (max-width: 539px) {
	header h2 {
		font-size: 0.8em;
		padding: 2px 5px;
	}
}

/* menu */
#menu {
	margin: 0 auto 20px;
	padding: 0;
	overflow: hidden;
}

#menu li {
	display: block;
	float: left;
	width: 16.66%;
	margin: 0;
	padding: 0;
	font-size: 1em;
}

#menu li a {
	display: block;
	padding: 10px 0;
	background-color: #f740ae;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	border-radius: 3px;
}

#menu li:nth-child(6n) a {
	border-right: none;
}

#menu li a:hover {
	background: #ffdef2;
	color: #f740ae;
}

#toggle {
	display: none;
}

/* 画面サイズが768px以下の場合に適用 */
@media only screen and (max-width: 768px) {
	#menu {
		margin: 0 5px;
	}

	#menu li {
		width: 25%;
	}

	#menu li:nth-child(6n) a {
		border-right: 1px solid #fff;
	}

	#menu li:nth-child(4n) a {
		border-right: none;
	}
}

/* 画面サイズが480px以下の場合に適用 */
@media only screen and (max-width: 540px) {
	#menu {
		display: none;
		margin: 0;
	}

	#menu li {
		width: 50%;
		text-align: left;
	}

	#menu li a {
		background-color: #fa81c9;
		border-radius: 0;
		border-right: none;
		border-bottom: 1px dotted #fdbde3;
	}

	#menu li:nth-child(n) a {
		border-right: 1px dotted #fdbde3;
	}

	#toggle {
		display: block;
		position: relative;
		width: 100%;
		background: #f740ae;
	}

	#toggle a {
		display: block;
		position: relative;
		padding: 10px 0;
		border-bottom: 1px solid #CCC;
		color: #FFF;
		text-align: center;
		text-decoration: none;
	}

	#toggle:before {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 30px;
		height: 30px;
		margin-top: -15px;
		background: #FFF;
	}

	#toggle a:before, #toggle a:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 30px;
		height: 6px;
		background: #f740ae;
	}

	#toggle a:before {
		margin-top: -9px;
	}

	#toggle a:after {
		margin-top: 3px;
	}
}


/* メインコンテンツ*/
#mainContents {
	line-height: 1.6em;
	color: #333333;
	padding: 10px;
	margin: auto;
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

@media screen and (min-width:1024px) {
	#mainContents {
		margin-right: 20px;
		padding: 20px;
		border: 1px solid #dedede;
		border-radius: 3px;
	}
}

/************** .feature styles ***************/

.content {
	overflow: hidden;
	margin-bottom: 20px;
}

.content h3 {
	background: url(https://kodawari-home.com/img/icon.gif) no-repeat 0 3px;
	font-size: 16px;
	padding-left: 25px;
	margin-bottom: 10px;
	border-bottom: 1px dashed #f866be;
	color: #06F;
}

.content p {
	line-height: 1.5em;
	margin-bottom: 0.5em;
}

.content .imgLeft {
	float: left;
	margin: 5px;
}

.content .imgRight {
	float: right;
}

/*--------- search_data ---------*/

.searchData {
	overflow: hidden;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dotted #CCCCCC;
}

.searchData dt {
	float: left;
	width: 140px;
	border: 1px solid #333;
	margin-right: 10px;
	margin-bottom: 10px;
}

.searchData dd .title {
	font-weight: bold;
	font-size: 1.1em;
}

.searchData dd p {
	margin-bottom: 15px;
}

@media screen and (max-width:360px) {
	.searchData dd .guide {
		clear: left;
	}

	.searchData dd .pure-button {
		width: 100%;
	}
}

@media screen and (max-width:320px) {
	.searchData dt {
		width: 100px;
	}
}
.guide a::before{
	font-family: "FontAwesome";
	content: '\f0a4';
	margin-right: 10px;
}


/*--------- sitedata ---------*/
#siteData {
	margin-bottom: 50px;
}

#siteData h3 {
	font-weight: bold;
	font-size: 1.6em;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #f740ae;
	color: #f740ae;
	padding-left: 5px;
	text-align: center;
}

#siteData dt {
	text-align:center;
	margin-bottom: 20px;
}

#siteData dt img {
	border: 1px solid #999;
	margin:auto;
}
#siteData dd {
	text-align:center;
}
#siteData dd ul {
	display:inline-block;
	margin: 0 auto 10px;
}

#siteData dd li {
	font-weight: bold;
	color: #06F;
	font-size: 16px;
	padding: 5px 0;
}

#siteData p {
	clear: left;
	margin-bottom: 20px;
	text-align: justify;
}
@media only screen and (min-width:601px) {
	#siteData dd li {
		display:inline-block;
		margin: 0 5px;
	}
}
#siteData .mw {
	color: #000
}

#siteData .guide {
	text-align: center;
}

#siteData .guide .pure-button {
	width: 300px;
	margin: auto;
}

@media screen and (max-width:708px) {
	#siteData .guide .pure-button {
		width: 100%;
	}
}

@media screen and (max-width:420px) {
	#siteData dt {
		float: none;
		margin: 0 auto 10px;
		text-align: center;
	}

	#siteData dd .guide a {
		display: block;
		width: 100%;
	}

	#siteData dd {
		text-align: center;
	}

	#siteData dd ul {
		display: inlinek-block;
		margin: auto;
	}
}





/************** 広告フレーム *****************/

.f-box {
	margin: 0 auto 20px;
	text-align: center;
}

/*girls_frm*/
.girls_frm {
	max-width: 300px;
	_width: 300px;
	height: 225px;
	min-width: 135px;
	margin: auto;
}

.girls_frm iframe {
	width: 100%;
	height: 100%;
}


/*----------------side-----------------*/
#side h3 {
	border-bottom: 1px dashed #000099;
	color: #000099;
	margin-bottom: 10px;
}

#side aside {
	margin-bottom: 20px;
}

@media screen and (max-width:1023px) {
	#side {
		margin: 10px;
	}
}

/************** #mignt（エロ動画道） styles **************/
#video {
	border: 1px solid #ff0066;
	overflow: hidden;
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

#video .label {
	background: #f7005a;
	color: #FFF;
	padding: 3px 10px;
	text-align: center;
	margin-bottom: 3px;
}

#video img {
	max-width: 100%;
	height: auto;
}

#video ul {
	overflow: hidden;
	text-align: left;
	margin: 0 5px;
}

#video li {}

#video li a:before {
	font-family: "FontAwesome";
	content: "\f0da";
	margin-right: 5px;
}

#video li a {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#video li a:hover {
	background-color: #ff32ab;
	color: #FFFFFF;
}

@media screen and (min-width:1024px) {
	#video {
		text-align: center;
	}

	#video .movie {
		margin: 5px auto;
	}

	#video li a {
		font-size: 12px;
	}
}

@media screen and (min-width:380px) and (max-width:1023px) {
	#video .label {
		margin-bottom: 0;
	}

	#video {
		text-align: left;
	}

	#video .movie {
		float: left;
		margin: 5px;
	}
}

@media screen and (max-width:379px) {
	#video {
		text-align: center;
	}

	#video .movie {
		margin: 5px auto;
	}
}

/* link */
#links {
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

#links li {
	line-height: 1.3em;
	padding: 3px 0;
}

#links li:before {
	font-family: "FontAwesome";
	content: "\f105";
	margin-right: 5px;
	color: #36F;
}

.banner {
	padding-left: 1%;
	padding-right: 1%;
	margin-bottom: 10px;
}

.sp {
	text-align: center;
	margin: 20px auto;
}

@media screen and (min-width:768px) {
	.banner .large {
		display: block;
	}

	.banner .midium,
	.banner .small {
		display: none;
	}

	.sp {
		display: none;
	}
}

@media screen and (min-width:421px) and (max-width:767px) {
	.banner .midium {
		display: block;
	}

	.banner .large,
	.banner .small {
		display: none;
	}

	.sp .large {
		display: block;
		text-align: center;
	}

	.sp .small {
		display: none;
	}
}

@media screen and (max-width:420px) {
	.banner .small {
		display: block;
	}

	.banner .large,
	.banner .midium {
		display: none;
	}

	.sp .large {
		display: none;
	}

	.sp .small {
		display: block;
		text-align: center;
	}
}

#ad h3:before {
	font-family: "FontAwesome";
	content: '\f004';
	margin-right: 5px;
}

#ad ul {
	overflow: hidden;
}

#ad li img {
	border: 1px solid #CCC;
}

#ad li {
	margin-bottom: 10px;
}

@media screen and (min-width:600px) and (max-width:1023px) {
	#ad ul {
		margin: 0 -5px;
	}

	#ad li {
		float: left;
		width: 50%;
	}

	#ad li a {
		display: block;
		margin: 5px;
	}
}

#taikendan {
	overflow: hidden;
	margin-bottom:20px;
}
#taikendan h3 {
	font-weight:bold;
	padding:5px;
	text-align:center;
	margin-bottom:10px;
	background-color:#666;
	color:#ff0;
}
#taikendan h3::before {
	font-family: "FontAwesome";
	content: '\f086';
	margin-right: 5px;
}
#taikendan {
	padding-left: 0;
}
#taikendan li {
	padding: 5px 0;
	line-height: 1.3em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-bottom:0.5em;
		font-size: 14px;
}
#taikendan li a {
	font-weight:bold;
}
#taikendan li a::before {
	content:"・";
	color:#333;
}

#taikendan li a:hover {
	color: #0000FF;
}

@media screen and (max-width:768px) {
	#taikendan li a {
		display:block;
	}
}

/* footer */
footer {
	text-align: center;
	font-size: 0.75em;
	background: #f740ae;
	color: #FFF;
	padding: 10px 0;
	margin-top: 20px;
}

/* スクロールトップ*/
#page-top {
	position: fixed;
	bottom: 30px;
	right: 20px;
}

/*パンくずリスト*/
.breadcrumbs {
	width: 100%;
	white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 10px;
}

.breadcrumbs ol {
	padding: 5px;
}

.breadcrumbs li {
	display: inline-block;
	vertical-align: top;
}

.breadcrumbs li:first-child::before {
	padding: 0 1px 0 0;
	font-family: FontAwesome;
	content: "\f015";
	font-size: 14px;
	color: #09F;
}

.breadcrumbs li:before {
	padding: 0 4px 0 2px;
	content: "\f105";
	font-family: FontAwesome;
	font-size: 14px;
}

.breadcrumbs a {
	color: #09F;
}

.breadcrumbs a.disabled {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	color: #000000;
}

aside .title {
	font-weight:bold;
	padding:5px;
	text-align:center;
	margin-bottom:10px;
	background-color:#666;
	color:#ff0;
}
/***************************
 ダブルレクタング広告
****************************/
.ads-flexbox .item {
  flex-basis: auto;
  padding: 5px;
  margin: 0px;
  text-align: center;
}
.ads-flexbox .item img {
  max-width: 100%;
  height: auto;
  border: 1px solid #CCC;
  border-radius: 5px;
}
@media ( min-width : 600px ){
  .ads-flexbox {
    display: flex;
  }
  .ads-flexbox .item {
    width: 50%;
  }
}
.inner300 {
	max-width: 300px;
	width: 100%;
	height: 100%;
	aspect-ratio: 300/250;
	margin: auto;
}
.inner728{
	width: 100%;
	height: 100%;
	margin: auto;
	max-width: 728px;
	aspect-ratio: 728/200;
}
.inner600{
	width: 100%;
	height: 100%;
	margin: auto;
	max-width: 600px;
	aspect-ratio: 600/315;
}

/*広告表示*/
#menu-box::after {
	content: url(https://kodawari-home.com/img/ad_display_header.png);
	display: flex;
	justify-content: center;
	margin: 10px 0;
}

#siteData dl::before {
	content: url(https://kodawari-home.com/img/ad_display_post.png);
	display: flex;
	justify-content: center;
    margin:1em 0 2em;
}

a.pr-txt-link::after {
	content: "PR";
	font-size: 10px;
	border: 1px solid;
	border-radius: 5px;
	padding: 0 5px;
	font-weight: bold;
	vertical-align: middle;
	margin-left: 5px;
}

a.pr-img-link {
	position: relative;
	display: inline-block;
}

a.pr-img-link::before {
	content: "PR・18禁";
	background-color: #FFF;
    border: 1px solid #f00;
	padding: 0 3px;
	color: #FF0000;
	font-weight: bold;
	font-size: 11px;
	vertical-align: middle;
	position: absolute;
	right: 5px;
	top: 5px;
	z-index: 1;
}

.label_ad {
	position: relative;
}
.label_ad::after{
    content: "AD";
    font-size: 11px;
    background-color: #000;
    border-radius: 3px;
    color: #fff;
    padding: 0 5px;
    position: absolute;
    top: 5px;
    right: 6px;
    height:20px;
    line-height:20px;
}