@charset "utf-8";
/*--------------------------------------------------------common*/
.boxH1Img{
  position: relative;
  max-height: 320px;
  overflow: hidden;
}
.boxH1Img img{
  width:100%;
  min-height: 280px;
  object-fit: cover;
  object-position: 0 50px;
}
h1{
  position: absolute;
  top:100px;
  left:240px;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-size:4.5rem;
  font-weight: 100;
  line-height: 1;
}
h1 span{
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size:2.45rem;
}
.breadCrumb{
  display:flex;
  width:90%;
  max-width:1200px;
  margin:10px auto 0;
  font-size:1.4rem;
  line-height: 1;
}
.breadCrumb li{
  color:#6b5f48;
}
.breadCrumb li:after{
  content:">";
  padding:0 8px;
}
.breadCrumb li:last-child:after{
  content:none;
}
.breadCrumb li img{
  vertical-align: middle;
}
.breadCrumb .home img{
	width:16px;
}


section{
  position: relative;
  margin-bottom: 100px;
  padding-bottom:100px;
  border-bottom:1px solid #999;
  scroll-behavior: smooth;
}
section h2{
  margin-bottom:50px;
  font-size:4.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 100;
  text-align: center;
  line-height: 1.3;
}
.pageTop{
  position: absolute;
  bottom:0;
  right:22px;
}

.boxContent{
  display: flex;
  flex-direction: row-reverse;
  width:90%;
  max-width: 1200px;
  margin:auto;
}
.boxContent aside{
  width:220px;
  margin:50px 30px 0 0;
}
aside ul{
  border:3px solid #aaa;
  background:#eee;
}
aside ul li+li{
  border-top:1px dotted #aaa;
}
aside li a{
  display:block;
  padding:10px 10px 10px 20px;
  background-color: #ddd;
  transition:0.2s;
}
aside li.active a{
  display:block;
  padding:10px 10px 10px 20px;
  background:url("../images/icn_arrow01.png") no-repeat 5px 50%;
  
}
aside li a:hover{
  text-decoration:none;
  background-color: #eee;
}
.asideBnr{
  border:none;
  margin-top:30px;
  background:initial;
}
.asideBnr ul li+li{
  border-top:none;
}
.asideBnr li a{
  padding:0;
  background:initial;
}
.asideBnr li a img{
  background-color:#fff;
  border:1px solid #ccc;
  opacity:1;
  transition:0.2s;
}
.asideBnr li a:hover img{
  opacity: 0.7;
}
main{
  width:calc(100% - 280px);
  margin:40px 0 0 30px;
}

@media(max-width:1080px){
  .boxH1Img{
    padding-top:50px;
  }
  h1{
    top:150px;  
  }
}
@media(max-width:768px){
  .boxH1Img{
    top: 100px;
    margin-bottom: 115px;
    padding-top:0;
}
  .boxH1Img img{
    min-height: 200px;
  	object-position: 0 0;
  }
  h1{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    font-size:3rem;
    text-align: justify;
  }
  .breadCrumb{
    margin:5px 20px 50px;
  }
  .boxContent{
    flex-direction: column;
  }
  main{
    width:100%;
    margin-left:0;
  }
  section{
    margin-bottom: 50px;
    padding-bottom:50px;
    border-bottom:none;
  }
  section h2{
    font-size:2.6rem;
    font-weight: 400;
  }
  .boxContent aside{
    width:100%;
    margin:50px 0;
  }
  .asideBnr li{
    width:220px;
    margin:auto;
  }
}