@charset "UTF-8";
@import "/include/css/common.pc.css";

/* ---------------------------------------------------------
	CSS Document main
--------------------------------------------------------- */

#main {
	height: 220px;
	margin-bottom: 90px;
	background: #f5f5f5;
}

#main .container {
	display: flex;
	align-items: center;
	height: 220px;
	text-align: left;
	line-height: 1;
	position: relative;
}

#main figure {
	width: 439px;
	height: 209px;
	position: absolute;
	bottom: -25px;
	right: 0;
	opacity: 0.3;
}

#main .en {
	display: block;
	margin-bottom: 24px;
	font-family: "orpheuspro", serif;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: var(--orange);
}

#main .en:after {
	display: inline-block;
	vertical-align: 0.2em;
	content: '';
	width: 100px;
	height: 1px;
	margin-left: 10px;
	background: var(--orange);
}

#main .ja {
	display: block;
	margin-bottom: 60px;
	font-weight: 500;
	font-size: 32px;
	line-height: 1;
}

/* ---------------------------------------------------------
	CSS Document information
--------------------------------------------------------- */

#information .container {
	display: flex;
	justify-content: space-between;
	flex-flow: row-reverse;
}

#f_contact {
	margin-top: 130px;
}

/* ---------------------------------------------------------
	CSS Document sidebar
--------------------------------------------------------- */

#sidebar {
	width: 240px;
	overflow: hidden;
	text-align: left;
}

#sidebar .category {
	margin-bottom: 20px;
	font-family: "orpheuspro", serif;
	font-weight: 500;
	font-size: 26px;
	letter-spacing: 0.05em;
	line-height: 1;
}

#sidebar ul {
	margin: 0 0 40px;
}

#sidebar li ul {
	margin: 0 0 15px 1em;
}

#sidebar li {
	margin-left: 1.5em;
	text-align: left;
	list-style: disc;
	line-height: 2.2;
}

#sidebar li a {
	text-decoration: none;
	color: var(--black);
}

#sidebar li a:hover {
	text-decoration: underline solid var(--orange) 1px;
	text-decoration-skip-ink: none;
	text-underline-offset: 0.55em;
	color: var(--orange);
}

#sidebar .search {
	display: flex;
}

#sidebar input {
	width: 200px;
	height: 40px;
	padding-left: 1em;
	border-radius: 5px 0 0 5px;
	border: solid 1px #DBD9D7;
	font-size: 13px;
}

#sidebar button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 0 5px 5px 0;
	background: rgba(75, 63, 57, 0.5);
	cursor: pointer;
	transition: .4s;
}

#sidebar button:hover {
	opacity: 0.6;
}

#sidebar button img {
	width: 16px;
	height: 16px;
}

/* ---------------------------------------------------------
	CSS Document entries
--------------------------------------------------------- */

#entries {
	width: 900px;
	text-align: left;
}

#entries .h3 span {
	font-size: 18px;
	letter-spacing: 0.05em;
}

#entries .error {
	font-size: 18px;
	color: var(--orange);
}

#entries .entry dl {
	display: flex;
	align-items: center;
	padding: 30px 0;
	border-bottom: solid 1px var(--gray);
	text-align: justify;
	font-size: 15px;
	line-height: 150%;
	position: relative;
}

#entries .entry dl:before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: var(--orange);
	transform: translateY(-50%) scale(1);
	position: absolute;
	top: 50%;
	right: 24px;
	transition-duration: 0.4s;
	transition-timing-function: ease-out;
}

#entries .entry dl:hover:before {
	transform: translateY(-50%) scale(4);
}

#entries .entry dl:after {
	content: '';
	width: 32px;
	height: 32px;
	border-radius: 100%;
	background: url(/include/images/arrow_white.svg) no-repeat center / 12px auto;
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 12px;
	opacity: 0;
	transition-duration: 0.4s;
	transition-timing-function: ease-out;
}

#entries .entry dl:hover:after {
	opacity: 1;
}

#entries .entry dt {
	display: flex;
	align-items: center;
	width: 224px;
}

#entries .entry_date {
	width: 96px;
	font-family: "orpheuspro", serif;
	font-size: 14px;
	letter-spacing: 0.05em;
	color: rgba(75, 63, 57, 0.5);
}

#entries .entry_category {
	width: 110px;
	height: 26px;
	border-radius: 26px;
	background: rgba(255, 207, 164, 0.3);
	text-decoration: none;
	text-align: center;
	font-size: 13px;
	line-height: 26px;
	color: var(--black);
}

#entries .entry dd {
	flex: 1;
}

#entries .entry dd a {
	display: block;
	text-decoration: none;
	font-size: 15px;
	color: var(--black);
}

