@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;
}
body{
	width: 100%;
	color: #000;
	font-family: "游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans","ヒラギノ角ゴ 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%;
}
*, *:before, *:after {
	box-sizing: border-box
}
h1,h2,h3,h4,h5,h6{
	font-feature-settings: "palt";
	letter-spacing: 0.03em;
}
a:link {color:#000;text-decoration:underline;}
a:visited {color:#000;text-decoration:underline;}
a:active, a:hover {color:#000;text-decoration:none;}
a{word-break: break-all;}

.spview{display: none;}

@media screen and (max-width: 767px){
	.pcview{display: none;}
	.spview{display: block;}
}


/* layout
----------------------------------------*/
.wrapper img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}


/* mv
----------------------------------------*/
.mv{
	max-width: 1500px;
	margin: 0 auto;
	background: url(mv-bg.jpg) no-repeat center;
	background-size: cover;
}
.mv-inner{
	position: relative;
	max-width: 750px;
	height: 800px;
	margin: 0 auto;
	padding-top: 40px;
}
.mv-name{
	display: flex;
	justify-content: space-between;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.mv-name-01,
.mv-name-02{
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
}
.mv-name-01 span,
.mv-name-02 span{
	font-size: 160%;
}

@media screen and (max-width: 767px){
	.mv{
		position: relative;
		padding: 0 3%;
		background: url(mv-bg-sp.jpg) no-repeat center;
		background-size: cover;
	}
	.mv-inner{
		height: auto;
		padding-top: 120%;
	}
	.maintitle{
		position: absolute;
	  top: 20px;
	}
	.mv-name{
		bottom: 0;
	}
	.mv-name-01,
	.mv-name-02{
		font-size: 1.3rem;
	}
	.mv-name-01 span,
	.mv-name-02 span{
		font-size: 130%;
	}
}


/* lead
----------------------------------------*/
.lead{
	padding: 70px 5%;
}
.lead-inner{
	max-width: 800px;
	margin: 0 auto;
}
.lead-inner p{
	font-size: 1.6rem;
	line-height: 2;
}

@media screen and (max-width: 767px){
	.lead{
		padding: 40px 5%;
	}
	.lead p{
		font-size: 1.5rem;
	}
}


/* section
----------------------------------------*/
.section::before,
.section::after{
	content: "";
	display: block;
	clear: both;
}
.section{
	padding: 90px 5%;
}
.page01 .section:nth-of-type(odd){
	background: #f4f4f4;
}
.page02 .section:nth-of-type(even){
	background: #f4f4f4;
}
.section-inner{
	max-width: 800px;
	margin: 0 auto;
}
.section-heading{
	position: relative;
	margin-bottom: 60px;
	padding-bottom: 35px;
	font-size: 4.0rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}
.section-heading::before{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 15%;
	height: 2px;
	background: #0f62fe;
	content: "";
}
.section-inner p{
	margin-bottom: 1em;
	font-size: 1.6rem;
	line-height: 2;
}
.section-inner p:last-of-type{
	margin-bottom: 0;
}
.clear{
	clear: both;
}

@media screen and (max-width: 767px){
	.section{
		padding: 60px 5%;
	}
	.section-heading{
		margin-bottom: 40px;
		padding-bottom: 15px;
		font-size: 2.8rem;
	}
}


/* photo
----------------------------------------*/
.photo{
	width: 50%;
}
.photo-left{
	float: left;
	margin: 8px 40px 40px 0;
}
.photo-right{
	float: right;
	margin: 8px 0 40px 40px;
}
.photo-caption{
	margin-top: 15px;
	font-size: 1.5rem;
	line-height: 1.7;
}
.photo-caption span{
	font-size: 150%;
}

@media screen and (max-width: 767px){
	.photo-left,.photo-right{
		float: none;
		margin: 30px auto;
	}
	.photo-left,.photo-right{
		width: 80%;
	}
	.photo-caption{
		font-size: 1.3rem;
	}
}


/* figure
----------------------------------------*/
.figure-center{
	margin: 40px auto 0;
}
.figure-caption{
	margin-bottom: 15px;
  padding: 5px 0 5px 15px;
	border-left: solid 2px #0f62fe;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.7;
}
.section:nth-of-type(2) .figure-center:nth-of-type(1){
	margin: 40px auto;
}

@media screen and (max-width: 767px){
	.figure-center{
		margin: 30px auto 0;
	}
	.figure-caption{
		font-size: 1.5rem;
	}
}


/* books
----------------------------------------*/
.books{
	float: left;
	width: 30.25%;
  margin: 8px 40px 40px 0;
	padding: 20px;
  border: solid 1px #ccc;
}
.books-caption{
	margin-top: 15px;
	font-size: 1.4rem;
	line-height: 1.7;
}

@media screen and (max-width: 767px){
	.books{
		float: none;
		width: 70%;
		margin: 30px auto;
	}
	.books-caption{
		font-size: 1.3rem;	
	}
}


/* link
----------------------------------------*/
.link{
	padding: 90px 5%;
  background: #f4f4f4;
}
.link-inner{
	max-width: 800px;
  margin: 0 auto;
}
.link-heading{
	position: relative;
  margin-bottom: 60px;
  padding-bottom: 35px;
  font-size: 4.0rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.link-heading::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15%;
  height: 2px;
  background: #0f62fe;
  content: "";
}
.link-list li{
	font-size: 1.8rem;
  line-height: 1.6;
}
.link-list li + li{
	margin-top: 20px;
}

@media screen and (max-width: 767px){
	.link{
		padding: 60px 5%;
	}
	.link-heading{
		margin-bottom: 40px;
    padding-bottom: 15px;
    font-size: 2.8rem;
	}
	.link-list li{
		font-size: 1.6rem;
	}
}


/* contact
----------------------------------------*/
.contact{
	padding: 100px 5%;
	background: #262626;
}
.contact-inner{
	max-width: 800px;
	margin: 0 auto;
}
.contact-heading{
	position: relative;
	margin-bottom: 60px;
	padding-bottom: 35px;
	color: #fff;
	font-size: 4.0rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}
.contact-heading::before{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 15%;
	height: 2px;
	background: #0f62fe;
	content: "";
}
.contact-text{
	color: #fff;
	font-size: 2.4rem;
	line-height: 1.8;
	text-align: center;
}
.contact-text a{
	color: #fff;
	font-size: 80%;
}

@media screen and (max-width: 767px){
	.contact{
		padding: 60px 5%;
	}
	.contact-heading{
		margin-bottom: 40px;
    padding-bottom: 15px;
    font-size: 2.8rem;
	}
	.contact-text{
		font-size: 1.8rem;
	}
}


/* readmore
----------------------------------------*/
.readmore{
	padding: 0 5% 100px;
  background: #f4f4f4;
}
.readmore-inner{
	max-width: 800px;
  margin: 0 auto;
}
.readmore-btn a{
	position: relative;
  display: block;
  padding: 1em 1.8em 1em 1em;
	border-radius: 0.333em;
  background: #0f62fe;
  color: #fff;
  font-feature-settings: "palt";
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-decoration: none;
  transition: 0.5s;
}
.readmore-btn a::before{
	position: absolute;
  top: calc(50% - 5px);
  right: 1em;
  content: "";
  width: 20px;
  height: 20px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  transition: 0.5s;
}
.readmore-btn a:hover{
	opacity: 0.7;
}
.readmore-btn a small{
	display: block;
  margin-bottom: 0.3em;
  font-size: 65%;
  font-weight: 700;
}
.section + .readmore{
	margin-top: -30px;
}

@media screen and (max-width: 767px){
  .readmore{
		padding: 0 5% 60px;
  }
  .readmore-btn a{
    font-size: 2.0rem;
  }
	.readmore-btn a::before{
		width: 15px;
		height: 15px;
	}
	.section + .readmore{
		margin-top: -20px;
	}
}


/* note_text
----------------------------------------*/
#note_text{
  margin: 10px auto 0;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 767px){
  #note_text-note{
    font-size: 1.3rem;
  }
}


/* pagenation
----------------------------------------*/
.pagenation{
  padding: 60px 5%;
}
.pagenation-list{
  display: flex;
  justify-content: center;
}
.pagenation-list li{
  margin: 0 0.4em;
}
.pagenation-list-current,
.pagenation-list-link{
  width: 50px;
  height: 50px;
  border: solid 1px #0f62fe;
  line-height: 50px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.pagenation-list-current{
  background: #0f62fe;
  color: #fff;
}
.pagenation-list-link a{
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #0f62fe;
  text-decoration: none;
  transition: 0.5s;
}
.pagenation-list-link a:hover{
  background: #0f62fe;
  color: #fff;
}

@media screen and (max-width: 767px){
  .pagenation{
    padding: 1.5em 5%;
  }
  .pagenation-list-current,
  .pagenation-list-link{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 2.0rem;
  }
}


/* pagetop
----------------------------------------*/
#errorMessage {
	font-size: 1.2rem;
	color: #999999;
	line-height: 1.4em;
	margin-bottom: 30px;
}
	
	

/* pagetop
----------------------------------------*/
.pagetop{
	position: fixed;
	bottom: 1em;
	right: 1em;
}
.pagetop img{
	width: 60px;
	height: 60px;
}
.pagetop a {
  display: block;
  transition: 0.5s;
}
.pagetop a:hover{
    opacity: 0.7;
}

@media screen and (max-width: 767px){
	.pagetop{
		position: fixed;
		bottom: 0;
		right: 0;
	}
	.pagetop img{
		width: 50px;
		height: 50px;
	}
}


/* localFooter
----------------------------------------*/
div.localFooter{
	padding: 20px;
	background: #fff;
	text-align: left;
	line-height: 1.6;
}