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

/*--------------------
メインコンテンツ
--------------------*/
#blog {
width: 100%;
background-size: auto auto;
background-color: rgb(255, 239, 204);
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 {
    margin-bottom: 30px;
}
#blog #blogHeader img {
    width: 100%;
    object-fit: contain;
    border: 1px solid #eee;
	box-sizing: border-box;

}



@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;
    max-width: 720px;
}

p.img img{
    max-width: 100%;
    object-fit: contain;
}
    
#blog #blogHeader #progDetail {
    background-attachment: fixed;
    padding: 10px;
    color: #fff;
    font-size: 2.1em;
    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;
    justify-content: space-between;
    align-items: flex-start;
	max-width: 1200px;
	margin: 0 auto;
}
#blog &gt; .container:last-of-type {
    padding-bottom: 50px;
}
#blog .column01 {
    width: 100%;
    /* max-width: 900px; */
    margin: 0 0 20px 0;
}
#blog .column02 {
	width: 27%;
	min-width: 300px;
	margin-left: 25px;
	position: sticky;
	top: 15px;
}
#blog .column02 &gt; section {
	margin-bottom: 25px;
}

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

#blog .btn {
    width: 100%;
    margin: 0 auto 20px auto;
    font-size: 18px;
    font-weight: bold;
    padding: 1%;
    letter-spacing: 3px;
    position: relative;
    display: table;
    box-sizing: border-box;
    color: #ffa102;
    border: solid 2px #ffa102;
    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: #ffa102;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}
#blog .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;
}

.btn{
	display: block;
	border: 3px solid #ffa102;
	width: 31%;
	margin: 2% 1% 1%;
	padding: 1%;
	text-align: center;
	font-size: 17px;
	color: #ffa102;
	font-weight: bold;
	position: relative;
	z-index: 1;
}
.btn:hover{
	color: #fff!important;
}

article .flex2{
    display: flex;
    justify-content: center;
}

.btn{
	display: block;
	border: 3px solid #ffa102;
	width: 100%;
	margin: 2% 1% 1%;
	padding: 1%;
	text-align: center;
	font-size: 17px;
	color: #ffa102;
	font-weight: bold;
	position: relative;
	z-index: 1;
}
.btn:hover{
	color: #fff!important;
}


.btn{
	display: block;
	border: 3px solid #ffa102;
	width: 31%;
	margin: 2% 1% 1%;
	padding: 1%;
	text-align: center;
	font-size: 17px;
	color: #ffa102;
	font-weight: bold;
	position: relative;
	z-index: 1;
}
.btn:hover{
	color: #fff!important;
}

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

article {
    position: relative;
    padding-bottom: 40px;
}
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: 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 {
    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 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.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%;
}
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: #ff9900;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    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, #ff9900 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: #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;
}
#progNav a: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);
}
#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: #fff;
	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: center;
}
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;
}
.column02 .form{
    margin: 0 auto 5%;
    text-align: center;
}
.column02 .form img{
    width: 100%;
}
.block .flex .img_con{
    width: 50%;
    margin: 0 0.5em 2em;
}
.block .flex .img_con img{
    width: 100%;
}

.im1{
border-radius: 40px 100px 40px 100px / 40px 80px 40px 80px;
box-shadow: 0 2px 6px #999;
}

.im2{
border-radius: 100px 40px 100px 40px / 80px 40px 80px 40px;
box-shadow: 0 2px 6px #999;
}


.movie{
    display: block;
    max-width: 640px;
	margin: 30px 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-size: 1.7em;
  color: #bf8a17;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.7em;
}



.honbun b{
    font-weight: 800;
}
	
	.honbun a {
	color: #4a6eca;
	}
	
.honbun a:hover{
	color: #bf8a17;
	}
	.shiro {
	padding:30px 20px;
    background:rgba(255,255,255,0.8);
	margin: 10px 0 40px 0;
    box-shadow: 0px 0px 10px -5px rgba(0, 0, 0, 0.9);
    border-radius: 20px;
	}
	
