@charset "utf-8";

:root {
	--height-header: 80px;

	/* ブランド系 */
	--color-primary: #222;
	--color-secondary: #f5f5f5;
	--color-accent: #222222;

	/* テキスト */
	--color-text: #222222;
	--color-text-sub: #808080;
	--color-text-white: #fff;
	--color-text-dark: #05051a;
	--color-link: #cc0022;

	/* 装飾 */
	--color-border: #ccc;
	--color-gradation-start:#5a50f0;
	--color-gradation-end: #05c8e1;
	--color-logo-accent: #4173eb;
}

body * {
	font-family: "Noto Sans JP", sans-serif;
}

#header-right #user-notifies-toggle,
#left-menu-home i,
#left-menu-font-expander,
ul.menu.vertical .divider,
#left-menu-font-expander > a::after,
.with-nav-global_subnav > a::after,
#nativeadinfo,
#header-right #search-icon,
#main>.content a.content-tag[data-tag="OKAMI_pickup"] {
	display: none !important;
}

/*
header
=============================================*/

#header {
	z-index: 1000;
}

#header.slide-up #header-container {
	transform: translateY(0%) !important;
}

#header-right {
	@media (max-width: 767px) {
		justify-content: end;
	}

	a {
		display: flex;
		color: var(--color-text);
		justify-content: center;
		align-items: center;
		width: 50px;
		height: 60px;
		margin: 0;
		font-size: 1.25em;
		padding: 10px 0;

		@media (max-width: 767px) {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 45%;
			max-width: 60px;
		}
	}

	a#menu-icon {
		order: 2;
		@media (min-width: 768px) {
			display: none;

		}
	}

	a#search-icon {
		order: 1;
	}
}

/* ハンバーガーメニューが開いた場合 */

.slide-right {
	#menu-icon .fa::before {
		content: "\f00d";
	}

	@media (max-width: 767px) {
		#menu-icon,
		#header-container:hover #menu-icon:hover {
			filter: brightness(1.3);
		}
	}
}

/*
ハンバーガーメニュー
=============================================*/

#left-menu-container {
	background: rgba(13,13,13,.9);
	border: none;
	color: var(--color-text-white);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	transform: translateX(100%) translateY(var(--height-header));
	right: 0 !important;
	width: 100%;
	top: 0;
	position: fixed;
	bottom: 0 !important;
	max-height: none;
	padding: 0 0 1em;
	height: calc(100vh - var(--height-header));

	@media (min-width: 1024px) {
		right: 0rem !important;
	}

	@media (min-width: 768px) {
		max-width: 400px;
		height: calc(100vh - var(--height-header));
		top: 0;
	}

	#left-menu .menu .divider {
		display: none;
		border: none;
	}

	.menu li a {
		color: var(--color-text-white);
		opacity: 1;
		&:hover {
			opcity: .7;
		}
	}

	.menu > .menu-item > a > i {
		font-size: 100%;
		margin-right: 0.25em;
	}

	.menu li > a {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		position: relative;

		&:hover {
			text-decoration: none;
			color: var(--color-text-sub);
		}

		&::after {
			content: "\f105";
			font-family: fontAwesome;
			padding: 0 3px;
			margin: 0 0 0 auto;
		}
	}

	li + li {
		border-top: 1px solid #e3e3e3;
	}

	.menu > li:last-child {
		border-bottom: 1px solid #e3e3e3;
	}

	.menu li + li > a,
	.nav-global_pulldown-wrap .nav-global_subnav > li > a {
		padding: 0.75em 1.25em 0.65em;
		margin: 0;
		position: relative;
	}

	#left-menu.opened & {
		margin: 0;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0) translateY(var(--height-header));
	}
}

