@charset "utf-8";
/* ----------------------------------------------
common
---------------------------------------------- */
html { scroll-behavior: smooth;}

section{
    width:100%;
}

.cf:after{
    content:"";
    display:block;
    clear:both;
}

.fl{
	float: left;
}

.fr{
	float:right;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
section {
	width: 100%;
}
.contentsW {
	margin:0 auto;
	padding: 60px 0;
	max-width: 1200px;
	width: 90%;
}
@media screen and (max-width: 768px) {
	.contentsW { padding: 10% 0; }
}
.center {
	text-align: center;
}

a {
    transition-property: all;
    transition: 0.3s linear;
}
a:hover {
    opacity:0.5;
}
img {
	width: 100%;
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}

@media screen and (max-width: 768px) {
	section{
		width:100%;
		margin:0 auto;
		overflow: hidden;
	}


	.contents_main{
		width:90%;
		margin:30px auto;
		background-color: #fff;
		border-radius: 10px;
		padding:10px 0 30px 0;
	}

	/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
	.pc { display: none !important; }
	.sp { display: block !important; }
}

/* ----------------------------------------------
Fonts
---------------------------------------------- */
@font-face {
	font-family: "ZenKakuGothic";/*要素に指定するときに使うフォント名*/
	src:url(../../shared/fonts/ZenKakuGothicNew-Medium.woff2) format('woff2');
	src:url(../../shared/fonts/ZenKakuGothicNew-Medium.woff) format('woff');
	font-display: swap;
}
body{
	font-family: 'ZenKakuGothic', serif;
  	letter-spacing: 1px;
	line-height: 1.5;
	color:#333;
	font-size: 1.1rem;
	font-weight: 500;
	position: relative;
  	z-index: 1;
	caret-color: transparent;
}
/* HTMLタグに適用 */
::selection {
	color: #fff;
	background-color: #000;
}
h2 { font-size: 24px; }
h3 {
	font-size: 36px;
	line-height: 1.2;
	font-weight: bold;
}
h4 {
	font-size: 34px;
	line-height: 1.2;
}
h5 {
	font-size: 28px;
	line-height: 1.2;
}
@media screen and (max-width: 768px) {
	h2 { font-size: 1.3rem; line-height: 1.2; }
	h3 { font-size: 1.3rem; line-height: 1.2; }
	h4 { font-size: 1.3rem; line-height: 1.2; }
	h5 { font-size: 1rem; line-height: 1.2; }
}

.f_green { color:#389961; }
.f_red { color:#cd3c76; }

.f_large { font-size: 120%; }
.f_small { font-size: 80%; }

/* ----------------------------------------------
回収申込ボタン
---------------------------------------------- */
.appBTN {
	margin-top: 50px;
}
.appBTN a.appB {
	margin-bottom: 15px;
	padding: 20px 50px;
	background: rgb(253,119,0);
	background: linear-gradient(50deg, rgba(253,119,0,1) 0%, rgba(255,172,65,1) 100%);
	border-radius: 9999px;
	display: inline-block;
	color:#fff;
	font-size: 24px;
	text-decoration: none;
}
.appBTN p a:link,
.appBTN p a:visited {
	text-decoration: underline;
}
.appBTN p a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.appBTN p a:link,
	.appBTN p a:visited {
		font-size: 0.8rem;
	}
}
/* ----------------------------------------------
スマホ版
回収申込ボタン
---------------------------------------------- */
#SPappBTN {
	padding: 2.5% 0;
	position: fixed;
	bottom:0;
	left:0;
	width: 100%;
	text-align: center;
	background:linear-gradient(45deg,#25a739,#FFFB7D,#25a739);/*グラデーションを定義*/
	background-size: 200% 200%;/*サイズを大きくひきのばす*/
	animation: bggradient 15s ease infinite;
}
@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
#SPappBTN .appBTN {
	margin:0 auto;
	width: 90%;
}
#SPappBTN .appBTN p {
	font-size:12px;
}
#SPappBTN .appBTN a.appB {
	margin-bottom: 0;
	padding: 2%;
	font-size: 18px;
	width: 100%;
	text-align: center;
}
@media screen and (min-width: 768px) {
	#SPappBTN {
		display: none;
	}
}

