@charset "utf-8";
/*----------------------------------------------
	ボタン
---------------------------------------------*/
/*  .c_btn_type01
------------------------------------- */
.c_btn_type01 {
	display: inline-block;
	width: 250px;
	padding: 15px;
	text-align: center;
	background: var(--c_white);
	border: 1px solid var(--c_accent);
	border-radius: 15px;
	color: var(--c_accent);
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	text-decoration: none;
}
.c_btn_type01:hover {
	color: var(--c_accent);
	opacity: 0.7;
}

.c_btn_type01 span {
	display: block;
	font-weight: normal;
	font-size: 80%;
}

/*  .c_btn_share
------------------------------------- */
#c_btn_share {
	display: inline-block;
	width: 200px;
	padding: 12px;
	margin: 0 80px;
	text-align: center;
	background: var(--c_accent);
	border: none;
	border-radius: 15px;
	color: var(--c_white);
	font-weight: bold;
	cursor: url('../images/mouse.png'), auto;
}
#c_btn_share:hover {
	color: var(--c_white);
	opacity: 0.7;
}

#c_btn_share::before {
	content: "";
	display: inline-flex;
	width: 14px;
	height: 15px;
	margin-right: 10px;
}
#c_btn_share::before {
	background-image: url(../images/icon_share.png);
	background-repeat: no-repeat;
}

#c_btn_share span {
	display: block;
	margin-top: 5px;
	font-weight: normal;
	font-size: 90%;
}

/*  #c_btn_prev #c_btn_next
------------------------------------- */
#c_btn_prev,
#c_btn_next {
	width: 60px;
	height: 60px;
	border: 1px solid var(--c_accent);
	border-radius: 100%;
	background: var(--c_white);
	color: var(--c_accent);
	font-weight: bold;
	cursor: url('../images/mouse.png'), auto;
	background-image: url(../images/arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50%;
}
#c_btn_next {
	background-image: url(../images/arrow.png);
	rotate: 180deg;
}
#c_btn_prev:hover,
#c_btn_next:hover {
	opacity: 0.7;
}


/*----------------------------------------------
	絵日記　一覧
---------------------------------------------*/
.c_enikki {
	position: relative;
	display: none;
}

.c_enikki.active.show {
	display: block;
}

.c_enikki p {
	position: absolute;
	top: 50%;
	right: 50%;
	translate: 50% -50%;
	display: none;
	color: var(--c_white);
	font-size: 20px;
	text-align: center;
}

.c_enikki img {
	border-radius: 15px;
}

.c_enikki:hover {
	border-radius: 15px;
	background: var(--c_black);
}
.c_enikki:hover img {
	opacity: 0.5;
}
.c_enikki:hover p {
	display: block;
}


/*----------------------------------------------
	.c_wrap
---------------------------------------------*/
.c_wrap {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding: var(--wrap);
}