@charset "UTF-8";
/*common
----------------------------------------------------------------------------*/
body {
  color: #666666;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}
#breadcrumb {
	margin-bottom: 20px;
	font-size: 12px;
}
#breadcrumb ul > * {
	float: left;
  margin-right: .4em;
}
#breadcrumb ul a {
	color: #bda56a;
	text-decoration: none;
}
img {
	width: 100%;
}
.cf::after {
  display: block;
  content: "";
  clear: both;
}
.center {
  text-align: center;
}
.bold {
  font-weight: bold;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.pc-inline {
  display: inline;
}
@media screen and (max-width: 740px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .pc-inline {
  display: none;
}
  .overflowHidden {
    overflow: hidden;
  }
  *:hover {
    opacity: 1!important;
  }
}
/*header
----------------------------------------------------------------------------*/
header {
  border-top: 14px solid #bda56a;
  background-color: #fff6f0;
}
header .container {
  width: 1040px;
  margin: 0 auto;
}
header h1 {
  height: 90px;
  box-sizing: border-box;
  padding-top: 18px;
}
header h1 a:hover {
  opacity: 0.5;
  transition-duration: 600ms;
}
header h1 img {
    width: 490px;
}
@media screen and (max-width: 1040px) {
  header .container {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 740px) {
	header h1 {
  height: 82px;
  box-sizing: border-box;
  padding-top: 18px;
}
  header h1 img {
  width: 136px;
}
}
/*gnav
----------------------------------------------------------------------------*/
header .gnav {
  background-color: #fff;
}
header .gnav ul {
  width: 1040px;
  margin: 0 auto;
}
header .gnav ul li {
  width: 20%;
  box-sizing: border-box;
  float: left;
  border-right: 1px solid #cccccc;
  line-height: 67px;
}
header .gnav ul li:first-child {
  border-left: 1px solid #cccccc;
}
header .gnav ul li a {
  text-decoration: none;
  display: block;
  text-align: center;
  color: #666;
  font-family: '源ノ角ゴシック Regular', '源ノ角ゴシック';
  font-size: 15px;
}
header .gnav ul li a:hover {
  color: #fefefe;
  background-color: #bda56a;
  transition-duration: 600ms;
}
header .navToggle {
  display: none;
}
@media screen and (max-width: 1040px) {
  header .gnav ul {
    width: 100%;
    margin: 0 auto;
  }
  header .gnav ul li {
    width: 20%;
    box-sizing: border-box;
    float: left;
    border-right: 1px solid #cccccc;
    line-height: 67px;
  }
  header .gnav ul li:first-child {
    border-left: 1px solid #cccccc;
  }
  header .gnav ul li a {
    text-decoration: none;
    display: block;
    text-align: center;
    color: #666;
    font-family: '源ノ角ゴシック Regular', '源ノ角ゴシック';
    font-size: 15px;
  }
  header .gnav ul li a:hover {
    color: #fefefe;
    background-color: #bda56a;
    transition-duration: 600ms;
  }
}
@media screen and (max-width: 740px) {
  header .container {
    position: relative;
    padding-left: 5%;
    box-sizing: border-box
  }
  header .navToggle {
    display: block;
    position: absolute;
    right: 13px;
    top: 27px;
    width: 32px;
    height: 30px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 32px;
    border-bottom: solid 4px #bda56a;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  .navToggle span:nth-child(1) {
    top: 0px;
  }
  .navToggle span:nth-child(2) {
    top: 13px;
  }
  .navToggle span:nth-child(3) {
    bottom: 0px;
  }
  .navToggle.active span:nth-child(1) {
    top: 13px;
    left: 0px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navToggle.active span:nth-child(2) {
    display: none;
  }
  .navToggle.active span:nth-child(3) {
    bottom: 13px;
    left: 0px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .gnav {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
    background: #fff;
    color: #666;
    text-align: center;
    transform: translateX(-100%);
    transition: all 0.6s;
    width: 80%;
    -webkit-overflow-scrolling: touch;
  }
  nav.gnav.active {
    transform: translateX(0%);
  }
  header .gnav ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  header .gnav ul li {
    width: 100%;
    box-sizing: border-box;
    float: none;
    border-right: none;
    border-bottom: 1px solid #ccc;
    line-height: 67px;
  }
  header .gnav ul li:first-child {
    border-left: none;
  }
  header .gnav ul li a {
    text-decoration: none;
    display: block;
    text-align: center;
    color: #666;
    font-family: '源ノ角ゴシック Regular', '源ノ角ゴシック';
    font-size: 15px;
  }
  header .gnav ul li a:hover {
    color: #fefefe;
    background-color: #bda56a;
    transition-duration: 600ms;
  }
}

/*footer
----------------------------------------------------------------------------*/
footer {
  background-color: #fff6f0;
  border-top: 1px solid #cccccc;
  padding: 22px 0 10px 0;
}
footer ul {
  width: 824px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: center
}
footer ul li {
  border-right: 1px solid #666;
  line-height: 14px;
  width: 20%;
  text-align: center;
}
footer ul li:last-child {
  border-right: none;
}
footer ul li a {
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: #666;
}
footer ul li a:hover {
  opacity: 0.5;
  transition-duration: 600ms;
  text-decoration: underline;
}
footer .f_logo {
  margin-bottom: 22px;
}
footer .f_logo a:hover {
  opacity: 0.5;
  transition-duration: 600ms;
}
footer .f_logo a img {
    width: 425px;
    margin: 0 auto;
}
footer address {
  margin-bottom: 25px;
  font-size: 16px;
}
footer .copy {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 1040px) {
  footer ul {
    width: 90%;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center
  }
}
@media screen and (max-width: 740px) {
  footer ul {
    width: 50%;
    box-sizing: border-box;
    padding-left: 5%;
    margin: 0 auto 32px;
    display: block;
    float: left;
  }
  footer ul li {
    border-right: none;
    line-height: 28px;
    width: 100%;
    text-align: left;
  }
  footer .container {
    float: right;
    width: 50%;
  }
  footer .container .f_logo, footer .container address {
    text-align: left;
  }
  footer .container address {
    font-size: 13px;
  }
  footer .copy {
    text-align: center;
    font-size: 12px;
    clear: both;
  }
}