@charset "utf-8";

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css?family=Oswald');


html,
body { width:100%; min-width: 315px; }
body { height:auto; background:#fff;}
/*body *{ border:0.02px solid #000000; background:rgba(000,000,000,0.1)}*/


/* フォントの指定 */
html { font-size: 62.5%; }
body,input,select,textarea { 
	font-size:14px; font-size:1.4rem; 
	line-height:1.8; 
	letter-spacing:0.05em;
	font-family:"DNP 秀英丸ゴシック Std", dnp-shuei-mgothic-std, sans-serif;
	font-feature-settings: "palt";
	color:#231815; }
	
a {color:#231815; text-decoration: none;}
p {text-align:justify; text-justify:inter-ideograph;}
p a {color:#231815; text-decoration: underline;}

/* セレクト時の色指定 */
::selection {
    background: #FFDD00;
    color: #fff;
}
::-moz-selection {
    background: #FFDD00; /*Firefox*/
    color: #fff;
}

.inner { width: 94%; margin: 0 auto;}
.mw100 { max-width: 100%;}
.showPc { display: block; }
.showSp { display: none;}
.imgTxt { position:relative;}
.imgTxt span { overflow: hidden;position:absolute; top: 0; left: 0; width: 100%; height: 100%; text-indent:-100vw; font-size: 10px!important; }
@media screen and (max-width:768px){
	html { font-size: 50%; }
	.showPc { display: none ; }
	.showSp { display: block ; }
}


/* --------------------------------------------

#header

---------------------------------------------- */ 

.header {
	position: relative;
	height: 100vh;
}

.header_naka {
	height: 6em;
}

@media screen and (max-width:980px){
.header {
	height: auto;
}
}

.header .header-logo {
	position: absolute; top: 0; right: 0; z-index: 1;
	width: 50%; max-width: 573px;
}
.header .header-logo img {
	display: block;
	width: 100%;
}

.header .header-navbox {
	position: absolute;
	top: 31px;
	right: 0;
	left: 1px;
	z-index: 9999;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
@media screen and (max-width:980px){
	.header .header-navbox {
		display: none;
		position: fixed; top: 0; left: 0; z-index: 9997;
		width: 100%;
		height: 100vh;
		padding: 10vh 0;
		background-color: #ffd84c;
}
}

.header-nav {}

.header .header-nav__list {
	text-align: center;
}
.header .header-nav__list li {
	display: inline-block;
	margin: 0 2%;
	font-size: 17px;
	font-size: 1.7rem;
	font-weight: 600;
	letter-spacing: 2px ;
}

.header .header-nav__list li a {
	display: block;
	width: 100%;
	color: #000;	transition: 0.5s ;

}

.header .header-nav__list li a:hover {
	opacity: 0.5;
}

/*.header .header-nav__list li:nth-of-type(4) a {
	color: #c9c9c9;
}*/
@media screen and (max-width:1024px){
.header .header-nav__list li {
	margin: 0 2%;
}
}
@media screen and (max-width:980px){
	.header .header-nav {
		margin-bottom: 3vh;
	}
	.header .header-nav__list {
		width: 95%;
		margin: 0 auto;
	}

	.header .header-nav__list li {
		display: block;
		margin: 0 3%;
		font-size: 17px;
		font-size: 1.7rem;
		color: #c9c9c9;
	}
	.header .header-nav__list li a {
		display: block;
		padding: 2.5vh 0;
	}
}

.header .header-sns {
	position: absolute; top: 0; right: 1em;
  width: 150px;
	text-align: center;
}
@media screen and (max-width:1356px){
	.header .header-sns {
    width: auto;
	}
}
@media screen and (max-width:980px){
	.header .header-sns {
		position: static;
    width: auto;
		margin: 0 auto;
    text-align: center;
	}
}

.header .header-sns li {
  display: inline-block;
  margin: 0 4%;
}
@media screen and (max-width:1356px){
	.header .header-sns li {
		display: block;
	margin: 0 0 1em;
	}
}
@media screen and (max-width:980px){
	.header .header-sns li {
		display: inline-block;
    margin: 0 4%;
	}
}
.header .header-sns li img {
	display: block;
	width: 100%;
}


/* SP用メニューボタン */
.header-menu-sp {
  display: none;
  position: fixed; top: 0; right: .5em; z-index: 9999999;
  width: 20%;
  max-width: 65px;
  height: 65px;
  cursor: pointer;
  font-weight: bold;
}

.header-menu-sp::after {
  display: block;
  content: "Menu";
  width: 100%;
  padding-top: 35px;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  transition: all .4s;
}

.header-menu-sp.active::after {
  content: "Close";
}

.header-menu-sp span {
  display: inline-block;
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  width: 40px;
  height: 3px;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #000;
}

.header-menu-sp span:nth-of-type(1) { top: 12px;}
.header-menu-sp span:nth-of-type(2) { top: 20px;}
.header-menu-sp span:nth-of-type(3) { top: 28px;}
.header-menu-sp.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
.header-menu-sp.active span:nth-of-type(2) { opacity: 0;}
.header-menu-sp.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}
@media screen and (max-width: 980px) {
.header-menu-sp {
  display: block;
}
}
@media screen and (max-width: 440px) {
.header-menu-sp {
  max-width: 35px;
  height: 35px;
}
.header-menu-sp::after,
.header-menu-sp.active::after {
  display: none;
}

.header-menu-sp span {
  width: 30px;
  height: 3px;
}
}



/* --------------------------------------------

#footer

---------------------------------------------- */ 

.footer {
	padding: 110px 0 20px;
	background: rgba(255,248,188,0.3);
}
@media screen and (max-width: 768px) {
.footer  {
	padding: 80px 0 20px;
}
}

.footer .footer-inner {
	overflow: hidden;
	width: 95%;
	margin: 0 auto 25px;
}

.footer .footer-tsukuoto {
	float: left;
	width: 60%; max-width: 348px;
}

.footer .footer-tsukuoto img {
	display: block;
	width: 100%;
}
@media screen and (max-width: 768px) {
.footer .footer-tsukuoto {
	float: none;
	width: 90%; max-width: 280px;
	margin: 0 auto 2em;
}
}

.footer .footer-sns {
	float: right;
	width: 150px;
	text-align: center;
}
@media screen and (max-width: 768px) {
.footer .footer-sns {
	float: none;
	margin: 0 auto;
}
}

.footer .footer-sns li {
	display: inline-block;
	margin: 0 4%;
}

.footer .footer-sns li img {
	display: block;
	width: 100%;
}

.footer .footer-copy {
	text-align: center;
}
.footer .footer-copy small {
	font-size: 13px;
	font-size: 1.3rem;
}





/* --------------------------------------------

index h2 TOP

---------------------------------------------- */ 

.index-h2-title {
	width: 80%;
	font-size: 30px; font-size:3rem;
	font-weight: 600;
	letter-spacing: 6px;
	text-align: center;
	margin: 0 auto;
}

.index-h2-title::before {
	display: block;
	content: "";
	width:106px; 
	height: 2.8em;
	margin: 0 auto -.25em;
	background: url("../img/share/news_h2_Icon.png")no-repeat;
	background-size: contain; top: 0;
}

.index-h2-report-title::before {
	display: block;
	content: "";
	width:152px; 
	height: 3em;
	margin: 0 auto -.15em;
	background: url("../img/share/report_h2_Icon.png")no-repeat;
	background-size: contain; top: 0;
}

@media screen and (max-width:768px) {

.index-h2-title::before {
	width:96px; 
	height:3em;
}

.index-h2-report-title::before {
	width:142px; 
	height: 3.5em;
}
}

/* --------------------------------------------

top h2 中ページ


---------------------------------------------- */ 

.top-h2-title {
	font-size: 30px; font-size:3rem;
	font-weight: 600;
	letter-spacing: 6px;
	text-align: center;
	margin: 3em auto 0;
	padding: 0 0 1em 0;
	background: url("../img/share/top_bg.png") bottom no-repeat;
}

.top-h2-title::before {
	display: block;
	content: "";
	width:80px; 
	height: 2.5em;
	margin: 0 auto -.25em;
	background: url("../img/share/news_h2_Icon.png")no-repeat;
	background-size: contain; top: 0;
}

.top-h2-title-Report::before {
	background: url("../img/share/report_h2_Icon.png")no-repeat;
	display: block;
	content: "";
	width:149px; 
	height: 3em;
	margin: 0 auto -.15em;
	background-size: contain; top: 0;
}

.top-h2-title-Event::before {
	background: url("../img/share/event_title.png")no-repeat;
	display: block;
	content: "";
	width:133px; 
	height: 3em;
	margin: 0 auto -.15em;
	background-size: contain; top: 0;
}

.top-h2-form-title::before {
	display: block;
	content: "";
	width:102px; 
	height: 3em;
	margin: 0 auto -.25em;
	background: url("../img/share/form_h2.png")no-repeat;
	background-size: contain; top: 0;
}


@media screen and (max-width:768px) {
	
.top-h2-title {
	font-size: 29px; font-size:2.9rem;
	margin: 3em auto 0;
	padding: 0 0 1.5em 0;
}
	
.top-h2-title::before {
	height: 2.8em;
}

.top-h2-title-Report::before {
	width:140px; 
	height: 3.5em;
	margin: 0 auto -.05em;
}
	
.top-h2-form-title::before {

	height: 3.7em;
}
}


/* --------------------------------------------

member

---------------------------------------------- */ 


/* ---------　　index member-h2　　--------- */

.index-member-h2-title {
	width: 90%;
	font-size: 33px; font-size:3.3rem;
	font-weight: bold;
	letter-spacing: 8px;
	text-align: center;
	padding: 0 0 1em 0;
}

.index-member-h2-title::before {
	display: block;
	content: "";
	width:150px; 
	height: 2.8em;
	margin: 0 auto -.15em;
	background: url("../img/share/member_title.png")no-repeat;
	background-size: contain; top: 0;
}

/* ---------　　中ページ　member-h2　　--------- */

.member-h2-title {
	width: 90%;
	font-size: 33px; font-size:3.3rem;
	font-weight: bold;
	letter-spacing: 8px;
	text-align: center;
	padding: 0 0 1em 0;
	margin: 0 auto;
	background: url("../img/share/member_top.png") bottom no-repeat;
}
	
.member-h2-title::before {
	display: block;
	content: "";
	width:150px; 
	height: 2.8em;
	margin: 0 auto -.15em;
	background: url("../img/share/member_title.png")no-repeat;
	background-size: contain; top: 0;
}


@media screen and (max-width:768px) {
	
.index-member-h2-title::before {
	height: 3.5em;
	letter-spacing: 4px;
}

.member-h2-title::before {
	width:146px; 
	height: 3.4em;
}}


	
	
/* --------------------------------------------

pageTop

---------------------------------------------- */ 

.page_Top {
	position: fixed; right: 1.5%; bottom:1.5%;
	z-index: 9999999;
}

.page_Top img {
  display: block;
  width: 100%;
}

@media screen and (max-width:1024px) {
.page_Top {
	max-width: 60px;
	position: fixed; right: 2%; bottom:2%;
}
}



/* --------------------------------------------

Btn

---------------------------------------------- */ 

.newsBtn{
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

a.arrow3{
	display: block;
	padding: 0.6em 0.5em ;
	color:#fff;
	font-size: 21px;
	font-size: 2.1rem;
	font-weight: bold;
	text-decoration:none;
	line-height:1;
	letter-spacing: 5px;
	border-radius:21px;
	background: #ed6d46;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.arrow3:hover{
	color:#ed6d46;
	background: #fff;
	border-radius:21px;
	box-shadow: 0 0 0 2px #ed6d46 inset;
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

@media screen and (max-width:768px) {
	
a.arrow3{
	font-size: 18px;
	font-size: 1.8rem;
	letter-spacing: 3px;
}
}

/* Edge 1 */
@supports (-ms-ime-align: auto) {
a.arrow3 {
	padding: 0.8em 0.5em 0.4em ;
    }
}
/* Edge 2 */
_:-ms-lang(x)::backdrop, a.arrow3 {
	padding: 0.8em 0.5em 0.4em ;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop, a.arrow3 {
	padding: 0.8em 0.5em 0.4em ;
}	
/* --------------------------------------------

animation

---------------------------------------------- */ 

.anime{
	opacity: 0;
}

/* ---------　　fedeIN　　--------- */

body {
    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}
}
/* ---------　　fuwafuwa　　--------- */

.fuwafuwa{
	-webkit-animation-name:fuwafuwa; 
	-webkit-animation-duration:2s;
	-webkit-animation-iteration-count:infinite;
	/*-webkit-animation-direction:alternate;*/
	-webkit-animation-timing-function:ease;
	
	-moz-animation-name:fuwafuwa;
	-moz-animation-duration:2s;
	-moz-animation-iteration-count:infinite;
	/*-moz-animation-direction:alternate;*/
	-moz-animation-timing-function:ease;
}

@-webkit-keyframes fuwafuwa {
	0% {-webkit-transform:translate(0, 0);}
	50% {-webkit-transform:translate(0, -10px);}
	100% {-webkit-transform:translate(0, 0);}
}
@-moz-keyframes fuwafuwa {
	0% {-moz-transform:translate(0, 0);}
	50% {-moz-transform:translate(0, -10px);}
	100% {-moz-transform:translate(0, 0);}
}

/* ---------　　雲　　--------- */

.animation{
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1s;
}

.keyframe{
    animation-name: anim_h;
}

@keyframes anim_h {
    0% {
        transform: translate(0px, 0);
    }
    100% {
        transform: translate(15px, 0);
    }
}

/* ---------　　fade　見出し　　--------- */

.animest.fadeIn01 {
	-webkit-animation: fadeIn01 0.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	animation: fadeIn01 0.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes fadeIn01 {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes fadeIn01 {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

/* ---------　　fadeIn　　--------- */


.animest.fadeIn {
	animation-name:fade-in1;
	animation-duration:1s;
	animation-timing-function: ease-out;
	animation-delay:0.8s; 
	animation-iteration-count:1; 
	animation-direction:normal; 
	animation-fill-mode: forwards; 
}

@keyframes fade-in1 {
  0% {opacity: 0}
  100% {opacity: 1}
}


/* --------------------------------------------

error Page

---------------------------------------------- */ 

.error {
	width: 90%;
	margin: 0 auto;
	padding: 8em 0;
	text-align: center;
	background-color: rgba(255,248,188,0.3);
}

.error-h2 {
	font-size: 20px;	font-size: 2rem;
	color: #ed6d46;
	margin: 1em auto;
	text-align: center;
}

.error-text {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}