@charset "UTF-8";

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,aside,figure {margin: 0;padding: 0;}
address,caption,cite,code,dfn,em,strong,th,var {font-style: normal;}
table {border-collapse: collapse;border-spacing: 0;}
caption,th {text-align: left;}
object, embed {vertical-align: top;}
hr,legend {display: none;}
h1,h2,h3,h4,h5,h6 {font-size: 100%;}
img,abbr,acronym,fieldset {border: 0;}
li {list-style-type: none;}


/* base
----------------------------------------*/
html {
  font-size: 62.5%;
  overflow: auto;
  scroll-behavior: smooth;
}
html *{
  box-sizing: border-box;
}
body {
  width: 100%;
  color: #000;
  font-family: "游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,h6{
	font-feature-settings: "palt";
	letter-spacing: 0.03em;
}

a:focus {outline:none;}
a:link {color:#000;text-decoration:underline;}
a:visited {color:#000;text-decoration:underline;}
a:active, a:hover {color:#000;text-decoration:none;}
img{width: 100%;height: auto;vertical-align: bottom;}

.spview{display: none;}

@media screen and (max-width: 767px){
  .pcview{display: none;}
  .spview{display: block;}
}


/* wrapper
----------------------------------------*/
.wrapper{
  position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.wrapper::before{
  position: fixed;
  top: 0;
  left: 0;
  background: url(bg-contents.jpg) no-repeat center top;
  width: 100%;
  height: 100vh;
  background-size: cover;
  content: "";
  z-index: -1;
}
.wrapper img{
	width: 100%;
	height: auto;
}


/* header
----------------------------------------*/
.header-media{
	background: linear-gradient(90deg,#000 0%,#000 45%,#fff 45%,#fff 100%);
}
.header-media > .inner{
	max-width: 1000px;
	margin: 0 auto;
}


/* special_header
----------------------------------------*/
.header_bg{
	background: #EFEFEF;
	box-sizing: border-box;
}
.header_wrap{
	position: relative;
	text-align: center;
	margin: 0 auto;
	width: 100%;
	max-width: 945px;
	padding: 3.035vw 0 2.335vw;
	box-sizing: border-box;
}
.header_wrap .logo_inner{
	max-width: 420px;
	margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_wrap .logo_inner a + a{
  margin-left: 3.035vw;
}
.header_wrap .logo_inner.single{
  max-width: 190px;
}
.header_wrap .logo_inner img{
	/* width: 100%; */
  max-width: 100%;
  height: auto;
}
.header_pr{
	display: inline-block;
	font-size: 0;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 8.585%;
}
.header_pr img{
	width: 100%;
}
.header_bg img{
	vertical-align: initial;
}

@media screen and (max-width: 767px){
	.header_wrap .logo_inner{
		width: 65%;
	}
  .header_wrap .logo_inner.single{
    width: 40%;
  }
  .header_wrap .logo_inner img{
    max-width: 100%;
    height: auto;
    display: inline-block;
  }
}

@media screen and (min-width: 440px){
	.header_wrap{
			padding: 14px 0 10px;
	}
	.header_pr{
			width: 40px;
	}
}

@media screen and (min-width: 640px){
  .header_wrap{
      padding: 15.79px 0 11.74px;
  }
}


/* contents
----------------------------------------*/
.contents{
  padding: 50px 3%;
}
.contents-inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 3%;
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 0 5px 3px #efefef;
}

@media screen and (max-width: 767px){
  .contents{
    padding: 30px 3%;
  }
  .contents-inner{
    padding: 30px 5%;
  }
}


/* series
----------------------------------------*/
.series{
  padding: 70px 5%;
  background-color: #f5f5f5;
}
.series-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 680px;
  margin: 0 auto;
}
.series-list li{
  width: calc(100% / 3 - 8px);
}
.series-list a{
  display: block;
  padding: 30px 10px;
  color: #fff;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
}
.series-list a.vol01{
  background-color: #332e99;
}
.series-list a.vol02{
  background-color: #20a7d4;
}
.series-list a.vol03{
  background-color: #d45fad;
}
.series-list a:hover{
  opacity: 0.7;
}

@media screen and (max-width: 767px){
  .series{
    padding: 50px 5%;
  }
  .series-list{
    width: 90%;
  }
  .series-list li{
    width: 100%;
  }
  .series-list li + li{
    margin-top: 20px;
  }
  .series-list a{
    padding: 20px 10px;
  }
}


/* pagetop
----------------------------------------*/
.pagetop{
	z-index: 999;
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
}
.pagetop img{
	width: 100%;
	height: auto;
}
.pagetop a{
  display: block;
  transition: 0.5s;
}
.pagetop a:hover{
  opacity: 0.7;
}

@media screen and (max-width: 767px){
	.pagetop{
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
	}
}


/* localFooter
----------------------------------------*/
footer{
  background: #fff;
  border-top: solid 1px #ccc;
}
div.localFooter{
  max-width: 900px;
  margin: 30px auto 0;
  padding: 20px 10px;
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.6;
}
.footer-pr{
	font-size: 12px;
	max-width: 1000px;
	margin: 0 auto;
	padding: 15px 10px 0 10px;
}