@charset "utf-8";

:root {
	/* メイン文字色 */
	--main-text-color: #d7d7df;
	/* 明るめの文字色 */
	--light-text-color: #c33b3b;
	/* リンクやその他アクセントカラー */
	--a-color: #c33b3b;
	/* 全体の背景色 */
	--main-bg-color: #3d3f5d; 
	/* サイドの背景色 */
	--sab-bg-color: #29272c;
	/* 細かいパーツの背景色 */
	--light-bg-color: #404045;
	/* ↑よりさらに明るめの色 */
	--lighter-color: #eff3f4;
	/* アイコンフォント */
	--icon-font: 'Line Awesome Free', 'Line Awesome Brands';
}

html {
	text-rendering: optimizeLegibility;
	scroll-behavior: smooth;
}

/* カスタム絵文字 */
.cemoji img  {
	width:auto; height:auto; max-width: 100%; max-height:1.2rem; 
	vertical-align: bottom; }

.cemoji.ce-iketsu img  {
	max-height: 2.5rem;}

.cemoji.ce-konarekan img  {
	max-height: 5rem;}

/* twemoji */
img.emoji {
  height: 0.9rem;
  width: 0.9rem;
  margin: 0 .05rem 0 .1rem;
  vertical-align: -0.1rem;
}

body {
	color: var(--main-text-color);
	background-color: var(--sab-bg-color);
	font-family: 'M PLUS 1', sans-serif;
	font-size: clamp(12px, 3.75vw, 14px);
	letter-spacing: 0.07em;
	overflow-x: clip; 
}

/* 追加分　本文用 */
.font1 { 
	font-family: 'M PLUS 1', sans-serif; 
}

/* 追加分　見出し英字用 */
.font2 { 
	font-family: 'Oxanium', sans-serif; 
	font-size: 0.85rem;
	color: var(--main-text-color);
}

/* 追加分　小見出し英字用 */
.font3 { 
	font-family: 'Oxanium', 'M PLUS 1', sans-serif; 
	font-size: 0.9rem;
	color: var(--main-text-color);
	background-color: #c33b3b;
	width: fit-content;
	padding: 0rem 0.3rem;
	margin: 0.25rem 0;
}
/* 追加分　バナー表示用 */
.bn {
padding-bottom: 1.2rem;
}

