@charset "UTF-8";
body {
	animation: fadeIn 3s ease 0s 1 normal;
	-webkit-animation: fadeIn 3s ease 0s 1 normal;
}
 @keyframes fadeIn {
 0% {
opacity: 0
}
 100% {
opacity: 1
}
}
/*縦スクロールバーエリアを表示*/
html {
	overflow-y: scroll;
	overflow-x: hidden;
	list-style: none;
}
body {
	font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif!important;
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 120%;
	color: #5B5241;
}
/* @group Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
/*通常*/
a:link {
	color: #000;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	text-decoration: none;
}
/*閲覧済み*/
a:visited {
	color: #000;
	text-decoration: none;
}
/*マウスオン*/
a:hover {
	opacity: 0.5;
}
/*クリック中*/
a:active {
	text-decoration: none;
}
/*クリック時の枠線*/
a {
	padding: 0 0 0 0px;
	outline: none;
}
ul, ol {
	list-style: none;
}
/* @end */

/* @group Fluid-img */
img {
	max-width : 100%;
	display: block;
	margin: 0 auto 0 auto;
	vertical-align: middle;
}
/* @end */

/* @group HTML */
html {
	font-size: 83%;
}
/* @end */
div, p {
	text-align: justify;
	text-justify: inter-ideograph;
}
/*FOT-筑紫A丸ゴシック*/
h1 {
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	text-align: center;
	margin: 0 0px 8px 0px;
	letter-spacing: 0.17em;
}
h2 {
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 400;
	font-style: normal;
}
header, .inner {
	width: 1200px;
	margin: 0 auto;
}
header {
	width: 1000px;
	padding: 20px 0 40px 0;
}
footer {
	padding: 14px 0 10px 0;
	position: fixed;
	bottom: 0px;
	background: #fff;
	width: 100%;
}
.inner {
	width: 1000px;
	margin: 0 auto;
	padding: 0;
	display: flex;
}
div.address {
	width: 805px;
}
div.sns {
	width: 190px;
}
ul.sns-icon {
	-webkit-justify-content: flex-end;/*左右中央寄せ*/
	justify-content: flex-end;/*左右中央寄せ*/
	display: -webkit-box;/* Android4.3以前ブラウザ用 */
	display: -webkit-flex;/* iOS8以前Safari用 */
	display: flex;
	-webkit-align-items: flex-start;/*上下中央寄せ*/
	align-items: flex-start;/*上下中央寄せ*/
}
ul.sns-icon li {
	width: 25px;
	margin: 0 3px;
}
footer p.copyright {
	font-size: 70%;
	width: 1000px;
	margin: 30px auto 0;
	letter-spacing: normal;
}
br.ps_no {
	display: none;
}
br.sp_no {
	display: block;
}
div.basic-flame {
	width: 1000px;
	margin: 0 auto 60px auto;
}
a.under {
	text-decoration: underline;
}
/*TOPへ戻るボタン*/
.pagetop {
	z-index: 30;
	position: fixed;
	bottom: 80px;
	right: 35px;
}
.pagetop a {
	z-index: 30;
	display: block;
	background: #CF5C36;
	opacity: 0.7;
	text-align: center;
	color: #000;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
	width: 80px;
	height: 80px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
	position: relative;
}
.pagetop a span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}
#top .pagetop a:hover {
	display: block;
	background-color: #222;
	text-align: center;
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	filter: alpha(opacity=50);
}
/* ----- 以下がエフェクトに関するcssです。 ----- */