/* ----------------------------------------------
Header
---------------------------------------------- */
header {
	width: 100%;
	position: fixed;
	top:0;
	left:0;
	background: #fff;
	box-shadow: 0 2px 10px 3px rgba(0,0,0,0.1);
	z-index: 999;
}
.sep_logo {
	width: 170px;
	background: #25a739;
}
header nav {
	font-size: 16px;
	line-height: 1.0;
	width:75%;
}

header nav ul {
	display: table;
	border-collapse: separate;
  	border-spacing: 25px 0;
	margin-left: -25px;
}
header nav ul li {
	display: table-cell;
  	vertical-align: middle;
	text-align: center;
	font-size:clamp(10px, 1rem, 16px);
}
header a:link,
header a:visited {
	text-decoration: none;
	color:#333;
}
@media screen and (max-width: 768px) {
	header .appBTN {
		display:none;
	}
	header nav ul li {
		display: none;
	}
	header nav ul li:first-child {
		display: block;
	}
	.sep_logo {
		width: 40%;
	}
}

header .appBTN {
	margin-top:0;
	position: absolute;
	top:0;
	right: 10px;
}
header .appBTN a.appB {
	margin-bottom: 0;
	padding: 0.8rem 1.5rem;
	background: rgb(253,119,0);
	background: linear-gradient(50deg, rgba(253,119,0,1) 0%, rgba(255,172,65,1) 100%);
	border-radius: 9999px;
	display: inline-block;
	color:#fff;
	font-size: 1.2rem;
	text-decoration: none;
}

/* ----------------------------------------------
ハンバーガーメニュー
---------------------------------------------- */
#HM {
	display: none;
}
#spMenu {
	display: none;
}
@media screen and (max-width: 768px) {
	#HM {
		display:block;
		position: fixed;
		top: 0;
		right: 0;
	}
	#spMenu {
		font-size: 1rem;
	}
	#spMenu a {
		padding:5%;
		display: block;
		border-top:1px #25a739 solid;
	}
}
/*==================================================
　5-2-1 3本線が×に
==================================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn1{
	position: relative;/*ボタン内側の基点となるためrelativeを指定*/
	background:#fff;
	cursor: pointer;
	width: 50px;
	height:50px;
  }
  
  /*ボタン内側*/
  .openbtn1 span{
	  display: inline-block;
	  transition: all .4s;/*アニメーションの設定*/
	  position: absolute;
	  left: 14px;
	  height: 3px;
	  border-radius: 2px;
	  background: #333;
	  width: 45%;
	}
  
  .openbtn1 span:nth-of-type(1) {
	top:15px; 
  }
  
  .openbtn1 span:nth-of-type(2) {
	top:23px;
  }
  
  .openbtn1 span:nth-of-type(3) {
	top:31px;
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .openbtn1.active span:nth-of-type(1) {
	  top: 18px;
	  left: 18px;
	  transform: translateY(6px) rotate(-45deg);
	  width: 30%;
  }
  
  .openbtn1.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
  }
  
  .openbtn1.active span:nth-of-type(3){
	  top: 30px;
	  left: 18px;
	  transform: translateY(-6px) rotate(45deg);
	  width: 30%;
  }
  /*========= レイアウトのためのCSS ===============*/
  
  body{
	background:#fff;
  }
  
  
  a{
	color: #333;
	text-decoration: none;
  }
  
  .lead{
	margin:20px 0 0 0;
  }
  
  .btn-block{
	width:200px;  
	padding: 30px;
  }

/* ----------------------------------------------
KV
---------------------------------------------- */
#KV {
	padding: 0;
	background-size:cover;
	margin-bottom:80px;
}
#KV h1 {
	margin:0 auto;
	width:100%;
	
}
@media screen and (max-width: 768px) {
	#KV {
		padding: 0;
		margin-bottom:10%;
	}
	#KV h1 {
		margin:0 auto;
		width:100%;
	}
}

/* ----------------------------------------------
募集要項
---------------------------------------------- */
section#ContestDetail{
	margin:0 auto;
	max-width: 1200px;
}

section#ContestDetail h2 {
	padding: 15px 20px;
	background: #25a739;
	color:#fff;
}

section#ContestDetail .detailT {
	padding: 40px 40px 0;
}
section#ContestDetail .detailT:last-child {
	padding-bottom: 40px;
}

