@charset "UTF-8";

#breadcrumb {
    margin-bottom: 10px;
}
/*--------------------
メインコンテンツ
--------------------*/
#blog #blogHeader {
	background-color: #fffae7;
}
#blog #blogHeader img {
    width: 100%;
}
#blog #blogHeader #progDetail {
    background: #fbe760;
    background-size: 15px 15px;
    background-attachment: fixed;
    padding: 10px;
    color: #32312c;
    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 > .container {
		background-color: #fffae7;
    background-attachment: fixed;
    display: flex;
}
#blog > .container:last-of-type {
    padding-bottom: 50px;
}
#blog .column01 {
		background-color: #fffae7;
}
#blog .column02 {
	width: 100%;
	background: url(../img/akahaikei.jpg);
    padding-bottom: 2rem;
}
#blog .column02 > section {
	margin-bottom: 35px;
}

.column02:last-of-type {
    padding-bottom: 50px;
}

	/* メニュー実験　*/
		
.menu-container {
  margin: 0;
}

.menu-container .menu {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
    border: solid 1px #ffffff;
}

.menu-container .menu .menu-item {
  flex: 1;
}

.menu-container .menu .menu-item a {
  background: #d61b22;
  font-size: 1.05rem;
  font-weight: bold;
  border-right: none;
  color: #ffffff; 
  display: block;
  padding: 0.7em 0.4em;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  
}


.menu-container .menu .menu-item a:hover {
  font-weight: bold;
  background: #8dc556;
  color: #ffffff;
}

.menu-container .menu .menu-item:last-child a {
}

@media screen and (max-width: 768px) {
  .menu-container .menu {
    flex-wrap: wrap;
    width: 100%;
  }
  .menu-container .menu .menu-item {
    flex: auto;
    width: 50%;
  }

  .menu-container .menu .menu-item:nth-child(n + 1) a {
    border-top: none;
    border-left: 1px solid #ffffff;
  }
}
					@media screen and (max-width: 736px) {
.menu-container .menu .menu-item a {
  font-size: 0.85rem;
  }
}

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

article {
    position: relative;
    padding-bottom: 40px;
    width: 96%;
    margin: 0 auto;
}
article .entryHeader{
    margin-bottom: 30px;
    padding: 15px 10px;
    position: relative;
}
article:after,
article .entryHeader:after {
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background: linear-gradient(to left, #879c77 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: 21px;
	color: #666666;
	font-weight: bold;
}
article .entryHeader .entryMeta {
	font-size: 13px;
	color: #888;
}
article .entryHeader .entryMeta > div {
    margin-top: 5px;
}
article .entryHeader .entryMeta > div > svg {
	margin-right: .3em;
}

@media screen and (max-width: 736px) {
.cols {
display: flex;
flex-wrap: wrap;
padding: 0;
}

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

.cols.cols_2>.col {
 width: 90%;
 margin: 0 auto;
	}

.cols.cols_3>.col {
 width: 80%;
 margin: 0 auto;
	}
	
.cols.cols_4>.col {
 width: 80%;
 margin: 0 auto;
	}
	
	

	.cols.cols_5>.col {
 width: 42%;
 margin: 0 auto;
 padding: 1.25%;
}
}

	.cols.cols_8>.col {
 width: 42%;
 margin: 0 auto;
 padding: 1.25%;
}
}


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

#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: #879c77;
    border: solid 2px #879c77;
    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: #879c77;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#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;
}

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

article .entryHeader .tag{
    padding-left: 1.3em;
    text-indent: -1.3em;
}
article .entryHeader .tag > *{
	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 h2 {
	font-size: 18px;
	color: #666666;
	font-weight: bold;
	padding: 6px 10px;
	margin-bottom: 20px;
	position: relative;
	border-bottom: 2px solid #879c77;
	border-left: 10px solid #879c77;
}
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;
}

.yellow {
   padding: 4em 0.5em;
   background: #fffdea;
}


.yellow2 {
padding: 4em 0;
background: url("../img/str.png");
}

.yellow3 {
padding: 4em 0;
background: #fff100;
}

.yellow4 {
padding: 4em 0.5em;
background: url("../img/solid.png");
}

