/*
Theme Name: tt-theme
Author: Techtouch
*/

/* TABLE OF CONTENTS
------------------------------------------------------------
* CSS Reset
* Global
* BreakPoint
* Layout
* Header
* Menus
* Featured Area
* Content
* Navigations
* Comments
* Widgets
* Footer
* Plugins
* Print
* Article
------------------------------------------------------------ */



/*	CSS Reset
------------------------------------------------------------ */
html,
body {
	border: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}

blockquote::before,
blockquote::after {
	content: "";
}
button {
	background-color: transparent;
	cursor: pointer;
}

/* Global
------------------------------------------------------------ */

html {
	font-size: 62.5%; /* 1rem = 10px */
	scroll-behavior: smooth;
}

body {
	background: #ffffff;
	box-sizing: border-box;
	color: #252729;
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "MS Gothic", sans-serif;
	font-size: 1.6rem;
    line-height: 2.0;
	text-align: left;
	animation: fadeIn 1s ease 0s 1 normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@keyframes fadeIn {
    0% {
		opacity: 0
    }

    100% {
		opacity: 1
    }
}

/* Heading */
h1, h2, h3, h4, h5, h6 {
	color: #0974E8;
	font-weight: 600;
	line-height: 1.5;
	font-feature-settings: "palt";
	letter-spacing: .1rem;
}
h1 {
	font-size: 3.2rem;
}
h2 {
	font-size: 2.4rem;
}
h3 {
	font-size: 1.8rem;
}
h4 {
	font-size: 1.8rem;
}
h5 {
	font-size: 1.6rem;

}
h6 {
	font-size: 1.2rem;
}

@media (min-width: 768px) {
	h1 {
		font-size: 4.8rem;
	}
	h2 {
		font-size: 4.0rem;
	}
	h3 {
		font-size: 3.2rem;
	}
	h4 {
		font-size: 2.4rem;
	}
	h5 {
		font-size: 1.8rem;
	
	}
	h6 {
		font-size: 1.6rem;
	}
}

/* Link */
a {
	color: #252729;
	transition: all .15s ease-in-out;
	text-decoration: none;
}

/* Text */
p {
    line-height: 2.0;
	/* margin: 0 0 1.8rem; */
}
b, strong {
	font-weight: 600;
}
strong {
	line-height: 1.5;
}
dfn, em, i {
	font-style: italic;
}
q {
	quotes: "" "";
}
cite {
	border-bottom: dotted 1px #999;
	font-style: normal;
}
code, kbd, tt, var {
	background-color: #F7F7F8;
	font-family: Consolas, "Courier New", monospace;
	font-size: 90%;
}
mark, ins {
	background: #FFE5A0;
	text-decoration: none;
}

/* List */
ul, ol {
	padding: 0;
	list-style: none;
}
li > ul,
li > ol {
	margin-bottom: 0;
}
dl {
	margin: 0;
	font-size: 1.4rem;
}
dt {
	font-weight: 600;
	margin-bottom: 0.8rem;
}
dd {
	margin: 0 0 2.4rem 0;
	line-height: 2;
}
dd > ul {
	list-style-type: disc;
	margin-left: 2.4rem;
}
@media (min-width: 768px) {
	dl.flex {
		display: flex;
		flex-wrap: wrap;
	}
	dl.flex > dt {
		margin-right: 3.2rem;
		width: 10rem;
		text-align: end;
	}
	dl.flex > dd {
		float: left;
		width: 75%;
	}
	
}

/* Media */
img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}
video {
	width: 100%;
}

::selection {
    background: #0974e8;
    color: #fff;
}

/* Layout
------------------------------------------------------------ */
.content-inner{
    padding: 5rem 0 0;
}
@media (min-width: 768px) {
	.content-inner{
		padding: 9.6rem 0 0;
	}
}

section {
	width: 100%;
	margin: 12.8rem auto;
	padding: 0 2.4rem;
	box-sizing: border-box;
}

section:last-child {
    margin-bottom: 20rem;
}

.section-bg {
    background-color: #F1F8FE;
    padding: 6.4rem 0;
}

.section-first {
	margin-top: 6.4rem;
}
section.tab-section {
	padding: 0;
}

.section-top {
	margin: 5.6rem auto;
	max-width: 136rem;
	padding: 0 2.4rem;
	display: flex;
}
@media (min-width: 768px) {
	section {
		margin: 20rem auto;
		padding: 0 8rem;
	}
	section.tab-section {
		padding: 0 8rem;
	}
	.section-bg {
		background-color: #F1F8FE;
		padding: 8rem 4rem;
		width: calc(100% - 8rem);
	}
	.section-first {
		margin-top: 8rem;
	}
	.section-top {
		padding: 0 8rem;
	}	
}
@media (min-width: 1440px){
	.section-top {
		padding: 0 4rem;
	}	
}

section.full {
	padding: 0;
}


/* Content
------------------------------------------------------------ */

/* Button */
.button-container {
	width: 100%;
	cursor: pointer;
	margin-bottom: 1.6rem;
}
.button-container:first-child {
	margin-bottom: 1.6rem;
}
.button-container.side-padding {
	padding: 0 2.4rem;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.button-container {
		width: 24rem;	
	}
	.button-container.side-padding {
		padding: 0;
	}
	.button-container:first-child {
		margin-bottom: 0;
	}
}
.button-container-sm {
	width: 12.4rem;
	cursor: pointer;
}
.button-base {
	display: block;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	border-radius: 0.3rem;
	padding: 1.4rem 0;
	transition: .3s;  
	border: 1px solid #0974E8;
}
.button-sm {
	padding: 0.8rem 0;
}
@media (max-width: 780px) {
	.button-sm {
		padding: 0.6rem 1.2rem;		
	}
	.button-base {
		font-size: 1.2rem;
	}
	.button-container-sm {
		width: initial;
	}
}
.button-container.center {
	margin: auto;
}
.primary {
	background-color: #0974E8;
	color: #ffffff;
}
.primary:hover {
	background-color: #075BB7;
}
.outlined {
	background-color: #ffffff;
	color: #0974E8;
}
.outlined:hover {
	border: 1px solid #075BB7;
	color: #075BB7;
}
.white {
	border: 1px solid #ffffff;
	color: #ffffff;
}
.white:hover {
	border: 1px solid #EAEBEC;
	color: #EAEBEC;
}
.button-ul {
	display: flex;
	flex-direction: column-reverse;
	/* gap: 1.6rem; */
}
.more_btn {
	padding: 2.4rem 2.4rem 0;
    box-sizing: border-box;
}
@media (min-width: 768px) {
	.button-ul {
		flex-direction: initial;
		gap: 2.4rem;
	}
	.more_btn {
		padding-top: 4.8rem;
		box-sizing: unset;
	}
}