#left-menu-navi {
	&:hover {
		color: inherit;
	}

	.nav-global-pulldown {
		flex-direction: column;
		height: auto;
		padding: 0;

		input {
			display: none;
		}

		label {
			cursor: pointer;
			height: 1.75em;
			width: 1.75em;
			border: 1px solid #333;
			border-radius: 100%;
			position: relative;
			transition: 0.2s;
			position: absolute;
			right: 0.75em;

			span {
				position: relative;
				display: block;
				width: 100%;
				height: 100%;
			}

			& span::before,
			& span::after {
				content: "";
				position: absolute;
				top: 50%;
				left: 50%;
				width: 1px; /* 棒の幅（太さ） */
				height: 0.875em; /* 棒の高さ */
				background: var(--color-accent);
				transform: translateY(-50%);
				transition: 0.2s;
				transform-origin: center;
			}

			& span::before {
				transform: translateY(calc(-50% - 1px / 2)) rotateZ(90deg);
			}

			&:hover {
				background: var(--color-accent);
				span::before,
				span::after {
					background: var(--color-primary);
				}
			}
		}

		label > a {
			pointer-events: none;
		}

		.nav-global_subnavitem {
			padding: 0 0 0 0.5em;
			border-color: var(--color-border);
		}

		.nav-global_pulldown-wrap {
			display: none;
		}

		input:checked ~ label .nav-global_subnav-mark::after {
			transform: rotate(0);
		}

		.nav-global_subnav {
			padding: 0;
			background: var(--color-secondary);
		}

		input:checked + .nav-global_link label {
			transform: rotateZ(135deg);
		}

		input:checked ~ .nav-global_pulldown-wrap {
			display: block;
		}
	}
}

body:not(.page-content) #main,
#header-defaults,
body.custom-header-menu-always-mobile #header-menu,
#common-header,
#main > .breadcrumbs > ol,
#footer-container {
	max-width: unset;
	padding: 0;
}

#header-bgs,
#header-menu > a:active:after,
#header-menu > a:hover:after,
#header-menu > a.active:after,
#signup-icon,
#user-notifies,
#signup {
	display: none !important;
}

#header-defaults {
	background: #fff;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

#header-container {
	height: var(--height-header);
}

#header-title > a > .header-title-text {
	padding: 0;
	overflow: visible;
}

#header-title {
	font-size: 150%;
	font-weight: bold;
	color: var(--color-text-text);
	height: var(--height-header);
	max-width: unset;
	padding: 12px 0 12px 16px;
}

#header-title > a > .header-title-text {
	padding: 0 20px;
}

#header-title img {
	height: 100%;
}

#header-menu {
	font-size: 87.5%;
	justify-content: right;
}

#header-menu > a,
#header-menu .menu-more > a {
	font-weight: bold;
	color: var(--color-text);
	padding: 20px;
	height: var(--height-header);
}

#header-right {
	padding: 0;
	flex-wrap: nowrap;
}

#header-right a {
	color: var(--color-text);

	&:hover {
		color: var(--color-logo-accent);
	}
}

@media (min-width: 768px) {
	#header-defaults a {
		transition: 0.2s;
	}
	#header-menu a.active {
		color: var(--color-logo-accent);
	}
	#header-menu a:hover:not(.active) {
		color: var(--color-logo-accent);
		/*
		background-image: linear-gradient(
			to right,
			var(--color-gradation-start),
			var(--color-gradation-end)
		);

		background-size: 100% auto;
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		color: transparent;
		*/
	}
}

@media (max-width: 767px) {
	#header-menu {
		display: none;
	}
	#header-defaults {
		flex-wrap: nowrap;
	}
	a#menu-icon {
		padding: 0 24px;
	}
}

/*
footer
======================================== */

/* SNSリスト モジュール start */

