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

#breadcrumb {
    margin-bottom: 10px;
}
/*--------------------
メインコンテンツ
--------------------*/
#blog {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
background-size: auto auto;
background-color: rgba(255, 239, 204, 1);
background-image: repeating-linear-gradient(90deg, transparent, transparent 30px, rgb(255, 225, 196) 30px, rgba(255, 225, 196, 1) 60px );
font-family: 'Kiwi Maru', serif;
}



#blog #blogHeader #progDetail {
	background: -webkit-repeating-linear-gradient(-45deg, #45bbf9, #45bbf9 3px,#25aff8 3px, #25aff8 7px);
    background: repeating-linear-gradient(-45deg, #45bbf9, #45bbf9 3px,#25aff8 3px, #25aff8 7px);
    background-attachment: fixed;
    padding: 10px;
    color: #fff;
    font-size: 1.4em;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-direction: column;
}
}
#blog #blogHeader #progDetail a.btn {
    max-width: 500px;
    margin-top: 5px;
}
#blog &gt; .container {
    display: flex;
}

#blog .column01 {
}
#blog .column02 {
	width: 96%;
	margin: 0 auto 30px auto;
}
#blog .column02 &gt; section {
	margin-bottom: 35px;
}



@keyframes bg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position:  900px -300px;
  }
}

.frame {
	display: inline-block;
	position: relative;
}


p.img {
    display: block;
    margin: 20px auto;
    padding: 0 10px;
}

p.img img{
    max-width: 100%;
    object-fit: contain;
}

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

article {
    width: 96%;
    margin: 0 auto 10px auto;
    background:rgba(255,255,255,0.7);
    border-radius: 10px;
}
article .entryHeader{
    margin-bottom: 30px;
    padding: 15px 10px;
    position: relative;
}
article:after,
article .entryHeader:after {
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    position: absolute;
}
article .entryHeader:before {
    top: 0;
}
article:after,
article .entryHeader:after {
    bottom: 0;
}
article .entryHeader h1.entryTtl {
	font-size: 21px;
	color: #666666;
	font-weight: bold;
}
article .entryHeader .entryMeta {
	font-size: 13px;
	color: #888;
}
article .entryHeader .entryMeta &gt; div {
    margin-top: 5px;
}
article .entryHeader .entryMeta &gt; div &gt; svg {
	margin-right: .3em;
}

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

#blog .btn {
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
    display: table;
    box-sizing: border-box;
    color: #ff9900;
    border: solid 2px #ff9900;
    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;
}
#blog .btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    background: #ff9900;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#

 .btn.prev:before {
    right: 0;
	left: auto;
}
#blog .btn:hover:before,
#blog .btn:active:before {
    width: 100%;
}
#blog .btn span {
    position: relative;
    display: block;
    padding: 12px;
}
#blog .btn:hover {
    color: #fff;
}

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

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.3em;
	min-width: 4.5em;
}
article .entryHeader .share .shareTtl span.pc {
	display:none;
}
article .entryHeader .share .shareTtl svg {
	margin-right: 0.3em;
}
article .entryHeader .share ul {
    display: flex;
    justify-content: center;
    width: 100%;
}
article .entryHeader .share li {
    margin-right: 3px;
    width: 100%;
}
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;
    font-size: 18px;
    padding: 6px 5px;
    border-radius: 5px;
    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: 20px;
    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: -30px;
}
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: 15px;
    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 {
    margin: 0 auto 3em 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 figure {
    max-width: 600px;
    width: 90%;
    margin: 0 auto 1.5em auto;
    position: relative;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
article .entryContent figure.fl {
}
article .entryContent figure.fr {
}
article .entryContent figure img {
    width: 100%;
}
article .entryContent figure figcaption {
    background: rgba(255, 255, 255, .9);
    padding: 5px 10px;
    font-size: 13px;
    display: flex;
    justify-content: center;
}
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: #ff9900;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.column02 h3.ttl:before,
.column02 h3.ttl:after {
    content: "";
    width: 20%;
    height: 2px;
    display: block;
    background: linear-gradient(to left, #ff9900 25%,transparent 25%) repeat-x;
    background-size: 10px 100%;
}
.column02 a {
	transition: .3s;
}
.column02 a:hover {
	opacity: .8;
}

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

#progNav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    margin-bottom: 15px;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
}
#progNav ul {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}
#progNav li {
    width: 100%;
    margin-right: 1vw;
}
#progNav li:last-child {
	margin-right: 0;
}
#progNav li span {
	text-align: center;
	padding: 2vh 0;
	min-height: 50px;
	background: #fffcf8;
	border: 1px solid #FFBD7A;
	border-bottom: none;
	border-radius: 5px 5px 0 0;
	transform: translateY(2px);
	color: #FFBD7A;
	font-size: 3.4vw;
	font-weight: bold;
	line-height: 1.3;
	transition: .3s;
	position: relative;
	opacity: .8;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 320px){
#progNav li span {
	font-size: 3.8vw;
}
}
#progNav li.current span {
    transform: translateY(0);
    background: #FFF !important;
    opacity: 1;
    z-index: 1;
}
#progNav li:last-child span {
	margin-right: 0;
}
#progNav .current:before {
	 content: "";
	 display: block;
	 width: 100%;
	 height: 1px;
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 background: #FFBD7A;
	 z-index: 1;
}

