.pc-non {
  display: none;
}
@media (max-width: 750px) {
  .sp-non {
    display: none;
  }
  .pc-non {
    display: inline-block;
  }
  .wapper {
    width: 100%;
    height: 100%;
    over-flow: hidden;
  }
}
/* チェックボックスを非表示 */
.menu-checkbox {
  display: none;
}
/* メニューボタンの装飾 */
.menu-button {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
  height: 30px;
  width: 40px;
  cursor: pointer;
}
.menu-button::before, .menu-button::after {
  content: '';
  transition: .3s;
}
.menu-button::before, .menu-button::after, .menu-button span {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  margin-top: -1px;
  background-color: #666666;
}
.menu-button::before {
  top: 0;
}
.menu-button::after {
  bottom: 0;
}
.menu-button span {
  top: 50%;
}
/* メニューボタンのアニメーション */
.menu-checkbox:checked ~ .menu-button::before {
  top: 50%;
  transform: rotate(45deg);
}
.menu-checkbox:checked ~ .menu-button::after {
  top: 50%;
  transform: rotate(-45deg);
}
.menu-checkbox:checked ~ .menu-button span {
  display: none;
}
/* ドロワーメニューの装飾 */
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: 100%;
  width: 200px;
  transform: translateX(-100%);
  transition: .5s;
  background-color: #FFFFFF;
}
.drawer-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.drawer-menu li {
  border-bottom: 1px dotted #ccc;
}
.drawer-menu a {
  display: block;
  padding: 15px;
  color: #333;
  text-decoration: none;
}
/* ドロワーメニューの開閉 */
.menu-checkbox:checked ~ .drawer-menu {
  transform: translateX(0);
}
/* ドロワーメニューの背景 */
.menu-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  cursor: pointer;
}
.menu-checkbox:checked ~ .menu-background {
  display: block;
}
body {
  margin: 0;
  width: 100%;
  padding: 0;
  font-size: 18px;
  line-height: 45px;
  letter-spacing: 0;
  font-family: 'Montserrat', sans-serif;
  font-family: "游ゴシック" "ヒラギノ" "MSPゴシック";
  color: #333;
  background-color: white;
}
.container {
  width: 1170px;
  margin-right: auto;
  margin-left: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
  
  opacity: 0.7;
}



header {
  width: 100%;
  height: 109px;
  display: flex;
  justify-content: space-between;
}
.header-left img {
  width: 180px;
  height: 38px;
  padding: 30px;
}
.header-right {
  margin-right: 24px;
  margin-top: 26px;
  font-size: 20px;
}
.header-right li {
  list-style: none;
  float: left;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}
.header-right a {
  text-decoration: none;
  width: 84px;
  height: 36px;
  padding: 15px 30px;
}
.header-right .selected {
  color: white;
  background-color: #6a825e;
}
@media (max-width: 750px) {
  body {
    width: 100%;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 260%;
    letter-spacing: 0;
    font-family: 'Montserrat', sans-serif;
    font-family: "游ゴシック""ヒラギノ""MSPゴシック";
    color: #333;
    background-color: white;
  }
  .container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  header {
    width: 100%;
    height: auto;
    display: block;
    background-color: #F2F4ED;
  }
  header .header-sp {
    margin-left: 5vw;
    margin-top: 20vw;
  }
  .header-sp h2 {
    font-size: 1.5em;
  }
  .header-sp p {
    font-size: 3em
  }
}
.top-wrapper {
  height: 900px;
  width: 100%;
  margin: 70px auto 60px;
  position: relative;
  display: flex;
}
.top-wrapper .about {
  width: 300px;
  height: auto;
  z-index: 0;
  position: relative;
}
.top-wrapper .wepursue {
  width: 486px;
  height: 295px;
  z-index: 10;
  position: absolute;
  top: 254px;
  left: 970px;
}
.top-wrapper p {
  font-size: 20px;
  line-height: 45px;
  z-index: 10;
  position: absolute;
  top: 605px;
  left: 976px;
  
}
@media (max-width: 750px) {
  .top-wrapper {
    height: auto;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 80vw;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    background-color: #F2F4ED;
  }
  .top-wrapper .about-top {
    width: 100%;
    height: auto;
    z-index: 0;
    position: relative;
    margin-top: 5vw;
  }
  .top-wrapper .wepursue {
    width: 80%;
    height: auto;
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 5vw;
  }
  .top-wrapper p {
    font-size: 1.25em;
    line-height: 200%;
    z-index: 10;
    position: absolute;
    top: 57vw;
    left: 0;
    text-shadow: 0 0 0;
    margin-left: 5vw;
  }
}
/*今日はここから*/
.top2-wrapper {
  height: 1000px;
  width: 100%;
}
@media (max-width: 750px) {
  .top2-wrapper {
    height: auto;
    width: 100%;
    background-color: #F2F4ED;
  }
  .top2-wrapper .container {
    width: 100%;
    height: auto;
    padding-top: 8vw;
    padding-bottom: 22vw;
  }
}
.top2-wrapper p {
  line-height: 115px;
  font-size: 19px;
	font-weight: lighter;
}
.top2-wrapper h2 {
  display: block;
  font-weight: 200;
  font-size: 35px;
  margin-top: 160px;
}
@media (max-width: 750px) {
  .top2-wrapper p {
    line-height: 420%;
    font-size: 0.86em;
    text-align: center;
  }
  .top2-wrapper h2 {
    display: block;
    font-weight: bolder;
    font-size: 1.2em;
    margin-top: 12vw;
    text-align: center;
  }
}
.save-wrapper {
  height: 1360px;
}
@media (max-width: 750px) {
  .save-wrapper {
    height: auto;
    width: 100%;
  }
  .save-wrapper .container {
    height: auto;
    width: 100%;
	  margin: 0 auto;
    margin-top: 16vw;
		
  }
}
.save-wrapper h2 {
  width: 86%;
 
  font-weight:200;
  text-align: left;
  font-size: 45px;
  border-bottom: solid 1px #333;
  padding-bottom: 30px;
  margin-bottom: 53px;
 
}


