@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;
}


/* header
----------------------------------------*/
.header{
	padding: 20px 5% 35px;
}
.header-inner{
	max-width: 550px;
	margin: 0 auto;
}


/* mv
----------------------------------------*/
.mv{
	background-color: #ece5db;
}
.mv-inner{
  position: relative;
	max-width: 1100px;
  height: 600px;
  margin: 0 auto;
}
.mv-inner::before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(mv.jpg) no-repeat center top;
	background-size: cover;
	content: "";
}
.mv-name{
  position: relative;
  max-width: 800px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 10;
}
.mv-name-inner{
  position: absolute;
  right: 10px;
  bottom: 20px;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.6;
}
.mv-name-inner span{
	font-size: 150%;
}

@media screen and (max-width: 767px){
  .mv-inner{
    height: auto;
  }
  .mv-inner::before{
    padding-top: 66.66666666666667%;
    background: url(mv-sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .mv-name{
    position: static;
    padding-top: 66.66666666666667%;
  }
  .mv-name-inner{
    bottom: 10px;
    font-size: 1.4rem;
  }
}


/* title
----------------------------------------*/
.title{
  padding: 50px 5%;
  background: linear-gradient(90deg,#00265a,#004280);
}
.title-inner{
  max-width: 1000px;
  margin: 0 auto;
}
.title-main{
  color: #fff;
  font-size: 5.0rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 767px){
  .title{
    padding: 30px 5%;
  } 
  .title-main{
    font-size: 3.8rem;
  }
}


/* lead
----------------------------------------*/
.lead{
	padding: 0 5%;
}
.lead-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
	max-width: 800px;
	margin: 0 auto;
  padding: 30px 0;
  border-bottom: solid 1px #ccc;
}
.lead-text{
  width: 75%;
  color: #962e32;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 2;
}
.lead-logo{
  width: 21.25%;
}

@media screen and (max-width: 767px){
  .lead-inner{
    padding: 20px 0;;
  }
  .lead-text{
    width: 100%;
    order: 2;
  }
  .lead-logo{
    width: 50%;
    margin: 0 auto 20px;
    order: 1;
  }
}


/* section
----------------------------------------*/
.section{
	margin: 70px auto 0;
}
.section + .section{
  margin: 90px auto 0;
}
.section-inner{
  max-width: 800px;
  margin: 0 auto;
}
.section-text{
  padding: 0 5%;
}
.section-heading{
	margin-bottom: 50px;
	color: #00265a;
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.4;
}
.section-inner p{
	margin-bottom: 1em;
	font-size: 1.6rem;
	line-height: 2;
}
.section-inner p:last-of-type{
	margin-bottom: 0;
}
.section-inner p.question{
	font-weight: 700;
}
.section-inner p .name{
  color: #962e32;
  font-weight: 700;
}

@media screen and (max-width: 767px){
  .section{
    margin: 50px auto 0;
  }
  .section + .section{
    margin: 70px auto 0;
  }
  .section-heading{
    margin-bottom: 25px;
    font-size: 3.0rem;
  }
}


/* photo
----------------------------------------*/
.section-photo{
	position: relative;
  padding: 0 5%;
}
.section-photo::before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(60deg,#a8a8a8,#dbdbdb);
  content: "";
  z-index: -10;
}
.section-photo > .section-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto;
}
.section-photo-image{
  width: 60.625%;
}
.section-photo-caption{
  width: 34.375%;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}
.section-photo-person{
  float: right;
  width: 50%;
  margin: 5px 0 40px 40px;
}

@media screen and (max-width: 767px){
  .section-photo::before{
    top: 21%;
    transform: none;
    height: 120px;
  }
  .section-photo > .section-inner{
    margin: 30px auto;
  }
  .section-photo-image{
    width: 90%;
    margin: 0 auto 10px;
  }
  .section-photo-caption{
    width: 100%;
    font-size: 1.4rem;
  }
  .section-photo-person{
    float: none;
    width: 100%;
    margin: 30px auto;
  }
}


/* profile
----------------------------------------*/
.profile{
  margin: 70px 0;
  padding: 0 5%;
}
.profile-inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
	padding: 30px;
	border: solid 1px #ccc;
}
.profile-image{
	width: 51.49051490514905%;
}
.profile-text{
	width: 45.1219512195122%;
}
.profile-text .name{
	font-size: 1.5rem;
	line-height: 1.8;
}
.profile-text .name span{
  font-size: 150%;
}
.profile-text .detail{
  margin-top: 10px;
	font-size: 1.5rem;
	line-height: 1.8;
}

@media screen and (max-width: 767px){
  .profile{
    margin: 50px 0;
  }
  .profile-inner{
    padding: 15px;   
  }
  .profile-image{
    width: 100%;
  }
  .profile-text{
    width: 100%;
    margin: 15px auto 0;
  }
}


/* contact
----------------------------------------*/
.contact{
  margin-top: 70px;
	padding: 70px 5%;
	background-color: #dbdbdb;
}
.contact-inner{
	max-width: 800px;
	margin: 0 auto;
}
.contact-heading{
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
}
.contact-detail{
	margin-top: 30px;
	font-size: 1.8rem;
	line-height: 1.8;
	text-align: center;
}
.contact-detail a{
  color: #962e32;
	text-decoration: none;
}
.contact-detail a:hover{
	text-decoration: underline;
}

@media screen and (max-width: 767px){
  .contact{
    margin-top: 50px;
    padding: 50px 5%;
  }
  .contact-heading{
    font-size: 2.4rem;
  }
  .contact-detail{
    margin-top: 20px;
  }
}



/* 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;
}