.fadein {
	opacity : 0.01;
	transform : translate(0px, 100px);
	transition : all 1000ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0px, 0px);
}
#effect2 .fadein:nth-of-type(2) {
	-moz-transition-delay: 200ms;
	-webkit-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	-ms-transition-delay: 200ms;
}
#effect2 .fadein:nth-of-type(3) {
	-moz-transition-delay: 400ms;
	-webkit-transition-delay: 400ms;
	-o-transition-delay: 400ms;
	-ms-transition-delay: 400ms;
}
#effect2 .fadein:nth-of-type(4) {
	-moz-transition-delay: 500ms;
	-webkit-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
}
#effect2 .fadein:nth-of-type(5) {
	-moz-transition-delay: 700ms;
	-webkit-transition-delay: 700ms;
	-o-transition-delay: 700ms;
	-ms-transition-delay: 700ms;
}
#effect2 .fadein:nth-of-type(6) {
	-moz-transition-delay: 900ms;
	-webkit-transition-delay: 900ms;
	-o-transition-delay: 900ms;
	-ms-transition-delay: 900ms;
}
/*共通---frexbox*/
div.flex-box {
	-webkit-justify-content: space-between;/*左右中央寄せ*/
	justify-content: space-between;/*左右中央寄せ*/
	display: -webkit-box;/* Android4.3以前ブラウザ用 */
	display: -webkit-flex;/* iOS8以前Safari用 */
	display: flex;
	-webkit-align-items: flex-start;/*上下中央寄せ*/
	align-items: flex-start;/*上下中央寄せ*/
	-webkit-flex-wrap: wrap;/*折り返し(mac safari用)*/
	flex-wrap: wrap;/*折り返し*/
	width: 100%;
}
/*メインイメージ背景*/
.swwetsdeco .main-img {
	width: 100%;
	height: 704px;
	background: url(../img/main-bg.jpg) left center repeat-x;
	-webkit-justify-content: center;/*左右中央寄せ*/
	justify-content: center;/*左右中央寄せ*/
	display: -webkit-box;/* Android4.3以前ブラウザ用 */
	display: -webkit-flex;/* iOS8以前Safari用 */
	display: flex;
	-webkit-align-items: flex-end;/*上下中央寄せ*/
	align-items: flex-end;/*上下中央寄せ*/
	-webkit-flex-wrap: wrap;/*折り返し(mac safari用)*/
	flex-wrap: wrap;/*折り返し*/
}
/*塗り絵 ワークショップ*/
.coloringbook header{
	padding:20px 0 0;
}
.coloringbook .main-img{
	width: 100%;
	height:auto;
	background: url(../img/main-bg.jpg) left center repeat-x;
	padding: 40px 0 60px;
}
.coloringbook .main-img h1{
	color: #ef8fac;
	font-size:4rem;
}
.workshop h1{
	letter-spacing: -1px;
}
.workshop .notice{
	margin: 20px 0 20px;
}
.coloringbook .main-img div{
	width: 1000px;
	margin: 0 auto;
}
.coloringbook .main-img div p,
.coloringbook .main-img .application,
.coloringbook h2{
	text-align: center;
}
.coloringbook .main-img div p{
	padding: 0 0 20px;
}
.coloringbook .main-img .application{
	padding: 40px 0 0;
	border-top:1px dashed #5B5241;
	font-size: 1.6rem;
	font-weight:700;
}
.coloringbook.workshop .main-img .application dt,
.coloringbook.workshop .main-img .application dd.day{
	text-decoration: line-through;
}
.coloringbook .main-img .application dt,
.coloringbook .main-img .application dd{
	display: inline-block;
}
.coloringbook picture{
	display: block;
	margin:0 auto 20px;
}
.coloringbook ul.work-list li{
	width:45%;
}
.coloringbook ul.work-list li img{
	border:solid 1px #dcdcdc;
}
.coloringbook div.basic-flame{
	margin: 60px auto;
}
.coloringbook h2{
	font-size:3rem;
}
.coloringbook .details-box{
	margin: 20px auto 0;
}
.coloringbook .yokou{
	padding:0 0 100px 0;
}
.details-box span.notice{
	color:#c70505;
	font-weight: 700;
}
@media screen and (max-width:896px){
	.coloringbook .main-img h1{
		font-size:6vw;
	}
	.coloringbook .main-img div p{
		padding: 0 20px 20px;
	}
	.coloringbook ul.work-list li{
		width:100%;
	}
	.coloringbook picture img{
		width:35%;
	}
}
@media screen and (max-width:480px){
	.coloringbook .main-img{
		height: auto;
	}
	.coloringbook .main-img h1{
		font-size:7vw;
	}
	.coloringbook picture img{
		width:50%;
	}
	.coloringbook .main-img div p{
		text-align: left;
	}
}
/*ここまで*/