/* 追加分　警告ライン用 */
.warningline {
	background-image: repeating-linear-gradient(-45deg, #29272c, #29272c 5px, transparent 5px, transparent 10px);
	width: 100%;
	height: 15px;
}

/* 追加分　ハッシュタグピック用 */
.picup p{ 
	margin: 0.25rem 0 0.25rem 0;
	font-family: 'Oxanium','M PLUS 1', sans-serif; 
	font-size: 0.8rem;
	color: var(--sab-bg-color);
	border: #7ac4db 1px solid;
	width: fit-content;
	padding: 0 0.2rem;
	margin-right: 0.2rem;
	display: inline-block;
}

.picup p a{ 
	color: #7ac4db;
}

.taglink { color: #606060;}

/* 追加分　エンドリスト用 */
.endlist {
	font-family: 'Oxanium','M PLUS 1', sans-serif; 
	font-size: 0.8rem;
	color: var(--main-text-color);
}
.endlist a{ color: #7ac4db;}


	/* ▼追加装飾 */
	.deco-azami {
		background-color: #7b93b3;
		border: 2px solid #FFF;
		margin-right: 0.4rem;
		color: #FFF;
		padding: 0.02rem 1.8rem;
		line-height: 1.7rem;
	}

	.deco-azami2 {
		background-color: #c33b3b;
		border: 2px solid #FFF;
		color: #FFF;
		font-size: 90%;
		padding: 0.04rem 0.8rem;
		margin-left: 3rem;
		margin-top: 3rem;
		line-height: 1.5rem;
		letter-spacing: 0.05rem;
	}

a {
	color: var(--a-color);
	text-decoration: none;
	transition: .3s all;
}

a:hover {
	text-decoration: underline;
}

label,
summary {
	cursor: pointer;
}

summary {
	display: block;
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

header,
.container,
footer {
	margin: 0 auto;
	background-color: var(--main-bg-color);
	border-color: #404045;
	border-style: solid;
	border-width: 0 1px 0 1px;
	max-width: 700px;
}

header h1 {
	padding: 6px 16px;
	background-color: rgba(255, 255, 255, .6);
	font-size: 20px;
}

header h1 a {
	color: var(--main-text-color);
}

header h1 a:hover {
	text-decoration: none;
}

header h1 a::before {
	margin-right: .5em;
	content: '←';
}

header h2 {
	height: 150px;
	max-width: auto;
	background-image: url(../images/X100-header.png);
	background-color: #c33b3b;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

header h2 span {
	display: none;
}

.header_sub,
.free {
	padding: 0 16px;
}

.header_sub {
	min-height: 100px;
	position: relative;
	top: -70px;
	left: 0;
}

header .icon {
	width: 25%;
	min-width: 48px;
}

header .icon+div {
	padding-right: 16px;
	width: calc(100% - (20% + 16px));
	position: absolute;
	top: 80px;
	left: calc(20% + 16px);
	display: flex;
}

header .usericon {
	border: 3px solid var(--main-bg-color);
	width: 100%;
	height: auto;
	border-radius: 50%;
}

.description {
	margin-left: auto;
	padding: .5em 1em;
	border: 1px solid;
	max-width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	border-radius: 1.5em;
}

header :where(.username, .postuserid) {
	display: block;
}

header :where(.username, .postuserid):hover {
	text-decoration: none;
}

header .username {
	color: var(--main-text-color);
	font-size: 1.2em;
	font-weight: bold;
}

header .postuserid {
	color: var(--light-text-color);
}

header .free {
	margin-top: -70px;
}

.home_link {
	color: var(--light-text-color);
	font-size: .9em;
}

.home_link2 {
	color: var(--light-text-color);
	font-size: .9em;
}

.home_link a::before {
	content: '\f015';
	color: var(--light-text-color);
	font-family: var(--icon-font);
	font-weight: 900;
}

.home_link a::after {
	content: attr(href);
}

.home_link :where(.home_link, span) {
	display: block;
}

@media (520px < width) {
	header .icon {
		width: 15%;
	}

	.home_link :where(a, span) {
		display: inline-block;
	}

	.home_link span {
		margin-left: 1em;
	}

	header h2 {
		height: 190px;
		max-width: auto;
		background-image: url(../images/X100-header.png);
		background-color: #c33b3b;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
}

.onelog header {
	padding-top: 0;
}

.onelog header h1 {
	position: static;
	text-align: left;
}


.onelog :where(header h2, .header_sub, .free) {
	display: none;
}

.container {
	display: flex;
	flex-wrap: wrap;
}

.container :where(ul, ol) {
	padding-left: 1.5em;
}

label[for*="tab"] {
	padding-block: 16px;
	position: relative;
	flex: 1;
	order: -1;
	color: var(--light-text-color);
	text-align: center;
	border-color: #29272c;
	border-style: solid;
	border-width: 1px 0 1px 0;
}

input[id*="tab"] {
	display: none;
}

.tab_content {
	width: 100%;
	display: none;
}

body:not(.mode-gallery) input[type="radio"]:checked+label::after,
.mode-gallery label[for="tab999"]::after {
	content: '';
	display: block;
	width: 50%;
	height: 2px;
	position: absolute;
	left: 50%;
	bottom: 0;
	background-color: #7ac4db;
	transform: translateX(-50%);
}

input[type="radio"]:checked+label+.tab_content {
	display: block;
}

label[for*="tab"]:hover { 
	background-color: #29272c;
}

label[for*="tab"] a {
	padding-top: 16px;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	color: var(--light-text-color);
	text-decoration: none;
}

input[type="radio"]:checked+label,
label[for*="tab"] a:hover {
	color: currentColor;
}

body:not(.mode-gallery, .onelog) label[for="tab1"] a {
	pointer-events: none;
}

article,
.categoryTree,
.archives {
	padding: 18px 16px;
	border-color: #29272c;
	border-style: solid;
	border-width: 0 0 1px 0;
}

.hashtagspace {
	padding: 18px 16px;
}

article {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* 固定記事 */
article.logstatus-fixed {
	margin: 0 auto;
	background-color: #4a4d6d;
}

article .icon {
	width: 40px;
}

article .icon img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

article .post_body {
	letter-spacing: 0.07em;
	font-size: 0.9em;
	flex: 1;
}

.post_info {
	margin-bottom: 4px;
}

.post_info a {
	text-decoration: none;
}

.post_info .username {
	color: var(--a-color);
	font-weight: bold;
}

.post_info :where(.postuserid, .postdate) {
	margin: 0 4px;
	color: #7ac4db;
	font-size: 0.7rem;
}

.post_info .categories {
	display: block;
	font-size: .8em;
	text-align: right;
}

.post_title {
	display: none;
}

	/* 鍵 */
.post_body .passkeyguide {
	margin: 6px;
	display: block;
}

.post_body .passkeyerror {
	margin: 6px;
	padding: 3px 6px;
	display: inline-block;
	border: 1px solid var(--a-color);
	color: var(--main-text-color);
	background-color: var(--sab-bg-color);
}

.post_body :where([type="text"], [type="submit"], .readmorebutton) {
	margin: 0;
	border: 1px solid var(--a-color);
	background-color: #29272c;
	color: var(--main-text-color);
}

	/* 海苔 */
.post_body :where([type="submit"], .readmoreopen) {
	padding: 0 0.5em;
	background-color: var(--a-color);
	transition: .3s;
}
.post_body :where([type="submit"], .readmoreopen):hover {
	text-decoration: none;
}
.readmorearea {
	background-color: var(--a-color);
	color: #d7d7df;
	padding: 0 0.25rem;
}

.readmoreclose {
	padding: 0 6px;
}

.decorationQ {
	padding: 16px;
	border: 1px solid #e0e0e0;
	font-size: .9em;
	border-radius: 1em;
}

.post_body :where(iframe, video) {
	max-width: 100%;
}

.decorationQ::before,
.decorationQ::after {
	content: '';
}

.decorationQ .postidlink {
	display: block;
}

/* 画像表示用 */
.post_body img {
	max-width: 100%;
	height: auto;
}

/* NSFW画像用 */
.imagelink.nsfw {
	display: block;
	max-width: 50%;
	position: relative;
}

.imagelink.nsfw::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .5);
	backdrop-filter: blur(20px);
}

.imagelink.nsfw::after {
	content: '\f071';
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	font-family: var(--icon-font);
	font-size: 36px;
	font-weight: 900;
	text-decoration: none;
	transform: translate(-50%, -50%);
}

/* キャプションあり */
.embeddedpictbox {
	display: inline-table;
	border-collapse: collapse;
	position: relative;
}

.embeddedpictbox.nsfw {
	max-width: 50%;

	& .imagelink.nsfw {
		max-width: 100%;
	}
}

.embeddedpictbox figcaption {
	padding: 3px;
	width: 100%;
	display: table-caption;
	position: absolute;
	top: 0;
	caption-side: bottom;
	color: #fff;
	background: rgba(0, 0, 0, .3);
	font-size: .8em;
	text-align: center;
}

/* 独自装飾・ウォーターマーク */
.deco-watermark {
	display: inline-block;
	position: relative;
}

.deco-watermark .imagelink::after {
	content: '転載禁止';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	color: rgba(0, 0, 0, .3);
	font-weight: bold;
	font-size: 200%;
	text-align: center;
	text-decoration: none;
	text-shadow: -1px -1px 0 rgba(255, 255, 255, .3), -1px 0 0 rgba(255, 255, 255, .3), -1px 1px 0 rgba(255, 255, 255, .3), 0 -1px 0 rgba(255, 255, 255, .3), 0 1px 0 rgba(255, 255, 255, .3), 1px -1px 0 rgba(255, 255, 255, .3), 1px 0 0 rgba(255, 255, 255, .3), 1px 1px 0 rgba(255, 255, 255, .3);
}

	/* ▼埋め込みツイートの横幅を強制的に制限 */
	div.twitter-tweet {
		max-width: 340px !important;
		height: 250px;
		overflow: auto;
		scrollbar-width: thin; 
		scrollbar-color:#8ebde6 #e8e8ee;
		top: 0;
		left: 0;
	}


/* 独自装飾・4枚の画像を旧ツイッターぽくまとめて表示 */
.deco-twimage {
	border: 1px solid #7ac4db;
	display: flex;
	overflow: hidden;
	gap: 3px;
	flex-wrap: wrap;
}

.deco-twimage a {
	width: calc(50% - 3px);
	height: auto;
	max-height: 180px;
}

.deco-twimage a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.utilitylinks {
	margin: 1em;
	padding: 1em 2em;
	background-color: var(--light-bg-color);
	font-size: .8em;
	border-radius: 1em;
}

.dateseparator {
	padding: 3px 0;
	color: var(--light-text-color);
	text-align: center;
	opacity: .6;
}

.dateseparator:hover {
	opacity: 1;
}

.fixedseparator {
	display: none;
}

.page_nav {
	padding: 1em 0;
	display: flex;
	justify-content: center;

	& a {
		margin: 3px;
		padding: 3px 5px;
		color: var(--main-text-color);
		background-color: var(--sab-bg-color);
		border-radius: 3px;
	}

	& a:hover {
		color: #fff;
		background-color: var(--light-text-color);
		text-decoration: none;
	}

	& :where(.prevlink, .nextlink) {
		margin: 0 4px;
		display: grid;
		place-items: center;
	}

	& .prevlink {
		order: 1;
	}

	& .linkseparator {
		display: none;
	}

	& .nextlink {
		order: 3;
	}

	& .pagenum {
		order: 2;

		& a {
			min-width: 1.4em;
			display: inline-block;
			text-align: center;
		}
	}

	& .pagenumhere { 
		color: #fff; 
		background-color: var(--a-color); 
		font-weight: bold; 
	}
	
}

.onelog :where(.prevlink, .nextlink) {
	width: 100%;
	text-align: justify;
	overflow-wrap: break-word;
}

.onelog .prevlink::before,
.onelog .nextlink::before {
	padding-top: 3px;
	display: block;
	font-family: var(--icon-font);
	font-weight: 900;
	text-align: center;
}

.onelog .prevlink::before {
	content: '\f104';
}

.onelog .nextlink::before {
	content: '\f105';
}

.onelog .nextlink {
	text-align: right;
}

.searchbox {
	padding: 6px;
	background-color: var(--lighter-color);
	border-radius: 6px;
}

.searchinputs {
	display: flex;
	flex-direction: row-reverse;
}

.queryinput {
	padding: 6px;
	max-width: calc(100% - 60px);
	flex: 1;
}

.submitbutton {
	padding: 6px 16px;
	color: var(--light-text-color);
}

.hashtaglist {
	padding-left: 0;
}

:where(.hashtaglist, .datelimitsublist) li {
	display: inline;
}

:where(.cattree, .hashtaglist, .datelimitsublist) .num {
	color: var(--light-text-color);
	font-size: .8em;
}

.archives:nth-child(1) {
	display: flex;
	gap: 16px;
	justify-content: center;
	align-items: center;
}


footer {
	padding: 1em 1em 0;
	font-size: .9em;
}

.poweredby {
	text-align: center;
}

footer .material {
	color: var(--light-text-color);
	text-align: center;
	opacity: .4;
}

footer .material:hover {
	opacity: 1;
}

footer .material li {
	display: inline;
}

.admin_link span {
	display: none;
}

.admin_links {
	position: fixed;
	z-index: 11;
	right: 20px;
	top: 20px;
}

#open_quickpost,
:is(#open_form, #close_form, .close_form) span,
#quickpost {
	display: none;
}

#open_form {
	display: grid;
	place-content: center;
	width: 60px;
	height: 60px;
	color: #fff;
	background-color: var(--a-color);
	border-radius: 50%;
}

#open_form::before {
	content: '\f305';
	font-family: var(--icon-font);
	font-size: 36px;
	font-weight: 900;
}

#open_quickpost:checked~#quickpost {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	overflow: auto;
}

#open_quickpost:checked~#quickpost .close_form {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: rgba(0, 0, 0, .4);
}

.postarea {
	margin: 3em auto 0;
	padding: 1em;
	max-width: 600px;
	background-color: #fff;
	border-radius: 16px;
}

.postform {
	padding: .5em 0;
}

.postform p {
	margin: 0;
}

.postarea :where(textarea, [type="text"], [type="submit"], [type="button"], [type="file"], button, select) {
	padding: 6px 8px;
	border: 1px solid var(--a-color);
	border-radius: 3px;
}

textarea.tegalogpost {
	margin-bottom: .25em;
	padding: .5em;
	width: 100%;
	height: 5em;
	max-height: 10lh;
	line-height: 1.3;
	form-sizing: content;
	background-color: #fff;
	border-radius: 6px; 
	font-size: 16px;
}

.postarea :where([type="submit"], [type="button"], button) {
	margin: 2px 0;
	background-color: var(--lighter-color);
}

#close_form {
	margin: 0 auto;
	display: block;
	position: relative;
	width: 36px;
	height: 36px;
	background-color: #fff;
	border-radius: 50%;
}

