@charset "utf8";
/*=============================
  - header
	- fotter
	- navigation
==============================*/

/*----------------------------------------------------
	header
----------------------------------------------------*/
#header {
  position: relative;
  z-index: 10;
}

#header .inner {
  width: 1180px;
  width: max(66.67vw, 1180px);
  margin: auto;
}

#header .logo-wrap {
	width: 462px;
	padding-top: 15px;
    position: relative;
    z-index: 2;
}
#header .logo { display: block; }
#header .logo img { 
	width: 100%;
	height: auto;
}

.header-top {
  padding-top: 8px;
  padding-bottom: 6px;
}
.header-top .text {
  font-size: 13px;
  font-weight: 400;
}

#header .btn-wrap {
  margin-left: 32px;
}

#header .btn-wrap a {
  display: block;
  padding: 10px 47px 11px 35px;
  border-radius: 22px;
}

#header .btn-wrap a img {
  display: inline-block;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  #header { width: 100%; }

  #header .logo-wrap {
    width: 50vw;
	padding: 0 0;
	margin: 0 0;
  }
  #header .logo {
    padding: 10px 0;
    display: flex;
 }

  #header .btn-wrap {
    margin-left: 0;
    margin-top: 16px;
  }

  #header .btn-wrap a {
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
  }
}


/*----------------------------------------
ナビゲーション(ヘッダー)
----------------------------------------*/
#header .fixed-wrap,
#header .menu {
  display: flex;
}

#header .menu nav ul {
	background: #e7e9d9;
    padding: 1.25em 3em;
    padding-right: calc((100vw - 1200px) / 2);
    border-radius: 50px 0 0 50px;
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
}

#header .menu nav ul li {
  margin-left: 19px;
}

#header .menu nav ul li:first-of-type {
  margin-left: 0;
}

#header .menu nav ul li a {
	font-size: 14px;
	line-height: 1.0em;
	font-weight: 500;
	color: #453721;
	letter-spacing: 0.03em;
	display: block;
	transition: 0.3s;
}

#header .menu nav ul li a.btn-group-site {
    color: #9ad579;
    font-weight: 500;
    border: 1px solid #9ad579;
    padding: 2px 10px;
	display: flex;
	align-items: center;
}
#header .menu nav ul li a.btn-group-site::after {
    content: "";
	display: inline-block;
	margin-left: 8px;
	width: 15px;
	height: 15px;
	background: url("../images/icon-clone.png") no-repeat;
	background-size: contain;
}

#header .menu nav ul li a:hover {
  opacity: 0.7;
}

#header .menu-ani-button-wrap {
  display: none;
}

@media screen and (max-width: 767px) {
  #header .fixed-wrap {
	display: flex;
	width: 100%;
	height: auto;
	background: #fff;
	padding-left: 2.5vw;
	padding-right: 2.5vw;
  }
  #header .menu {
    display: none;
    width: 100vw;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 50px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }

  #header .menu nav {
    display: block;
  }
  #header .menu nav ul {
	display: block;
	padding: 0 0;
	border-radius: 0 0;
	position: relative;
  }
  #header .menu nav ul li {
    margin-left: 0;
  }
  #header .menu nav ul li a {
	text-align: center;
	padding: 15px 0;
	border-top: 1px solid #453721;
  }
  #header .menu nav ul li:last-child a {
	border-bottom: 1px solid #453721;
  }




  #header .menu-ani-button-wrap {
    position: relative;
    display: block;
    width: 30px;
    height: 23px;
    z-index: 10;
  }

  .menu-ani-button {
    cursor: pointer;
    position: static;
    margin-top: 0;
  }
	
  #header .btn-group-site {
    color: #9ad579;
    font-size: 12px;
    line-height: 1.3em;
    font-weight: 500;
    border: 1px solid #9ad579;
    padding: 3px 6px;
    /*display: flex;*/
	align-items: center;
	position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
	display: none;
  }
  #header .btn-group-site::after {
    content: "";
	display: inline-block;
	margin-left: 5px;
	width: 15px;
	height: 15px;
	background: url("../images/icon-clone.png") no-repeat;
	background-size: contain;
  }
	
}


