@charset "UTF-8";
/*===================================================================
    reset
===================================================================*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td,
nav, article, section, header, footer, address, figure {
  margin: 0;
  padding: 0;
}

html,body{
  width: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  margin: 0;
}

body {
  width: 100%;
  position: relative;
  font-family:"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro", "游ゴシック","YuGothic", "ＭＳ ゴシック",sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: #EBEBEB;
  -webkit-text-size-adjust: 100%;
  -webkit-transition: .3s;
	transition: .3s;
}
.noscroll {
	overflow: hidden;
}

main{
  display:block; /* for IE */
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:link,
a:visited,
a:before,
a:after,
a img{
  text-decoration: none;
	-webkit-transition: .3s;
	transition: .3s;
  backface-visibility: hidden;
}

address {
  font-style: normal;
}

img {
  border: none;
  vertical-align: middle;
}

small {
  font-size: 11px;
}

li {
  list-style: none;
}

section{
  position: relative;
}

article{
  overflow-x: hidden;
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/* header */
header{
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 120px;
  background: #fff;
  z-index: 100;
}
header h1{
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 40px;
}
header nav>ul{
  display: flex;
  align-content: flex-end;
  align-items: center;
  height: 100%;
}
header nav>ul>li{
  position: relative;
  height: 100%;
}
header nav>ul>li>a{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 180px;
  height: 100%;
  background: #fff;
  color: #000;
}
header nav>ul>li>a strong{
  font-family: din-2014, sans-serif;
  font-size: 16px;
  letter-spacing: .1em;
}
header nav>ul>li>a .ja{
  display: block;
  font-size: .75em;
  font-weight: bold;
}
header nav>ul>li:hover>a{
  background: #EDEDED;
}
header nav>ul>li>a::after{
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #cfcd32;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}
header nav>ul>li:hover>a::after{
  opacity: 1;
}
header nav>ul>li .submenu{
  position: absolute;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
  top: 100%;
  left: 0;
  z-index: 101;
}
header nav>ul>li:hover .submenu{
  visibility: visible;
  opacity: 1;
}
header nav>ul>li .submenu a{
  display: block;
  padding: 1.5em 0;
  background: #E0E0E0;
  text-align: center;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}
header nav>ul>li .submenu li:nth-child(2n) a{
  background: #ededed;
}
header nav>ul>li.contact{
  margin-left: 40px;
}
header nav>ul>li.contact a{
  width: 120px;
  background: #cfcd32;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}
header nav>ul>li.contact a:hover{
  opacity: .8;
}

main{
  display: block;
  width: 100%;
  position: relative;
  padding-top: 110px;
  background: #EBEBEB;
}

footer{
  position: relative;
  background: #333;
  padding: 90px 0 120px
}
footer .inner{
  display: flex;
  justify-content: center;
  width: 920px;
  margin: 0 auto;
}
footer .inner h1{
  margin-right: 60px;
}
footer .inner address{
  font-size: 14px;
  line-height: 2;
  color: #fff;
  letter-spacing: .05em;
  margin-bottom: 1.2em;
}
footer .inner .licence{
  font-size: 14px;
  color: #fff;
  letter-spacing: .05em;
}
footer .copyright{
  position: absolute;
  bottom: 40px;
  left: 5%;
  color: #fff;
  font-size: 10px;
}


@media screen and (min-width: 768px){
  body{
    font-size: 14px;
  }
  .sp{
    display: none !important;
  }
  body,html{
    min-width: 1100px;
  }
  img{
    height: auto;
  }
	.spnav{
		display: block !important;
	}
}

@media screen and (max-width: 767px){
  .pc{
    display: none !important;
  }
  img{
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .hamburger_area {
	  position: absolute;
	  top: 0;
	  right: 0;
	  width: 5em;
	  max-width: 80px;
	  height: auto;
	  float: right;
	}	
	.hamburger_area:before {
	  content: "";
	  display: block;
	  padding-top: 100%; /* 1:1 */
	}
	/* クリックエリアと位置を指定 ---------------------- */
	.btnHamburger {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  width: 30px; /* クリックエリアの横幅*/
	  height: 30px; /* クリックエリアの高さ*/
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	  cursor: pointer;
	  z-index: 2000;
	}
	.btnHamburger.is-active .txt{
	  opacity: 0;
	}
	
	/* 3本線の1本ごとに共通するスタイルを指定 ---------------------- */
	.btnHamburger .line {
	  position: absolute;
	  top: 0;
	  left: 0;
	  display: block;
	  width: 30px; /* 横幅 */
	  height: 3px; /* 1本辺りの高さ */
	  background: #000; /* 線の色 */
	
	  /* 適用するプロパティ、変化する時間、変化する速度 */
	  -webkit-transition: all 0.3s ease-out;
	  transition: all 0.3s ease-out;
	 }
  
  header.scroll .btnHamburger .line, .btnHamburger.is-active .line {
    background: #000;
  }
	
	/* 3本線の各線の位置を指定 ---------------------- */
	.btnHamburger .line_01 { top: 5px; }
	.btnHamburger .line_02 { top: 15px; }
	.btnHamburger .line_03 { top: 25px; }
	
	/* 最上部の線のスタイル ---------------------- */
	.btnHamburger.is-active .line_01 {
	  top: 15px; /* 上から2番目の線の位置に変更 */
	
	  /* 線を45度回転 */
	  -webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}
	
	/* 上から2番目の線のスタイル ---------------------- */
	.btnHamburger.is-active .line_02 {
	  opacity: 0; /* 不透明度を下げて線を消す */
	}
	
	/* 最下部の線のスタイル ---------------------- */
	.btnHamburger.is-active .line_03 {
	  top: 15px; /* 上から2番目の線の位置に変更 */
	
	  /* 線を135度回転 */
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg);
	}
  header .spnav{
    display: none;
	  position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
    padding-top: 80px;
    overflow: auto;
  }
  
  /* header */
  header{
    display: block;
    width: 100%;
    height: 80px;
    background: #fff;
    -webkit-transition: .3s;
    transition: .3s;
  }
  header h1{
    position: relative;
    width: auto;
    align-items: center;
    padding-left: 0;
    z-index: 1000;
  }
  header h1 img{
    top: 50%;
    left: 5%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20%;
    max-width: 80px;
    position: absolute;
    -webkit-transition: .3s;
    transition: .3s;
  }
  header h1 img.orig{
    opacity: 1;
  }
  header h1 img.sp{
    opacity: 0;
  }
  header nav>ul{
    display: block;
    height: 100%;
    padding-top: 15vh;
  }
  header nav>ul>li{
    position: relative;
    height: auto;
    margin-bottom: 4em;
  }
  header nav>ul>li>a{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
    text-align: center;
  }
  header nav>ul>li>a strong{
    font-size: 1.8em;
    letter-spacing: .1em;
  }
  header nav>ul>li>a .ja{
    font-size: .9em;
    margin-top: 1em;
  }
  header nav>ul>li>a::after{
    content: none;
  }
  header nav>ul>li .submenu{
    position: static;
    width: 100%;
    visibility: visible;
    opacity: 1;
  }
  header nav>ul>li:hover .submenu{
    visibility: visible;
    opacity: 1;
  }
  header nav>ul>li .submenu a{
    display: block;
    padding: 1em 0 .5em;
    background: #fff;
    font-size: .9em;
  }
  header nav>ul>li .submenu li:nth-child(2n) a{
    background: #fff;
  }
  header nav>ul>li.contact{
    margin: 15vh auto 5vh;
    width: 90%;
  }
  header nav>ul>li.contact a{
    width: 100%;
    line-height: 4em;
    font-size: .9em;
  }
  header nav>ul>li.contact a:hover{
    opacity: .8;
  }

  main{
    display: block;
    width: 100%;
    position: relative;
    padding-top: 0;
    background: #EBEBEB;
  }

  footer{
    position: relative;
    background: #333;
    padding: 4em 0 2em
  }
  footer .inner{
    display: block;
    width: 75%;
    margin-bottom: 5em;
  }
  footer .inner h1{
    width: 38%;
    margin: 0 auto 1.5em;
  }
  footer h1 img{
    width: 100%;
  }
  footer .inner address{
    font-size: .7em;
    line-height: 2;
    color: #fff;
    letter-spacing: .05em;
    margin-bottom: 2em;
  }
  footer .inner address a{
    color: #fff;
  }
  footer .inner .licence{
    font-size: .7em;
    line-height: 2;
  }
  footer .copyright{
    position: static;
    text-align: center;
  }
}

@media only screen and (max-width: 320px){
  body{
    font-size: 90%;
  }
}
