html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}
html {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}
q, blockquote {
    quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}
a img {
    border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    /*line-height: normal;*/
    line-height: 1.7;
    box-sizing: border-box;
    color: #313131;
}
/*! based on html5doctor.com Reset Stylesheet v1.6.1 Author: Richard Clark - http://richclarkdesign.com */
html {
    box-sizing: border-box;
}
*, ::before, ::after {
    box-sizing: inherit;
}
body {
    background: transparent;
    color: #313131;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
}
html[lang="ja"] body {
    font-weight: 500;
    font-family: 'Quicksand', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
/* main elements group */
audio, canvas, progress, video {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    vertical-align: baseline;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
/* a */
* {
    box-sizing: border-box;
}
html, body {
    width: 100%;
    height: 100%;

}
body {
    -webkit-text-size-adjust: 100%;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
   background: rgba(132, 113, 48, 1);
   /* Safari */
   color: #fff;
}
::selection {
    background: rgba(132, 113, 48, 1);
    /* Safari */
    color: #fff;
}

::-moz-selection {
   background: rgba(132, 113, 48, 1);
   /* Firefox */
   color: #fff;
}
img {
    vertical-align: bottom;
    -ms-interpolation-mode: bicubic;
}
/** ---------------- font/_default.scss - */

/*default_comp*/
.center {
    text-align: center !important;
}
.left {
    text-align: left !important;
}
.right {
    text-align: right !important;
}
.bold {
    font-weight: bold;
}
.normal {
    font-weight: normal;
}

.clearfix:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    font-size: 0.1em;
    line-height: 0;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
    min-height: 1%;
    clear: both;
}
/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
}
a {
    text-decoration: none;
    color: #313131;
}
/*.hide {
    display: none;
}*/
input {
    vertical-align: middle;
}
/*************************** setting end */
/*************************** comp */
html {
    font-size: 100%;
    font-weight: 500;
}
body{
}
#main_contents{
    position: relative;
    overflow: hidden;
}
/* header */
.logo{
    position: absolute;
    left: 50px;
    top: 50px;
    width: 60px;
    z-index: 4;
}
.logo img{
    width: 100%;
}
#top .logo{
    display: none;
}
#sp_header{
    display: block;
    z-index: 3;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.hamburger {
  display : block;
  position: fixed;
  z-index : 5;
  right : 50px;
  top   : 50px;
  width : 70px;
  height: 70px;
  cursor: pointer;
  text-align: center;
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger.none{
    display: none;
}
.hamburger.active{
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 70px;
  height  : 1px ;
  left    : 0;
  background : #707070;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span{
    background: #fff;
}
.hamburger.active span:nth-child(1) {
  top : 15px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  top: 15px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  display: flex;
  z-index : 0;
  top  : 0;
  left: 0;
  color: #fff;
  padding: 0 65px;
  height: 100vh;
  width: 100%;
  opacity: 0;
  background-color: rgba(49, 49, 49, .8);
  transition: opacity .6s ease, visibility .6s ease;
  z-index: -1;
  pointer-events: none;
  align-items: center;
}
nav.globalMenuSp.top{
    background-color: transparent;
}
nav.globalMenuSp ul.g_menu {
  margin: 0 0 0 auto;
  display: flex;
  flex-wrap: wrap;
}

nav.globalMenuSp ul.g_menu li {
  list-style-type: none;
  transition: .3s all;
  width: 100%;
  text-align: right;
}
/*nav.globalMenuSp ul.g_menu li:last-child {
    margin-right: 0;
}*/

nav.globalMenuSp ul.g_menu li a {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  padding: 15px 0;
  text-decoration :none;
  transition: .3s all;
  position: relative;
}
nav.globalMenuSp ul.g_menu li:hover a{
   color: #847130;
  letter-spacing: 0.05em;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  z-index: 3;
  pointer-events: initial;

}

/*footer*/
.footer{
    border-top: 1px solid #707070;
    position: relative;
}
.footer .flex{
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0 175px;
}
.footer .flex .box_l{
    width: 50%;
}
.footer .flex .box_r{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}
.footer_name{
    font-size: 1.3rem;
}
.footer_name a{
    transition: all .3s;
}
.footer_name a:hover{
    color: rgba(132, 113, 48, 1);
}
.f_menu01{
    width: 50%;
}
.f_menu01 ul li a{
    font-size: 1.2rem;
    line-height: 1;
    display: block;
    margin-bottom: 30px;
    font-weight: 400;
}
.f_menu01 ul li:first-child a{
}
.f_menu02{
    width: 50%;
}
.f_menu02 ul li a{
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}
.footer_info{
    padding-bottom: 70px;
    text-align: center;
}
.footer_tel,
.footer_address{
    font-size: 1.1rem;
}
.footer_address{
    margin-bottom: 25px;
}
.copyright{
    font-size: 1rem;
}
.back-to-top {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 73px;
  height: 40px;
}
.back-to-top::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 73px;
  height: 40px;
  background-image: url(../img/backtotop.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all .3s;
}
.back-to-top:hover::before{
    bottom: 5px;
}
@media screen and (max-width: 1200px) {
nav.globalMenuSp ul.g_menu li a{
    font-size: 1.2rem;
}
.logo{
    width: 50px;
}
}

@media screen and (max-width: 1024px) {
.hamburger{
    width: 50px;
    height: 50px;
}
.hamburger span{
    width: 50px;
}
.hamburger span:nth-child(2){
    top: 20px;
}
.back-to-top{
    width: 50px;
}
.back-to-top::before{
    width: 50px;
}
.logo{
    width: 40px;
}
}
@media screen and (max-width: 768px) {
.footer .flex{
    padding: 45px 0 65px;
}
.footer .flex .box_l{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.footer_name{
    font-size: 1.1rem;
}
.footer .flex .box_r{
    width: 100%;
    padding: 0 15%;
}
.f_menu01 ul li a{
    font-size: 1.1rem;
}
.f_menu02 ul li a,
.footer_tel, .footer_address{
    font-size: 1rem;
}
.copyright{
    font-size: 0.9rem;
}
#top #sec05 .jp_txt{
    font-size: 1rem;
}
}
@media screen and (max-width: 599px) {
.logo{
    left: 20px;
    top: 20px;
    width: 35px;
}
.hamburger{
    width: 30px;
    height: 30px;
    right: 15px;
    top: 20px;
}
.hamburger span{
    width: 30px;
}
.hamburger span:nth-child(2){
    top: 10px;
}
nav.globalMenuSp{
    padding: 0 20px;
}
nav.globalMenuSp ul.g_menu li a{
    font-size: 1rem;
    padding: 15px 0;
}
.back-to-top{
    width: 30px;
    right: 15px;
    bottom: 20px;
}
.back-to-top::before{
    width: 30px;
}
.footer .flex .box_r{
    padding: 0 5%;
}
.footer_name{
    font-size: 1rem;
}
.f_menu01 ul li a{
    font-size: 1rem;
}
.f_menu02 ul li a,
.footer_tel, .footer_address{
    font-size: 0.8rem;
}
.copyright{
    font-size: 0.8rem;
}
}