section#ContestDetail .detailT p.subTitle {
	margin-bottom: 10px;
	padding:5px 15px;
	display: inline-block;
	background: #000;
	color: #fff;
}
table tr {
	vertical-align:top;
}
/* 改行防止 */
.nowrapT {
	white-space: nowrap;
}

section#ContestDetail .detailT p.address,
section#ContestDetail .detailT p.mail {
	margin-top: 20px;
	padding:20px;
	background: #eee;
}


/* ----------------------------------------------
特別審査員
---------------------------------------------- */
#judgeMember {
	margin:0 auto 40px;
	width: 100%;
	max-width: 700px;
}
.judge.floatL {
	float:left;
	width: 40%;
	margin-right: 10%;
}
.judge.floatR {
	float:right;
	width:40%;
	margin-left:10%;
}
.judge img {
	margin-bottom: 5%;
	border:#25a739 4px solid;
}
.judge p {
	font-size: 0.8rem !important;
}
.judge p .name {
	font-size: 1rem !important;
}
@media screen and (max-width: 768px) {
	#judgeMember {
		margin:0 auto 10%;
		width: 100%;
	}
	.judge.floatL {
		float:none;
		width: 100%;
		margin-right: 0;
	}
	.judge.floatR {
		float:none;
		width:100%;
		margin-top:5%;
		margin-left:0;
	}
	.judge img {
		float:left;
		width:40%;
		border:#25a739 2px solid;
	}
	.judge p {
		float:right;
		width:55%;
		margin-left:5%;
		font-size: 0.6rem !important;
	}
}

/* ----------------------------------------------
PDF Download
---------------------------------------------- */
section#PDF_dl {
	margin:0 auto 90px;
	padding: 0;
	max-width: 500px;
	width: 90%;
}
section#PDF_dl .howto {
	margin-top:20px;
	text-align: center;
}
section#PDF_dl .howto a:link,
section#PDF_dl .howto a:visited {
	text-decoration: underline;
	color:#3187a8;
}
section#PDF_dl .howto a:hover {
	text-decoration: none;
}
.detailT a:link,
.detailT  a:visited {
	text-decoration: underline;
	color:#3187a8;
}
.detailT  a:hover {
	text-decoration: none;
}

ul.circle {
	margin:0 !important;
	width: 100%;
	text-align: left;
	color:#cf3737;
}
ul.circle {
	color:#000;
}
ul.circle li,
ul.kome li {
	float:none;
	width: 100%;
}
ul.kome li {
	text-align: left;
}

.circle { padding-left:1em; }
.circle li:before { content:"●"; }
.circle li { margin-top:0.5em !important; margin-left:1.0em; list-style:none; text-indent: -1em; }
ul.circle li p {
	font-size: 12px !important;
	color:#848484;
}
.kome { margin-top: 20px; padding-left:1em; }
.kome li:before { content:"※"; }
.kome li { margin-top:0em !important; margin-left:1em; list-style:none; text-indent: -1em; }


/* ----------------------------------------------
footer
---------------------------------------------- */
footer {
	width: 100%;
	border-top: #25a739 2px solid;
	padding-top: 30px;
	text-align: center;
}
footer .title {
	margin: 0 auto 20px;
	padding: 3px 15px;
	background: #25a739;
	color:#fff;
	font-size: 14px;
	display: inline-block;
	border-radius: 9999px;
}
footer p.compapy_s {
	padding: 10px 0 20px;
	font-size: 16px;
}
footer p.compapy_s img {
	margin-left:5px;
	width:30px;
}
footer .company {
	font-size: 20px;
}
footer .footer_link {
	padding: 15px;
	font-size: 16px;
	color:#fff;
	background:#25a739;
}
footer .footer_link a {
	padding:0 10px;
	border-right: 1px #fff solid;
}
footer .footer_link a:last-child {
	border-right: none;
}
footer .footer_link a:link,
footer .footer_link a:visited {
	text-decoration: none;
	color: #fff;
}
@media screen and (max-width: 768px) {
	footer .title {
		margin: 0 auto 5%;
		padding: 3px 15px;
		font-size: 1rem;
	}
	footer .company {
		font-size: 1rem;
	}
	footer p.compapy_s {
		padding: 20px 0;
		font-size: 0.8rem;
	}
	footer .footer_link {
		width: 100%;
		font-size: 0.8rem;
	}
	footer .footer_link a:link,
	footer .footer_link a:visited {
		float:left;
		width: 50%;
		padding: 2.5% 0;
		border-right:0;
		display: block;
	}
	footer p.compapy_s img {
		margin-left:0;
		margin-top:10px;
		width:60px;
	}
}

