<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*--------------------
メインコンテンツ
--------------------*/
#news #blogHeader {
    margin-bottom: 30px;
}
#news #blogHeader img {
    width: 100%;
}
#news #blogHeader #progDetail {
    background: linear-gradient(-45deg,
    #ffff00 25%,
    #f9f9f9 25%, #f9f9f9 50%,
    #ffff00 50%, #ffff00 75%,
    #f9f9f9 75%, #f9f9f9);
    background-size: 15px 15px;
    background-attachment: fixed;
    padding: 10px;
	color: #666666;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-direction: column;
}
#news #blogHeader #progDetail a.btn {
    max-width: 500px;
    margin-top: 5px;
}
#news &gt; .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#news &gt; .container:last-of-type {
    padding-bottom: 50px;
}
#news .column01 {
    width: 72%;
    max-width: 900px;
    margin-bottom: 40px;
}
#news .column02 {
	width: 27%;
	min-width: 300px;
	margin-left: 25px;
	position: sticky;
	top: 15px;
}
#news .column02 &gt; section {
	margin-bottom: 25px;
}

/*------ ボタン ------*/

#news .btn {
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
    display: table;
    box-sizing: border-box;
    color: #66666;
    border: solid 2px #ffff00;
    background: rgba(255, 255, 255, 0.4);
    text-align: center;
    text-decoration: none;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-shadow: none;
}
#news .btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    background: #ffff00;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#news .btn.prev:before {
    right: 0;
	left: auto;
}
#news .btn:hover:before,
#news .btn:active:before {
    width: 100%;
}
#news .btn span {
    position: relative;
    display: block;
    padding: 12px;
}
#news .btn:hover {
    color: #000;
}

/*--------------------
メインコンテンツ：記事レイアウト
--------------------*/

