@charset "UTF-8";
/* ****************************************************************************

layout

-------------------------------------------------------------------------------

  00. common
	01. header
	02. nav
	03. breadcrumbs
	04. main
	05. pagetop 
	06. footer
	99. print

******************************************************************************* */

/* ==
	00. Common
=============================================================================== */
html{font-size: 62.5%;}
body{
  font-size:1.6rem;
  line-height: 1.8;
  font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
  color:#333;
  background:#fff;
}
#wrapper{min-width:300px;}
.inner{
  position:relative;
  max-width:960px;
  margin:0 auto;
}


/* ==
	01. header
=============================================================================== */
header{
  position: fixed;
  top:0;
  width:100%;
  min-width:300px;
  padding:12px 10px 18px;
  border-bottom:1px solid #ccc;
  z-index:9999;
  background: #fff;
}
header #logo{
  position: relative;
  display:inline-block;
  z-index:99999;
}
header #logo p{
  margin-bottom:5px;
  font-size:1.2rem;
  font-weight:normal;
}
@media only screen and (max-width: 660px) {
  header #logo p {font-size: 1rem;}
  
}


/* ==
	02. nav
=============================================================================== */
nav{
  position:relative;
  z-index:9999;
}
nav ul{
  margin-top:-30px;
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end; 
}
nav ul li{
  margin-left:20px;
  text-decoration: none;
  color:#333;
}
nav ul li a{
  opacity:1;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color:#333;
  font-size:1.5rem;
}
nav ul li a:hover{
  opacity:0.7;
  transition: all 0.3s;  
}
nav ul li a::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #666;
  transition: all 0.1s ease 0s;
}
nav ul li a:hover::after {width: 100%;}

/*-- ハンバーガーアイコン --*/
.toggle{display:none !important;}
.toggle,
.toggle span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}
.toggle {
  float:right;
  margin-top:10px;
  position: relative;
  width: 40px;
  height: 25px;
}
.toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 3px;
}
.toggle span:nth-of-type(1) {top: 0;}
.toggle span:nth-of-type(2) {top: 10px;}
.toggle span:nth-of-type(3) {bottom: 0;}
.toggle::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: 'MENU';
  display: block;
  width: 100%;
  color: #000;
  font-size: 11px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
}
.toggle.active::after {
  content: 'CLOSE';
  bottom: -20px;
}
.toggle.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.toggle.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
@media only screen and (max-width: 820px) {
	nav ul li {margin-left: 15px;}
	nav ul li a {font-size: 1.4rem;}
}

@media only screen and (max-width: 660px) {
  #wrapper header nav{ display:none;}
  .toggle{display:block !important;}
  header{
    height:auto;
    padding-bottom:0;
  }  
  header #logo{margin-bottom:15px;}
  header nav{
    position:relative;
    margin:0 -10px;
  }
  header nav ul{
    margin-top:0;
    flex-wrap:wrap;
  }
  header nav ul li{
    margin-left:0;
    flex-basis:50%;
  }
  header nav ul li:nth-child(even){border-left:1px dashed #ccc;}
  header nav ul li a{
    position: relative;
    display:block;
    padding:15px 25px 15px 15px;
    vertical-align: middle;
    border-top:1px dashed #ccc;
}
  header nav ul li a::before,
  header nav ul li a::after{
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      content: "";
      vertical-align: middle;
  }
  header nav ul li a::before{
    right: 15px;
    left:auto;
    width: 12px;
    height: 12px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
  }
  header nav ul li a:first-child{border-top:1px solid #ccc;}  
  nav ul li a::after {
    height:0;
  }  
}


/* ==
	03. breadcrumbs
=============================================================================== */
/* ==
03. breadcrumbs
=============================================================================== */
.breadcrumbs{
margin-top:83px;
padding: 0 10px 0;
min-width:300px;
min-height:36px;
background:#efefef;
overflow: hidden;
color:#333;
}
.breadcrumbs .inner {
position:relative;
max-width: 960px;
margin: 13px auto;
}
.breadcrumbs .inner ul {
display: table;
padding:0;
margin:0 0 7px 0;
}
.breadcrumbs .inner ul li {
margin: 0 10px 0 0;
float: left;
list-style: none;
font-size: 1.4rem;
line-height:1;
}
.breadcrumbs .inner ul li:first-child::before {
padding: 0 3px 0 0;
content: "";
}
.breadcrumbs .inner ul li::before {
padding: 0 10px 0 0;
content: ">";
font-size: 12px;
}
.breadcrumbs p{
  position:absolute;
  right:0;
  top:-3px;
  font-size: 12px;
}
.breadcrumbs .inner ul li i{
  margin-right:5px;
  vertical-align:middle;
  font-size:1.6rem;
  line-height:1;
}
@media only screen and (max-width: 660px) {
  .breadcrumbs{margin-top:80px;}
  .breadcrumbs .inner p{display:none;}
}


/* ==
	04. main
=============================================================================== */
#main{
  position: relative;
  z-index:0;
  padding-bottom:60px;
  background: url("/common/images/bg_deer.png") no-repeat 10px bottom;
}
#main section{padding:70px 10px;}
#mainimg img{
  width:100%;
  height: auto;
}




