
/* -----------------------------------------------

	 header

----------------------------------------------- */
header{
  font-weight: 700;
  height: 130px;
  position: relative;
  background: #fef4e0;
}
header .cwrap{
  padding: 0 0 0 45px;
}
header .logo {
  max-width: 240px;
}
header .pcnavwrap ul{
  gap: 50px;
}
header .pcnavwrap ul li a{
  font-size: 17px;
}
header .pcnav-btn{
  height: 130px;
  background: #f4a400;
}
header .pcnav-btn img{
  max-width: 300px;
  width: 23vw;
}
header .pcnav-btn a{
  color: #fff;
  padding: 0 25px;
  display: inline-block;
  line-height: 1;
}

header .cwrap{
  width: 100%;
}

/*　ハンバーガーボタン　*/
header .hamburger {
  display : none;
  background: #f4a400;
  top: 0;
  right: -1px;
  width : 80px;
  height: 80px;
  z-index : 3;
  cursor: pointer;
  position: absolute;
  text-align: center;
}
header .hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
header .hamburger span:nth-child(1) {
  top: 10px;
}
header .hamburger span:nth-child(2) {
  top: 20px;
}
header .hamburger span:nth-child(3) {
  top: 30px;
}

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

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

header nav.globalMenuSp {
  position: fixed;
  z-index : 3;
  top  : 0;
  right : -1px;
  color: #000;
  background: #f4a400;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 65%;
  height: 100vh;
  overflow: scroll;
}
header .globalMenuBG {
  position: fixed;
  z-index : 2;
  top  : 0;
  right : 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
  overflow: scroll;
}

header nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 60px 30px;
  width: 100%;
  height: 100%;
  overflow: scroll;
}

header nav.globalMenuSp ul li {
  list-style-type: none;
  margin-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #fef4e0;
}
header nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border: none;
  padding: 0 20px;
  max-width: 450px;
  margin: 30px auto 0;
}
header nav.globalMenuSp ul li:hover{
  background :#ddd;
}

header nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 20px 0;
  font-size: 18px;
  text-decoration :none;
}
/* このクラスを、jsで付与・削除する */
header nav.globalMenuSp.active {
  right: 65%;
}
header .globalMenuBG.active {
  right: 100%;
}

@media only screen and (max-width: 1400px) {
  header .pcnavwrap ul {
    gap: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  header .cwrap{
    padding: 0 0 0 30px;
  }
  header .pcnavwrap ul {
    gap: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  header .logo {
    max-width: 200px;
  }
  header .pcnavwrap ul li a {
    font-size: 14px;
  }
  header .pcnav-btn img {
    width: 220px;
  }
  header,
  header .pcnav-btn {
    height: 100px;
  }
  header .pcnav-btn a{
    padding: 0 15px;
  }
}
@media only screen and (max-width: 1000px) {
  header {
    height: 80px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .pcnavwrap{
    display: none;
  }
  header .hamburger{
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: 0.6s;
  }
  header .hamburger.hamburger.active{
    right: calc(65% - 1px);
    transition: 0.6s;
  }
  header .hamburger-inner{
    position: relative;
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 768px) {
  header nav.globalMenuSp ul li a {
    font-size: 17px;
  }
  header {
    height: 60px;
  }
  header .logo {
    max-width: 160px;
  }
  header .logo_p {
    display: none;
  }
  header .hamburger {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 479px) {
  header .cwrap {
    padding: 0 0 0 20px;
  }
  header nav.globalMenuSp ul li a {
    font-size: 16px;
    padding: 15px 0;
  }
  header nav.globalMenuSp{
    width: 80%;
  }
  header nav.globalMenuSp.active {
    right: 80%;
  }
  header .hamburger.hamburger.active {
    right: calc(80% - 1px);
  }
  header nav.globalMenuSp ul li:last-child{
    width: 100%;
    padding: 0;
  }
}


/* -----------------------------------------------

	 footer

----------------------------------------------- */
footer .itwrap *{
  color: #736357;
  line-height: 1.5;
}
footer .itwrap{
  padding: 45px 100px 30px;
  background: #e2ed99;
}
footer .itset {
  gap: 60px;
}
footer .itset .txts{
  font-weight: 700;
}
footer .itset .image{
  max-width: 380px;
  width: 30vw;
}
footer .txt01{
  font-size: 26px;
  margin-bottom: 5px;
}
footer .txt02{
  font-size: 20px;
  letter-spacing: 0.2rem;
}
footer .txt03{
  font-size: 65px;
  line-height: 1.3;
  letter-spacing: 0.5rem;
}
footer .txt03 span{
  line-height: 1;
}
footer .txt03 img{
  max-width: 50px;
  margin-right: 15px;
}
footer .itset .txts .txt04{
  font-size: 13px;
}

footer .flogowrap{
  padding: 20px 0;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  footer .itwrap {
    padding: 40px 60px 30px;
  }
  footer .txt01 {
    font-size: 24px;
  }
  footer .txt03 {
    font-size: 50px;
  }
  footer .txt03 img {
    max-width: 40px;
  }
  footer .itset .txts .txt04 .sp{
    display: block;
  }
  footer .logo img{
    max-width: 300px !important;
  }
}
@media only screen and (max-width: 768px) {
  footer .itwrap {
    padding: 35px 30px 30px;
  }
  footer .itset {
    gap: 45px;
  }
  footer .txt01 {
    font-size: 20px;
  }
  footer .txt02 {
    font-size: 16px;
  }
  footer .txt03 {
    font-size: 40px;
    margin: 5px 0;
    display: inline-block;
  }
  footer .txt03 img {
    max-width: 30px;
  }
  footer .logo img{
    max-width: 250px !important;
  }
}
@media only screen and (max-width: 650px) {
  footer .itset{
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  footer .itset .image{
    width: 220px;
  }
}
@media only screen and (max-width: 479px) {
  footer .itwrap {
    padding: 35px 20px 25px;
  }
  footer .txt01 {
    font-size: 15px;
  }
  footer .txt02 {
    font-size: 14px;
    letter-spacing: 0.01rem;
  }
  footer .txt03 {
    font-size: 35px;
    letter-spacing: 0.2rem;
  }
  footer .txt03 img {
    max-width: 25px;
    margin-right: 10px;
  }
  footer .itset .txts .txt04 {
    font-size: 11px;
  }
  footer .flogowrap {
    padding: 13px 0;
  }
  footer .logo img{
    max-width: 180px !important;
  }
}