.c-sns-list {
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 var(--space-base);
	color: var(--color-text-white);
	padding: 0;
	margin: 16px 0 0;
	list-style: none;
	grid-column: 1 / 2;
	grid-row: 2 / 2;


	.sns-list_link {
		display: flex !important;
		align-items: center;
		padding: var(--space-base-25pct);
		text-align: center;
		opacity: 1;
		width: var(--font-size-40);
		height: var(--font-size-40);
		border-radius: var(--radius-xl);
		padding: 0 !important;
		justify-content: center;
		gap: 0;
	}

	.sns-list_item span {
		display: none;
	}

	.sns-list_link:hover {
		filter: opacity(0.875) brightness(1.125);
		text-decoration: none;
	}

	.sns-list_link > .fa {
		position: relative;
		@media (max-width: 768px) {
			font-size: var(--font-size-24);
		}
	}

	.sns-list_link-x {
		background: var(--color-sns-x);
		.fa {
			left: 0.05em;
			top: 0.05em;
		}
	}

	.sns-list_link-youtube {
		background: var(--color-sns-youtube);
	}

	.sns-list_link-instagram {
		background: var(--color-sns-instagram);
	}
}

/* SNSリスト モジュール end */

#footer-system {
	display: none;
}

#footer {
	overflow: visible;
	background: var(--color-accent);
	color: var(--color-text-white);
	z-index: 100;

	@media (max-width: 767px) {
		margin-top: 120px;
	}

	.footer-pagetop:hover {
		text-decoration: none;
		opacity: .6;
	}

	#footer-container {
		margin: 0 auto;
		padding: 36px 20px;
		display: grid;
		grid-template-columns: 1fr;
		@media (min-width: 768px) {
			display: grid;
			grid-template-columns: 240px 1fr;
			gap: 1em;
		}
	}

	.footer-pagetop {
		position: absolute;
		text-align: right;
		display: flex;
		flex-direction: column;
		width: 90px;
		cursor: pointer;
		transform: rotate(90deg);
		top: -75px;
		right: -20px;

		.is-arrow {
			position: relative;
			display: block;
			width: 90px;
			height: 1px;
			background-color: var(--color-text);
		}

		.is-arrow::before {
			content: "";
			position: absolute;
			top: calc(50%);
			left: 0;
			width: 15px;
			height: 1px;
			background-color: var(--color-text);
			transform: rotate(45deg);
			transform-origin: 0 50%;
		}

		.is-text {
			font-size: 75%;
			letter-spacing: 0.1em;
			color: var(--color-text);
		}
	}

	.footer-logo {
		width: 100%;
		max-width: 200px;
		@media (min-width: 768px) {
			max-width: 240px;
			grid-column: 1 / 1;
		}
	}

	.footer-link,
	.footer-link * {
		line-height: 1em;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.footer-link {
		display: flex;
		gap: 1em;
		flex-direction:column;
		margin-top: 24px;

		@media (min-width: 768px) {
			flex-wrap: wrap;
			grid-column: -2 / -1;
			grid-row: 1 / 2;
			margin: 0 0 0 auto;
			flex-direction:row;
			margin-top: 0;
		}
	}

	.footer-item a {
		font-size: 87.5%;
		transition: 0.2s;
	}

	.footer-link a:hover {
		text-decoration: none;
		opacity: .6;
	}

	.footer-copy {
		font-size: 75%;
		font-weight: bold;
		opacity: 50%;
		margin-top: 40px;
		text-align: center;

		@media (min-width: 768px) {
			text-align: right;
			grid-column: -2 / -1;
			grid-row: 2 / 2;
			margin-top: 0;
		}
	}
}


/*
タグ一覧
=============================================*/

.widgets,
.widget-wrap {
	display: none !important;
}

#free_q-heading,
#tag-heading,
#hot-heading,
#news-heading,
#single-heading {
	padding: 2em 0 0;
	margin: 0 auto;
			font-size: 100%;

.image-bg * {
	text-shadow: none !important;
}

&:after {
	background: none;
}

&>.container {
	margin: 0 auto;
	text-shadow: none;
max-width: 1020px;
padding: 0 20px;
}