#progNav01.progNav li span {
	color: #f9bb7c;
	background: #fffcf8;
	border-color: #f9bb7c;
}
#progNav01.progNav li:before{
    background: #f9bb7c;
}

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

#newArticleWrap h3.ttl {
	padding-top: 25px;
}
#newArticleWrap h3.ttl span.deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 80%;
}
#newArticleWrap h3.ttl span.deco {
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 65%;
}
#newArticleWrap h3.ttl span.deco:before,
#newArticleWrap h3.ttl span.deco:after {
	content: "";
	width: 2px;
	height: 15px;
	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, 2px) rotate(-25deg);
}
#newArticleWrap h3.ttl span.deco:after {
    transform: translate(35px, 2px) rotate(25deg);
}
#newArticleWrap li{
	border-bottom: 1px solid #eee;
	padding: 10px 0;
}
#newArticleWrap a {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 96%;
    margin: 0 auto;
}
#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;
	line-height: 1.4;
}

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

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

#archiveWrap ul {
	padding-left: 2.3em;
	margin-bottom: 15px;
}
#archiveWrap ul li {
    width: 50%;
    margin: 5px 0;
}

#archiveWrap ul a {
    display: block;
    padding: 5px 0;
}
#archiveWrap .year {
    cursor: pointer;
    font-size: 15px;
    width: 100%;
    margin-bottom: 8px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 8px 15px;
}
#archiveWrap .year.open svg {
    transform: rotate(90deg);
}
#archiveWrap .year svg {
    font-size: 80%;
    margin-right: 0.8em;
    transition: .3s;
    opacity: .7;
}

#tagWrap ul li {
    min-width: 49%;
    margin: 5px 0;
}

#tagWrap ul a {
    display: block;
    border: 1px solid #eee;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 8px;
    padding-left: 2em;
    text-indent: -1.3em;
}
#tagWrap svg {
    font-size: 80%;
    margin-right: 0.5em;
    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: 25%;
}
article.archive .entryTtl {
    width: 75%;
    font-size: 15px;
}

/*------ 追記 ------*/
article .entryContent .block_small{
    margin: 2em 2em 0;
}
article .entryContent .flex{
    display: flex;
    flex-wrap: wrap;
}
article .entryContent .flex .caster_img{
    width: 70%;
    margin: 0 auto 1em;
}
article .entryContent .flex .caster_img img{
    width: 100%;
}
article .entryContent .flex .caster_info{
    width: 100%;
}
article .entryContent .flex .caster_info span{
    font-size: 16px;
    margin-right: 1em;
}
article .entryContent .block h5{
    font-size: 21px;
    /* text-align: center; */
}
.block .flex .img_con{
    width: 100%;
    margin: 0 1% 2%;
}
.block .flex .img_con img{
    width: 100%;
}

.im1{
border-radius: 40px 100px 40px 100px / 40px 80px 40px 80px;
box-shadow:
inset 0 0 20px #fff /* 背景色と同じ色 */,
inset 0 0 20px #fff,
inset 0 0 20px #fff,
inset 0 0 20px #fff;
}

.im2{
border-radius: 100px 40px 100px 40px / 80px 40px 80px 40px;
box-shadow:
inset 0 0 20px #fff /* 背景色と同じ色 */,
inset 0 0 20px #fff,
inset 0 0 20px #fff,
inset 0 0 20px #fff;
}


.movie{
    width: 95%;
	margin: 20px auto;
}
.movie .movieCon {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    order: 1;
}
.movie .movieCon iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}


.midashi  {
  font-weight: bold;
  font-size: 1.3em;
  color: #0058b5;
  text-align: center;
  position: relative;
  padding: 1rem 1rem calc(1rem + 8px);
  background: #fff53b;
  margin: 1em;
}

.midashi:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 2px solid #000;
}


.honbun {
	padding: 0 5px 20px 5px;
	font-size: 0.95em;
    line-height: 1.7em;	
	font-weight: 500;
	color: #4f4034;
	}

.honbun2 {
	padding: 0 10px;
	font-size: 1em;
    line-height: 1.7em;	
	font-weight: 600;
	color: #4f4034;
	text-align: center;
	}

.pink {
    font-size: 1.2em;
    color: #fb3266;
	}
	
	.clearfix::after{
content: "";
display: block;
 clear: both;
}


.left-column {
 float: left;
 width: 50%; /* 要素の幅を50%に定義 */
}

.right-column {
float: right;
width: 50%; /* 要素の幅を50%に定義 */
}