article {
    position: relative;
    padding-bottom: 40px;
}
article .entryHeader{
    margin-bottom: 30px;
    padding: 15px 10px;
    position: relative;
	margin: 3em auto 1.5em auto;
}
article:after,
article .entryHeader:after {
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background: linear-gradient(to left, #ffff00 25%,transparent 25%) repeat-x;
    background-size: 10px 100%;
    position: absolute;
}
article .entryHeader:before {
    top: 0;
}
article:after,
article .entryHeader:after {
    bottom: 0;
}
article .entryHeader h1.entryTtl {
	font-size: 26px;
	color: #666666;
	font-weight: bold;
}
article .entryHeader .entryMeta {
	font-size: 13px;
	color: #888;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
article .entryHeader .entryMeta &gt; div {
    margin-right: 15px;
    margin-top: 5px;
}
article .entryHeader .entryMeta &gt; div:last-of-type {
    margin-right: 0;
}
article .entryHeader .entryMeta &gt; div &gt; svg {
	margin-right: .3em;
}

/*--- タグ ---*/

article .entryHeader .tag{
    padding-left: 1.3em;
    text-indent: -1.3em;
}
article .entryHeader .tag &gt; *{
	display: inline;
}
article .entryHeader .tag li{
	display: inline-block;
	text-indent: initial;
}
article .entryHeader .tag li:after{
	content:" , ";
}
article .entryHeader .tag li:last-of-type:after{
	content: "";
}
article .entryHeader .tag a {
	color: inherit;
	transition:.3s;
}
article .entryHeader .tag a:hover {
	opacity: .8;
}

/*--- シェアボタン ---*/

article .entryHeader .share {
    display: flex;
    align-items: center;
}
article .entryHeader .share .shareTtl {
	margin-right: 0.5em;
}
article .entryHeader .share .shareTtl svg {
	margin-right: 0.3em;
}
article .entryHeader .share ul {
    display: flex;
    justify-content: center;
}
article .entryHeader .share li {
    margin-right: 5px;
}
article .entryHeader .share li:last-of-type {
    margin-right: 0;
}
article .entryHeader .share a {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    font-size: 18px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    transition: all 300ms ease-out;
}
article .entryHeader .share svg {
    transition: all 300ms ease-out;
}
article .entryHeader .share a:hover {
	opacity: .9;
}
article .entryHeader .share a:hover svg {
	transform:scale(1.1);
}
article .entryHeader .share a.facebook {
    background: #1877f2;
}
article .entryHeader .share a.twitter {
    background: #1DA1F2;
}
article .entryHeader .share a.line {
    background: #00b900;
}
article .entryHeader span.deco,
article .entryHeader span.deco:before,
article .entryHeader span.deco:after {
    position: absolute;
    width: 30px;
    height: 2px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #aaa;
    border-radius: 3px;
}
article .entryHeader span.deco:before,
article .entryHeader span.deco:after {
    content: "";
}
article .entryHeader span.deco {
    transform: rotate(90deg);
    top: -40px;
}
article .entryHeader span.deco:before {
    transform: translate(10px, -50px) rotate(38deg);
}
article .entryHeader span.deco:after {
    transform: translate(10px, 50px) rotate(-38deg);
}







article .entryHeader span.deco span:before,
article .entryHeader span.deco span:after {
    position: absolute;
    width: 25px;
    height: 2px;
    top: 0px;
    left: 0;
    right: 0;
    margin: auto;
    background: linear-gradient(to right, #aaa 25%,transparent 25%) repeat-x;
    background-size: 6px 100%;
    content: "";
    border-radius: 2px;
}
article .entryHeader span.deco span:before {
    transform: translate(4px, -25px) rotate(15deg);
}
article .entryHeader span.deco span:after {
    transform: translate(4px, 25px) rotate(-15deg);
}
article .entryContent {
    font-size: 14px;
    line-height: 1.6;
}
article .entryContent .block {
    max-width: 800px;
    margin: 0 auto 4em auto;
}
article .entryContent .block:last-of-type {
    margin: 0 auto;
}
article .entryContent .block:after {
    clear: both;
    height: 0;
    font-size: 0;
    visibility: hidden;
    display: block;
    content: ".";
}
article .entryContent h2 {
	font-size: 20px;
	color: #666666;
	font-weight: bold;
	padding: 6px 10px;
	margin-bottom: 20px;
	position: relative;
	border-bottom: 2px solid #ffff00;
	border-left: 10px solid #ffff00;
}
article .entryContent figure{
    max-width: 640px;
    margin: 0 auto 2em auto;
    position: relative;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

article .entryContent figure.normal{
    max-width: 640px;
    margin: 0 auto 2em auto;
    position: relative;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
article .entryContent figure.nolead{
    max-width: 640px;
    margin: 0 auto 2em auto;
    position: relative;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0px;
}

article .entryContent figure.fl {
    float: left;
    margin: 0 2em 2em 0;
    width: 40%;
}
article .entryContent figure.fr {
    float: right;
    margin: 0 0 2em 2em;
    width: 40%;
}
article .entryContent figure img {
    width: 100%;
    height: auto;
}
article .entryContent figure figcaption {
    background: rgba(255, 255, 255, .9);
    padding: 5px 10px;
    position: absolute;
    max-width: 80%;
    right: -10px;
    bottom: -10px;
    font-size: 13px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
article .entryContent .btn {
    max-width: 500px;
    margin-top: 2em !important;
}

/*------ ページング ------*/

.pagination {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 20px;
}
.pagination li {
    width: 48%;
}
.pagination a {
    display: flex;
    align-items: center;
    transition: .3s;
}
.pagination a:hover {
	opacity: .8;
}
.pagination .prev a {
	justify-content: flex-start;
}
.pagination .next a {
	justify-content: flex-end;
}
.pagination .prev svg {
    margin-right: 0.5em;
}
.pagination .next svg {
    margin-left: 0.5em;
}
.pagination svg {
    opacity: .8;
}
.pagination .disabled {
    visibility: hidden;
}

/*--------------------
サイド
--------------------*/

.column02 h3.ttl {
    color: #666666;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.column02 h3.ttl:before,
.column02 h3.ttl:after {
    content: "";
    width: 25%;
    height: 2px;
    display: block;
    background: linear-gradient(to left, #ffff00 25%,transparent 25%) repeat-x;
    background-size: 10px 100%;
}
.column02 a {
	transition: .3s;
}
.column02 a:hover {
	opacity: .8;
}

/*------ ナビ ------*/

#progNav a {
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
    display: block;
    box-sizing: border-box;
    color: #666666;
    border: solid 2px #ffff00;
    background: rgba(255, 255, 255, 0.4);
    text-align: center;
    text-decoration: none;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-shadow: none;
}
#progNav a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    background: #ffff00;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#progNav a.prev:before {
    right: 0;
	left: auto;
}
#progNav a:hover:before,
#progNav a:active:before {
    width: 100%;
}
#progNav a span {
    position: relative;
    display: block;
    padding: 12px;
}
#progNav a:hover {
    color: #000;
	opacity: 1;
}
#progNav ul {
	width: 100% !important;
}
#progNav li {
    margin-bottom: 10px;
}
#progNav li:last-of-type {
    margin-bottom: 0;
}

