@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");

#cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}
#cookie.show {
	opacity: 1;
	visibility: visible;
}
#cookie .cookie-inner {
	width: 100%;
	padding: 1em 1.8em;
	color: #fff;
	background: #234d07;
	box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
	overflow: hidden;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1.5em;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	flex-direction: row;
}
#cookie .cookie-inner__text {
    line-height: 1.5em;
    font-size: 12px;
    flex: 1 1 auto;
    max-width: 100%;
    margin-right: 1em;
    display: block;
}
#cookie .cookie-inner__link {
	color: #fff;
	opacity: .8;
    display: inline-block;
    margin-left: 3px;
    padding: 0.2em;
    text-decoration: underline;
    cursor: pointer;
}
#cookie-btn button {
	height: 38px;
	text-decoration: none;
    font-size: 12px;
    display: block;
    padding: 0.4em 0.8em;
    font-weight: 700;
    color: #fff;
    background: #9f950e;
    border: 2px solid #9f950e;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}
#cookie .cookie-inner__link:hover {
	opacity: 1;
}
#cookie-btn button:hover {
	opacity: .6;
}
@media (max-width: 640px) {
	#cookie .cookie-inner {
		max-width: none;
	    padding: 2em;
	    flex-direction: column;
	}
	#cookie .cookie-inner__text {
	    margin-bottom: 1em;
	    margin-right: 0;
	    line-height: 2;
	}
	#cookie-btn {
		display: block;
	    width: 100%;
	}
	#cookie-btn button {
	    width: 100%;
	    font-size: 14px;
	    padding: 0.7em 0;
	    line-height: 1;
	}
}