/* ----------------------------------------------
トップへ戻る
---------------------------------------------- */
#PageTopBTN {
    position: fixed;
    bottom: 10px;
    right: 10px;
	width: 60px;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
}


/* ----------------------------------------------
コンテスト終了
---------------------------------------------- */
#contestEND p {
	margin-bottom:30px;
	text-align: center;
	font-size: 1.2rem;
	color:#cd3c76;
}
.detail #contestEND p {
	text-align: left;
	margin-bottom:20px;
}
@media screen and (max-width: 768px) {
	#contestEND p {
		margin-bottom:5%;
		font-size: 1rem;
	}
	.detail #contestEND p {
		margin-bottom:0;
	}
}


/* ----------------------------------------------
結果発表
---------------------------------------------- */
#result {
	background: url(../../images/bg.jpg) no-repeat top center;
	background-size: 100% auto;
}
#result h2 {
	background: #cf3737 !important;
}
#result .thanks {
	margin-top: 100px;
	text-align: center;
	font-size: 1.5rem;
	color:#fff;
}
#result .thanks2 {
	margin-top: 0;
	margin-bottom: 60px;
	text-align: center;
	font-size: 1.5rem;
	color:#000;
}
#result .total {
	text-align: center;
	font-size: 6rem;
	margin-bottom: 40px;
	letter-spacing:0.6rem;
	color:#fff;
}
#result .total span {
	font-size: 50%;
}
#result .medal {
	margin:0 auto 60px;
	padding:40px;
	max-width: 900px;
	text-align: center;
	background: #e8ffec;
	border-radius: 5px;
}
#result #Award {
	background: #fff;
	padding:30px;
}
#result .title {
	margin:0 auto;
	background:#25a739;
	color:#fff;
	padding: 10px 30px;
	font-size: 2rem;
	display: inline-block;
	margin-bottom:30px;
}
#result .comment {
	text-align: left;
	padding-top:30px;
}
#result .comment p.t {
	margin-bottom: 10px;
	padding:5px 15px;
	display: inline-block;
	background: #eee;
}
#result .medal table {
	padding:30px;
	background:#fff;
}
#result .medal table .i {
	width: 35%;
}
#result .medal table .comment {
	margin-left: 40px;
	font-size: 1rem;
	text-align: left;
}
#result .name {
	color:#25a739;
	font-size:1.5rem;
}
#result table .name {
	margin-bottom: 40px;
}
#result hr {
	border: #25a739 1px solid;
	margin: 30px 0;
}

@media screen and (max-width: 768px) {
	#result {
		background-size: auto 40%;
	}
	#result .total {
		text-align: center;
		font-size: 4rem;
		margin-bottom: 10%;
		font-weight: bold;
	}
	#result .medal {
		margin:0 auto 10%;
		width: 90%;
		padding:5%;
	}
	#result .title {
		margin:0 auto;
		background:#25a739;
		color:#fff;
		padding: 5px 20px;
		font-size: 1.5rem;
		display: inline-block;
		margin-bottom:5%;
	}
	#result .comment {
		font-size: 0.8rem;
	}
	#result .medal table {
		padding:5%;
	}
	#result .medal table .comment {
		margin-left: 20px;
		font-size: 0.7rem;
	}
	#result .medal table .i {
		width: 40%;
	}
	#result .name {
		font-size:1rem;
	}
	#result table .name {
		
	}
	#result .thanks2 {
		margin-bottom: 10%;
		font-size: 1rem;
	}
}

#result .c table {
}
#result .c table .i {
	width: 20%;
}
#result .c table .comment {
	width: 75%;
	margin:0;
	padding:0;
	font-size: 1rem;
	padding-left: 5%;
}
#result .c span {
	color: #25a739;
}
@media screen and (max-width: 768px) {
	#result .c .comment img {
		padding:0;
		margin:0 15% 5%;
		width: 70%;
	}
}

.contact_area .contant_link {
	color:#000 !important;
}
.contact_area .btn {
	background-color: #848484 !important;
	z-index: 20;
}