div.pc-main {
	display: block;
}
div.sp-main {
	display: none;
}
p.c-text {
	text-align: center;
}
/*ニュース*/
.news-flame {
	background: url(../img/news_wave.png) repeat-x #fae1ea;
	background-size: 100%;
	padding: 100px 0 50px 0;
	margin: 0 0 60px 0;
}
dl.news-list {
	width: 750px;
	margin: 0 auto;
}
dl.news-list dt {
	padding: 0 0 0px 25px;
}
dl.news-list dd {
	border-bottom: 1px dashed #5B5241;
	padding: 0 0 12px 25px;
	margin: 0 0 18px 0;
}
dl.news-list dd a,
div.topics-l a.link{
	text-decoration: underline;
}
dl.news-list strong,
.topics-title strong{
	color:#c70505;
	font-weight: 600;
}
/*作品*/
ul.work-list {
	-webkit-justify-content: space-between;/*左右中央寄せ*/
	justify-content: space-between;/*左右中央寄せ*/
	display: -webkit-box;/* Android4.3以前ブラウザ用 */
	display: -webkit-flex;/* iOS8以前Safari用 */
	display: flex;
	-webkit-align-items: flex-end;/*上下中央寄せ*/
	align-items: flex-end;/*上下中央寄せ*/
	-webkit-flex-wrap: wrap;/*折り返し(mac safari用)*/
	flex-wrap: wrap;/*折り返し*/
}
ul.work-list li {
	width: 31.1%;
	margin: 16px 0 16px 0;
}
div.copy-watanabe {
	-webkit-justify-content: flex-end;/*左右中央寄せ*/
	justify-content: flex-end;/*左右中央寄せ*/
	display: -webkit-box;/* Android4.3以前ブラウザ用 */
	display: -webkit-flex;/* iOS8以前Safari用 */
	display: flex;
	-webkit-align-items: center;/*上下中央寄せ*/
	align-items: center;/*上下中央寄せ*/
}
div.copy-watanabe img {
	margin: 0;
}
/*トピックス*/
.topics-flame {
	background: url(../img/news_wave_b.png) repeat-x #d5eded;
	background-size: 100%;
	padding: 100px 0 50px 0;
	margin: 0 0 60px 0;
}
div.topics-box {
	width: 750px;
	margin: 0 auto 20px auto;
	padding: 0 25px 12px 25px;
	border-bottom: 1px dashed #5B5241;
}
.topics-title {
	font-weight: 600;
	margin: 0 0 10px 0;
}
div.topics-l {
	/*width: 496px;*/
	width: 100%;
}
div.topics-r {
	width: 171px;
	border: 1px solid #707070;
	text-align: center;
	background: #fff;
}
/*詳細*/
.details-box {
	margin: 0px;
	padding: 10px 25px;
	border: solid 1px #8F7A55;
	box-shadow: 0 0 0 5px #fff, 0 0 0 8px #8F7A55;
	border-radius: 3px;
}
table.details-tbl {
	border-collapse: collapse;
	width: 100%;
	margin: 0px 0 0px 0;
}
table.details-tbl th {
	text-align: left;
	padding: 15px 10px 15px 15px;
	font-weight: 500;
	border-bottom: #cacaca 1px solid;
	width: 15%;
	font-weight: 600;
	vertical-align: top;
}
table.details-tbl td {
	border-bottom: #cacaca 1px solid;
	text-align: left;
	padding: 15px 10px 15px 0px;
}
table.details-tbl th.tbl-last {
	border-bottom: none;
}
table.details-tbl td.tbl-last {
	border-bottom: none;
}
/*作家紹介*/
div.writer-introduction {
	background: #FEE792;
	margin: 0 0 30px 0;
}
div.writer-flame {
	width: 835px;
	margin: 0 auto;
	padding: 30px 0;
}
div.writer-l {
	width: 231px;
}
div.writer-r {
	width: 558px;
	font-size: 14px;
}
p.writer-name {
	font-size: 24px;
	font-weight: 600;
	border-bottom : 1px dashed #EE86A7;
	margin: 0 0 10px 0;
}
.industry {
	font-size: 16px;
}
/*主催*/
div.organizer-flame {
	border-bottom: 1px solid #DCDCDC;
	padding: 0 0 8px 0;
	margin: 0 0 110px 0;
}
dl.organizer {
	-webkit-justify-content: flex-start;/*左右中央寄せ*/
	justify-content: flex-start;/*左右中央寄せ*/
	display: -webkit-box;/* Android4.3以前ブラウザ用 */
	display: -webkit-flex;/* iOS8以前Safari用 */
	display: flex;
	-webkit-align-items: flex-start;/*上下中央寄せ*/
	align-items: flex-start;/*上下中央寄せ*/
	-webkit-flex-wrap: wrap;/*折り返し(mac safari用)*/
	flex-wrap: wrap;/*折り返し*/
	font-size: 14px;
	margin: 0 0 0 50px;
}
dl.organizer dt {
	width: 4.5%;
}
dl.organizer dd {
	width: 95%;
}