.honbun2 {
	font-size: 2.4em;
    line-height: 2.6em;
	text-align: center;
    font-weight: 600;
	}

.pink {
    font-size: 1.2em;
    color: #ff309e;
	}
	
.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;
  }
}

.imgres {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  }
  
 .imgres2 {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
object-fit: contain;
  } 

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

 .css-fade2 {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
  }

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

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

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  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.6em;
    line-height: 2em;
	text-align: center;
	font-weight: bold;
	}

/* facebook スマホ用 */
@media screen and (max-width: 767px) {
	.fb-container {
		width: 100%;
		max-width: 640px;
	}
}
 
/* facebook PC用 */
@media screen and (min-width: 768px) {
	.fb-container {
		width: 640px;
	}
}

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

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

h3 {    
font-weight: bold;
font-size: 1.8em;
text-align: left;
margin: 0 4rem;
	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.3em;
    line-height: 1.7em;
	text-align: center;
	font-weight: 600;
}

.guest2 {
    font-size: 1.2em;
}

.guest3 {
    font-size: 1em;
	color: #fff;
	background-color: #bf8a17;
	border-radius: 3px;
	padding: 3px;
	margin-right: 10px;
}
.cols {
    display: flex;
    padding: 0;
	animation-name: fadein;
    animation-duration: 2s;
margin: 2rem 3rem;
}

.colsn {
    display:block;
    width: 100%;
    padding: 0 1.25%;
margin: 5px 3rem;
    	font-size: 1.5em;
	font-weight: 500;
	color: #4f4034;
}

.colsn2 {
    display:block;
    padding: 2rem;
margin: 2rem;
    	font-size: 1.5em;
	font-weight: 500;
	color: #4f4034;
    text-align: center;
}


.honbun{
    font-size: 1.5em;
    line-height: 1.7em;
}

.align-center {
    text-align: center;
}

.cols.cols_1&gt;.col {
    padding: 1.25%;
    width: 100%;
}
.cols.cols_2&gt;.col {
    flex-basis: calc(100% / 2);
    max-width: calc(100% / 2);
    padding: 1.25%;
}


.cols.cols_3&gt;.col {
    flex-basis: calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 1.25%;
}


.toku {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "BIZ UDPGothic",
    Meiryo,
    sans-serif;
  position: relative;
  padding: 1.5rem 2rem;
  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;
  margin: 3rem;
  
}

.toku:before,
.toku:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-linear-gradient(315deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
  background-image: linear-gradient(135deg, #704308 0%, #ffce08 40%, #e1ce08 60%, #704308 100%);
}

.toku:before {
  top: 0;
}

.toku:after {
  bottom: 0;
}

#menu{
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
#menu li{
  display: block;
  float: left;
  width: 10%;
  margin: 0;
  padding: 0; }
#menu li a{
  display: block;
  padding: 18px 0 15px;
  background: #bf8a17;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}
#menu li a:hover{
  background: #444;
}
#toggle{ 
 display: none;
}
@media only screen and (max-width: 768px) {
    #menu li{
    width: 25%;
    border-bottom: 1px solid #444;
  }
}
@media only screen and (max-width: 480px) {
  #menu{
    display: none;
  }
  #menu li{
    width: 100%;
  }
  #toggle{
    display: block;
    position: relative;
    width: 100%;
    background: #bf8a17;
  }
  #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%;
	}
	
.kakumaru {

}	



.time { 
font-weight: bold;
font-size: 2em;
text-align: center;
margin: 0 4rem 40px 4rem;
color: #4f4034;
letter-spacing: 3px;
}



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

.mida{
font-size: 1.2em;    
}

@media only screen and (max-width: 769px) {
.time { 
font-weight: bold;
font-size: 1.2em;
text-align: center;
color: #4f4034;
}

.timeaka { 
color: #333;
font-size: 1.5em;
}
}
</pre></body></html>