& .image-bg-blur {
	display: none;
}

#main & h1 {
	margin: 0;
	font-weight: bold;
	font-size: 250%;
}

#main & h1 a {
	color: var(--color-text);
	text-shadow: none;
	pointer-events: none;
}

& a i {
	display: none;
}

&.is-header-menu-tag {
	display: block;
}
}




/*
ニュースフィード
=============================================*/

.inserted-spiral .spiral-contents-container,
#main-contents-container {
	padding: unset;
}

#newsfeed .newsfeed-container {
	max-width: 1020px;
	margin: 0 auto;
	padding: 40px 20px 120px;
}

#newsfeed .wfcontent {
	max-width: 1020px;
	padding: 40px 0px !important;
}

#newsfeed .wfcontent-container {
	max-width: 1020px;
	font-size: 100%;
	padding: 0px !important;
	transition: 0.2s;
}

#newsfeed .wfcontent-container:hover {
	text-decoration: none;
	/* ホバー時の調整 */
}

#newsfeed .wfcontent + .wfcontent {
	border-top: 1px solid #ccc;
}

#newsfeed .wfcontent .content-leading {
	width: 240px;
	padding: 0;
	/* position: absolute; */
	/* top: 0; */
	/* left: 0; */
}

#newsfeed .content-leading .img-wrap {
	border-radius: 10px;
}

#newsfeed .content-leading .img-wrap:before {
	padding-top: 75%;
}

#newsfeed .flex-item[data-pubdate]:after {
	content: attr(data-pubdate);
	display: block;
}

#newsfeed .content-author-avater,
#newsfeed .content-author-name,
#newsfeed .content-author-site-wrap,
#newsfeed .content-body,
#newsfeed .content-feedlabel {
	display: none !important;
}
#newsfeed .wfcontent  .content-body-container {
	height: 100%;
	position: relative;
}
#newsfeed .wfcontent .content-link {
	/*min-height: 180px;*/
	padding: 40px 0 0 40px;
	/* padding-left: 280px; */
	width: 100%;
	position: relative;
	z-index: 1;
	height: 100%;
}

.page-tag-INFORMATION #newsfeed .wfcontent .content-link {
	min-height: 180px;
}
/*
#newsfeed .content-link:after {
	content: "VIEW MORE ＞";
	display: inline-block;
	font-size: 100%;
	font-weight: bold;
	line-height: 1em;
	margin-top: 36px;
	position: relative;
	top: 0;
	left: 100%;
	transform: translateX(-100%);
	color: var(--color-text);
	transition: 0.2s;
}
*/
#newsfeed .wfcontent .content-info {
	font-size: 100%;
	color: var(--color-text-sub);
	margin: 0;
	position: absolute;
	top: 0;
	left: 40px;
	z-index: 0;
}

#newsfeed .wfcontent .content-author-info {
	opacity: 1;
}

#newsfeed .wfcontent .content-tags {
	display: block;
	font-size: 87.5%;
	position: absolute;
	margin: 0;
	top: 0;
	left: 10em;
	z-index: 1;
}

:is(#newsfeed, #news) .wfcontent:has([href*="_ct"]) .content-tag + .content-tag,
:is(#newsfeed, #news) .wfcontent .content-tag:before,
#newsfeed .wfcontent:has([href*="_st"]) .content-tag:not(:nth-child(2)) {
	display: none;
}

#newsfeed .wfcontent .content-tag {
	display: block;
	font-weight: bold;
	text-align: center;
	min-width: 8.5em;
	background-color: var(--color-text);
	border-radius: 5px;
	padding: 0 .75em;
	color: var(--color-text-white);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: 0.2s;
}

#newsfeed .wfcontent .content-tag:hover {
	text-decoration: none;
	opacity: .7;
}

#newsfeed .wfcontent .content-title {
	font-size: 100%;
	line-height: 1.625em;
	padding: 0;
}