/* ----- ここからタブレット ----- */
@media screen and (max-width:896px) {
.coloringbook{
	width: calc(100% - 0px);
	margin: 0 auto;
}
.coloringbook .main-img div{
	width: 100%;
}
footer {
	padding: 14px 0 10px 0;
	width: 100%;
}
.inner {
	width: 90%;
	margin: 0 auto;
	padding: 0px 0;
	display: flex;
}
p.c-text{
	text-align: left;
}
div.address {
	width: 70%;
	margin: 0 0 10px 0;
	font-size: 90%;
}
div.sns {
	width: 30%;
}
ul.sns-icon {
	-webkit-justify-content: center;/*左右中央寄せ*/
	justify-content: center;/*左右中央寄せ*/
	display: -webkit-box;/* Android4.3以前ブラウザ用 */
	display: -webkit-flex;/* iOS8以前Safari用 */
	display: flex;
	-webkit-align-items: flex-start;/*上下中央寄せ*/
	align-items: flex-start;/*上下中央寄せ*/
}
footer p.copyright {
	font-size: 65%;
	margin: 20px 0 8px 0;
	letter-spacing: normal;
}
br.ps_no {
	display: block;
}
br.sp_no {
	display: none;
}
header, .inner, .news h3, .news .inner, .news .inner ul, footer .inner, footer p.copyright, footer .about, footer .right {
	width: 94%;
}
div.basic-flame {
	width: 100%;
	margin: 0 auto 60px auto;
}
/*TOPへ戻るボタン*/
.pagetop {
	display: none;
	z-index: 30;
	position: fixed;
	bottom: 65px;
	right: 0px;
}
.pagetop a {
	z-index: 30;
	display: block;
	background: #CF5C36;
	opacity: 0.7;
	text-align: center;
	color: #000;
	font-weight: bold;
	font-size: 10px;
	text-decoration: none;
	width: 65px;
	height: 35px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 0px;
}
/*メインイメージ*/
.main-img {
	width: 100%;
	height: auto;
}
.pc-main {
	display: block;
	padding: 70px 0px 0 10px;
}
/*ニュース*/
.news-flame {
	background-size: 100%;
	padding: 50px 0 30px 0;
	margin: 0 0 40px 0;
}
dl.news-list {
	width: 90%;
	margin: 0 auto;
}
dl.news-list dt {
	padding: 0 0 0px 0px;
}
dl.news-list dd {
	padding: 0 0 12px 0px;
	margin: 0 0 18px 0;
}
/*作品*/
ul.work-list {
	-webkit-justify-content: center;/*左右中央寄せ*/
	justify-content: center;/*左右中央寄せ*/
	display: -webkit-box;/* Android4.3以前ブラウザ用 */
	display: -webkit-flex;/* iOS8以前Safari用 */
	display: flex;
	-webkit-align-items: flex-end;/*上下中央寄せ*/
	align-items: flex-end;/*上下中央寄せ*/
	-webkit-flex-wrap: wrap;/*折り返し(mac safari用)*/
	flex-wrap: wrap;/*折り返し*/
}
ul.work-list li {
	width: 43%;
	margin: 10px 10px 10px 10px;
}
div.copy-watanabe {
}
div.copy-watanabe img {
	margin: 0 10px 0 0;
}
/*トピックス*/
.topics-flame {
	background: url(../img/news_wave_b.png) repeat-x #d5eded;
	background-size: 100%;
	padding: 50px 0 30px 0;
	margin: 0 0 40px 0;
}
div.topics-box {
	width: 90%;
	margin: 0 auto 20px auto;
	padding: 0 25px 12px 25px;
	border-bottom: 1px dashed #5B5241;
}
div.topics-l {
	width: 100%;
}
div.topics-r {
	width: 70%;
}
/*詳細*/
.details-box {
	margin: 0px auto;
	padding: 5px 20px;
	width: 85%;
}
table.details-tbl th {
	text-align: left;
	padding: 15px 0px 0px 10px;
	font-weight: 500;
	border-bottom: none;
	display: block;
	width: 100%;
	font-weight: 600;
}
table.details-tbl td {
	border-bottom: #cacaca 1px solid;
	text-align: left;
	padding: 10px;
	display: block;
}
/*作家紹介*/
div.writer-introduction {
	margin: 0 0 30px 0;
}
div.writer-flame {
	width: 90%;
	margin: 0 auto;
	padding: 30px 0;
}
div.writer-l {
	width: 55%;
	margin: 0 auto 15px auto;
}
div.writer-r {
	width: 100%;
	font-size: 14px;
}
p.writer-name {
	font-size: 24px;
	margin: 0 0 10px 0;
}
.industry {
	font-size: 16px;
}
/*主催*/
div.organizer-flame {
	padding: 0 0 8px 0;
	margin: 0 0 160px 0;
}
dl.organizer {
	font-size: 14px;
	margin: 0 auto 0 auto;
	width: 90%;
}
dl.organizer dt {
	width: auto;
	margin: 0 0 0 0;
}
dl.organizer dd {
	width: 88%;
}
}