/* text */
.text-margin-sm {
	margin-top: 1.6rem;
}
.text-margin-md {
	margin: 2.4rem 0 3.2rem;
}
.body1 {
	font-size: 1.6rem;
}
.body2 {
	font-size: 1.4rem;
}
.body3 {
	font-size: 1.2rem;
}
.label3 {
	font-size: 1.2rem;
	line-height: 1.5rem;
}
.label4 {
	font-size: 1rem;
}
.gray-darken10 {
	color:#72777E; 
}
.gray {
	color:#8C9197; 
}

/* bold number */
.point_num {
	font-family: 'Open Sans';
	font-size: 5.6rem;
	font-weight: bold;
	line-height: 1.3;
	display: block;
}
@media (min-width: 768px) {
	.point_num {
		font-size: 11rem;
	}
}

/* heading */
.heading-center {
	text-align: center;
	margin-bottom: 3.2rem;
}
@media (min-width: 768px) {
	.heading-center {
		text-align: center;
		margin-bottom: 8rem;
	}
}

/* content */
.outlined-content {
	width: 100%;
    border: 2.4rem solid #F1F8FE;;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.outlined-content {
		border: 4rem solid #F1F8FE;;
	}
}

/* Card */
.card-list-container {
	gap: 1.6rem;
	display: grid;
	max-width: 118.8rem;
}
.tab-contents > .card-list-container {
	padding: 3.2rem 2.4rem 0;
	box-sizing: border-box;
}
.card-container {
	width: 100%;
	background-color: #ffffff;
	border-radius: 0 0 6px 6px;
}
.card-container > a {
	display: flex;
    flex-direction: column;
    height: 100%;
}
.card-image {
	width: 100%;
	border-radius: 6px 6px 0 0;
}
.card-description {
	padding: 2.4rem;
	word-break: break-all;
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-description > div {
	display: grid;
	gap: 1.6rem;
	margin-bottom: 1.6rem;
}
.card-tags{
	display: flex;
	gap: 0.8rem;
}
.tag {
	font-size: 1.2rem;
	line-height: 1.5;
	color: #4E5156;
	padding: 0.4rem 0.6rem;
	border-radius: 3px;
	background-color: #EAEBEC;
}
.card-event-date {
	margin-top: -0.8rem;
}
.horizontal-card-event-date {
	margin-top: 0.8rem;
}
.card-shadow {
	transition: filter .2s ease-in;
	filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.1));
}
.card-shadow:hover {
	filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.2));
}
.card-title {
	font-size: 1.6rem;
}
@media (min-width: 768px) {
	.card-list-container {
		gap: 2.4rem;
		grid-template-columns: 1fr 1fr 1fr;
	}
	.tab-contents > .card-list-container {
		padding: 8rem 4rem 0;
		box-sizing: border-box;
	}
	.card-container {
		max-width: 38rem;
	}
	.card-description {
		padding: 3.2rem;
	}
}

/* horizontal card */
.horizontal-card-container {
	background: #FFFFFF;
	border-radius: 0.6rem;
	display: flex;
	max-width: 62.8rem;
}
.horizontal-card-container > a {
	padding: 0.8rem 1.6rem 0.8rem 0.8rem;
	box-sizing: border-box;
	display: flex;
	align-items: center
}
.horizontal-card-container > a > img {
	border-radius: 0.6rem;
	max-width: 24rem;
}
.horizontal-card-description {
	padding-left: 1.6rem;
	display: flex;
    flex-direction: column;
    justify-content: center;
	word-break: break-all;
}
.horizontal-card-description > ul {
	margin-top: 1.6rem;
}
@media (min-width: 768px) {
	.horizontal-card-container {
		min-width: 55rem;
	}
}

/* pc / mobile */
.screen-pc {
	display: none;
}
@media (min-width: 768px) { 
	.screen-mobile {
		display: none !important;
	}
	.screen-pc {
		display: flex;
	}
}
.text-center {
	text-align: center;
}

/* Loading */
.loading-circle-container {
	display: flex;
    transform: scale(1, 1);
    justify-content: center;
	margin-top: 4.8rem;
}
.loading-circle {
	width: 14px;
	height: 14px;
	background-color: #FFCA3A;
	border: none;
	border-radius: 14px;
	animation-fill-mode: both;
	animation: loader 1.8s infinite ease-in-out;
}
.loading-circle.center {
  margin-left: 0.825rem;
  animation-delay: 0.16s;
}
.loading-circle.right {
  margin-left: 0.825rem;
  animation-delay: 0.32s;
}
@keyframes loader{
	0%,
	80%,
	100% { transform: scale(0); }
	40% { transform: scale(1); }
}