#newsfeed .wfcontent:hover :is(.content-title, .content-leading) {
	opacity: .7;
}

#newsfeed .content-title:before {
	margin: 0.6em 0.7em 0 0;
}

@media (max-width: 767px) {
	#newsfeed .wfcontent {
		padding: 20px 0px !important;
	}

	#newsfeed .newsfeed-container {
		padding: 20px 20px 130px;
	}

	#newsfeed .wfcontent .content-leading {
		width: 120px;
	}

	#newsfeed .wfcontent .content-link {
		/* min-height: 90px; */
		padding: 30px 0 0 10px;
		/* padding-left: 10px; */
	}

	#newsfeed .content-link:after {
		font-size: 87.5%;
		margin-top: 20px;
	}

	#newsfeed .wfcontent .content-info {
		font-size: 87.5%;
		left: 10px;
	}

	#newsfeed .wfcontent .content-tags {
		font-size: 75%;
		left: 8em;
	}
}

#newsfeed.newsfeed-all-display-type-card {
	background: unset;
	padding-top: 40px;
}

#newsfeed.newsfeed-all-display-type-card .wfcontent {
	width: 23.725%;
	margin: 0 1.7% 1.7% 0 !important;
	padding: 0 !important;
}

#newsfeed.newsfeed-all-display-type-card .wfcontent:nth-child(4n) {
	margin-right: 0 !important;
}

#newsfeed.newsfeed-all-display-type-card .wfcontent-container {
	border: none;
	border-radius: 10px;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}

#newsfeed.newsfeed-all-display-type-card .wfcontent .content-leading {
	width: 100%;
	position: relative;
}

#newsfeed.newsfeed-all-display-type-card .content-leading .img-wrap {
	border-radius: unset;
}

#newsfeed.newsfeed-all-display-type-card .content-body-container {
	position: relative;
}

#newsfeed.newsfeed-all-display-type-card
	.wfcontent-container.flex-container
	> .flex-item
	+ .flex-item {
	margin-top: 0;
}

#newsfeed.newsfeed-all-display-type-card .wfcontent .content-link {
	padding: 48px 16px;
}

#newsfeed.newsfeed-all-display-type-card .wfcontent .content-title {
	line-height: 1.6em;
	white-space: unset;
	max-height: unset;
	height: 4.9em;
}

@supports (-webkit-line-clamp: 3) {
	#newsfeed.newsfeed-all-display-type-card .wfcontent .content-title {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}
}

#newsfeed.newsfeed-all-display-type-card .content-link:after {
	display: none;
}

#newsfeed.newsfeed-all-display-type-card .wfcontent .content-info {
	margin-top: 0;
	top: unset;
	left: unset;
	right: 16px;
	bottom: 20px;
}

#newsfeed.newsfeed-all-display-type-card .flex-item[data-pubdate]:after {
	font-size: 87.5%;
}

#newsfeed.newsfeed-all-display-type-card .wfcontent .content-tags {
	top: 16px;
	left: 16px;
}

@media (max-width: 767px) {
	#newsfeed.newsfeed-all-display-type-card {
		padding-top: 20px;
	}

	#newsfeed.newsfeed-all-display-type-card .wfcontent {
		width: 49%;
		margin: 0 2% 2% 0 !important;
		padding: 0 !important;
	}

	#newsfeed.newsfeed-all-display-type-card .wfcontent:nth-child(2n) {
		margin-right: 0 !important;
	}

	#newsfeed.newsfeed-all-display-type-card .wfcontent .content-link {
		padding: 44px 12px 40px;
	}

	#newsfeed.newsfeed-all-display-type-card .wfcontent .content-title {
		font-size: 87.5%;
		height: 6.5em;
	}

	@supports (-webkit-line-clamp: 4) {
		#newsfeed.newsfeed-all-display-type-card .wfcontent .content-title {
			display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 4;
		}
	}

	#newsfeed.newsfeed-all-display-type-card .wfcontent .content-info {
		right: 12px;
		bottom: 12px;
	}

	#newsfeed.newsfeed-all-display-type-card .flex-item[data-pubdate]:after {
		font-size: 100%;
	}

	#newsfeed.newsfeed-all-display-type-card .wfcontent .content-tags {
		left: 12px;
	}
}

