@charset "UTF-8";

/*　common 上書き
--------------------------------------------------------------*/
body {
    width: auto;
    background-color: #E0EEFF;
}
.wrapper {
    border-top: solid 5px #2a9d8c;
    font-size: 16px;
		background-color: #fff;
	    margin: 0 auto 0;
 max-width: 1600px;
}
.main_wrap {
    margin: 0 auto 80px;
 max-width: 1600px;
    width: 100%;
    overflow: hidden;
}
.main_box {
    float: none;
    width: 100%;
}
.header_wrap {
	 background: none;
    min-height: 100%;
}
.header_box {
    max-width: 1600px;
	width: 100%;
    margin: 0 auto;
    padding: 20px 20px 25px;
    box-sizing: border-box;
}
.sub_nav li.display_sp{
  display: none;
}	
.footer_wrap {
    min-height:500px;
}
.footer_box {
    max-width: 1400px;
	width: 100%;
}
.openbtn{
	display: none;
}
.madoguchi {
    width: 1020px;
}
p {
    letter-spacing: 0.03em;
}

@media screen and (max-width:999px){
.wrapper {
    border-top: solid 5px #2a9d8c;
    font-size: 16px;
	padding-top: 89px;
}
header{
	position: fixed;
    width: 100%;
    border-top: solid 5px #2a9d8c;
    top: 0;
	z-index: 9;
	background-color: #fff;
}
.header_logo img{
 max-width: 210px;
}
.header_wrap {
    background: #fff;
    min-height: 100%;
    position: relative;
    width: 100%;
}
.sub_nav_box {
    float: none;
    max-width: 100%;
}
.sub_nav {
  position: absolute;
	width: 100%;
	top: 69px;
    left: 0%;
	background-color: #eee;
}
.sub_nav li {
  float: none;
  width: 100%;
  background: none;
    padding: 0;
    margin: 0;
}
.sub_nav li.display_sp{
  display: block;
	background-color: #fff;
}
.sub_nav li.display_sp a{
	color: #333;
    font-size: 1.2em;
}
.sub_nav li a{
   display: block;
   width: 100%;
	text-decoration: none;
    padding: 1em;
	box-sizing: border-box;
	border-top: 1px solid #ddd;
}
.nav .sub_nav {
	opacity: 0;
	transition: all .4s;/*アニメーションの設定*/
	visibility: hidden;
}
.nav.is-open .sub_nav {
	opacity: 1;
	visibility: visible;
}

	
/*==================================================
ハンバーガーメニュー 3本線が回転して×に
===================================*/
.openbtn{
	position: relative;/*ボタン内側の基点となるためrelativeを指定*/
	background:#eee;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 4px;
	position: absolute;
	right: 20px;
	top: 20px;
	display: block;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 8px;
    height: 2px;
    border-radius: 2px;
  background: #333;
	text-align: center;
  }


.openbtn span:nth-of-type(1) {
  top:9px; 
    width: 65%;
}

.openbtn span:nth-of-type(2) {
  top:16px;
    width: 55%;
}

.openbtn span:nth-of-type(3) {
  top:23px;
    width: 45%;
}
.openbtn span:nth-of-type(4) {
	font-size: 0.625em;
 	top:29px;
    width: 25%;
	background: none;
	font-weight: bold;
	height: 0;
	left: 8px;
/*	letter-spacing: 0.1em;*/
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/*activeクラスが付与されると線が回転して×になる*/

.openbtn.active span:nth-of-type(1) {
    top: 11px;
    left: 17px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 23px;
    left: 17px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}

/*フッター上書き	*/
.address {
    padding: 0 0 50px;
    border-right: 0px;
    border-bottom: 1px solid #bfbfbf;
    width: 100%;
    float: none;
	text-align: center;
}
.madoguchi {
    float: none;
    width: 100%;
    margin-top: 2em;
}	
.footer_box {
    width: 100%;
    margin: auto;
    padding: 30px 20px 0;
	box-sizing: border-box;
}	
.banner.footer_box {
    padding: 30px 20px 70px;
}		
}

/*　メインビジュアル
--------------------------------------------------------------*/
.mv{
	background-image: url("images/mv_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 700px;
	display: flex;
	align-items: center;
    padding: 20px;
	box-sizing: border-box;
        flex-direction: column;
    justify-content: center;
}
.mv h2{
	width: 100%;
	margin: 0 auto;
	max-width: 856px;
}
.mv h2 img{
	width: 100%;
	 -webkit-filter: drop-shadow(0px 3px 10px rgba(0,0,0,.6));
        filter: drop-shadow(0px 0px 10px rgba(255,255,255,.6));
}
.kokai{
    width: 100%;
    text-align: center;}
    .kokai br{display: none;}
@media screen and (max-width:999px){
.mv{
	height: 100%;
}	
    .kokai{
    width: 100%;
    text-align: center;}
    .kokai br{display: block;}
}

/*共通css
------------------------------------------------------------*/
.flex_box{
	display: flex;
	justify-content: space-between;
}
.flex_box.col2{
	flex-wrap: wrap;
}
.flex_box.col2::after{
	content: "";
	width: 49%;
	display: block;
}
.flex_box.col2 .flex_item{
	width: 49%;
}
.flex_box.col3{
	flex-wrap: wrap;
}
.flex_box.col3 .flex_item{
	width: 32%;
}
.flex_box.col3::after{
	content: "";
	width: 32%;
	display: block;
}
.flex_box.col4{
	flex-wrap: wrap;
}
.flex_box.col4 .flex_item{
	width: 24%;
}
.flex_box.col4::after{
	content: "";
	width:24%;
	display: block;
}
.flex_item img{
	width: 100%;
}

@media screen and (max-width:999px){
.flex_box.col2 .flex_item{
	width: 100%;
}
.flex_box.col3 .flex_item{
	width: 100%;
}
.flex_box.col4 .flex_item{
	width: 100%;
}
.flex_box.col4::after{
	content: "";
	width:100%;
	display: block;
}
}
/*contents_box
------------------------------------------------------------*/
.contents_box{
padding: 3em 20px 5em;
}
.contents_inner.bg{
	max-width: 1400px;
	margin: 0 auto;
}
.contents_box h3{
	margin:2.5em 0 2em;
}

@media screen and (max-width:999px){
.contents_box h3 img{
	max-width: 100%;
}
}

/*趣旨
------------------------------------------------------------*/
.about_box{
	text-align: center;
	padding: 3em 20px 5em;
}
.about_box .contents_inner{
	background-image: url("images/about_box_bg_l.png"),url("images/about_box_bg_r.png");
	background-position: left center,right center;
	background-repeat: no-repeat;
	
}
.about_box .flex_box{
	max-width: 770px;
	margin: 2.5em auto 0;
}
.about_box p{
	-moz-text-shadow: 0px 0px 3px rgba(255, 255, 255, 1),0px 0px 3px rgba(255, 255, 255, 1);
-webkit-text-shadow:0px 0px 3px rgba(255, 255, 255, 1),0px 0px 3px rgba(255, 255, 255, 1);
-ms-text-shadow:0px 0px 3px rgba(255, 255, 255, 1),0px 0px 3px rgba(255, 255, 255, 1);
text-shadow: 0px 0px 3px rgba(255, 255, 255, 1),0px 0px 3px rgba(255, 255, 255, 1);
}
.about_box .flex_box a {
	text-decoration: none;
}
.about_box .flex_box a span{
display: block;
	color: #000;
	font-size: 1.2em;
	text-decoration: none;
	margin-top: 0.5em;
	display: flex;
	justify-content: center;
	align-items: center;
}
.about_box .flex_box a span::after{
	content:"";
	width: 17.83px;
	height: 14.28px;
	background-image: url("images/arrow.svg");
	-webkit-background-size: cover;
	background-size: cover;
}
@media screen and (max-width:999px){
.about_box p{
	text-align: left;
}
.about_box .contents_inner{
	background-image: none;
}
.about_box .flex_item{
	max-width: 320px;
	margin: 1em auto;
}
.about_box .flex_box.col3 .flex_item{
	width: 47%;
}
.about_box .flex_box a span{
	font-size: 0.8em;
}
.about_box .flex_box.col3::after{
	width: 47%;
}
}
/*ウェブギャラリー
------------------------------------------------------------*/
.gallery_box.contents_box h3 {
    margin: 0;
}

.gallery_box{
	background-color:#EEEEEE;
	padding: 4em 20px 7em;
}
.gallery_box .contents_inner{
	max-width: 1400px;
	margin-bottom: 3em;
	
}
.gallery_item.title_item{
	width: 45%;
}
.gallery_item.title_item img{
	width: 100%;
}
.gallery_item.img_box{
	width: 50%;
}
.gallery_item.img_box img{
	width: 100%;
}
.gallery__item a{
width: 100%;
	display: block;
	color: #333;
	text-decoration: none;
	margin-top: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.25em;
}
.gallery__item a::after{
	content:"";
	width: 40px;
	height: 40px;
	background-image: url("images/arrow_circle.svg");
	-webkit-background-size: cover;
	background-size: cover;
	display: block;
	margin-left: 0.5em;
}
.gallery_box .btn_g{
	max-width: 548px;
	margin: 3em 0 0;
	text-align: center;
}

@media screen and (max-width:999px){
.gallery_box .contents_inner{
	flex-wrap: wrap;
	
}
.gallery_item.title_item{
	width: 100%;
}
.gallery_item.img_box{
	margin: 3em 0 0;
	width: 100%;
}
}

.intro02{
background-color: #D3E2E1;
    padding: 5em 20px!important;
}

.intro02 a.btn{
        display: block;
    background-color: #fff;
    padding: 1em;
    text-decoration: none;
    color: #333;
    margin: 1.5em auto 0.5em;
    max-width: 450px;
    box-sizing: border-box;
}



/*特選作品のご紹介
------------------------------------------------------------*/
p.award{
	font-size: 1.25em;
	background-image: url("images/award_bg.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	padding: 2em 0 1em;
	font-weight: bold;
	margin-bottom: 1em;
}
p.award span{
	font-size:1.3em;
	text-align: center;
}
.Introduction_box{
	text-align: center;
	padding: 3em 0;
	background-image: url("images/Introduction_calligraphys03_bg.png"),url("images/Introduction_painting_bg.png");
	background-repeat: no-repeat;
    background-position: right 12% center,left 12%center;
    background-size: 14%,12%;
}
.Introduction_box ul{
    max-width: 1400px;
    margin: 3em auto;
}
.Introduction_box ul li{
	width: 19.9%;
}
.Introduction_box ul li a{
	text-decoration: none;
	background:url("images/arrow_b.svg"),#EEEEEE;
	background-repeat: no-repeat;
	background-size: 170px 8px;
	background-position: center bottom 15px;
	display: block;
	width: 100%;
	text-align: center;
	padding: 1.5em 0 2em;
	color: #000;
	font-size: 1.2em;
}
.Introduction_box .contents_item{
	background-color:  #EBEBEB;
	padding: 5em 20px;
}
.Introduction_box .contents_item .contents_item_inner{
	max-width: 1200px;
	margin: 0 auto;
}
.Introduction_box  h4{
	font-size: 2.5em;
	margin-bottom: 1em;
}
.Introduction_box .text_box p{
	font-size:1.3em;
}
.Introduction_box h4::before{
	content: "";
	background-image: url("images/Introduction_h4_icon_poster.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	width: 90px;
	height: 90px;
	display: block;
	margin: 0 auto 0.5em;
}
/*
.img_box img{
	width: 100%;
}
*/
/*審査講評*/
.appraise_box{
	background: #fff;
	padding: 2em;
	border-radius: 20px;
	margin: 2em auto 0;
	max-width: 450px;
	box-sizing: border-box;
}
.appraise_box.bg{
	background: #eee;

}
.appraise_box h5{
	font-size: 1.2em;

}
.Introduction_box .appraise_box p{
	text-align: left;
	font-size: 0.9em;
	margin-top: 0.5em;
}


/*ポスターの部---------------------------------------------------------*/
.poster_item .img_box{
	max-width: 520px;
}
.poster_item .img_box img{
	width: 100%;
}
.poster_item .text_box{
	width: 50%;
	margin:3em auto 0;
}
.Introduction_box .poster_item{
	background: url("images/Introduction_poster_bg.png"),#DBE8E5;
	background-repeat: no-repeat;
	background-position: right 100px bottom 50px;
	background-size: 150px auto;
}

/*書道 条幅の部---------------------------------------------------------*/
.Introduction_box .calligraphys_item>.contents_item_inner{
	width: 50%;
	background-color: #CAD8EB;
	padding: 5em 4em;
	box-sizing: border-box;
	margin: 0;
}
#calligraphy01{
	background-image: url("images/Introduction_calligraphys01_bg.png");
	background-repeat: no-repeat;
	background-position: right 100px bottom 100px;
	flex-wrap: wrap;
    align-content: flex-start;
}
#calligraphy01 h4{
	width: 100%;
}
#calligraphy01 .img_box{
	width:45%;
}
#calligraphy01 .img_box img{
	max-width: 100%;
}
#calligraphy01 h4::before{
	content: "";
	background-image: url("images/Introduction_h4_icon_calligraphy01.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	width: 60px;
	height: 60px;
	display: block;
}
#calligraphy01 .text_box{
	width: 50%;
}


