@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;
	word-break: normal;
	-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;}

img{
	vertical-align: bottom;
}

.spview{display: none;}

@media screen and (max-width: 767px){
	.pcview{display: none;}
	.spview{display: block;}
}


/* layout
----------------------------------------*/
.wrapper img{
	width: 100%;
	height: auto;
}


/* bg-box
----------------------------------------*/
.bg-box{
  position: relative;
}
.bg-box::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #f5f2e9;
  content: "";
  z-index: -10;
}


/* mv
----------------------------------------*/
.mv{
	max-width: 1000px;
	margin: 0 auto;
}
.mv-inner{
	position: relative;
	padding-bottom: 54%;
}
.mv-inner::before{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding-bottom: 54%;
	background: url(mv.jpg) no-repeat center top;
	background-size: cover;
	content: "";
	z-index: -10;
}
.mv-title{
	max-width: 1000px;
	margin: 0 auto;
  padding: 25px 3%;
}
.mv-title-main{
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}
.mv-title-main span{
  color: #816600;
  font-size: 150%;
}
.mv-title-logo{
	max-width: 250px;
	margin: 40px auto 0;
}
.mv-title-logo a{
	transition: 0.5s;
}
.mv-title-logo a:hover{
	opacity: 0.8;
}
.mv-name{
	position: absolute;
  left: 50%;
	transform: translateX(-50%);
	bottom: 25px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.mv-name-inner{
	display: inline-block;
	padding: 2.5% 5%;
	background-color: rgba(129,102,0,0.9);
}
.mv-name-inner p{
	color: #fff;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.7;
}
.mv-name-inner p + p{
  margin-top: 10px;
}
.mv-name-inner p span{
	font-size: 130%;
}

@media screen and (max-width: 767px){
	.mv-inner{
		padding-bottom: 73.33333333333333%;
	}
	.mv-inner::before{
		padding-bottom: 73.33333333333333%;
		background: url(mv-sp.jpg) no-repeat center top;
		background-size: cover;
	}
  .mv-title{
    padding: 10px 3%;
  }
	.mv-title-main{
		font-size: 2.2rem;
	}
	.mv-name{
		position: static;
		transform: none;
	}
	.mv-name-inner{
		width: 100%;
		padding: 10px;
		font-size: 1.6rem;
	}
  .mv-name-inner p{
    font-size: 1.3rem;
    text-align: center;
  }
}


/* lead
----------------------------------------*/
.lead{
	padding: 40px 5%;
}
.lead-inner{
	max-width: 800px;
	margin: 0 auto;
}
.lead-inner p{
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2;
}

@media screen and (max-width: 767px){
	.lead{
		padding: 30px 5%;
	}
}


/* contents
----------------------------------------*/
.contents{
	padding: 80px 3%;
  background-color: #eee;
}
.contents-inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 3%;
  background-color: #fff;
}
@media screen and (max-width: 767px){
  .contents{
    padding: 40px 3%;
  }
  .contents-inner{
    padding: 40px 3%;
  }
}


/* section
----------------------------------------*/
.section{
	max-width: 800px;
  margin: 0 auto;
}
.section + .section{
  margin-top: 70px;
}
.section-heading{
	position: relative;
	margin-bottom: 30px;
  padding: 12px 20px;
  background: #2c7500;
  color: #fff;
	font-size: 2.3rem;
	font-weight: 700;
	line-height: 1.6;
}
.section > p{
	margin-bottom: 1.5em;
	font-size: 1.6rem;
	line-height: 2;
}
.section > p:last-of-type{
	margin-bottom: 0;
}

@media screen and (max-width: 767px){
  .section + .section{
    margin-top: 50px;
  }
	.section-heading{
		font-size: 2.0rem;
	}
}


/* figure
----------------------------------------*/
.figure{
	max-width: 700px;
	margin: 50px auto;
}
.figure-heading{
  margin-bottom: 15px;
  padding: 10px 0 10px  13px;
  border-left: solid 3px #2c7500;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
.figure-caption{
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px){
	.figure{
		margin: 40px auto;
	}
}


/* company
----------------------------------------*/
.company{
  max-width: 800px;
  margin: 60px auto 0;
	padding: 50px 5%;
  background-color: #fff;
  border: solid 4px #816600;
}
.company-logo{
  max-width: 350px;
  margin: 0 auto;
}
.company-name{
  margin-top: 40px;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: center;
}
.company-text{
	margin-top: 30px;
	font-size: 1.6rem;
	line-height: 2;
	text-align: center;
}

@media screen and (max-width: 767px){
	.company{
    margin: 40px auto 0;
		padding: 30px 5%;
	}
  .company-logo{
    width: 80%;
  }
  .company-text{
    line-height: 1.6;
  }
}


/* pagetop
----------------------------------------*/
.pagetop{
	position: fixed;
	bottom: 2em;
	right: 2em;
}
.pagetop img{
	width: 60px;
	height: 60px;
}
.pagetop a {
  display: block;
  transition: 0.5s;
}
.pagetop a:hover{
    opacity: 0.8;
}

@media screen and (max-width: 767px){
	.pagetop{
		position: fixed;
		bottom: 0.5em;
		right: 0.5em;
	}
	.pagetop img{
		width: 50px;
		height: 50px;
	}
}


/* footer
----------------------------------------*/
.footer-bottom{
	background: #fff;
}
div.localFooter{
	padding: 20px;
	text-align: left;
	line-height: 1.6;
}