#entries .entry dl:hover dd a {
	color: var(--orange);
}

/* ---------------------------------------------------------
	CSS Document pager
--------------------------------------------------------- */

#pager ol {
	display: flex;
	justify-content: center;
	margin: 80px 0 0;
	text-align: center;
}

#pager li {
	margin: 0 8px;
}

#pager .link_page,
#pager .current_page {
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 100%;
	background: rgba(75, 63, 57, 0.05);
	text-decoration: none;
	font-family: "orpheuspro", serif;
	line-height: 34px;
	color: var(--black);
}

#pager .link_page:hover {
	opacity: 0.6;
}

#pager .current_page {
	background: var(--orange);
	color: #fff;
}

/* ---------------------------------------------------------
	CSS Document entry
--------------------------------------------------------- */

#entry {
	width: 900px;
	padding-bottom: 60px;
	border-bottom: solid 1px var(--gray);
	text-align: left;
}

#entry h2 {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 26px;
	line-height: 150%;
}

#entry .entry_title ul {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	line-height: 1;
}

#entry .entry_date {
	width: 96px;
	font-family: "orpheuspro", serif;
	font-size: 14px;
	letter-spacing: 0.05em;
	color: rgba(75, 63, 57, 0.5);
}

#entry .entry_category a {
	display: block;
	min-width: 110px;
	height: 26px;
	padding: 0 1em;
	border-radius: 26px;
	background: rgba(255, 207, 164, 0.3);
	text-decoration: none;
	text-align: center;
	font-size: 13px;
	line-height: 26px;
	color: var(--black);
}

#entry .entry_body {
	text-align: left;
	line-height: 2;
}

#entry .entry_body h3 {
	margin-top: 2.5em;
	padding-left: 35px;
	padding-bottom: 10px;
	border-bottom: solid 1px var(--gray);
	font-weight: 500;
	font-size: 22px;
	line-height: 1.4;
	position: relative;
}

#entry .entry_body h3:before {
	display: inline-block;
	vertical-align: top;
	content: '';
	width: 24px;
	height: 30px;
	margin-right: 0.5em;
	background: url(../images/ill.svg) no-repeat left;
	transform: translateY(-50%);
	position: absolute;
	top: 40%;
	left: 0;
}

#entry .entry_body p {
	margin-top: 2em;
}

#entry .entry_body ul {
	margin-top: 2em;
}

#entry .entry_body ul li {
	margin-left: 1.5em;
	list-style: disc;
}

#entry .entry_body ol {
	margin-top: 2em;
}

#entry .entry_body ol li {
	margin-left: 1.5em;
	padding-left: 5px;
	list-style: decimal;
}

#entry .entry_body table {
	width: 100%;
}

#entry .entry_body th {
	padding: 10px;
	border: solid 1px var(--gray);
	background: #fdfdf5;
	text-align: left;
	font-weight: normal;
}

#entry .entry_body td {
	padding: 10px;
	border: solid 1px var(--gray);
	text-align: left;
	font-weight: normal;
}

#entry .entry_body iframe {
	vertical-align: top;
	max-width: 100%;
	max-height: 50vw;
	overflow: hidden;
	border: 0;
}

/* ---------------------------------------------------------
	CSS Document pnavi
--------------------------------------------------------- */

#pnavi {
	margin: 80px 0 0;
}

#pnavi ol {
	display: flex;
	justify-content: center;
	height: 64px;
	position: relative;
}

#pnavi .link_before {
	position: absolute;
	top: 0;
	left: 0;
}

#pnavi .link_next {
	position: absolute;
	top: 0;
	right: 0;
}

#pnavi li a {
	display: block;
	height: 64px;
	padding: 0 3.5em;
	border-radius: 64px;
	background: #F3E9E1;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	line-height: 64px;
	color: var(--black);
}

#pnavi .link_before a:before,
#pnavi .link_next a:after {
	display: inline-block;
	vertical-align: top;
	content: '';
	width: 12px;
	height: 64px;
	background: url(/include/images/arrow_left.svg) no-repeat left / 100% auto;
}

#pnavi .link_before a:before {
	margin: 0 12px 0 -8px;
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
	transform: translateX(0);
}

#pnavi .link_before a:hover:before {
	transform: translateX(-5px);
}

#pnavi .link_next a:after {
	margin: 0 -8px 0 12px;
	background-image: url(/include/images/arrow_right.svg);
	transition-property: transform;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
	transform: translateX(0);
}

#pnavi .link_next a:hover:after {
	transform: translateX(5px);
}

#pnavi a:hover {
	opacity: 0.6;
}