/*書道 半紙の部---------------------------------------------------------*/
.Introduction_box .calligraphys_item>.contents_item_inner#calligraphy02 {
   background-color: #F5F5F5;
	background-image: url("images/Introduction_calligraphys02_bg.png");
	background-repeat: no-repeat;
    background-position: right 60px bottom 130px;
}
#calligraphy02 .img_box img{
	max-width: 100%;
}
#calligraphy02 h4::before{
	content: "";
	background-image: url("images/Introduction_h4_icon_calligraphy02.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	width: 60px;
	height:60px;
	display: block;
}
.Introduction_box .calligraphys_item {
    padding:0;
}

#calligraphy02 .text_box{
	align-items: center;
	max-width: 500px;
	margin: 2em auto 0;
}
/*
#calligraphy02 .text_box p{
	text-align: left;
}
*/
.contents_item img.winner{
	width: 100%;
	max-width: 250px;
	height: 250px;
}
/*絵画の部---------------------------------------------------------*/
.Introduction_box .contents_item#painting {
    background-color: #fff;
    padding: 5em 0;
	background-image: url("images/Introduction_painting_bg.png");
	background-repeat: no-repeat;
	background-position: left 50px bottom 50px;
}
#painting h4::before{
	content: "";
	background-image: url("images/Introduction_h4_icon_painting.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	width: 62px;
	height:62px;
	display: block;
}
.painting_item .text_box{
	width: 40%;
	background-color: #efefef;
	padding: 2em 0 3em;
}
.painting_item .img_box{
	max-width: 669px;
}
.painting_item .img_box img{
	width: 100%;
}
.painting_item .flex_box{
	align-items: center;
}
.painting_item .flex_box:nth-of-type(2){
	margin-top: 3em;
	max-width: 1200px;
}
.painting_item .flex_box:nth-of-type(1) div:nth-of-type(1){
	order: 2;
}
.painting_item .flex_box:nth-of-type(1) div:nth-of-type(2){
	order: 1;
}