.stblue {
padding: 4em 0;
background: url("../img/strblue.png");
}



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

.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: #879c77;
    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, #879c77 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;
}



.msr_box01 {
  font-weight: bold;
}
.msr_box01 a{
	
  background-color: #FFFFFF;
  box-sizing: border-box;
  color:#000000;
  display:block;
  padding-bottom: 10px;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
   margin: 0 10px;
}

.msr_box01 .ttl {
  font-size: 16px;
  line-height: 1.6;
  background-color: #000000;
  box-sizing: border-box;
  color: #fff100;
  font-weight: bold;
  display: block;
  padding: 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  width: 200px;
  margin: 0 auto;
}


.msr_box01 p {
  font-size: 13px;
  line-height: 1.6;
  padding-bottom: 1.5rem;
}
.msr_box01 a:hover{
  opacity: 0.8;
}




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;
}



.douga {
padding: 2rem 0.5rem;
background-color: #dddddd;
background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(.5, transparent), color-stop(.5, #ffffff), to(#ffffff)),
-webkit-gradient(linear, 0 0, 100% 0, color-stop(.5, transparent), color-stop(.5, #ffffff), to(#ffffff));
-webkit-background-size: 5px 5px;
}

/*------ 追記 ------*/
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: 48%;
    margin: 0 1% 2%;
}
.block .flex .img_con img{
    width: 100%;
}
.movie{
	display: block;
    padding-top: 56.25%; 
    width: 100%;
    height: auto;
	margin: 10px auto 20px auto;
    position: relative;
}

.movie iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

.movie .movieCon iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    -moz-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    -webkit-transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    transition: opacity .25s cubic-bezier(0.0,0.0,0.2,1);
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
}



.midashi {
  /*線の種類（実線） 太さ 色*/
  font-size: 1.5em;
  color: #32312c;
  border-bottom: solid 3px #32312c;
  text-align: center;
  font-weight: bold;
  margin: 1.7em 0;
}

@media screen and (max-width: 768px){	
.honbun {
	padding: 0 15px 10px 15px ;
	font-size: 1em;
    line-height: 2em;
	font-weight: bold;
	color: #6a4604;
    text-align: center;
	}

}
.pink {
    font-size: 1.2em;
    color: #fb3266;
	}
	
.honbun2 {
	padding: 15px;
	font-size: 1.1em;
    line-height: 2em;
	font-weight: bold;
	color: #6a4604;
	text-align: left;
	}
	
	.honbun3 {
	font-size: 1.13em;
    line-height: 1.1em;
	text-align: left;
	font-weight: bold;
	}

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

	.red {
    font-size: 1.2em;
    color: #e74521;
	}	
.blue {
    color: #27b3ed;
	}	
	
.blue2 {
    color: #dff6ff;
	}	
	
.white {
	margin: 10px;
	background-color: #fff;
	border: solid 2px #000000;
	padding: 8px 8px 30px 8px;
    line-height: 2em;
	text-align: center;
	font-weight: bold;
		}		
	
.white2 {
	margin: 20px;
	background-color: #fff;
    line-height: 2em;
	text-align: left;
	font-weight: bold;
	box-shadow: 15px 15px 0px 0 rgb(255, 244, 81);
		}
		
	
	
	.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%に定義 */
}
}


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

.textblock {
   display: inline-block;
}


  .imgres2 {
  display: block;
  width: 90%;
  max-width: 330px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
  }
  
  .imgguest {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  }
  