/* ==
05. PageTop
=============================================================================== */
#wrapper{
  margin-top:-80px;
  padding-top:80px;
}
#wrapper .fnAnchor{
  margin-top:-90px;
  padding-top:90px;
}

#wrapper #pageTop a{
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: inline-block;
  width: 50px;
  height: 50px;
  background:#333;
  color:#fff;
  border-radius: 5px;
  line-height:80px;
  font-size:12px;
  text-align:center;
  z-index:2;
  text-decoration:none;
}
#wrapper #pageTop a:hover{text-decoration:none;}
#wrapper #pageTop a::before{
  position: absolute;
  margin: auto;
  content: "";
  vertical-align: middle;
  top:20px;
  left: 50%;
  margin-left:-8px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

/* ==
	06. footer
=============================================================================== */
footer #cv{
  border-top:1px solid #efefef;
  padding:40px 10px;
  background:url(/common/images/bg.jpg) no-repeat 0 0;
  background-size: cover;
  box-shadow: 0px 6px 3px -3px  rgba(0,0,0,0.1);
}
footer #cv .flexBox{
	margin-bottom:0;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer #cv .flexBox .col{
	width:32%;
	margin:0 0 15px 0;
}
footer #cv .flexBox a{
  display:block;
  padding:15px 10px;
  text-align:center;
  border:1px solid #ccc;
  background:#fff;
  color:#333;
  text-decoration: none;
}
footer #cv .flexBox a img{margin-right:5px;}
footer #cv .sns{text-align:center;}
footer #cv .sns a{
  display:inline-block;
  margin-left:10px;
  line-height:1.2;
}
footer #footerCol{
  margin:40px 0;
  padding: 0 10px;
  display: flex;

  font-size:1.4rem;  
}
footer #footerCol .col:first-child{
  flex-basis:350px;
}
footer #footerCol #footNav{
  margin-bottom:10px;
  padding-bottom:10px;
  display: flex;
  justify-content: flex-start;
  border-bottom:1px solid #e6e6e6;
}
footer #footerCol #footNav li{margin: 0;}
footer #footerCol #footNav li a{
  text-decoration: none;
  color:#333;
  font-size:1.5rem;  
  opacity:1;
  white-space: nowrap;
}
footer #footerCol #footNav li a:hover{
  opacity:0.7;
  transition: all 0.3s;
}
footer #footerCol dt{
  position:relative;
  float:left;
  clear:both;
  width:5em;  
}
footer #footerCol dt span{
  postion: relative;
  right:0;
}
footer #footerCol dd{margin-left:5em;}
footer address{
  display:flex;
  justify-content: center; 
  align-items: center;
  background:url(/common/images/bg.jpg) no-repeat 0 0;
  background-size: cover;  
  height:80px;
  text-align:center;
  font-style:normal;
  font-size:1.2rem;
  box-shadow: 0 -6px 3px -3px  rgba(0,0,0,0.1);
}
@media only screen and (max-width: 900px) {
	#footerCol .col:first-child{display:none;}
	#footerCol .col:last-child{
  margin: 0 0 20px 0;
}
}
@media only screen and (max-width: 660px) {
  footer #cv .flexBox a{
    max-width:300px;
    margin:0 auto;
  }
  footer #footerCol #footNav{
    margin-bottom:20px;
    padding-bottom:0;
    flex-direction:column;
    border:1px solid #ccc;
    border-radius: 5px;
  }
  footer #footerCol #footNav span{display:none;} 
  footer #footerCol #footNav a{
    position: relative;
    display: block;
    padding: 10px 10px 10px 15px;
    text-align:left;
    font-size:14px;
    border-bottom:1px solid #ccc
  }
  footer #footerCol #footNav a:before{
    position: absolute;
    margin: auto;
    content: "";
    vertical-align: middle;
    right:15px;
    top:1.3em;
    width: 6px;
    height: 6px;
    border-top: 3px solid #ccc;
    border-right: 3px solid #ccc;
    transform: rotate(45deg);
  }
  footer #footerCol #footNav a:last-child{border:0;}
  footer #footerCol .f-logo{
    margin-bottom:20px;
    text-align:center;
  }
  footer #footerCol .f-logo img{width:150px;}
}

/* ==
	99. print
=============================================================================== */