@media screen and  (max-width: 768px) {
.left-column {
 float: left;
 width: 100%; /* 要素の幅を50%に定義 */
}
.right-column {
float: right;
width: 100%; /* 要素の幅を50%に定義 */
}
}

.imgres2 {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 15px auto;
  border-radius: 10px;
object-fit: contain;
  }


  .imgres3 {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  }

.yose{
    margin: 0 auto;
    text-align: center;
}


	.balloon1 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 300px;
  max-width: 100%;
  color: #ff5a02;
  font-size: 1.5rem;
  font-weight: bold;
  background: #ffd48b;
  border-radius: 15px;
  text-align: center;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 98%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #ffd48b;
}

.balloon1 p {
  margin: 0;
  padding: 0;
}

.cast {
	border-bottom: dashed 2px #000000;
	font-size: 1.4em;
    line-height: 2em;
	text-align: center;
	font-weight: bold;
	margin: 2.2rem;
	}

  
	[class^="img-flex-"] {
	display: block;
	}	 
			 
.img-flex-2 img {
    width: 100%;
    margin: 0 auto;
	padding-bottom: 20px;
}

.textblock {
   display: inline-block;
}



.blue {
    font-size: 1.2em;
    color: #00a2f3;
	}


.main {
  background: #fff;
  margin-bottom: 10px;
  text-align: center;
}
.side {
  background: #fff;
  text-align: center;
}
.main,
.side {
  padding: 2%;
  border-radius: 10px
}
 
/* Responsive */
@media ( min-width : 600px ){
    .flexbox {
      display: -webkit-flex;
      display: flex;
    }
  .main {
    margin: 0 10px 0 0;
  }
}


	.honbun a {
	color: #4a6eca;
	}
	
.honbun a:hover{
	color: #bf8a17;
	}
	.shiro {
	padding: 20px;
	margin: 10px 0 20px 0;
	z-index: -99;
	}
	
	

.toku {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "BIZ UDPGothic",
    Meiryo,
    sans-serif;
  padding: 1rem 0.7rem ;
  font-weight: 600;
  -webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, .1);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .1);
  background-color: #ca0e25;
  color: #fff;
  font-size: 1.1rem;
  
}



h3 {    
font-weight: bold;
font-size: 1.15em;
text-align: left;
color: #4f4034;
margin-bottom: 1em;
position: relative;
}
h3:after {
	position: absolute;
	content: "";
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 7px;
	background: -webkit-repeating-linear-gradient(-45deg, #eee, #eee 2px, #666 2px, #666 4px);
	background: repeating-linear-gradient(-45deg, #eee, #eee 2px, #666 2px, #666 4px);
}

h3:first-letter {
	color:#ff5a02;
	font-size: 1.2em;
	}

.guest {
    padding-top: 20px;
    font-size: 1.1em;
    line-height: 1.7em;
	text-align: center;
	font-weight: 600;
}

.guest2 {
    font-size: 1.1em;
}

.guest3 {
    font-size: 1em;
	color: #fff;
	background-color: #bf8a17;
	border-radius: 3px;
	padding: 3px;
	margin-right: 6px;
}


#menu{
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#menu li{
  display: block;
  float: left;
  width: 12.5%;
  margin: 0;
  padding: 0;
    }
#menu li a{
  display: block;
  padding: 12px 0 10px;
  background: #bf8a17;
  color: #fff;
  text-align: center;
  text-decoration: none;
  z-index: 999; 
  
}
#menu li a:hover{
  background: #444;
}
#toggle{ 
 display: none;
}
@media only screen and (max-width: 768px) {

  #menu{
    display: none;
	z-index: 999; 
  }
  #menu li{
    width: 100%;
	z-index: 999; 
	border-bottom: 1px solid #444;
	  font-weight: 600;
  }
  #toggle{
    display: block;
    position: relative;
    width: 100%;
    background: #bf8a17;
	  font-weight: 600;
  }
  #toggle a{
    display: block;
    position: relative;
    padding: 12px 0 10px;
    border-bottom: 1px solid #444;
    color: #fff;
    text-align: center;
    text-decoration: none;
  }
  #toggle:before{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: #fff;
  }
  #toggle a:before, #toggle a:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 4px;
    background: #bf8a17;
  }
  #toggle a:before{
    margin-top: -6px;
  }
  #toggle a:after{
    margin-top: 2px;
  }
}

.iecss {
	max-width: 100%;
	}
	

.time { 
font-weight: bold;
font-size: 1.15em;
text-align: center;
color: #4f4034;
margin: 0 5px 20px 0;
}


.timeaka { 
color: #333;
font-size: 1.3em;
}	

.mida{
font-size: 1.2em;    
}

	
.kakumaru {
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}

.order1 {
    order: 1;
}
.order2 {
    order: 2;
}
.cols_2 {
    display: flex;
      flex-direction: column;
}

.col-l {
  flex-direction: column-reverse;
}



.ptext {
    text-align: left;
}

.colsn2 {
    display:block;
    margin-top: 2rem;
	font-weight: 500;
}</pre></body></html>