@charset "utf-8";
@import 'https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap';

/*-- Template by Luca --*/
/**-- https://as.lclla.com/ --*/
* {
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-size: inherit;
	font-style: normal;
	word-break: break-all;
	box-sizing: border-box;
}

:root {
	--font: #6c6f72;
	/* サブカラー */
	--sub: #5871aa;
	--sub2: #ececec;
	--sub3: #b1b7be;
	--x-gradient: linear-gradient(90deg, var(--sub3) 0 100%);
	--y-gradient: linear-gradient(var(--sub3) 0 16px, transparent 0 calc(100% - 16px), var(--sub3) calc(100% - 16px));
	/* 白 */
	--white: 255, 255, 255;
	/* 見出し2, リスト番号　グラデーション */
	/* body　フォントサイズ */
	--body-font-size: 1.2rem, 3vw, 1.6rem;
	/* heading1 タイトル　フォントサイズ */
	--h1-font-size: 1.4em, 3.5vw, 1.7rem;
	/* heading2　フォントサイズ */
	--h2-font-size: 1.2rem, 3vw, 1.7rem;
	/* テキストタイトル　フォントサイズ */
	--texttitle: 1.4rem, 3.5vw, 1.6rem;
}

html {
	font-size: 62.5%;
	scrollbar-width: thin;
	font-size: 62.5%;
	scrollbar-width: thin;
	scrollbar-color: var(--sub3) rgba(var(--white), 0);
}

body {
	font: clamp(var(--body-font-size))/1.8 'Zen Kaku Gothic New', sans-serif;
	color: var(--font);
	background: rgba(var(--white), 1);
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	letter-spacing: .13em;
}

h1,
.read_more,
.footer a,
.footer li {
	font-family: 'Playfair Display', sans-serif;
}

a {
	color: var(--sub);
	text-decoration: none;
	transition: all .4s;
}

a:hover {
	color: black;
}

h1 {
	font-size: clamp(var(--h1-font-size));
	color: var(--sub);
	margin: 25px 0;
	display: inline-block;
}

h2 {
	font-size: clamp(var(--h2-font-size));
	font-family: inherit;
	display: inline;
}

.date-wrap {
	display: flex;
}

section span {
	padding-left: 15px;
	color: var(--sub);
}

section p {
	font-size: clamp(var(--texttitle));
	color: var(--sub);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	margin: 15px 0 20px;
	letter-spacing: 0.05em;
}

hr {
	border: none;
	border-top: 1px dotted;
	margin: 20px;
}

.wrap {
	width: min(90%, 600px);
	margin: 20px auto;
}

.titlebox {
	text-align: center;
}

section {
	padding: 15px;
}

section img {
	display: block;
	width: 150px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin: 0 auto 15px 0px;
}

.category {
	font-size: .9em;
	margin: 15px 0;
	display: block;
	text-align: right;
	opacity: .8;
}

.read_more {
	text-transform: capitalize;
	background: var(--sub2);
	position: relative;
	margin: 25px 5px 20px auto;
	width: fit-content;
	height: fit-content;
}

.read_more::before {
	content: "";
	position: absolute;
	background: var(--sub3);
	width: 30px;
	height: 1px;
	top: calc(50% - 0.5px);
	right: calc(100% - 12px);
}

.read_more::after {
	content: "";
	position: absolute;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	top: -5px;
	left: -5px;
	background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
	background-repeat: no-repeat;
	background-size: 50% 1px, 1px 70%, 50% 1px, 1px 70%;
	background-position: top right, top right, bottom left, bottom left;
	z-index: -1;
}

.read_more a {
	font-size: .9em;
	color: inherit;
	padding: 3px 18px;
	display: block;
	transition: all .5s;
}

.read_more a:hover {
	color: black !important;
}

.category-footer {
	text-align: center;
}

.category-footer a {
	font-size: .9em;
	padding: 3px 5px;
	border: 1px solid;
	border-radius: 3px;
}

.category-footer a+a {
	margin-left: 15px;
}

.category-footer a:hover {
	border-color: var(--sub);
	border-radius: 3px;
}

.footer {
	text-align: center;
	margin: 20px 0;
}

.footer a+a {
	padding-left: 15px;
}

.footer li {
	list-style: none;
	font-size: 0.7em;

}

.footer li a {
	padding-left: 8px;
}

textarea,
button {
	font-family: inherit;
	font-size: inherit;
	height: initial;
	line-height: 1.7;
	letter-spacing: 1.5px;
	color: currentColor;
	padding: 5px;
	box-shadow: none;
	appearance: none;
	border: none;
	border-radius: 0;
	font-weight: normal;
	background: var(--sub2);
	transition: all .5s;
}

.source {
	font-family: inherit;
	color: var(--font);
	white-space: pre-wrap;
	text-align: left;
	width: 100%;
	padding: 3px 5px;
	height: 50px;
	font-size: .9em;
	margin: 5px 0;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none;
}

.btn-clipboard {
	font-size: .8em;
	letter-spacing: 2px;
	display: block;
	padding: 5px;
	margin-bottom: 15px;
	width: 55px;
	color: rgba(var(--white), 1);
	background: var(--font);
	text-transform: uppercase;
	cursor: pointer;
}

.btn-clipboard:hover {
	background: var(--sub3);
}

@media screen and (max-width: 600px) {
	.wrap {
		margin-block: 0;
	}
}