/*作文の部---------------------------------------------------------*/

.Introduction_box .contents_item#writing {
    padding: 5em 0;
	background-image: url("images/Introduction_calligraphys03_bg.png"),url("images/Introduction_calligraphys02_bg.png");
	background-repeat: no-repeat;
	background-position: left 5% top 52%,right 5% top 52%;
	background-size:120px auto, 161px auto;
}
#writing h4::before{
	content: "";
	background-image: url("images/Introduction_h4_icon_writing.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	width: 62px;
	height:62px;
	display: block;
}

.writing_item .contents_item_inner{
	padding-bottom: 7em;
}

.writing_item .contents_item_inner:nth-of-type(2) {
	border-top: 2px solid #CCC;
	  border-image:linear-gradient(to right, transparent, #ccc 25%, #ccc 75%, transparent);
  border-image-slice: 1 0 0 0;
	padding: 7em 0 3em;
}
.writing_item .contents_item_inner:nth-of-type(2) div:nth-of-type(1){
	order: 2;
}
.writing_item .contents_item_inner div:nth-of-type(2){
	order: 1;
}
.writing_item .text_box{
	width: 50%;
	max-width: 422px;
}
@media screen and (max-width:999px){
.Introduction_box{
	padding: 3em 0 0;
  background-image: none;
}
.Introduction_box .flex_box{
	flex-wrap: wrap;
}
.Introduction_box .contents_item {
	padding:3em 20px;
	background-image: none;
}
.Introduction_box ul.flex_box {
	padding: 0 20px;
}
.Introduction_box .flex_box li{
	width: 48.9%;
	margin-bottom: 0.5em;
}
.Introduction_box ul li a {
    font-size: 0.9em;
}
/*ポスターの部---------------------------------------------------------*/
.poster_item .contents_item_inner{
	
}
.Introduction_box h4 {
    font-size: 2em;
}
/*
.Introduction_box h4::before {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto;
}
*/
.poster_item .text_box {
    width: 100%;
    margin: 1em auto 0;
	order: 1;
}
.poster_item .img_box {
	order: 2;
	    margin: 2em auto 0;
}
	
/*書道 条幅の部---------------------------------------------------------*/
#calligraphy01 {
    background-image: none;
}
#calligraphy01.flex_box{
	flex-wrap: wrap;
}
.Introduction_box .calligraphys_item {
    padding: 0;
	flex-wrap: wrap;
}
.Introduction_box .calligraphys_item>.contents_item_inner {
    width: 100%;
    background-color: #E7EADE;
    padding:3em 20px;
    box-sizing: border-box;
    margin: 0;
}
#calligraphy01 .text_box{
	order: 1;
	width: 100%;
}
#calligraphy01  .img_box{
	order: 2;
	width: 100%;
	max-width: 80%;
	margin: 3em auto;
}
.calligraphys_item .img_box img{
	width: 100%;
}
/*書道 半紙の部---------------------------------------------------------*/
.Introduction_box .calligraphys_item>.contents_item_inner#calligraphy02 {
    background-image:none;
}
#calligraphy02 .text_box{
	order: 1;
	width: 100%;
	flex-wrap: wrap;