/*	Header
------------------------------------------------------------ */
.site-header {
	position: absolute;
    left: 0;
    right: 0;
    z-index: 100;
    box-sizing: border-box;
    background-color: #ffffff;
    width: calc(100% - 3.2rem);
    max-width: 140.8rem;
    border-radius: 0.6rem;
    margin: auto;
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.site-header--unpinned {
	-webkit-transform: translateY(-150%);
	transform: translateY(-150%);
}
.site-header.about {
	background-color: transparent;
	transition: all .2s ease-in;
}
.site-header.about:hover {
	background-color: #ffffff;
}
.header-logo.before {
	display: block;
}
.header-logo.before.is-scrolled-logo {
	display: none;
}
.header-logo.after {
	display: none;
}
.header-logo.after.is-scrolled-logo {
	display: block;
}
.is-scrolled {
    padding: 0;
    position: fixed;
    top: 1.4rem;
    left: 0;
	right: 0;
	width: calc(100% - 3.2rem);
	max-width: 140.8rem;
	margin: auto;
	border-radius: 0.6rem;
	background-color: #ffffff;
	filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.2));
}
.global-navigation {
	max-width: 144rem;
	margin: auto;
	padding: 2rem 0 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}
.global-navigation > ul {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.5;
	gap: 4rem;
}
.global-navigation > ul > li > ul {
	display: flex;
	gap: 0.8rem;
}
.header-logo {
	width: 16rem;
	height: 100%;
}
@media (min-width: 768px) {
	.site-header {
		position: fixed;
	}
	.site-header.contact {
		position: absolute;
	}
	.global-navigation {
		padding: 1.6rem 2.4rem;
	}
	.site-header {
		top: 1.4rem;
	}
}
@media (max-width: 780px) {
	.header-logo {
		width: 12rem;
	}
	.global-navigation > ul:first-child > li:not(:first-child) {
		display: none;
	}
}
@media  (max-width: 980px){
	.global-navigation > ul {
		gap: 2rem;
	}
} 
.header-link {
	position: relative;
  	display: inline-block;
  	text-decoration: none;
}
.header-link.about {
	color: #ffffff;
}
.header-link::after {
	position: absolute;
	bottom: -0.4rem;
	left: 0;
	content: '';
	width: 100%;
	height: 0.2rem;
	border-radius: 0.6rem;
	background: #0974E8;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
.header-link:hover::after {
  	transform: scale(1, 1);
}
nav li a.current::after {
	transform: scale(1, 1);
}
.button-sm.about {
	background-color: transparent;
    color: #ffffff;
	border: 1px solid #ffffff;
}
@media (max-width: 1130px){
	.button-container-sm.request{
		display: none;
	}
}
@media (max-width: 1200px){
	.header-link.login{
		display: none;
	}
}
.mask {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #252729;;
	padding: 0px;
	top: 0px;
	left: 0px;
	opacity: 0.2;
	z-index: 10;
}
.global-nav-menu-item {
	padding: 3.2rem 0;
	display: none;
	border-radius: 0 0 0.6rem 0.6rem;
	height: 15.7rem;
}
.global-nav-menu-item > ul {
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 15.6rem;
	margin: auto;
	height: 100%;
	transition: all 1s ease-in;
}
.global-nav-menu-item > ul > li > a {
	display: flex;
	align-items: center;
	gap: 3.2rem
}
.global-nav-menu-item > ul > li > a > img {
	width: 12rem;
}
@keyframes show{
    from{
        opacity: 0;
		transform: translateY(20px);
    }
    to{
        opacity: 1;
		transform: translateY(0px);
    }
}
.global-nav-menu-item > ul.is-show {
	display: flex;
	animation: show 0.5s forwards;
}
.menu-icon {
	padding: 0.6rem;
	border-radius: 50%;
	box-sizing: border-box;
	width: 4rem;
	height: 4rem;
	margin: -0.6rem 0 -0.6rem 1.6rem;
	transition: all .2s ease-in;
	background-color: #fff;
}	
.menu-icon:hover {
	background-color: #0974E8;
}
.menu-icon:hover .menu-icon-svg {
	fill: #ffffff;
}
.menu-icon-svg {
	fill: #8C9197;
	transition: all .2s ease-in;
}
.global-nav-menu-item-mobile {
	position: fixed;
	top  : 0;
	left : 0;
	color: #fff;
	background: #252729;
	width: 100%;
	height: 100vh;
	z-index: 100;
	box-sizing: border-box;
	overflow-y: scroll;
	display: none;
	padding-bottom: 16rem;
}
.global-nav-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding: 1.4rem 2.4rem 1.5rem 2.4rem;
}
.header-menu-left-items-mobile {
	display: flex;
	gap: 1.8rem;
}
.header-menu-left-items-mobile > li.screen-mobile {
	display: flex;
	align-items: center;
}
.menu-items-mobile {
	margin: 4.8rem 0 4rem;
	display: grid;
    gap: 3.2rem;
    padding: 0 2.4rem;
    box-sizing: border-box;
}
.menu-items-mobile a[href]{
	color: #ffffff;
}
.menu-item-last-mobile {
	margin-bottom: 3.2rem;
}

/*	Footer
------------------------------------------------------------ */
footer {
    overflow-x: hidden;
    padding: 0 2.4rem 12rem;
}

footer > nav {
	max-width: 131rem;
    margin: auto;
}
.footer-items {
	display: grid;
	margin: 6.4rem 0 3.2rem;
	gap: 3.2rem;
}
.parent {
	font-size: 1.4rem;
	font-weight: 600;
}
.footer-link:hover {
	color: #0974E8;
	transition: color .15s ease-in;
}
.parent-column {
	margin-bottom: 4rem;
}
.footer-divider {
	width: 100%;
	height: 0.1rem;
	background-color: #DCDEE0;
	margin-bottom: 3.2rem;
}
.footer-bottom-items {
	gap: 4rem;
	margin-bottom: 4rem;
}
@media (min-width: 768px) {
	footer {
		margin: 0 6.4rem 12rem;
		padding: 0;
		overflow-x: initial;
	}
	.footer-items {
		grid-template-columns: 230px repeat(auto-fill, minmax(116px, 1fr));
		gap: 8rem;
		margin: 6.4rem 0;
	}
	.footer-divider {
		margin-bottom: 6.4rem;
	}
	.footer-bottom-items {
		display: flex;
	}
}
.breadcrumb {
	font-size: 1.2rem;
	line-height: 2;
	margin: 0 0 12.8rem 0;
	overflow: auto;
	white-space: pre;
	width: calc(100% + 2.4rem);
	color: #8C9197;
	padding-right: 2.4rem;
}
.breadcrumb > img {
	margin: 0.3rem 0.8rem 0.6rem;
}
.breadcrumb > a {
	color: #8C9197;
}
.breadcrumb-tax-margin {
    margin: 4rem 0 -12.8rem;
}
.breadcrumb a:last-child {
	pointer-events: none;
}