/*
記事
=============================================*/

.content[data-tags*="News"] .content-author-avater {
	display: none;
}

.content .content-author-info {
	padding: 0;
}

.content[data-tags*="News"] .content-pubdate + .flex-item {
	display: none;
}

.content .content-body .content-author-info {
	opacity: 1;
}
.content .content-pubdate a {
	pointer-events: none;
	color: var(--color-accent);
}
.sns-shares-simple.sns-shares-content-bottom {
	display: none;
}
.content-body .content-info:has(+ .content-tags + .sns-shares-content-bottom),
.content-body .content-tags:has(+ .sns-shares-content-bottom),
.content-spacer {
	display: none !important;
}
.content-body .article a {
	color: var(--color-logo-accent);
	text-decoration: underline;
}
.content-body .article a:hover {
	text-decoration: none;
}
:is(.page-content, .page-ctstock ) .breadcrumbs {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	color: var(--color-text);
	padding: 0;
}
h1.content-title a {
	pointer-events: none;
	/* ホバー時の調整 */
}

:is(.page-content, .page-ctstock ) .content-cover {
	border-top: none;
	border-bottom: none;
}

:is(.page-content, .page-ctstock ) .content-author-avater.flex-item,
:is(.page-content, .page-ctstock ) a.content-author-name,
:is(.page-content, .page-ctstock ) span.content-author-site-wrap {
	display: none;
}

:is(.page-content, .page-ctstock ) .content-cover-over {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

:is(.page-content, .page-ctstock ) #main > .content a.content-tag {
	border: none;
	margin: 0px;
	padding: 0px;
	color: var(--color-text);
	&:hover{
		opacity: .6;
	}
}

:is(.page-content, .page-ctstock ) #contact {
	font-size: 100%;
	line-height: 1.7em;
	margin-top: 120px;
	color: #000;
	max-width: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 0;
	box-sizing: border-box;
	background: var(--color-secondary);
}

:is(.page-content, .page-ctstock ) #contact .inner {
	max-width: 1020px;
	position: relative;
	margin: 0 auto;
	padding: 120px 20px;
}
:is(.page-content, .page-ctstock ) #contact .heading {
	font-size: 100%;
	margin: 0;
}
:is(.page-content, .page-ctstock ) #contact .heading-sub {
	display: block;
	font-size: 150%;
	line-height: 1em;
}
:is(.page-content, .page-ctstock ) #contact .heading-main {
	display: block;
	font-size: 300%;
	line-height: 1.3em;
	margin-top: 4px;
}

:is(.page-content, .page-ctstock ) #contact .contact {
	display: block;
	width: 230px;
	height: 60px;
	font-weight: bold;
	font-size: 100%;
	line-height: 60px;
	text-align: center;
	color: var(--color-text-white);
	background: var(--color-accent);
	border-radius: 8px;
	margin: 56px 0 0;
	transition: 0.2s;
	box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.2);
}

:is(.page-content, .page-ctstock ) #contact .contact:after {
	content: "\f061";
	font-family: fontAwesome;
	margin-left: 0.5em;
}

:is(.page-content, .page-ctstock ) #main > .content .content-tags {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1em;
}
:is(.page-content, .page-ctstock ) #main > .content a.content-tag span {
	opacity: 1;
}
:is(.page-content, .page-ctstock ) #main > .content a.content-tag::before {
	content:'#';
}
:is(.page-content, .page-ctstock ) #main > .content a.content-tag:hover {
	text-decoration: none;
	background: none;
	/* ホバー時の調整 */
}