/* 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;
	}
	}


.tvmark {
	font-size: 1em;
	text-align: center;
}

.icontv {
	background: url(../img/tvicon.png) no-repeat;
	background-size: 100%;
    background-position: center left;
    width: 30px;
    height: 30px;
	padding: 2px 0 2px 15px;
}


.btn-blue {
    font-size: 1.08rem;
    color: #d6232a;
	padding: 0.8rem 0 ;
}


.btn-red {
	font-weight: 900;
    color: #fff;
    background-color: #d6232a;
    border-radius: 0.2rem;
    padding: 0.3rem 1.5rem;
    margin:0 auto 1rem auto;
	font-size: 1.13rem
}

#wanted {
padding: 4rem 1rem;
background-color: #dd4047;
background-image: -webkit-gradient(linear, 0 0, 0 100%, color-stop(.5, transparent), color-stop(.5, #c30d23), to(#c30d23)),
-webkit-gradient(linear, 0 0, 100% 0, color-stop(.5, transparent), color-stop(.5, #c30d23), to(#c30d23));
-webkit-background-size: 5px 5px;
}



.example {
  position: relative;
  }

.example p {
  position: absolute;
  top: 6%;
  left: 1%;
  margin: 0; /*余計な隙間を除く*/
  color: white;/*文字を白に*/
  background: #d51a21;/*背景色*/
  font-size: 15px;
  line-height: 1;/*行高は1に*/
  padding: 5px 10px;/*文字周りの余白*/
  }
  
.example h2 {
  font-weight: bold;
  font-size: 1.4em;
 }
.example img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  }
  
  
  
 .btn-animation-02 {
  display: inline-block;
  width: 220px;
  text-align: center;
  background-color: #fff100;
  font-size: 1.6em;
  color: #fff100;
  text-decoration: none;
  font-weight: bold;
  padding: 20px 24px;
  border: 1px solid #fff100;
  border-radius: 4px;
  position: relative;
}

.btn-animation-02 span {
  position: relative;
  z-index: 1;
}

.btn-animation-02::before,
.btn-animation-02::after {
  color: #000000;
  content: "";
  display: block;
  background-color: #000000;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
  border: 0.1px solid #000000;
  border-radius: 4px;
}
.btn-animation-02::before {
  left: 0;
}
.btn-animation-02::after {
  right: 0;
}

.btn-animation-02:hover:before,
.btn-animation-02:hover:after {
  width: 0;
  background-color: #fff100;
}

.btn-animation-02:hover {
  color: #000000;
} 

.center {
  text-align: center;
  }
  
.yellow_line {
	line-height: 2.2em;
	font-size: 1em;
	background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #fff100 0%) repeat scroll 0 0;
	}
	
@media screen and (max-width: 767px) {
	.imgres4 {
  display: block;
  width: 100%;
  max-width: 340px;
  padding-top: 30px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
    }
  }
  
 .white3 {
	background-color: #fff;
    padding: 30px 10px;
    line-height: 2em;
	text-align: left;
	font-weight: bold;
		}
		 
		 
	.btn-black {
	font-size: 1.4rem;
    color: #fff;
    background-color: #464646;
    border-radius: 0.2rem;
    padding: 0.6rem 1rem;
    margin-bottom: 2rem;
}	

ol.sample1 {
    margin: 1rem 0;
    position: relative;
    padding: 15px 5px 15px 5px;
    font: 0.8rem;
    border: solid 2px #ec0401;
    border-radius: 8px;
    background: #fff;
}

ol.sample1:before{
  content: "さらにアレンジ";  /* 好きな文字を記述 */
  position: absolute;
  display: block;
  top: -15px;
  left: 20px;
  background: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 0 10px;
  color: #ec0401;
}
ol.sample1 li{
  font-weight: bold;
  font-size: 0.8rem;
  line-height: 1.5rem;
}

 /*見っど*/	
 
 .css-fade1 {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
  }

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.Text-Span {
  position: relative;
  z-index: 1;
}
.Text-Span:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0%;
  height: 4px;
  background: #5bc8ac;
  z-index: -1;
  transition: all 0.8s;
}
.Text-Span.isActive:after {
  width: 100%;
}

/* section */
.flex {
	display: flex;
}




.photo {
	width: 55%;
	height: 500px;
	background: #fff url(section-bg.jpg) center/ cover no-repeat;
}
.photo + div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 45%;
}