@media (min-width: 768px) {
	.breadcrumb {
		margin: 0 0 4rem 0;
		white-space: initial;
        width: 100%;
	}
	.breadcrumb > a:hover {
		text-decoration: underline;
	}
}

/*	SNS
------------------------------------------------------------ */
.share {
	display: flex;
    justify-content: center;
    align-items: center;
	margin: 6.4rem 0rem;
	gap: 1.6rem;
}
.facebook {
	border-radius: 0.3rem;
}
.share img{
	transition: filter .2s ease-in;
}
@media (min-width: 786px) {
	.share img:hover {
		filter: brightness(90%);
	}
}

/* Article
------------------------------------------------------------ */
article {
	padding: 0 2.4rem;
	margin: 6.4rem auto 0;
	/* max-width: 104.2rem; */
	box-sizing: border-box;
}
article > header {
	position: relative;
	margin-bottom: 6.4rem;
	left: -24px;
    width: calc(100% + 48px);
}
.article-title-container {
	background-color: #ffffff;
	padding: 2.4rem 2.4rem 0;
}
.article-title {
	color: #252729;
	margin: 0 0 1.6rem;
	font-size: 2.4rem;
}
.article-title-container > span {
	font-size: 1.2rem;
}
.title_bottom {
	margin: 3.2rem 0 2.4rem;
}
.article-content-container {
	margin: 6.4rem auto;
	max-width: 64rem;
}
article h1, article h2 {
	font-size: 2.4rem;
	color: #252729;
	margin: 6.4rem 0 3.2rem;
}
article h3 {
	font-size: 2rem;
	color: #252729;
	margin: 6.4rem 0 3.2rem;
}
article h4 {
	font-size: 1.8rem;
	color: #252729;
	margin: 6.4rem 0 3.2rem;
}
article p {
	margin-bottom: 3.2rem;
}
article a {
	color: #0974E8;
}
.article-content-container ul {
	list-style: disc;
	margin: 0 0 3.2rem 1.4rem;
	padding-left: 1.4rem;
}
.article-content-container ol {
	list-style: auto;
	margin: 0 0 3.2rem 1.4rem;
	padding-left: 1.4rem;
}
.article-content-container img {
	border-radius: 0.6rem !important;
}
#heading {
	font-weight: 600;
	font-size: 1.8rem;
	color: #0974E8;
	position: relative;
	bottom: -5.6rem;
}

.date-and-tag {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 1.6rem 0 6.4rem
}
.date-and-tag > time {
	font-size: 1.2rem;
}
article > .button-ul {
	margin-top: 6.4rem;
	justify-content: center;
}
#annotation {
	font-size: 1.2rem;
	color: #8C9197;
}
.wp-caption {
	max-width: 64rem;
    width: 100% !important;
}
.wp-caption img  {
    width: 100% !important;
}
.wp-caption-text {
	max-width: 64rem;
    width: 100%;
	font-size: 1.2rem;
	margin-top: 0.8rem;
}
@media (min-width: 768px) {
	article {
		padding: 0 4rem;
		margin: 1rem auto 0;
	}
	article > header {
		position: relative;
		margin-bottom: 15.4rem;
		left: 0;
		width: 100%;
	}
	.date-and-tag {
		margin: 3.2rem 0 6.4rem
	}
	#cases_theme {
		font-size: 2.4rem;
	}
	.article-title {
		font-size: 3.2rem;
	}
	.article-title-container {
		padding: 2.4rem;
		width: 80%;
		position: absolute;
	}
	.article-title-container > span {
		font-size: 1.6rem;
	}

	.client-detail-box {
		display: flex;
		gap: 0.8rem;
	}
	.date-and-tag > time {
		font-size: 1.4rem;;
	}
	article a:hover {
		text-decoration: underline;
	}
}