@media (min-width: 768px) {
	.page-content #contact .contact-items,
	.page-ctstock #contact .contact-items {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

/*特定のタグを非表示にする*/
:is(.page-content, .page-ctstock ) #main > .content .content-tags a[data-tag="okami"] {
	display: none;
}

/*ストック型コンテンツの一覧*/
.page-stags {
	#stags-heading.heading > .container {
		max-width: 1020px;
		padding: 0px 20px;
		margin: 0 auto;
	}
	#stags-heading a.tag {
		border: none;
		padding: 0;
		pointer-events: none;
		background: none;
	}
	#stags-heading h1 {
		font-size: 250%;
		font-weight: bold;
	}

	.main-contents {
		display: flex;
		flex-direction: column;
	}

	.main-contents #path-custom-feed-heading {
		order: 2;
		max-width: 1020px;
		width: 100%;
		padding: 0 20px;
		margin: 0 auto;
		box-sizing: border-box;
		text-align: left;
	}

	.main-contents #stags-heading {
		order: 1;
	}

	.main-contents #newsfeed {
		order: 3;
	}
	.blog-items {
		margin-top: 80px;
		display: flex;
		flex-wrap: wrap;
	}

	.newsfeed-container {
		position: relative;
		margin: 0 auto;
		padding: 0;
	}

	.wfcontent-container {
		display: inline-block;
		vertical-align: top;
		border: none !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.wfcontent {
		display: inline-block;
		vertical-align: top;
		border: none !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	#newsfeed .wfcontent {
		width: 32.2%;
		margin: 0 1.7% 1.7% 0 !important;
		padding: 0 !important;
	}

	#newsfeed .wfcontent-container {
		border: none;
		border-radius: 10px;
		box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
		overflow: hidden;
	}
	#newsfeed .wfcontent .content-leading {
		width: 100%;
		position: relative;
	}
	#newsfeed .content-leading .img-wrap {
		border-radius: unset;
	}

	#newsfeed .wfcontent-container.flex-container > .flex-item + .flex-item {
		margin-top: 0;
	}

	.wfcontent-container.flex-container > .flex-item,
	.wfcontent-container.flex-container > .flex-item {
		width: 100%;
		padding: 0;
	}
	#newsfeed .content-body-container {
		position: relative;
	}
	#newsfeed .wfcontent .content-link {
		padding: 48px 16px 16px;
	}

	@supports (-webkit-line-clamp: 3) {
		#newsfeed .wfcontent .content-title {
			display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 3;
		}
	}
	#newsfeed .wfcontent .content-title {
		line-height: 1.6em;
		white-space: unset;
		max-height: unset;
		height: 4.9em;
	}

	#newsfeed .wfcontent .content-tags {
		top: 16px;
		left: 16px;
	}

	#newsfeed .wfcontent:nth-child(3n) {
		margin-right: 0 !important;
	}
	#newsfeed .content-link:after {
		content: none;
	}
}

@media screen and (max-width: 767px) {
	.page-stags .newsfeed-container.spaceless {
		flex-direction: column;
	}

	.page-stags #newsfeed .wfcontent {
		width: 100%;
	}
	.content-region .widgets {
		display: none !important;
	}
}

.breadcrumbs {
	max-width: 1020px;
	padding: 0px 20px;
	margin: 0 auto;
}

#main {
	padding-top: 96px !important;
}



.section .inner {
	max-width: 1020px;
	position: relative;
	margin: 0 auto;
	padding: 120px 20px;
}

.section .heading {
	font-size: 100%;
	margin: 0;
}

.section .heading-sub {
	display: block;
}

.section .heading-main {
	display: block;
	font-size: 262.5%;
	line-height: 1.5em;
	margin-top: 16px;
	margin-bottom: 48px;
}

