@charset "UTF-8";
@import url(sanitize.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500;700&display=swap');


/* //////////////////////////////
Base
////////////////////////////// */


body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    text-rendering: auto;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    letter-spacing: .025em;
    margin: 0;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.47059;
    background-color: #F7F7CB;
    color: #333;
    font-style: normal;
}

a {
    text-decoration: none;
    color: #333;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
}

a:hover {
    color: #EB6143;
    cursor: pointer;
}

::placeholder {
    color: #999;
    font-size: 1em;
}

img {
    max-width: 100%;
    height: auto;
}

a img {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

li {
    list-style: none;
}

h1,h2,h3,h4,h5,h6,p {
    margin: 0;
    padding: 0;
}
figure{
  margin: 0;
  padding: 0;
}

.sp {
    display: none;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
input,textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
}
.tablet {
  display: none;
}
.sp {
    display: none;
}
@media screen and (max-width:1024px) {
    body {
        letter-spacing: 0.1em;
    }
    .tablet {
      display: block;
    }


}
@media screen and (max-width:480px) {
    body {
        font-size: 16px;
        letter-spacing: 0.1em;
    }
    .sp {
        display: inherit;
    }
    .pc {
        display: none;
    }
}
/*============================
#header
============================*/
#hamburger_menu ul li a .ja{
  display: none;
}

/*============================
#footer
============================*/
#footer {
  background-color: rgba(0, 0, 0, 0.1);
  height: 60px;
  display:flex;
  justify-content: center;
  align-items: center;
}

#footer p {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  align-items: center;
  justify-content: center;
}
#hamburger,#hamburger_menu{
  display: none;
}

@media screen and (max-width:1024px) {
  header nav{
    display: none;
  }
  #hamburger {
	  position: fixed;
	  top: 14px;
	  right: 15px;
	  height: 30px;
	  cursor: pointer;
	  z-index: 99;
	  display: block;
	}
	#hamburger div {
	  position: relative;
	  width: 40px;
	}
	#hamburger span {
	  width: 100%;
	  height: 1.5px;
	  left: 0;
	  display: block;
	  background: #000;
	  position: absolute;
	  -webkit-transition: all .3s ease;
	  -ms-transition: all .3s ease;
	  transition: all .3s ease;
	}
	#hamburger span:nth-child(1) {
	  top: 0;
	}
	#hamburger span:nth-child(2) {
	  top: 15px;
	}
	#hamburger span:nth-child(3) {
	  top: 30px;
	}
	#hamburger.active span {
	  background: #000;
	}
	#hamburger.active span:nth-child(1) {
	  top: 15px;
	  -webkit-transform: rotate(45deg);
	  transform: rotate(45deg);
	}
	#hamburger.active span:nth-child(2) {
	  top: 15px;
	  width: 0;
	  left: 50%;
	}
	#hamburger.active span:nth-child(3) {
	  top: 15px;
	  -webkit-transform: rotate(-45deg);
	  transform: rotate(-45deg);
	}
  #hamburger_menu {
    visibility: hidden;
    opacity: 0;
    z-index: 98;
    background: #F7F7CB;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height:100vh;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
  }
  #hamburger_menu.active {
     visibility: visible;
     opacity: 1;
  }
  #hamburger_menu ul li a {
    color: #000;
    font-size: 22px;
    width: 100%;
    height: 100%;
    display: block;
    padding: 15px 0 2px;
}
#hamburger_menu ul {
  padding: 0;
  margin-top: 23%;
}
#hamburger_menu ul li {
  border-bottom: 1px solid #000;
  text-align: center;
  width: 65%;
  margin: auto;
}
  #hamburger,#hamburger_menu{
      display: inline!important;
  }
}
@media screen and (max-width:480px){