/*	TT Journal
------------------------------------------------------------ */
/* TT Journal header & footer */
.m-site-header {
	position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #252729;
    margin: auto;
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.m-site-header--unpinned {
	-webkit-transform: translateY(-150%);
	transform: translateY(-150%);
}
.m-global-navigation {
	padding: 1.6rem 2.4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}
.m-global-navigation > ul {
	line-height: 1.3;
	display: flex;
    align-items: center;
}
.m-header-link {
	color: #ffffff;
	font-size: 1.4rem;
	transition: color .2s ease-in;
	font-weight: 600;
}
.m-footer-logo {
	display: flex;
	gap: 1.6rem;
	align-items: center;
}
.m-footer-logo > img {
	width: 6.4rem;
}

.m-header-logo > span {
	transition: all 0.3s ease;
}
.m-header-logo > img {
	transition: all 0.3s ease;
	width: 4.4rem;
}
.m-header-menu-logo {
	width: 4.4rem;
}
@media (min-width: 768px) {
	.m-site-header {
		position: fixed;
	}
	.m-header-logo > img {
		width: 12rem;
		position: absolute;
		top: 2.4rem;
		margin-right: 14.4rem;
	}
	.m-header-logo  > img.is-small {
		width: 6.4rem;
		top: 1.6rem;
	}
	.m-header-logo > span {
		color: #ffffff;
		margin-left: 14.4rem;
	}
	.m-header-logo > span.is-small {
		margin-left: 8rem;
	}
	.m-footer-logo {
		display: flex;
		gap: 2.4rem;
		align-items: center;
	}
	.m-footer-logo > img {
		width: 12rem;
	}
	.m-footer-logo > span {
		font-size: 1.2rem;
	}
	.m-global-navigation {
		padding: 2.2rem 4rem;
	}
}
.m-header-category{
	display: none;
}
.m-header-categories {
	display: flex;
	gap: 2.4rem;
}
.m-menu-icon {
	display: flex;
	cursor: pointer;
}
@media (min-width: 1024px) {
	.m-global-navigation {
		padding: 0 4rem;
	}
	.m-header-categories {
		gap: 4rem;
		height: 8rem;
	}
	.m-header-category{
		display: flex;
		padding: 3rem 0;
	}
	.m-header-category:hover a.m-header-link {
		color: #FFCA3A;
	}
	.m-header-categories li {
		position: relative;
		cursor: pointer;
	}
	.m-header-link {
		display: block;
		height: 100%;
	}
	.m-header-menu {
		position: absolute;
		display: none;
		width: 18.4rem;
		background-color: #252729;
		padding: 0 0 0.8rem;
		top: 7.8rem;
		left: -1.6rem;
	}
	.m-header-menu li a {
		display: block;
		color: #fff;
		text-decoration: none;
		padding: 0.8rem 1.6rem;
		box-sizing: border-box;
		font-size: 1.4rem;;
	}
	.m-header-menu li a:hover {
		background: #3D4044;
	}
	.m-menu-icon-display {
		display: none;
	}
}

/* 検索アイコン */
.search-container{
	vertical-align: middle;
	white-space: nowrap;
	position: relative;
	height: 3.2rem;
	margin: 0;
}
.search-container input#search{
	width: 3.2rem;
	height: 3.2rem;
	background: #252729;
	border: none;
	font-size: 1.6rem;
	padding: 0 0 0 3.6rem;
	color: #fff;
	-webkit-border-radius: 0.3rem;
	-moz-border-radius: 0.3rem;
	border-radius: 0.3rem;
	margin: 0;
	-webkit-appearance: none;
	-webkit-transition: width .55s ease;
	-moz-transition: width .55s ease;
	-ms-transition: width .55s ease;
	-o-transition: width .55s ease;
	transition: width .55s ease;
}
input#search::-webkit-search-cancel-button {
	-webkit-appearance: none;
 }
.search-container input#search::-webkit-input-placeholder {
	color: #fff;
}
.search-container input#search:-moz-placeholder { /* Firefox 18- */
	color: #fff;  
}
.search-container input#search::-moz-placeholder {  /* Firefox 19+ */
	color: #fff;  
}
.search-container input#search:-ms-input-placeholder {  
	color: #fff;  
}
input#search:-webkit-autofill {
    box-shadow: 0 0 0 1000px #252729 inset;
	-webkit-text-fill-color: #fff !important;
}
.search-container .icon{
	position: absolute;
	margin-left: 0.8rem;
	margin-top: 0.6rem;
	z-index: 1;
}
.search-container input#search:focus, .search-container input#search:active{
	width: 21.4rem;
	border: 1px solid #fff;
    outline: none;
}
.search-container:hover input#search{
	width: 21.4rem;
	border: 1px solid #fff;
}
@media (min-width: 768px) {
	.search-container input#search{
		width: 3.6rem;
		height: 3.6rem;
		font-size: 1.4rem;
	}
	.search-container{
		height: 3.6rem;
	}
	.search-container .icon{
		margin-top: 1rem;
	}
	.search-container input#search:focus, .search-container input#search:active{
		width: 30rem;
		border: 1px solid #fff;
	}
	.search-container:hover input#search{
		width: 30rem;
		border: 1px solid #fff;
	}
}
.no-result {
    word-break: keep-all;
}
@media (min-width: 1024px) {
	.no-result {
		grid-column: 2/3;
	}
}

.m-about {
	margin-top: 0;
}

.m-content-inner {
	width: 100%;
    padding: 6.5rem 0 0;
	margin-bottom: 12.8rem;
}
section.media {
	margin: 0 auto;
    padding: 0 2.4rem;
	overflow-x: hidden;
}
section.media.top {
	margin: 0 auto;
    padding: 0 2.4rem;
	overflow-x: hidden;
}
.m-category-header {
	margin-bottom: 4rem;
	font-size: 2rem;
	color: #252729;
}
.m-category-header::after {
	margin-top: 1.6rem;
	content: '';
	width: 100%;
	height: 0.1rem;
	display: inline-block;
	background-color: #DCDEE0;
}
.m-overall-container {
	margin: 11.3rem auto 0;
}
@media (min-width: 768px) {
	.m-overall-container {
		width: 100%;
		display: flex;
		margin: 56rem auto 0;
		justify-content: center;
	}
	section.media {
		max-width: 97.4rem;
		padding: 0;
		overflow-x: initial;
		margin: 0;
	}
	.m-content-inner {
		margin-bottom: 16rem;
	}
}
@media (min-width: 1024px) {
	.m-content-inner {
		padding: 8rem 0 0;
	}
}