/*    display: block;*/
	text-align: center;
    margin: 0 auto 0;
}
#calligraphy02 .img_box {
	order: 2;
	width: 100%;
	max-width:100%;
	margin: 3em auto;
}
#calligraphy02 .text_box p{
	text-align: center;
}
/*絵画の部---------------------------------------------------------*/
.Introduction_box .contents_item#painting {
    padding: 5em 20px;
	background-image: none;
}
#painting h4::before{
	content: "";
	background-image: url("images/Introduction_h4_icon_painting.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	width: 62px;
	height:62px;
	display: block;
}
.painting_item .text_box{
	width: 100%;
}
.painting_item .img_box{
margin: 2em auto;
}

.painting_item .flex_box:nth-of-type(2){
	margin-top: 3em;
}
.painting_item .flex_box:nth-of-type(1) div:nth-of-type(1){
	order: 1;
}
.painting_item .flex_box:nth-of-type(1) div:nth-of-type(2){
	order: 2;
}

/*作文の部---------------------------------------------------------*/

.Introduction_box .contents_item#writing {
    padding: 5em 20px;
	background-image: none;
}
#writing h4::before{
	content: "";
	background-image: url("images/Introduction_h4_icon_writing.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size:cover;
	width: 62px;
	height:62px;
	display: block;
}