@media (max-width: 750px) {
  .save-wrapper h2 {
	    text-align: center;
   width: 90%;
    font-size: 1.8em;
    border-bottom: solid 1px #333;
    padding-bottom: 4vw;
    margin-bottom: 7.06vw;
	  margin-left: 5vw;
	
	  font-weight: bold;
  }
  .save-wrapper .save-heading {
    text-align: center;
  }
}
.save-list {
  height: 870px;
  display: flex;
}
.save-list .list {
  width: 360px;
  height: 500px;
  margin-top: 160px;
}
.save-list p {
  margin-top: 66px;
}
.img-list {
  text-align: center;
}
.recycle, .earth {
  margin-right: 90px;
}
@media (max-width: 750px) {
  .save-list {
    height: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 18vw;
  }
  .save-list .list {
    width: 70%;
    height: auto;
    margin: 0 auto;
    margin-top: 18vw;
  }
  .save-list p {
    margin-top: 5vw;
  }
  .img-list {
    text-align: center;
  }
  .recycle, .earth {
    margin-right: 12vw;
  }
}
.btn-wrapper {
  width: 100%;
  height: 300px;
}
a.brand {
  display: block;
  width: 401px;
  height: 93px;
  border: solid 0px #333;
  border-radius: 50em;
  font-size: 22px;
	color: white;
   background-color: #6A825E;
  text-decoration: none;
  box-sizing: border-box;
  vertical-align: middle;
  padding-top: 10px;
  position: relative;
  margin: 0 auto;
}
a.brand p {
  line-height: 2;
  margin-left: 58px;
  
}
@media (max-width: 750px) {
	a.brand {
  display: block;
  width: 401px;
  height: 93px;
  border: solid 0px #333;
  border-radius: 50em;
  font-size: 22px;
	color: white;
   background-color: #6A825E;
  text-decoration: none;
  box-sizing: border-box;
  vertical-align: middle;
  padding-top: 10px;
  position: relative;
  margin: 0 auto;
	text-align: center;
}
	a.brand p {
  line-height: 2;
  margin-left: 0;
  
}
}
.btn-sub {
  display: block;
  font-size: 16px;
}
.arrow i {
  position: absolute;
  font-size: 48px;
  top: 24px;
  left: 340px;
}
a {
  color: #333;
}
a:hover {
 
  opacity: 0.5;
}
.mission-wrapper {
  height: 1500px;
}
@media (max-width: 750px) {
  .mission-wrapper {
    height: auto;
    width: 100%;
    background-color: #F2F4ED;
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
  .mission-wrapper .container {
    width: 100%;
    height: auto;
  }
}
.mission-wrapper h2 {
  display: flex;
  flex-direction: row-reverse;
  font-weight: 200;
  font-size: 48px;
  border-bottom: solid 1px #333;
  padding-bottom: 30px;
  margin-bottom: 53px;
}
.mission-wrapper p {
  font-size: 18px;
  margin-top: 84px;
  line-height: 70px;
  letter-spacing: 2.6px;
}
.mission-wrapper .mission-text {
  margin-top: 94px;
}
@media (max-width: 750px) {
  .mission-wrapper img {
    width: 100%;
    height: auto;
  }
  .mission-top {
    text-align: right;
    height: auto;
  }
  .mission-wrapper h2 {
    display: block;
    flex-direction: none;
    font-weight: bold;
    font-size: 1.8em;
    border-bottom: solid 0px #333;
    padding-bottom: 0;
    margin-bottom: 10vw;
    margin-right: 5vw;
  }
  .mission-wrapper p.mission-heading {
    font-size: 2.8em;
    text-align: right;
    margin-right: 5vw;
    margin-top: 0;
    margin-bottom: 3vw;
  }
  .mission-wrapper p {
    font-size: 0.8em;
    margin-top: 12vw;
    line-height: 300%;
    letter-spacing: 0.2em;
    text-align: left;
    margin-left: 5vw;
  }
  .mission-wrapper span.pc-non {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 12vw;
  }
  .mission-wrapper .mission-text {
    margin-top: 12vw;
    ;
  }
}
.workshop-wrapper {
  height: 950px;
}
@media (max-width: 750px) {
  .workshop-wrapper {
    height: auto;
    width: 100%;
    margin-top: 22vw;
  }
  .workshop-wrapper .container {
    width: 100%;
    height: auto;
  }
}
.workshop-wrapper h2 {
  flex-direction: row-reverse;
  font-weight: 200;
  font-size: 45px;
  border-bottom: solid 1px #333;
  padding-bottom: 30px;
  margin-bottom: 53px;
}
.workshop-wrapper p.workshop-main {
  line-height: 68px;
}
@media (max-width: 750px) {
  .workshop-wrapper h2 {
    flex-direction: none;
    font-weight: bold;
    font-size: 1.8em;
    border-bottom: solid 1px #333;
    padding-bottom: 4vw;
    margin-bottom: 0;
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  .workshop-wrapper p.workshop-main {
    margin-top: 14vw;
    margin-left: 5vw;
    line-height: 300%;
    text-align: left;
    font-size: 0.8em;
    margin-bottom: 12vw;
  }
}

a.news {
  display: block;
  width: 401px;
  height: 93px;
  border: solid 0 #333;
  border-radius: 50px;
  font-size: 22px;
 background-color: #6A825E;
  text-decoration: none;
  box-sizing: border-box;
  vertical-align: middle;
  padding-top: 6px;
  position: relative;
  margin: 0 auto;
  margin-top: 150px;
 padding-left: 4.4vw;
color: white;
}
a.news p {
  line-height: 2;
  margin-left: 0;
}

p.news-sub,p.p-recruit {
	font-size: 18px;
}
.news .p-news {
  display: block;
 
}
@media (max-width: 750px) {
  .btn-wrapper a.news {
    display: block;
    width: 76vw;
    height: 18vw;
    color: white;
    border: solid 0 #333;
    border-radius: 50px;
    font-size: 1.25em;
    background-color: #6A825E;
    text-decoration: none;
    box-sizing: border-box;
    vertical-align: middle;
padding-top: 1.3vw;
    position: relative;
    margin: 0 auto;
    margin-top: 0;
    text-align: center;
	  padding-left: 0;
  }
  a.news p {
    line-height: 200%;
    margin-left: 0;
  }
  .arrow i {
    position: absolute;
    font-size: 1.8em;
    top: 4vw;
    left: 66vw;
  }
  .news .news-sub {
    display: block;
    font-size: 0.5em;
  }
}
.recruit-wrapper {
  height: 680px;
  margin: 0 0 0 auto;
}
@media (max-width: 750px) {
  .recruit-wrapper {
    height: auto;
    width: 100%;
  }
  .recruit-wrapper .container {
    background-color: #F2F4ED;
    padding-bottom: 2vw;
    padding-top: 8vw;
  }
}
.recruit-wrapper img {
  display: block;
  margin-left: 560px;
  width: 649px;
  height: 363px;
  margin-top: 80px;
  margin-bottom: 100px;
}
a.recruit {
  display: block;
  width: 410px;
  height: 100px;
  border: solid 0 #333;
  border-radius: 50px;
  font-size: 22px;
  background-color: #6A825E;
  text-decoration: none;
  box-sizing: border-box;
  vertical-align: middle; 
  padding-top: 10px;
  position: relative;
  margin: 0 auto;
  margin-top: 140px;
	color: white;
	
	
}
a.recruit p {
  line-height: 2;
  margin-left: 58px;
	
}

@media (max-width: 750px) {
  .recruit-wrapper img {
    display: inline-block;
    margin-left: 5vw;
    width: 90vw;
    height: auto;
    margin-top: 12vw;
    margin-bottom: 12vw;
  }
  a.recruit {
    display: block;
    width: 80vw;
    height: 12.4vw;
    border: solid 1px #333;
    border-radius: 50px;
    font-size: 1em;
    background-color: #F6ECDB;
    text-decoration: none;
    box-sizing: border-box;
    vertical-align: middle;
    padding-top: 10px;
    position: relative;
    margin: 0 auto;
    margin-top: 140px;
    text-align: center;
  }
  a.recruit p {

    line-height: 180%;
    margin-left: 0;
  }
  .arrow i {
    position: absolute;
    font-size: 1.8em;
    top: 4vw;
    left: 66vw;
  }
  .recruit .p-recruit {
    display: block;
    font-size: 0.5em;
  }
}
.online-wrapper .container {
  width: 1170px;
  margin: 0 auto;
  height: 260px;
  margin-top: 80px;
}
.online-wrapper .container a {
  display: block;
  width: 699px;
  height: 80px;
  border: solid 0.8px #333;
  border-radius: 40px;
  font-size: 25px;
  text-align: center;
  text-decoration: none;
  margin-left: 250px;
  box-sizing: border-box;
  padding-top: 10px;
}
.online-wrapper span {
  box-sizing: border-box;
  vertical-align: middle;
  margin-left: 30px;
  padding-top: 30px;
}
@media (max-width: 750px) {
  .online-wrapper {
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .online-wrapper .container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 23vw;
    margin-bottom: 23vw;
    align-items: center;
  }
  .online-wrapper .container a {
    display: block;
    width: 93.2vw;
    height: auto;
    border: solid 0.5px #A3A3A3;
    border-radius: 40px;
    font-size: 1.3em;
    text-align: center;
    line-height: 180%;
    text-decoration: none;
    margin-left: 0;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 1.3vw;
	  color: #333
  }
  .online-wrapper span {
    box-sizing: border-box;
    vertical-align: middle;
    width: 2vw;
    height: 2vw;
    margin-left: 4vw;
  }
  .shopping-cart {
    width: 7vw;
    height: 7vw;
    padding-top: 1vw;
  }
}
@media (max-width: 750px) {
  .btn-wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 24vw;
  }
  .btn-wrapper a {
    display: block;
    width: 76vw;
    height: 18vw;
    color: white;
    border: solid 0 #333;
    border-radius: 50px;
    font-size: 1.25em;
    background-color: #6A825E;
    text-decoration: none;
    box-sizing: border-box;
    vertical-align: middle;
    padding-top: 1.3vw;
    position: relative;
    margin: 0 auto;
  }
  .btn-wrapper a p {
    line-height: 180%;
    margin-left: 0;
  }
  .btn-sub {
    display: block;
    font-size: 0.5em;
  }
  .arrow i {
    position: absolute;
    font-size: 1.8em;
    top: 4vw;
    left: 66vw;
  }
  a {
    color: white;
  }
  .btn-wrapper a:hover {
    color: #6A825E;
    background-color: white;
    border: solid 1px #6A825E;
    opacity: 0.5;
  }
}
footer {
  height: 516px;
  padding: 0 200px;
  background-color: #c2cdb6;
}
.sns-icons ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.sns-icons li {
  list-style: none;
  padding-right: 28px;
  font-size: 25px;
  margin-top: 20px;
}
.sns-icons a {
  color: #333333;
}
.sns-icon li:hover {
  opacity: 0.5;
}
footer .container {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-left: 0px;
}
.footer-left {
  margin-top: 78px;
  height: 370px;
}
.footer-left img {
  width: 143px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.footer-left p {
  line-height: 15px;
}
.footer-left .adress {
  padding-top: 10px;
}
.footer-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 78px;
  height: 370px;
}
.footer-right ul li {
  list-style: none;
}
.footer-right ul {
  margin-left: 50px;
}
.footer-right a {
  text-decoration: none;
}
footer .copyright {
  text-align: center;
}
@media (max-width: 750px) {
  footer {
    width: 100%;
    height: auto;
    background-color: #c2cdb6;
    padding: 0;
  }
  footer .container {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-left: 5vw;
    padding-top: 14vw;
  }
}
@media (max-width: 750px) {
  .footer-left {
    margin-top: 0;
	  height: auto;
  }
  .footer-left img {
    width: 28vw;
    height: 28vw;
    margin-top: 0;
  }
  .footer-left p {
    font-size: 0.8em;
    margin: 0;
    padding: 0;
    text-align: left;
    line-height: 150%;
  }
}
@media (max-width: 750px) {
  .footer-left .postcode {
    margin-bottom: 0;
  }
  .sns-icons {
    margin-top: 3vw;
    margin-bottom: 3vw
  }
  .footer-left .sns-icons li {
    color: #333;
    margin-right: 0;
    padding-right: 3vw;
  }
  .footer-right {
    border-top: solid 0.5px #BFBFBF;
    width: 90%;
	  height: auto;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-top: 5vw;
	}
  .footer-right .sns {
    display: flex;
    font-size: 0.8em;
  }
  .sns li {
    margin-right: 3vw;
  }
  .footer-right ul {
    margin-left: 0;
  }
  footer a {
	    font-weight: lighter;
 
	  color: #333;
    margin-top: 0;
  }
  .copyright {
    font-size: 0.6em;
  }
}
