@charset "UTF-8";
/* ===============================================================================
Reset
=============================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike,
strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}
a{
	text-decoration: none;
}

/* ===============================================================================
Body Setting
=============================================================================== */
html{
	font-size: 62.5%;
}
body {
  font-family: 'Koburina Gothic W3 JIS2004',sans-serif;
  font-size: 1.5rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.9;
  letter-spacing: .1rem;
}
body:before {
	content: "";
	background: url(../images/bg_pc.jpg) no-repeat center center;
	background-size: cover;
	display: block;
	position: fixed;
	bottom: 0;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	width: 100vw;
	z-index: -1;
}
@media screen and (max-width: 768px) {
	body:before {
		content: "";
		background: url(../images/bg_sp.jpg) no-repeat center center;
		background-size: cover;
		display: block;
		position: fixed;
		bottom: 0;
		height: 100vh;
		height: calc(var(--vh, 1vh) * 100);
		width: 100vw;
		z-index: -1;
  }
}
@media screen and (max-width: 640px) {
	body {
		font-size: 1.4rem;			
	}
}

a {
  color: #EB0000;
  text-decoration: none;
}
a:hover{
	opacity: .5;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
a[target=_blank]:after {
    font-family: "Hobonichi-Icons";
    content: "\e914";
    font-weight: normal;
    font-size: .8em;
    position: relative;
    top: -.2em;
}
img {
  vertical-align: top;
  max-width: 100%;
}
.spOnly {
	display: none;
}
.hoverOp:hover{
	opacity: .5;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
.small{
	font-size: 1.3rem;
}
.small2{
	font-size: 1.4rem;
	line-height: 2;
    display: block;
}
@media screen and (max-width: 640px) {
  .pcOnly {
    display: none !important;
  }
  .spOnly{
	display: block;
  }
  .small{
	font-size: 1.2rem;
  }
  .small2{
	font-size: 1.3rem;
  }
}

/* ===============================================================================
HeaderArea
=============================================================================== */
.top{
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	position: relative;
}
.top .text01 {
	position: absolute;
    top: 30px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.top h1,
.top .text02 {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}
.top h1 img,
.top .text02 img {
	height: 70vh;
	height: calc(var(--vh, 1vh) * 70);
    width: auto;
}

.yodogawa{
	background-color: rgba(255,255,255,.9);
	max-width: 800px;
	width: 95%;
	margin: 0 auto;	
}
.yodogawa .inner{
	display: flex;
	justify-content: center;
	align-items: center;
}
.yodogawa .text{
	width: 21.5em;
	padding: 50px 0;
    font-size: 1.8rem;
    line-height: 2.4;
}
.prof{
	margin: 40px auto -10px;
}
.popupBtn{
	text-align: center;
    color: #EB0000;
    border: 4.5px solid;
    padding: 5px;
    margin: 0 auto;
    width: 14em;
    border-radius: 30px;
    background-color: rgba(255,255,255,.85);
    font-size: 2.16rem;
	font-family: 'Koburina Gothic W6 JIS2004',sans-serif;
	cursor: pointer;
}
.popupBtn:hover{
	opacity: .5;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
.prof .popup {
  position: fixed;
  z-index: -1;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition-property: opacity;
  transition-duration: .1s;
}

.prof .popup.active {
  z-index: 1;
  opacity: 1;
}

.prof .popup .box {
  background: rgba(255,255,255,.9);
  max-width: 800px;
  width: 95%;
  box-sizing: border-box;
  padding: 30px 90px 40px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: left;
  z-index: 2;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: scroll;
}

.prof .popup .box .image {
  margin-bottom: 22px;
  text-align: center;
}

.prof .popup .box .text01 {
  font-size: 2.34rem;
  margin-bottom: 16px !important;
  font-family: 'Koburina Gothic W6 JIS2004',sans-serif;
}

.prof .popup .box .text02 {
  font-size: 1.92rem;
  line-height: 1.88;
  letter-spacing: 0;
}

.prof .popup .box .text02 p {
  margin-bottom: 1.88em;
}
.prof .popup .box > .close {
  width: 36px;
  position: static;
  cursor: pointer;
  margin-left: auto;
  margin-top: -20px;
  margin-right: -20px;
  margin-bottom: 0px;
}
.prof .popup .box > .close:hover {
  opacity: .5;
}
.prof .popup > .close {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
	.yodogawa .text {
		padding: 0 20px 0;
	}
}
@media screen and (max-width: 640px) {
	.top .text01{
		width: 31.25%;
		top: 20px;
	}
	.top h1,
	.top .text02 {
		width: 68.75%;
	}
	.top h1 img,
	.top .text02 img {
		height: auto;
	}
	.yodogawa .inner{
		padding: 20px 0;
	}
	.yodogawa .text {
		width: auto;
		letter-spacing: 1px;
		font-size: 1.4rem;
	}
	.prof{
		margin: 20px auto -5px;
	}
	.popupBtn {
		font-size: 1.2rem;
		border: 2.5px solid;
	}
	.prof .popup .box{
		width: 95%;
		padding: 30px 20px 40px;
	}
	.prof .popup .box .text01{
		font-size: 1.3rem;
	}
	.prof .popup .box .text02{
		font-size: 1.1rem;
	}
	.prof .popup .box > .close {
		width: 19px;
		margin-right: 0;
		margin-bottom: -30px;
	}
}
/* ===============================================================================
listBlock
=============================================================================== */
.listBlock01{
	background-color: rgba(255,255,255,.9);
	max-width: 800px;
	width: 95%;
    margin: 0 auto;
	font-family: 'Koburina Gothic W6 JIS2004',sans-serif;
}
.listBlock01 .ttl_index{
	text-align: center;
	font-size: 2.88rem;
	padding-top: 50px;
}
.listBlock01 .ttl{
	font-size: 2.43rem;
	vertical-align: middle;
	line-height: 1.88;
}
.listBlock01 ul{
	padding: 10px 0 50px 190px;
}
.listBlock01 ul li{
	padding: 25px 0;
}
.listBlock01 ul li a{
	display: block;
	font-size: 1.8rem;
}
.listBlock01 ul li a p{
	padding-left: 4.25em;
}
.listBlock01 li a.publish:hover{
	opacity: .5;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
.listBlock01 li a.private{
	opacity: .5;
}
@media screen and (max-width: 640px) {
	.listBlock01 .ttl_index{
		padding-top: 30px;
		font-size: 1.6rem;
	}
	.listBlock01 ul {
		padding: 10px 0 25px;
		width: 18.5em;
		margin: 0 auto;
	}
	.listBlock01 ul li {
		padding: 12px 0;
	}
	.listBlock01 ul li a{
		font-size: 1rem;
	}
	.listBlock01 .ttl{
		font-size: 1.4rem;
	}
}
/* ===============================================================================
ContentsArea
=============================================================================== */
.navBlock01{
	max-width: 800px;
	width: 95%;
	background-color: rgba(255,255,255,.95);
	margin: 0 auto;
}
.navBlock01 ul{
	display: flex;
	justify-content: space-between;
	max-width: 500px;
	width: 86.885%;
	margin: 0 auto;
	padding: 50px 0 30px;
}
.navBlock01 ul li img{
	height: 73px;
}
#contentsArea{
	padding: 50px 0 0;
}
.articleBlock01{
	max-width: 800px;
	width: 95%;
    background-color: rgba(255,255,255,.9);
    margin: 50px auto;
}
.articleBlock01 .heading{
	text-align: center;
	padding: 50px 0 70px;
	font-size: 2.88rem;
	font-family: 'Koburina Gothic W6 JIS2004',sans-serif;
}
.articleBlock01 .heading .text-s{
	font-size: 1.8rem;
}
.articleBlock01 dl {
    max-width: 510px;
    width: 85.245%;
    margin: 0 auto 40px;
    display: -ms-flexbox;
    display: flex;
}
.articleBlock01 dt {
    width: 120px;
    margin-right: 20px;
	text-align: right;
	font-family: 'Koburina Gothic W6 JIS2004',sans-serif;
}
.articleBlock01 dd {
	width: 100%;
}
.articleBlock01 .image {
    margin: 0 auto 3em;
    max-width: 700px;
	width: 100%;
}
.articleBlock01 .short {
    margin: 0 auto 1.5em;
}
.articleBlock01 .conv{
	padding-bottom: 40px;
}
.articleBlock02{
	text-align: center;
}
.bannerBlock{
	background-color: rgba(21,5,0,.7);
    max-width: 800px;
	width: 95%;
    margin: 50px auto;
}
.bannerBlock p{
	padding-bottom: 40px;
	text-align: center;
}
.bannerBlock .ttl_event{
	font-family: 'Koburina Gothic W6 JIS2004',sans-serif !important;
	color: #00B900;
	font-size: 2.88rem;
}
.bannerBlock .bannerInner{
    margin: 0 auto;
    padding: 50px;
	font-size: 1.8rem;
	color: #FFFFFF;
	line-height: 2;
}
.bannerBlock .bannerText{
	display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
	font-family: 'Shuei MaruGo B',sans-serif;
}
@media screen and (max-width: 640px) {
	#contentsArea{
		padding: 25px 0 0;
	}
	.navBlock01 ul{
		padding: 25px 0 20px;
	}
	.articleBlock01 {
		margin: 25px auto;
	}
	.articleBlock01 .heading {
		padding: 25px 0;
		font-size: 1.8rem;
	}
	.articleBlock01 .heading .text-s{
		font-size: 1.2rem;
	}
	.articleBlock01 dl {
		margin: 0 auto 2em;
		padding-left: 0;
		display: block;
		flex-wrap: wrap;
	}
	.articleBlock01 dt{
		text-align: left;
	}
	.articleBlock01 .image {
		margin: 3em auto;
	}
	.articleBlock01 .short{
		margin: 3em auto -1.5em;		
	}
	.articleBlock01 .conv {
		padding-bottom: 30px;
	}
	.bannerBlock {
		margin: 25px auto;
	}
	.bannerBlock .bannerInner {
		width: 88%;
		padding: 30px 0 0;
		font-size: 1.2rem;
	}
	.bannerBlock p {
		padding-bottom: 25px;
	}
	.bannerBlock .ttl_event{
		font-size: 1.6rem;
		letter-spacing: 0;
	}
	.bannerBlock .cover img{
		width: 70%;
	}
}

/* ===============================================================================
FooterArea
=============================================================================== */
footer {
	max-width: 800px;
    width: 95%;
	background-color: rgba(255,255,255,.9);
	margin: 0 auto 50px;
	text-align: center;
	line-height: 0;
}
.share_list {
    width: 86.885%;
    max-width: 500px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
	padding-top: 70px;
	align-items: flex-end;
}
.share_list li img{
	width: 50px;
    height: 50px;
}
.copyright {
    padding: 30px 0 60px;
    display: block;
}
@media screen and (max-width: 640px) {
	#pageWrap{
		padding-bottom: 10px;		
	}
	footer{
		margin: 0 auto;
	}
	.share_list{
		padding-top: 30px;
	}
	.copyright {
		padding: 40px 0 30px;
	}
}