#close_form:hover {
	background-color: #555;
}

#close_form::before,
#close_form::after {
	content: '';
	display: block;
	width: 4px;
	height: 26px;
	position: absolute;
	top: 5px;
	left: 16px;
	background: #ccc;
	border-radius: 3px;
}

#close_form::before {
	transform: rotate(45deg);
}

#close_form::after {
	transform: rotate(-45deg);
}

#preview {
	max-height: 20em;
	overflow: auto;
}

.line-control {
	margin: .25em 0;
}

.postbutton[type="submit"] {
	padding: .25em 1.5em;
	border-color: var(--a-color);
	color: #fff;
	background-color: var(--a-color);
	font-weight: bold;
	border-radius: 1em;
	opacity: .8;
}

.postbutton[type="submit"]:hover {
	opacity: 1;
}

.decoBtns {
	display: inline-block;
	margin-top: .5em;
}

.decoBtns input {
	min-width: 32px;
	min-height: 28px;
	margin: 1px;
	font-size: 14px;
	vertical-align: middle;
}

.decoBtns input:hover {
	background-color: #e5f1fb;
	border-color: #0078d7;
}

.decoBtnB {
	font-weight: bold;
}

.decoBtnD {
	text-decoration: line-through;
	text-decoration-color: red;
	text-decoration-style: double;
}