.service  {
	padding: 50px 10px;
}
.service .icon_list {
    display: block;
    margin: 0 auto;
    max-width: 1200px;
}
.service ul {
	margin: 0;padding: 0;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.service ul li {
    margin: 0;
}
.service ul li:nth-of-type(2){
	transition-delay: .2s;
}
.service ul li:nth-of-type(3){
	transition-delay: .4s;
}
.service ul li:nth-of-type(4){
	transition-delay: .6s;
}
.service ul li img {
    max-width: 300px;
	height: auto 0;
}
.service ul li p {
    color: #f73f6f;
}
.service p {
	margin: 10px;
}
.service a.button {
	color: #293f4d;
	border: 1px solid #293f4d;
}
.service a.button:hover {
	color: #fff;
	background-color: #293f4d;
}

 /* 左からフェードイン */
.slide-left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 1s ease-out;
 }
 
 .right {
  float: right;
  padding-bottom: 30px;
  }
  
  .clear_box {
    clear:  both;               /* 回り込みを解除する */
}
 
/* 右からフェードイン */
.slide-right {

	opacity: 0;
	transform: translate(20px, 0);
	transition: all 1s ease-out;
 }
 
 
.mid2 {
  display: table;
  width: 100%;
  height: 580px;
  background-color: #fee100;
  transform: skewY(-3deg);
  margin-top: 3vw;
  padding: 20px 0;
 }
 
 
 .mid2 p {
  vertical-align: middle;
}
 
.mid2 > * {
  transform: skewY(3deg);
}

.honbun3 {
	padding-top: 30px;
	font-size: 1.1em;
    line-height: 2em;
	font-weight: bold;
	}
	
	
.artist {
	padding: 15px 0; 
	font-size: 1.35em;
    line-height: 2em;
	font-weight: bold;
	}
	
	
.mid3 {
  display: table;
  width: 100%;
  height: 580px;
  background-color: #e0d7d7;
  transform: skewY(-3deg);
  padding: 20px 0;
 }
 
 
 .mid3 p {
  vertical-align: middle;
}
 
.mid3 > * {
    transform: skewY(3deg);
}


.mid4 {
  display: table;
  width: 100%;
  height: 580px;
  background-color: #fee100;
  transform: skewY(-3deg);
  padding: 20px 0;
 }
 
 
 .mid4 p {
  vertical-align: middle;
}
 
.mid4 > * {
  transform: skewY(3deg);
}


	 .midtop {
  padding-top: 20px;
 }
 
 .midt {
   	background: url(../img/paper.jpg) ;
	 }
	 
	 
.honbunright {
	font-size: 1.2em;
    line-height: 2em;
	font-weight: bold;
	text-align: right; 
	padding: 10px;
	}

.andmore {
font-size: 1.5em;
line-height: 2em;
font-weight: bold;
	}	 
	
	.sapporo {
background-color: #ff8a00;
padding: 4em 0;
}

.sapporo dl {
font-size: 0.8rem;
border-bottom: 1px solid #ccc;
margin: 0.1rem 0;
line-height: 1.5rem;
}

.sapporo dt {
font-size: 0.8rem;
line-height: 1.5rem;
}

.sapporo dt {
clear: left;
float: left;
}

	 
.reci  {	 
	 font-size: 0.8rem;
	 text-align: left;
	 font-weight: bold;
 }
		.white4 {
	background-color: #fff;
	padding: 10px;
	font-size: 1.2em;
    line-height: 2em;
	font-weight: bold;
	margin: 0 0.5rem;
		}
		
.imgres5 {
  display: block;
  width: 90%;
  max-width: 900px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 0;
  }
  
.top-banner {
	 display: block;
	max-width:200px; /*画像のはみだしを防ぐ*/
	width: 100%;
	height: auto; /*画像の縦横比を維持 */
	margin-left: auto;
    margin-right: auto;
	padding-bottom: 1rem;
}
 .top-banner:hover {
  opacity: 0.6;
}
  
@media screen and (min-width: 768px){	
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 768px){	
  .pc { display:none; }
  .sp { display:block; }
}

.sapporomidashi {
  color: #fff;
  background: #ec0401;
  box-shadow: 0px 0px 0px 5px #ec0401;
  border: dashed 2px white;
  padding: 0.2em 0.5em;
  font-size: 1.2rem;
  text-align: center;
  margin: 1rem 0;
}