/* ----- ここからスマホ ----- */
@media screen and (max-width:480px) {
header, .inner {
	width: 95%;
	margin: 0 auto;
}
header {
	width: 95%;
	padding: 20px 0 40px 0;
}
div.address {
	width: 100%;
	margin: 0 0 10px 0;
}
div.sns {
	width: 100%;
}
/*FOT-筑紫A丸ゴシック*/
h1 {
	font-size: 24px;
	letter-spacing:-1px;
}
h2 {
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.coloringbook {
	width: 100%;
	margin: 0 auto;
}
div.basic-flame {
	width: 100%;
	margin: 0 auto 60px auto;
}
/*メインイメージ*/
.swwetsdeco .main-img {
	width: 100%;
	height: auto;
	background: url(../img/sp-main-bg.jpg) left center;
	-webkit-justify-content: center;/*左右中央寄せ*/
	justify-content: center;/*左右中央寄せ*/
	display: -webkit-box;/* Android4.3以前ブラウザ用 */
	display: -webkit-flex;/* iOS8以前Safari用 */
	display: flex;
	-webkit-align-items: flex-end;/*上下中央寄せ*/
	align-items: flex-end;/*上下中央寄せ*/
	-webkit-flex-wrap: wrap;/*折り返し(mac safari用)*/
	flex-wrap: wrap;/*折り返し*/
}
.pc-main {
	display: none;
}
div.pc-main {
	display: none;
}
div.sp-main {
	display: block;
}
/*作家紹介*/
p.writer-name {
	font-size: 20px;
	margin: 0 0 10px 0;
}
.industry {
	font-size: 15px;
}
/*主催*/
div.organizer-flame {
	padding: 0 0 8px 0;
	margin: 0 0 180px 0;
}
dl.organizer dt {
	width: 17%;
	margin: 0 0 0 0;
}
dl.organizer dd {
	width: 80%;
}
}