.section .heading + .paragraph strong {
	font-size: 150%;
	line-height: 1.5em;
	color: #000;
}

.section .paragraph {
	font-size: 100%;
	line-height: 1.7em;
	margin-top: 28px;
	color: #000;
}


.section .viewmore {
	display: block;
	font-size: 100%;
	font-weight: bold;
	line-height: 1em;
	padding-right: 1.5em;
	position: absolute;
	top: 196px;
	right: 20px;
	color: #000;
	transition: 0.2s;
	color: var(--color-logo-accent);
}

.section .viewmore:after {
	content: "＞";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: 0.2s;
}

.section .viewmore:hover {
	text-decoration: none;
	filter: brightness(1.3);
	/* ホバー時の調整 */
}

.section .viewmore:hover:after {
	right: -5px;
}


@media (max-width: 767px) {
	.section .inner {
		padding: 50px 20px 60px;
	}

	.section:last-child .inner {
		padding-bottom: 130px;
	}

	.section .heading-sub {
		font-size: 75%;
	}

	.section .heading-main {
		font-size: 180%;
		margin-top: 8px;
		margin-bottom: 42px;
	}

	.section .heading + .paragraph strong {
		font-size: 125%;
	}

	.section .paragraph {
		margin-top: 28px;
	}

	.section .viewmore {
		display: inline-block;
		font-size: 87.5%;
		position: relative;
		margin-top: 10px;
		top: 0;
		right: unset;
		left: 100%;
		transform: translateX(-100%);
	}
}




/* ==================================================

@ UI element

================================================== */

#main a.btn-default {
	display: inline-flex;
	min-width: 280px;
	height: 60px;
	font-weight: bold;
	font-size: 100%;
	text-align: center;
	color: var(--color-text-white);
	background: var(--color-logo-accent);
	border-radius: 8px;
	margin: 56px 0 0;
	transition: 0.2s;
	align-items: center;
	justify-content: center;
	padding: 0 1.25em;
	text-decoration: none;
	:is(.page-content, .page-ctstock) & {
		margin: 2em 0 ;
	}
	&::after {
		content: '\f061';
		font-family: fontAwesome;
		margin-left: 0.5em;
	}

	&:hover {
		text-decoration: none;
		color: var(--color-text-white);
		filter: brightness(1.3);
	}
}


/* ==================================================

@ UI wipe

================================================== */

#wipe-info {
	position: fixed;
	right: 0;
	bottom: 5vh;
	transition: 1s;
	transform: translateX(100%);
	&.open {
		transform: translateX(0%);
	}
}
#wipe-info .wipe-info-inner {
	width: 335px;
	color: #666;
}

.wipe-info-inner-contents-block {
	position: relative;
	border: 1px solid var(--color-text);
}

.wipe-info-inner-contents-block a {
display: block;
}

.wipe-info-inner-contents-block img:only-child:hover {
	filter: brightness(1.1) contrast(1.2);
	opacity: 1;
}

#toggle-btn {
	background: var(--color-logo-accent);
	color: #fff;
	line-height: 1;
	padding: 0.35em 0.5em;
	display: flex;
	cursor: pointer;
	position: absolute;
	top: -2.5em;
	width: 1.75em;
	height: 1.75em;
	justify-content: center;
	align-items: center;
	z-index: 100;
	left: 0;
	transform: translateX(-1.75em);
	transition: 1s;

	.open & {

	left: 100%;
	transform: translateX(-1.75em);

	}
}

#toggle-btn:hover {
	filter: brightness(1.3);
}

#toggle-btn span::before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding-top: 1px;
}

:not(.open)>#toggle-btn span::before {
	content: "\f100";
}

.open>#toggle-btn span::before {
	content: "\f00d";
}

@media (max-width: 767px) {

	#wipe-info {
		bottom: 72px;
	}

	#wipe-info .wipe-info-inner {
		width: 100%;
		padding: 0 20px;
	}

}