.zairyo {
  font-size: 1.15rem;
  padding: 0.1em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  background: transparent;/*背景透明に*/
  text-align: left;
  border-left: solid 5px #ff8a00;/*左線*/
  letter-spacing: 10px;
  line-height: 2.5rem;
  margin: 1rem 0;
}


 .how {
 padding: 0.5rem 0;
font-size: 0.8rem;
margin: 0.1rem 0;
line-height: 1.5rem;
}

.btn-black {
	font-size: 1rem;
    color: #fff;
    background-color: #464646;
    border-radius: 0.2rem;
    padding: 0.6rem 1rem;
    margin-bottom: 4rem;
}

.box30 {
    margin: 2em 0;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
	padding: 1rem 0.5rem 2rem 0.5rem;
}
.box30 .box-title {
    font-size: 1.1em;
    background: #d61b22;
    padding: 10px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
	border-radius: 0.2rem;
	margin-bottom: 1.5rem;
}

 .btn-square {
	 font-size: 1.1rem;
  margin: 2rem;
  display: inline-block;
  padding: 0.5em 1.3em;
  text-decoration: none;
  background: #ec0401;/*ボタン色*/
  color: #FFF;
  border-bottom: solid 4px #ff8a00;
  border-radius: 6px;
}
.btn-square:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  border-bottom: none;/*線を消す*/
}

	.topics {
		padding: 1rem;
		color: #6a4604;
		}
		.topics dd {
text-align: left;
font-size: 0.9rem;
}
			
	.topics dl {
padding: 11px 0;
margin-bottom: 0;
font-size: 1rem;
font-weight: bold;
font-weight: bold;
border-bottom: 2px solid #d4903f;
}

.topics dt {
font-size: 1rem;
padding-bottom: 5px;
font-weight: bold;
text-align: left;
}

		@media screen and (max-width: 961px) {
	.topics {
		margin: 0 ;
		}
		}
a:hover { 
		  opacity: 0.7;
          filter: alpha(opacity=70);
          -ms-filter: "alpha(opacity=70)";
		}




.aka3 {
    font-size: 1.2em;
    color: #DA393C;
}


hr  {
	border: 10px solid #d4903f;
}






@media screen and (max-width: 767px){
hr {
    border: 5px solid #d4903f;
}
}


	
	.modal_section {
	max-width: 630px;
	margin: 0 auto;
	padding: 0 20px;
}
.modal_title {
	margin: 0;
	padding: 1em 0;
	font-weight: bold;
}

.movie-content-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.movie-content-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mfp-content {
	max-width: 800px;
	padding-top: 44px;
}

.mfp-fade01.mfp-bg {
	opacity: 0;
	transition: all 0.2s ease-out;
}
.mfp-fade01.mfp-bg.mfp-ready {
	opacity: 0.7;
}
.mfp-fade01.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-fade01.mfp-wrap .mfp-content {
	opacity: 0;
	transition: all 0.2s ease-out;
}
.mfp-fade01.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}
.mfp-fade01.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

.copyright {
	text-align: center;
	margin: 0;
	padding: 2em 0 1em;
	font-size: 14px;
}
@media screen and (max-width: 767px) {
#banner {
    height: 0;
    position: relative;
    padding-top: 50%;
    background:url(../img/tops.png);
    background-position:center ,center;
    background-size:100% auto , contain;
    background-repeat:no-repeat, repeat;
    z-index: 1;
}

		#banner .content {
			position: relative;
			margin: 0;
			padding: 4em 1em 3.5em 1em;
		}
		

#naiyou {
    height: 0;
    position: relative;
    padding-top: 90%;
    background: url(../img/kumo.png) , url(../img/bon.png) , url(../img/naiyou.png) ,url(../img/ramens.jpg);
    background-position: left 3% top 80%, left 2% top -8%, left 10% top 25%, center;
    background-size: 20% auto, 9% auto, 12% auto,  100% auto;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    z-index: 1;
}
    