/*------ 最新記事 ------*/

#newArticleWrap h3.ttl {
}
#newArticleWrap h3.ttl span.deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 80%;
}
#newArticleWrap h3.ttl span.deco:before,
#newArticleWrap h3.ttl span.deco:after {
    content: "";
    width: 2px;
    height: 20px;
    background: #aaa;
    border-radius: 3px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
#newArticleWrap h3.ttl span.deco:before {
    transform: translate(-35px, 0px) rotate(-25deg);
}
#newArticleWrap h3.ttl span.deco:after {
    transform: translate(35px, 0px) rotate(25deg);
}
#newArticleWrap li{
	border-bottom: 1px solid #eee;
	padding: 10px 0;
}
#newArticleWrap a {
    display: flex;
    flex-wrap: wrap;
    width: 96%;
    margin: 0 auto;
}
#newArticleWrap .date {
    width: 25%;
}
#newArticleWrap .entryTtl {
    width: 100%;
    font-size: 15px;
    margin-bottom: 6px;
	padding-left: 1.2em;
    text-indent: -1.2em;
}
#newArticleWrap .entryTtl svg {
    font-size: 80%;
    margin-right: 1em;
    transition: .3s;
    opacity: .7;
}
#newArticleWrap figure {
    margin: 0;
    width: 25%;
    overflow: hidden;
    position: relative;
    padding-top: 25%;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .01);
    margin-right: 2%;
}
#newArticleWrap figure img{
    /* width: 100%; */
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease-out;
}
#newArticleWrap figure + p{
	width: 72%;
	font-size: 14px;
}

/*------ 月別アーカイブ・カテゴリー ------*/

#archiveWrap ul,
#tagWrap ul {
	font-size: 15px;
	display: flex;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
	box-sizing: border-box;
	justify-content: space-between;
}

#archiveWrap ul {
	padding-left: 1.4em;
	margin-bottom: 15px;
}
#archiveWrap ul li {
    margin: 5px 0;
    width: 50%;
}
#archiveWrap .year {
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 5px;
    width: 90%;
    margin: 0 auto;
}
#archiveWrap .year.open svg {
    transform: rotate(90deg);
}
#archiveWrap .year svg {
    font-size: 80%;
    margin-right: 1em;
    transition: .3s;
    opacity: .7;
}

#tagWrap ul li {
    margin: 5px 0;
    padding-left: 1.5em;
    text-indent: -1.5em;
}
#tagWrap ul li:nth-child(2n) {
    margin: 5px 0 5px 0;
}
#tagWrap svg {
    font-size: 80%;
    margin-right: 1em;
    opacity: .7;
}




article.archive li{
	border-bottom: 1px solid #eee;
}
article.archive a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 0;
}
article.archive .date {
    width: 10%;
}
article.archive .entryTtl {
    width: 90%;
    font-size: 15px;
}

/*------ 追記 ------*/
article .entryContent .block_small{
    max-width: 800px;
    margin: 2em 2em 0;
}
article .entryContent .flex{
    display: flex;
    justify-content: space-between;
}
article .entryContent .flex .caster_img{
    width: 30%;
}
article .entryContent .flex .caster_img img{
    width: 100%;
}
article .entryContent .flex .caster_info{
    width: 68%;
}
article .entryContent .flex .caster_info span{
    font-size: 16px;
    margin-right: 1em;
}
article .entryContent .block h5{
    font-size: 21px;
    text-align: center;
}

.btn_area {
	text-align: center;
	margin:0 auto;
	margin-top: 20px;
	width: 25%;
}
#news .btn_area a {
	font-size: 20px;
	font-weight: bold;
	color: #666666;
	border: 5px solid #ffff00;
	padding: 10px 50px;
}

ul.list {
margin:0px; 
padding:0px; 
list-style:none;
}

.list li.hidden {
  display: none;
}

#news img{
    max-width: 100%;
    height: auto;
}

article .entryContent .block .block{
	font-size: 120%;
	border: #f1941d solid 1px;
	border-left: #f1941d solid 10px;
	padding: 5px;
	background: #fff;
	margin: 1em auto 1em auto;
}

article .entryContent .block p {
    margin-bottom: 15px;
}

</pre></body></html>