.decoBtnE {
	font-weight: bold;
	color: blue;
}

.decoBtnI {
	font-style: italic;
}

.decoBtnT {
	font-size: 11px !important;
}

.decoBtnU {
	text-decoration: underline;
	text-decoration-color: red;
}

.decoBtnC {
	color: red;
}

.decoBtnM {
	color: blue;
}

.catChecks {
	font-size: .9em;
	padding-top: .5em;
}

.catChecks label {
	display: inline-block;
	cursor: pointer;
	margin: 0 .75em 0 0;
}

.catChecks label:hover {
	text-decoration: underline;
}

.catChecks input {
	min-width: 0;
	min-height: 0;
	margin-right: .2em;
}

#imglistButton {
	margin: 2px;
	position: relative;
	z-index: 4;
}

table.images {
	border-collapse: collapse;
}

table.images th,
table.images td {
	border: 1px solid;
	font-size: .7em;
}

table.images img {
	width: 100px;
	height: auto;
}

#popupContent {
	padding: 1em;
	max-width: 600px;
	line-height: 1.2;
	position: absolute;
	z-index: 1;
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 0 5px #ccc;
}

.go_page_top {
	width: 40px;
	height: 40px;
	position: fixed;
	right: 0;
	bottom: 0;
}

.go_page_top a {
	height: 100%;
	display: grid;
	place-content: center;
	color: #fff;
	background-color: var(--a-color);
	font-size: 1.4em;
	font-weight: bold;
}

	/* ---------------------- */
	/* ▼カード型リンクの装飾 */
	/* ---------------------- */
	.cardlink {
		display: inline-block;
		width: 100%;
		max-width: 500px;			/* 最大幅 (※横幅を制限したくない場合はこれを削除して下さい) */
		padding: 0 0.25em 0.5em 0;	/* 内側の余白量 */
		font-size: 0.9rem;			/* 文字サイズ */
		text-decoration: none;		/* リンク文字の下線を消す */
		vertical-align: middle;		/* 行内の上下方向では中央配置 */
	}

		/* ------------------------------------- */
		/* リンクカードの装飾(サイズS/L共通部分) */		/* ※後述の「サイズS用の追記」や「サイズL用の追記」と合わせて、1つのカードデザインになります。 */
		/* ------------------------------------- */
		/* カード外枠 */
		.cardlinkbox {
			border: 1px solid #29272c;		/* 枠線 */
			border-radius: 7px;			/* 角丸 */
			background-color: #c33b3b;	/* 背景色 */
			display: flex;				/* 内部レイアウトのFlexbox化 */
		}
		/* (マウスが載ったとき) */
		.cardlinkbox:hover {
			border-color: #7ac4db;　/* 枠線色 */
		}
			/* ▽リンクカード内の画像枠 (※読み込まれたog:imageは、この枠に《背景画像として》描画されます) */
			.cardlinkimage {
				background-image: linear-gradient(-30deg,  var(--a-color), #000);		/* プレースホルダ的な背景グラデーション(※og:imageの画像指定が読み込まれたら、この値は上書きされます) */
				background-size: cover;					/* 背景画像で枠を埋める */
				background-position: center center;		/* 背景画像を中央に寄せる */
				background-repeat: no-repeat;			/* 背景画像を繰り返さない */
			}
			/* ▽リンクカード内のテキスト枠 */
			.cardlinktextbox {
				display: flex;				/* Flexbox化 */
				flex-direction: column;		/* 子要素を縦方向に並べる */
				padding: 0.5em 1em;			/* 内側の余白量 */
			}
				/* ▽リンクカードのテキスト枠内の3要素共通 */
				.cardlinktitle,
				.cardlinkdescription,
				.cardlinkurl {
					/* ↓表示行数を制限するための準備 (※システム側では文字数は制限せずに「記述されている全文字」をHTMLに出力しますので、表示分量を制限したい場合はCSSで制御する必要があります。) */
					display: -webkit-box;			/* -webkit-line-clampを使うために必要な記述1 ※A */
					-webkit-box-orient: vertical;	/* -webkit-line-clampを使うために必要な記述2 ※A */
					overflow: hidden;				/* 表示量を制限する場合に必須の記述 */
					/* ↓制限の仕様 */
					line-clamp: 1;				/* 1行だけ見せる (将来的にはこれだけで実現可能かも) */
					-webkit-line-clamp: 1;		/* 1行だけ見せる (今のブラウザにはこちらが必要で、そのためには上記「※A」も必要) */
					text-overflow: ellipsis;	/* 省略記号(三点リーダー) */
				}
				/* リンクタイトル */
				.cardlinktitle {
					padding-bottom: 0.25em;		/* 内側下端の余白量 */
				}
				/* リンク概要文 */
				.cardlinkdescription {
					line-height:1.3;			/* 行の高さ */
					color:var(--main-text-color);					/* 文字色 */
					line-clamp: 2;				/* (既存指定の上書き) 最大2行まで見せる */
					-webkit-line-clamp: 2;		/* (既存指定の上書き) 最大2行まで見せる */
				}
				/* リンクドメイン */
				.cardlinkurl {
					color: #7ac4db;				/* 文字色 */
				}

		/* ----------------------------------- */
		/* リンクカードの装飾(サイズS用の追記) */		/* 前述の「サイズS/L共通部分」と合わせて、1つのカードデザインになります。 */
		/* ----------------------------------- */
		.cardsize-S {
			flex-direction: row;				/* 画像とテキストは横に並べる(Flexbox) */
		}
			/* ▽リンクカード内の画像枠 */
			.cardsize-S .cardlinkimage {
				min-width: 100px;				/* 最小の横幅 */
				min-height: 100px;				/* 最小の高さ */
				border-radius: 6px 0 0 6px;		/* 左側だけ角丸 */
				flex-shrink: 0;					/* 枠サイズを自動縮小させない */
			}
			/* ▽リンクカード内のテキスト枠 */
			.cardsize-S .cardlinktextbox {
				border-left: 1px solid #7ac4db;	/* 左側の枠線 */
				justify-content:center;			/* Flexboxの上下方向での中央寄せ */
			}
				/* ▽リンクカードのテキスト枠内の3要素 */
				.cardsize-S .cardlinktitle { order: 2; }		/* タイトルは、2番目に表示 */
				.cardsize-S .cardlinkdescription { order: 3; }	/* 概要文　は、3番目に表示 */
				.cardsize-S .cardlinkurl { order: 1; }			/* ドメインは、1番上に表示 */

		/* ----------------------------------- */
		/* リンクカードの装飾(サイズL用の追記) */		/* 前述の「サイズS/L共通部分」と合わせて、1つのカードデザインになります。 */
		/* ----------------------------------- */
		.cardsize-L {
			flex-direction: column;			/* 画像とテキストは縦に並べる(Flexbox) */
		}
			/* ▽リンクカード内の画像枠 */
			.cardsize-L .cardlinkimage {
				aspect-ratio: 1.91 / 1;		/* 画像枠の縦横比を指定= (横)1.91：(縦)1 */
				width: 100%;				/* 横幅は枠最大に拡げる */
				height: auto;				/* 高さは自動計算 */
				border-radius: 6px 6px 0 0;	/* 上側だけ角丸 */
			}
			/* ▽リンクカード内のテキスト枠 */
			.cardsize-L .cardlinktextbox {
				border-top: 1px solid #ccc;	/* 上側の枠線 */
			}
				/* ▽リンクカードのテキスト枠内の3要素 */
				.cardsize-L .cardlinktitle { font-weight: bold; }			/* 太字 */
				.cardsize-L .cardlinkdescription { min-height: 2.5em; }		/* 内容量が少ない場合でも一定の高さを確保 */
				.cardsize-L .cardlinkurl {
					border-top: 1px solid #7ac4db;		/* 上側の枠線 */
					margin-top:0.5em;				/* 上側の枠線より上の余白量 */
					padding-top:0.5em;				/* 上側の枠線より下の余白量 */
					font-size:0.75rem;				/* 文字サイズ(小さめ) */
				}