.writing_item .contents_item_inner{
	padding-bottom: 5em;
}

.writing_item .contents_item_inner:nth-of-type(2) {
	border-top: 2px solid #CCC;
	  border-image:linear-gradient(to right, transparent, #ccc 25%, #ccc 75%, transparent);
border-image-slice: 1 0 0 0;
	padding: 5em 0 3em;
}
.writing_item .contents_item_inner:nth-of-type(2) div:nth-of-type(1){
	order: 2;
}
.writing_item .contents_item_inner div:nth-of-type(2){
	order: 1;
}
.writing_item .text_box{
	width: 100%;
	max-width: 100%;
	order: 1;
}
.writing_item .img_box{
	order: 2;
	margin-top: 2em;
	width: 100%;
}
.writing_item .img_box img{
	width: 100%;
}	

}


/*団体賞
------------------------------------------------------------*/
.group_award_box{
	text-align: center;
	max-width: 1400px;
	margin: 0 auto;
}
.group_award_box .flex_box{
	justify-content: space-around;
	margin-bottom: 3em;
}
.group_award_box h3+p{
	margin-bottom:2em;
}

.group_award_box .school_name_box .contents_item{
	max-width: 660px;
	margin: 2em 0;
	border-right: 1px solid #D1D1D1;
	box-sizing: border-box;
}
.group_award_box .contents_item:last-of-type{
border-right: none;
}
.group_award_box .contents_item p{
	font-size: 1.4em;
    font-weight: bold;
    line-height: 1.4;
}