/* TT Journal home */
.m-category-cards-container {
	display: grid;
	gap: 4rem;
	margin-bottom: 4rem;
}
.m-contents-container.top {
	margin-bottom: 12.8rem;
	display: grid;
	gap: 12.8rem;
}
@media (min-width: 768px) {
	.m-contents-container {
		padding: 0 3.8rem 0 6.4rem;
	}
	.m-contents-container.top {
		margin-bottom: 0;
	}
	.m-category-cards-container {
		grid-template-columns: 1fr 1fr;
	}
}
@media (min-width: 1024px) {
	.m-category-cards-container {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

/* TT Journal card */
.m-card-container {
	width: 100%;
	overflow: hidden;
}
.m-card-container h6 {
	font-size: 1.8rem;
	color: #252729;
	padding: 2.4rem 0 1.2rem;
}
.m-card-container h6, time {
	transition: color .3s ease-in;
    display: block;
}
.m-card-container:hover h6 {
	color: #0974E8;
}
.m-card-container:hover time {
	color: #0974E8;
}
.img_container{
	position: relative;
	cursor: pointer;
}
.img_container::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	transition: background-color 0.3s ease-in;
}
.m-card-container:hover .img_container::before {
	background-color: rgba(0, 0, 0, 0.2);
}
@media (min-width: 1024px) {
	.m-card-container {
		max-width: 29.8rem;
	}
}

/* TT Journal article */
article.media {
	margin: 0 auto;
/* 	overflow-x: hidden; */
}
.m-article-hero {
	height: 48rem;
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	position: absolute;
	width: 100%;
}
.m-article-hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(37, 39, 41, 0.5);
}
.m-article-title-container-adjust {
	z-index: 10; 
}
.m-article-title-container {
	margin-bottom: 2.4rem;
	padding: 0 2.4rem;
	z-index: 10; 
}
.m-article-title {
	color: #ffffff;
	margin-bottom: 1.6rem;
	font-size: 2.4rem;
}
.m-article-title-container > span {
	color: #ffffff;
	display: grid;
	gap: 0.4rem;
}
.article-content-container.media {
	margin-top: 9.6rem;
}
.m-tags {
	margin-bottom: 3.2rem;
	display: flex;
	gap: 0.8rem;
}
.m-tag-link {
	color: #4E5156;
    transition: color .3s ease-in;
}
.m-tag-link:hover {
	color: #0974E8;
}
.media-hero {
	position: relative;
	top: 6.4rem;
	display: flex;
    justify-content: center;
	align-items: end;
	height: 32rem;
    align-items: flex-end; 
}
.m-overall-container.cat {
	margin-top: 4.8rem;
}

@media (min-width: 768px) {
	.media-hero {
		position: absolute;
		top: 8rem;
		height: 48rem;
		width: 100%;
	}
	.m-article-title-container {
		max-width: 64rem;
		margin-bottom: 4.8rem;
		padding: 0;
	}
	.m-article-title-container > span {
		display: flex;
		gap: 1.6rem;
	}
	.m-article-title {
		font-size: 3.2rem;
	}
	.article-content-container.media {
		margin-top: 56rem;
	}
	article.media {
		padding: 0;
	}
	.m-overall-container.cat {
		margin-top: 8rem;
	}
	.m-article-title-container-adjust {
		width: 100%;
		max-width: 104.2rem;
        margin-left: 6.4rem;
	}
}
@media (min-width: 1024px) {
	.m-contents-container.article{
		width: 100%;
		flex-shrink: 0;
		max-width: 64rem;
		box-sizing: content-box;
	}
    .m-article-title-container-adjust {
        width: 87.6rem;
        display: flex;
        justify-content: flex-end;
        margin: 0 50rem 0 0;
        padding-left: 6.4rem;
	}
}


.m-article-container {
    margin: 11.3rem auto 0;
}
.m-article-container ul:not(.m-tags) {
	list-style: disc;
	padding: 0 0 3.2rem 2.4rem;
}
.m-article-container ol {
	list-style: auto;
	padding: 0 0 3.2rem 2.4rem;
}
.m-article-container.about {
	margin-top: 6.4rem;
}
.m-article-left {
    width: 100%;
}
.m-article-content > p > a {
	word-wrap:break-word;
}
.sidebar-in-article {
    margin: 0 -2.4rem;
}
.m-share {
    width: 100%;
    margin: 0 auto 1.6rem;
    display: inline-block;
}
@media (min-width: 768px) {
	.m-article-container {
        display: flex;
        justify-content: center;
		margin: 56rem auto 0;
	}
    .m-article-left {
        width: 87.6rem;
        display: flex;
        justify-content: flex-end;
        margin-right: 3.8rem;
        padding-left: 6.4rem;
    }
    .m-article-container.about {
        margin-top: 8rem;
    }
    .m-article-content {
        max-width: 64rem;
    }
    .sidebar-in-article {
        margin: 0;
	display: flex; 
    }
}
@media (min-width: 1024px) {
    .m-article-left {
        margin-right: 13.6rem;
    }
}

/* TT Journal sidebar */
#sidebar {
	display: grid;
	gap: 12.8rem;
	padding: 0 2.4rem;
	box-sizing: border-box;
}
.widget.popular-posts > h2 {
	font-size: 2rem;
	color: #252729;
	margin-bottom: 4rem;
    margin-top: 0;
}
.widget.popular-posts > h2::after{
	margin-top: 1.6rem;
	content: '';
	width: 100%;
	height: 0.1rem;
	display: inline-block;
	background-color: #DCDEE0;
}
.wpp-list > li {
	display: flex;
	flex-direction: row-reverse;
    gap: 1.6rem;
	margin-bottom: 2.4rem;
}
.wpp-list a {
	transition: all .3s ease-in;
}
.wpp-post-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #252729;
    line-height: 1.5;
}
.wpp-list > li:hover > a {
	color: #0974E8;
}
.wpp-thumbnail {
    max-width: 20rem;
	width: 10.2rem;
    margin: 0;
}
@media (min-width: 768px) {
	#sidebar {
		width: 30rem;
		gap: 8rem;
		padding: 0;
		display: flex;
		flex-direction: column;
		margin-right: 6.4rem;
		box-sizing: border-box;
		flex-shrink: 0;
	}
	.wpp-thumbnail {
		width: 10.2rem;
	}
}

/* 上部にスクロールボタン */
#page-top{
    position: fixed;
    bottom: 2.4rem;
    right: 2.4rem;
	display: none;
}
#page-top a {
	border-radius: 50%;
    background: #FFCA3A;
    width: 5.6rem;
    height: 5.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all .2s ease-in;
}
#page-top a:hover {
	background: #0974E8;
}
@media (min-width: 768px) {
	#page-top {
		display: block;
	}
}

