@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;
}


/* mv
----------------------------------------*/
.mv{
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  background: url(mv.jpg?260313) no-repeat center;
  background-size: cover;
}
.mv::before{
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background-color: #ededed;
  content: "";
  z-index: -10;
}
.mv-inner{
  position: relative;
  max-width: 900px;
  width: 94%;
  height: min(45vw, 450px);
  margin: 0 auto;
}
.title{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  max-width: 618px;
  width: 70%;
  padding: 5px;
  border: solid 3px #fff;
  border-radius: 10px;
}
.title-inner{
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
}
.title-inner h1{
  max-width: 542px;
  margin-top: 20px;
}
.title-inner .logo{
  max-width: 200px;
  width: 38%;
}

@media screen and (max-width: 767px){
  .mv{
    background: url(mv-sp.jpg?260313) no-repeat center;
    background-size: cover;
  }
  .mv-inner{
    height: auto;
    padding-top: 86.66666666666667%;
  }
  .title{
    top: inherit;
    transform: translate(-50%,0);
    left: 50%;
    bottom: 10px;
    width: 100%;
    padding: 3px;
    border-radius: 7px;
  }
  .title-inner{
    padding: 7px;
    border-radius: 7px;
  }
  .title-inner h1{
    margin-top: 10px;
  }
}


/* lead
----------------------------------------*/
.lead{
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  margin-top: 60px;
}

.lead p{
  color: #0072bc;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}

@media screen and (max-width: 767px){
  .lead{
    margin-top: 40px;
  }
}


/* section
----------------------------------------*/
.section{
	max-width: 800px;
  width: 90%;
	margin: 80px auto 0;
}
.section-heading{
  margin-bottom: 50px;
  text-align: center;
}
.section-heading span{
  display: inline-block;
  position: relative;
  padding: 10px 80px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.section-heading span::before,
.section-heading span::after{ 
  position: absolute;
  top: 0;
  content: "";
  width: 20px;
  height: 100%;
  display: inline-block;
}
.section-heading span::before{
  border-top: solid 3px #0072bc;
  border-bottom: solid 3px #0072bc;
  border-left: solid 3px #0072bc;
  left: 0;
}
.section-heading span::after{
  content: "";
  border-top: solid 3px #0072bc;
  border-bottom: solid 3px #0072bc;
  border-right: solid 3px #0072bc;
  right: 0;
}
.section p{
  margin-bottom: 1em;
  font-size: 1.6rem;
  line-height: 2;
}
.section p:last-of-type{
  margin-bottom: 0;
}
.section p.notes{
  padding-left: 1em;
  text-indent: -1em;
  color: #666;
  font-size: 85%;
}
.section p .red{
  color: #f00;
  font-weight: 700;
}

@media screen and (max-width: 767px){
  .section{
    margin: 60px auto 0;
  }
  .section-heading{
    margin-bottom: 40px;
  }
  .section-heading span{
    display: block;
    padding: 10px 30px;
    font-size: 2.4rem;
  }
}


/* photo
----------------------------------------*/
.photo{
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin: 50px auto;
}
.photo-image{
  width: 70%;
}
.photo-caption{
  width: 40%;
  margin: 0 0 20px -10%;
  padding: 20px;
  background-color: rgba(237,237,237,0.92);
  font-size: 1.4rem;
  line-height: 1.7;
}
.photo-caption span{
  font-size: 140%;
}

@media screen and (max-width: 767px){
  .photo{
    margin: 30px auto;
  }
  .photo-image{
    width: 100%;
  }
  .photo-caption{
    width: 100%;
    margin: 0;
    padding: 15px;
  }
}


/* figure
----------------------------------------*/
.figure{
  margin: 50px auto;
}
.figure-title{
  margin-bottom: 15px;
  padding: 5px 0 5px 15px;
  border-left: solid 4px #0072bc;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
.figure-caption{
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.8;
}
.section:nth-of-type(3) .figure{
  max-width: 600px;
}
.figure .click{
  margin-top: 5px;
  color: #888;
  font-size: 1.3rem;
  text-align: right;
}

@media screen and (max-width: 767px){
  .figure{
    margin: 30px auto;
  }
}


/* link
----------------------------------------*/
.link{
  margin-top: 90px;
  padding: 90px 0;
  background-color: #0072bc;
}
.link-inner{
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.link-heading{
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: solid 1px #fff;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
}
.link-list li{
  position: relative;
  padding-left: 20px;
  font-size: 1.6rem;
  line-height: 1.6;
}
.link-list li::before{
  position: absolute;
  top: 0.5em;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.link-list li a{
  color: #fff;
  text-decoration: none;
}
.link-list li a:hover{
  text-decoration: underline;
}

@media screen and (max-width: 767px){
  .link{
    margin-top: 60px;
    padding: 70px 0;
  }
}


/* contact
----------------------------------------*/
.contact{
  padding: 120px 0;
}
.contact-inner{
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
.contact-logo{
  max-width: 320px;
  width: 80%;
  margin: 0 auto;
}
.contact-inner p{
  margin-top: 70px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 767px){
  .contact{
    padding: 90px 0;
  }
  .contact-inner p{
    margin-top: 40px;
    font-size: 1.6rem;
  }
}


/* 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.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-color: #fff;
  border-top: solid 1px #ccc;
}
div.localFooter{
	padding: 20px;
	text-align: left;
	line-height: 1.6;
}