/*----------------------------------------------------
sp ハンバーガーメニューcss
----------------------------------------------------*/
.menu-ani-button {
  cursor: pointer;
  position: absolute;
  width: 30px;
  /*---線の長さ---*/
  height: 25px;
  /*---線の太さ長さによって調整---*/
  /*margin-top: -10px;*/
}

.bar,
.bar:before,
.bar:after {
  height: 3px;
  /*---線の太さ---*/
  border-radius: 3px;
  width: 100%;
  background-color: #453721;
  transition: all 0.25s;
  position: absolute;
}

.bar {
  left: 0;
  top: 10px;
}

.bar:before {
  content: "";
  left: 0;
  top: -10px;
}

.bar:after {
  content: "";
  left: 0;
  top: 10px;
}

.menu-animated .bar {
  background-color: transparent;
  transition: all 0.25s;
}

.menu-animated .bar:before {
  transition: all 0.25s;
  content: "";
  transform: rotate(45deg);
  top: 0px;
}

.menu-animated .bar:after {
  transition: all 0.25s;
  content: "";
  transform: rotate(-45deg);
  top: 0px;
}



/*----------------------------------------------------
footer
----------------------------------------------------*/
#footer {
  width: 100%;
  overflow: hidden;
}
#footer .foot-content {
  padding: 25px 0;
  position: relative;
}

#footer #foot-navi {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px 0;
}
#footer #foot-navi .foot-navi-bottom li a {
	font-size: 14px;
	color: #fff;
}

#footer .btn-group-site {
    font-size: 14px;
    display: flex;
    align-items: center;
}
#footer .btn-group-site::before {
    content: "";
	display: inline-block;
	margin-right: 0.5em;
	width: 22px;
	height: 22px;
	background: url("../images/icon-clone-w.png") no-repeat;
	background-size: contain;
}

@media screen and (max-width: 767px) {
  #footer #foot-navi {
    align-items: center;
    gap: 0 0;
  }
	
  #footer .btn-group-site {
    margin-top: 15px;
  }
	
}

#footer .copy {
	color: #453721;
    font-size: 12px;
    font-weight: 500;
}

.copyright {
  padding: 14px 0;
}

#footer .logo img {
  max-width: initial;
}

#scroll-top a {
  border-radius: 50%;
  background: rgba(0, 72, 150, 0.7);
  bottom: 70px;
  display: block;
  float: right;
  height: 70px;
  width: 70px;
  padding: 5px;
  position: fixed;
  right: 30px;
  text-align: center;
  padding-top: 16px;
  z-index: 9999;
}

#scroll-top a .fa-arrow-up::before {
  font-size: 36px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #footer .foot-content {
    padding: 30px 0;
  }

  #footer .logo {
    position: static;
    text-align: center;
    margin-bottom: 25px;
  }

  #footer .logo img {
    /* width: 50%; */
    max-width: 220px;
    height: auto;
  }

  #scroll-top a {
    bottom: 30px;
    height: 50px;
    width: 50px;
    padding-top: 10px;
  }

  #scroll-top a .fa-arrow-up::before {
    font-size: 30px;
  }
}


/*----------------------------------------
ナビゲーション(フッター)
----------------------------------------*/
#foot-navi>.ul-wrap>ul {
  display: flex;
  justify-content: flex-end;
}

#foot-navi>.ul-wrap>.foot-navi-bottom {
/*  margin-top: 20px;
  font-size: 14px;
*/
}
#foot-navi>.ul-wrap>ul>li {
  padding: 0 0 0 30px;
  position: relative;
}
#foot-navi>.ul-wrap>ul>li:first-of-type {
  padding-left: 0;
}
#foot-navi>.ul-wrap>ul>li>a {
  display: block;
  font-weight: normal;
  transition: 0.3s;
}
#foot-navi>.ul-wrap>ul>li>a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  #foot-navi>.ul-wrap {
    width: 100%;
    padding: 0;
  }
  #foot-navi>.ul-wrap>ul {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
  }
  #foot-navi>.ul-wrap>ul>li {
    display: block;
    padding: 0;
  }
  #foot-navi>.ul-wrap>ul>li>a {
    padding: 4px 6px;
  }
}