/*  TT Journal banner */
.banner-container {
	display: grid;
	gap: 2.4rem;
	padding: 2.4rem;
	margin: 4rem 0;
}
.banner-container.cat {
	padding: 0;
}
@media (min-width: 768px) {
	.banner-container {
		padding: 0;
	}
}
@media (min-width: 1024px) {
	.banner-container {
		display: flex;
		gap: 4rem;
	}
	.banner-img {
		height: 20rem;
		object-fit: cover;
	}
}

/* TT Journal subcategory list */
.m-subcategory-list {
	display: flex;
	gap: 2.4rem;
	margin-bottom: 4rem;
}
.m-subcategory-list > li > a {
	font-size: 1.4rem;
	font-weight: 600;
	transition: all .3s ease-in;
}
.m-subcategory-list > li > a:hover {
	color: #0974E8;
}

/* 関連記事 */
.yarpp-thumbnails-horizontal {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	margin-bottom: 12.8rem;
}
.yarpp-thumbnail, .yarpp-thumbnail-default {
	height: auto !important;
	width: 100% !important;
	margin: 0 !important;
	border: none !important;
}
.yarpp-thumbnail > img, .yarpp-thumbnail-default > img {
	height: auto !important;
	width: 100% !important;
	margin: 0 !important;
	min-height: unset !important;
	min-width: unset !important;
}
.yarpp-related .yarpp-thumbnail-title {
	font-size: 1.8rem !important;
	margin: 2.4rem 0 0 0 !important;
	color: #252729;
	width: 100% !important;
	overflow: unset !important;
	max-height: unset !important;
	transition: color .2s ease-in;
}
.yarpp-thumbnail:hover .yarpp-thumbnail-title {
	color: #0974E8;
	text-decoration: none !important;
}
@media (min-width: 768px){
	.yarpp-thumbnails-horizontal {
		grid-template-columns: 1fr 1fr;
	}
	.yarpp-thumbnail, .yarpp-thumbnail-default {
		max-width: 29.8rem;
	}
	.yarpp-thumbnail > img, .yarpp-thumbnail-default > img {
		max-width: 29.8rem;
	}
}

/* 目次 */
.mediap_contents{
	display: flex;
    flex-direction: column;
    padding: 35px 40px;
    background: #f2f2f5;
	border: 1px solid #707070;
	border-radius: 5px;
}
.mediap_contents .listnametxt{
	font-size: 20px;
	font-weight: bold;
	font-style: normal;
	color: #000000;
}
.mediap_contents .listnametxt .listnametxt_btn{
	background-color: transparent;
	border: none;
	font-size: 16px;
	font-weight: normal;
	font-family: Noto Sans JP;
	letter-spacing: 0px;
	color: #0974E8;
}

.mediap_contents ul{
	padding-bottom: 0px !important;
    list-style: none !important;
}
.mediap_contents ul li{
	font-size: 16px;
	font-weight: 500;
	line-height: 40px;
}
.mediap_contents ul li::marker {
	font-size: 14px;
}
.mediap_contents ul li > a > span{
	font-size: 18px;
	letter-spacing: 0px;
	color: #333333;
}


@media screen and (max-width: 780px){
	.mediap_contents {
		padding: 25px 25px;
	}
	.mediap_contents ul:not(.m-tags) {
		padding: 0 0 2.4rem 1.8rem;
	}
}

/* 目次 style end */

/* h2,h3,h4 style */
.m-article-content h2{
	background: #0974E8 0% 0% no-repeat padding-box;
	align-items: center;
	text-align: left;
	font-size: 29px;
	font-weight: 700;
	letter-spacing: 0px;
	color: #FFFFFF;
	padding: 10px 20px;
}
.m-article-content h3{
	font-size: 26px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 0;
}
.m-article-content h4{
	font-size: 20px;
	font-weight: 700;
	color: #333333;
	margin: 0;
}
.h3_tag_line_media{
	display: flex;
	width: 100%;
	height: 5px;
	background-color: #E6E6E6;
	margin-bottom: 3.2rem;
}
.h3_tag_line_media .h3_tag_line_media_blu{
	width: 40px;
	height: 5px;
	background-color: #0974E8;
}
.h4_tag_line_media_container{
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 6.4rem 0 3.2rem;
}
.h4_tag_line_media_container .h4_tag_line_media{
    display: flex;
}
.h4_tag_line_media_container .h4_tag_line_media img{
	width: 23px;
	height: 23px;
}
@media screen and (max-width: 780px){
	.m-article-content h3 {
		font-size: 20px;
	}
	.m-article-content h2 {
		font-size: 24px;
	}
	.m-article-content h4{
		font-size: 18px;
	}
}


/* media table custom  */
.m-article-content table{

}
.m-article-content table tr{

}
.m-article-content table tr td{
	border: 1px solid #E6E6E6;
        padding-left: 8px;
	background: #fff;
}
.m-article-content table tr th{
	background-color: #0974E8 !important;
    text-align: center;
}
.m-article-content table tr th > strong{
	color: #FFFFFF;
}
.m-article-content table tr:hover{
	cursor: pointer;
	transition: all .3s ease-in;
	background: rgba(9, 116, 232, 0.1);
}