.group_award_box .contents_item p.award{
	font-size: 1.25em;
	padding:3em 2em 1em;
	background-repeat: no-repeat;
	line-height: 1.5;
	font-size: 1em;
	letter-spacing: 0.1em;

}
.group_award_box .contents_item p.award span{
	font-size:1.3em;
	text-align: center;
}

.group_award_box a.btn_g{
	max-width: 548px;
	margin: 0 auto;
}
@media screen and (max-width:999px){
.group_award_box .contents_inner .flex_box:nth-of-type(2) .contents_item{
	max-width: 660px;
	margin: 0.5em 0;
}
.group_award_box .school_name_box .contents_item{
	border-bottom: 1px solid #D1D1D1;
	border-right: none;
	box-sizing: border-box;
	padding: 0em 0 4em;
}
}
/*審査員評価
------------------------------------------------------------*/
.judge_box{
	background-color: #eee;
	text-align: center;
}
.judge_box .contents_item h5{
	text-align: center;
	font-size: 1.625em;
	margin: 0.5em;
	line-height: 1.5
}
.judge_box .contents_item span{
	font-size: 0.615em;
	display: block;
}
.judge_box .contents_item p{
	text-align: left;
}
.judge_box .flex_item {
    max-width: 800px;
	margin: 3em auto;
}
@media screen and (max-width:999px){
.judge_box .flex_item {
    margin: 3em auto;
}
}
/*過去の入賞作品
------------------------------------------------------------*/
.past_box{
	text-align: center;
	max-width: 1400px;
	margin: 0 auto;
}

.past_box .contents_item{
	margin-top: 1em;
}