#naiyou2 {
    display: block;
    position: relative;
    margin-top:  -80%;
    width: 70%;
    padding-left: 25%;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 2;
}
#hinichi {
    height: 0;
    position: relative;
    padding-top: 20%;
    background: url(../img/hiduke.png) , #fffae7;
    background-position: center,center;
    background-size: 88% auto , 100% auto;
    background-repeat: no-repeat , repeat;
    z-index: 1;
}
	#bamen {
    height: 0;
    position: relative;
    padding-top: 56%;
    background: url(../img/bamen2.jpg) , #fffae7;
    background-position: center,center;
    background-size: 100% auto , 100% auto;
    background-repeat: no-repeat ,  repeat;
    z-index: 1;
	}
	
	
#cast {
    height: 0;
    position: relative;
    padding-top: 105%;
    background: url(../img/kumo.png) ,url(../img/kumo2.png) ,url(../img/cast.png) ,url(../img/eat.jpg) , url(../img/bon2.png) ,url(../img/namae2.png), url(../img/moyou.png);
    background-position: left 0% bottom 30%, right 10% top 13%, left 10% top 15%, right 13% top 50%, left 25% top 0%,right 40% bottom 15%, left 10% bottom 12%;
    background-size: 22% auto, 22% auto,11% auto, 80% auto, 8% auto, 90% auto,38% auto;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
    z-index: 1;
}

.imgres3 {
    display: block;
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 0;
}
    
.imgres6 {
    display: block;
    width: 90%;
    max-width: 640px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 0;
}
			.jikan {
	font-family: "Yu Mincho";
	text-align: center;
	font-size: 1.2rem;
	font-weight: 900;
	color: #000;
    border-bottom: 3px double #000;
	padding-top: 1rem;
	margin: 0 1rem;
	}
	
.up {
font-size: 2rem;
padding-right: 5px;
}

.tenpo {

	font-family: "Yu Mincho";
	background-color: #fff;
	font-size: 1rem;
	font-weight: 900;
	color: #000;
	margin: 0 1rem;
	padding-top: 1rem;
    border-bottom: 3px double #000;
	}
	
.sikaku {
    background: url(../img/sikaku2.png) no-repeat;
    background-position: center left;
    max-width: 41px;
    height: 41px;
    padding: 6px 0 6px 40px;
}

.kuro {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: "Yu Mincho";
    text-align: left;
    padding: 0 1rem 2rem 1rem;
}

	.inner  {
    margin-left: 5%;
	margin-right: 5%;
    padding-bottom: 1rem;
	background: #fff;
    font-size: 1.2em;
    font-weight: bold;
}

.imgres {
  display: block;
  width: 90%;
  height: auto;
  margin: 1rem auto;
  }
  
 .aka {
    color: #c62312;
	}


	}


/*プレゼントリボン*/


.cp_card {
    width: 200px;
    position: relative;
    overflow: visible;
    margin: .5em auto;
    padding: 0 0.5rem 5rem;
	}
.cp_ribbon12 {
	position: absolute;
	z-index: 200;
	top: 15px;
	width: calc(100% + 20px);
    height: 45px;
	margin-right: -18px;
	margin-bottom: 80px;
	margin-left: -18px;
}
.cp_ribbon12:before, .cp_ribbon12:after {
	position: absolute;
	top: 20px;
	bottom: -10px;
	width: 0;
	height: 0;
	content: '';
	border-width: 20px 20px;
}
.cp_ribbon12:before {
	left: -30px;
	border-style: solid;
	border-color: #126631 #126631 #126631 transparent;
}
.cp_ribbon12:after {
	right: -30px;
	border-style: solid;
	border-color: #126631 transparent #126631 #126631;
}
.cp_ribbon12 .cp_ribbon {
	position: relative;
	z-index: 100;
	height: inherit;
	margin-bottom: 0;
	text-align: center;
	color: #ffffff;
    padding-top: 15px;
	background: #018532;
	font-size: 1.1rem;
	font-weight: 600;
}
.cp_ribbon12 .cp_ribbon:before, .cp_ribbon12 .cp_ribbon:after {
	position: absolute;
	bottom: -10px;
	width: 0;
	height: 0;
	content: '';
	border-top: 10px solid #0b5226;
}
.cp_ribbon12 .cp_ribbon:before {
	left: 0;
	border-left: 10px solid transparent;
}
.cp_ribbon12 .cp_ribbon:after {
	right: 0;
	border-right: 10px solid transparent;
}

\