/* media h3 list */
.toc-for-h3{
	border: 2px dashed #0974E8;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.toc-for-h3 .listnametxt{
	display: flex;
    border-bottom: 1px solid #0974E8;
    gap: 10px;
    padding-bottom: 10px;
	margin-bottom: 10px;
}
.toc-for-h3 .listnametxt .listnametxt_icon{
	display: flex;
    align-items: center;
    align-content: center;
    width: 100%;
    max-width: 33px;
}
.toc-for-h3 .listnametxt .listnametxt_icon img{
	display: block;
    width: 100%;
    height: auto;
}	
.toc-for-h3 .listnametxt span{
	font-size: 20px;
	font-weight: bold;
	color: #0974E8;
}
.toc-for-h3 > ul,
.toc-for-h3 > ul:not(.m-tags){
	    list-style: disc;
    padding: 0 0 0 2.4rem;
}
.toc-for-h3 > ul > li{

}
.toc-for-h3 > ul > li::marker{
	color: #0974E8;
}
.toc-for-h3 > ul > li > a{
	color: #333333;
	font-size: 16px;
	font-weight: 700;
}

/* custom media sidebar widget css 25/2/20 */
.category-title-sidebar-txt{
	padding-bottom: 16px;
	display: flex;
	margin-bottom: 8px;
	border-bottom: 4px solid #0974E8;
}
.category-title-sidebar-txt span{
	color: #0974E8;
	font-feature-settings: 'palt' on;
	font-family: "Noto Sans JP";
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 28px */
	letter-spacing: 0.6px;
}
.m-header-category-list-sidebar{
	list-style: none !important;
    padding: 0 !important;
	margin-bottom: 40px;
}
.m-header-category-list-sidebar .m-header-category-sidebar{
	border-bottom: 1px solid rgba(37, 39, 41, 0.15);
	display: flex;
	flex-direction: column;
	padding-top: 16px;
	padding-bottom: 16px;
}
.m-header-category-list-sidebar .m-header-category-sidebar > a{
	color: #0974E8;
	font-feature-settings: 'palt' on;
	font-family: "Noto Sans JP";
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 22.4px */
	letter-spacing: 0.48px;

	text-decoration: none;
}
.m-header-category-list-sidebar .m-header-category-sidebar .m-header-menu-sidebar{
	display: flex;
	flex-direction: column;
	list-style: none;
	padding: 0;
}
.m-header-category-list-sidebar .m-header-category-sidebar .m-header-menu-sidebar li{
	padding-left: 8px;
}
.m-header-category-list-sidebar .m-header-category-sidebar .m-header-menu-sidebar li a{
	text-decoration: none;
	padding-left: 5px;
	color: #252729;
	text-align: justify;
	font-feature-settings: 'palt' on;
	font-family: "Noto Sans JP";
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 19.6px */
	letter-spacing: 0.42px;
}

#sidebar .side-bar-imgbanner{

}
#sidebar .side-bar-imgbanner:hover{
	transition: all .3s;
	opacity: .6;
	cursor: pointer;
}

/* recommend sidebar custom */
#sidebar div div div h2{
	color: #0974E8;
	font-feature-settings: 'palt' on;
	font-family: "Noto Sans JP";
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 28px */
	letter-spacing: 0.6px;

	padding-bottom: 16px;
    display: flex;
    margin-bottom: 8px;
    border-bottom: 4px solid #0974E8;
	margin: 0;
}
#sidebar .popular-posts .wpp-list{
	padding: 0 0 0 0;
    list-style: none;
    margin-bottom: 48px;
}
#sidebar .popular-posts .wpp-list li{
	flex-direction: row;
	margin-bottom: 0;
	padding-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(37, 39, 41, 0.15);
	position: relative;
}
#sidebar .popular-posts .wpp-list li::before{
	position: absolute;
	left: 6px;
	top: 8px;
	text-align: justify;

	font-family: "Noto Sans JP";
	font-size: 9.9px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 13.86px */
	letter-spacing: 0.297px;
	color: white;  
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%; 
	z-index: 1;
}

#sidebar .popular-posts .wpp-list li:nth-child(1)::before {
	content: "1";  
}
#sidebar .popular-posts .wpp-list li:nth-child(1)::after {
	content: "";  
	position: absolute;
	width: 22px;  
	height: 22px;
	background-image: url('../images/m_cr_itm_one.png');
	background-size: contain;
	background-repeat: no-repeat;
	left: 4px;
    top: 5px;
}
#sidebar .popular-posts .wpp-list li:nth-child(2)::before {
	content: "2";  
}
#sidebar .popular-posts .wpp-list li:nth-child(2)::after {
	content: "";  
	position: absolute;
	width: 22px;  
	height: 22px;
	background-image: url('../images/m_cr_itm_two.png');
	background-size: contain;
	background-repeat: no-repeat;
	left: 4px;
    top: 5px;
}
#sidebar .popular-posts .wpp-list li:nth-child(3)::before {
	content: "3";  
}
#sidebar .popular-posts .wpp-list li:nth-child(3)::after {
	content: "";  
	position: absolute;
	width: 22px;  
	height: 22px;
	background-image: url('../images/m_cr_itm_three.png');
	background-size: contain;
	background-repeat: no-repeat;
	left: 4px;
    top: 5px;
}
#sidebar .popular-posts .wpp-list li:nth-child(4)::before {
	content: "4";  
	border-radius: 9px;
	width: 18px;
	height: 18px;
	background: #9BA0A5;
}
#sidebar .popular-posts .wpp-list li:nth-child(5)::before {
	content: "5";  
	border-radius: 9px;
	width: 18px;
	height: 18px;
	background: #9BA0A5;
}
 
#sidebar .popular-posts .wpp-list li a {
    color: #252729;
	text-align: justify;
	font-feature-settings: 'palt' on;
	font-family: "Noto Sans JP";
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 160%; /* 19.2px */
	letter-spacing: 0.36px;
}

/* sticky image banner  */
#sidebar .st_banner_items{
	position: sticky; 
	top: 90px; 
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#sidebar .st_banner_items a{

}
#sidebar .st_banner_items a:hover{
	transition: all .3s;
	cursor: pointer;
	opacity: .7;
}
@media screen and (max-width: 768px){
	#sidebar {
		gap: 40px;
	}
	#sidebar .st_banner_items a {
		display: flex;
		align-self: anchor-center;
	}
}