.link_box .contents_item{
	background-color: #eee;
	text-align: center;
	margin-top: 2em;
		display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.link_box .contents_item:nth-of-type(1) img{
	max-width: 347px;
}
.link_box .contents_item:nth-of-type(2) img{
	max-width: 75px;
}
.link_box .contents_item a{
	display: block;
	color: #333;
	text-decoration: none;
	padding: 2em;
	width: 100%;
	box-sizing: border-box;
}
.link_box .contents_item span{
	display: block;
	margin-top: 1em;
}
@media screen and (max-width:999px){
.past_box .contents_item{
	margin-top: 1em;
}

}


/*各種ボタンまとめ
------------------------------------------------------------*/


/*作文部門のボタン*/
.text_box a.btn{
	display: block;
	background-color: #fff;
	padding: 1em;
	text-decoration: none;
	color: #333;
	margin: 1.5em auto 0.5em;
	max-width: 450px;
	box-sizing: border-box;
}
/*受賞者のコメント　背景灰色ボタン*/
.text_box a.btn_g2{
	display: block;
	background-color: #eee;
	padding: 1em;
	text-decoration: none;
	color: #333;
	margin: 1.5em auto 0.5em;
	max-width: 450px;
	box-sizing: border-box;
}


/*矢印付き灰色のボタン*/
a.btn_g{
	display: block;
	background-color: #DDD;
	padding: 1.3em;
	text-decoration: none;
	color: #333;
	background-image: url("images/arrow.svg");
	background-size: 17.83px 14.28px;
	background-position: center right 20px;
	background-repeat: no-repeat;
}
/*矢印付きちょっと薄い灰色のボタン*/
a.btn_lg{
	display: block;
	background-color: #eee;
	padding: 1.3em;
	text-decoration: none;
	color: #333;
	background-image: url("images/arrow.svg");
	background-size: 17.83px 14.28px;
	background-position: center right 20px;
	background-repeat: no-repeat;
}
/*審査員評価h5*/
.judge_box .flex_box_h5{
	max-width: 400px;
	margin: 0 auto;
}

/*審査員評価ボタン*/
.judge_box a.btn_g{
	max-width: 548px;
	margin: 3em auto;
}
@media screen and (max-width:999px){
/*審査員評価h5*/
.judge_box .flex_box_h5{
	flex-wrap: wrap;
    justify-content: center;
}
}


/*フッターbanner
------------------------------------------------------------*/
.banner .flex_item{
	margin-bottom: 1em;
}
@media screen and (max-width:999px){
.banner .col4 .flex_item{
	margin-bottom: 0.5em;
	width: 49%;
}	
}

/*pc・spのみ表示の切り替え
------------------------------------------------------------*/
.display_sp{
	display: none;
}
@media screen and (max-width:999px){
.display_pc{
	display: none;
}
.display_sp{
	display: block;
}
}

/*募集要項
------------------------------------------------------------*/
.oubo_box{
	/*border: 1px solid #D1D1D1;*/
	background-color: rgba(255,245,200,.70);
	max-width: 800px;
	margin: 50px auto;
	padding: 30px;
}
/*1つの時*/
.oubo_box .flex_box.col3 .flex_item:first-child:last-child{
	margin: 0 34%;
}
.contents_box h3.oubo_title{
	padding: 0;
	margin: 0;
	font-size: 1.5em;
	font-weight: normal;
}
.contents_box h3.oubo_title span{
	font-size: 1.5em;
	font-weight: bold;
	letter-spacing: .1em;
}
.archive_title{
	background-color: #2a9d8c;
	text-align: center;
	padding: 20px;
	margin: 0;
	color: #fff;
	letter-spacing: .1em;
	font-size: 1.8em;
	
}
@media screen and (max-width:999px){
	.oubo_box{
		margin: 50px auto 0;
		padding: 50px 20px;
	}
	/*1つの時*/
	.oubo_box .flex_box.col3 .flex_item:first-child:last-child{
		margin: 0 20%;
		width: 80%;
		max-width: 80%;
		
	}
	.contents_box h3.oubo_title{
		font-size: 1.2em;
	}
	.archive_title{
		font-size: 1.3em;
		letter-spacing: normal;
	}
}

a.collection_btn{
    display: block;
    background-color: #fff;
    padding: 1em;
    text-decoration: none;
    color: #333;
    margin: 1.5em auto 0.5em;
    max-width: 450px;
    box-sizing: border-box;
}

article.collection {
    padding: 5em 1em;
    background-color: #D3E2E1;
}
article.collection {
background-image: url(images/about_box_bg_r.png),url(images/about_box_bg_l.png);
    background-repeat: no-repeat;
    background-position: right 10% center,left 10% center;
    background-size: 250px;
}
@media screen and (max-width:999px){
    article.collection {
	background-image: none;}
}
















































