@charset "utf-8";

/* ------------------------------
 COMMON
------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&family=Noto+Serif+JP&family=Oswald:wght@400;700&display=swap');

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: #351f00;
}

a {
  text-decoration: none;
  outline: none;
  color: #351f00;
}

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

.for-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }

  .for-sp {
    display: block;
  }
}



/* ------------------------------
 Header
------------------------------ */
.l-header {
  width: 100%;
  height: 90px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_ttl {
  width: 192px;
}

.header_ttl a {
  display: block;
}

.toggle {
  display: none;
}

.gnav_list {
  display: flex;
  align-items: center;
}

.gnav_list a {
  display: block;
  font-size: 1.4rem;
  color: #46b1c8;
}

.gnav_item {
  margin-right: 30px;
}

.gnav_item a {
  position: relative;
  letter-spacing: 0.08em;
  padding: 5px 0px;
}

.gnav_item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #46b1c8;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .4s ease-out;
  transform-origin: left;
  transform: scaleX(0);
}

.gnav_item a:hover::after {
  transform: scaleX(1);
}

.gnav_item-alt a {
  border: solid 1px #46b1c8;
  padding: 11px 50px 12px 20px;
  position: relative;
  transition: all .4s ease-in-out;
}

.gnav_item-alt a:hover {
  color: #ffffff;
}

.gnav_item-alt a::after {
  content: "";
  width: 24px;
  height: 20px;
  display: block;
  background-image: url("../img/cart-blue.svg");
  background-size: cover;
  position: absolute;
  top: 7px;
  right: 18px;
  transition: all .4s ease-in-out;
}

.gnav_item-alt a:hover::after {
  background-image: url("../img/cart-white.svg");
}

.gnav_item-alt a::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #46b1c8;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  transition: all .4s ease-in-out;
  transform-origin: left;
  transform: scaleX(0);
}

.gnav_item-alt a:hover::before {
  transform: scaleX(1);
}

.gnav_item-sdgs a {
  width: 140px;
  height: 40px;
  border: solid 1px #46b1c8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gnav_item-sdgs a img {
  width: 93px;
}

.gnav_item-sdgs a::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #46b1c8;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  transition: all .4s ease-in-out;
  transform-origin: left;
  transform: scaleX(0);
  opacity: .3;
}

.gnav_item-sdgs a:hover::before {
  transform: scaleX(1);
}

@media only screen and (min-width: 768px) and ( max-width:860px) {
  .gnav_item {
    margin-right: 20px;
  }

  .gnav_item a {
    letter-spacing: 0em;
  }

  .gnav_item-alt a {
    padding: 11px 40px 12px 10px;
  }

  .gnav_item-alt a::after {
    right: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .l-header {
    height: 60px;
    padding: 0px 12px;
    display: block;
  }

  .header_ttl {
    width: 124px;
    padding-top: 11px;
  }

  .toggle {
    display: block;
    position: fixed;
    top: 5px;
    right: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }

  .toggle span {
    display: block;
    position: absolute;
    width: 23px;
    height: 1px;
    left: 15px;
    background: #46b1c8;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  
  .toggle span:nth-child(1) {
    top: 16px;
  }
  
  .toggle span:nth-child(2) {
    top: 24px;
  }
  
  .toggle span:nth-child(3) {
    top: 32px;
  }
  
  .toggle.is-active span:nth-child(1) {
    top : 25px;
    left: 15px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .toggle.is-active span:nth-child(2),
  .toggle.is-active span:nth-child(3) {
    top: 25px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .header_nav {
    width: 100%;
    position: fixed;
    top: 60px;
    left: 0;
    padding: 20px 20px 30px 20px;
    background-color: #ffffff;
    display: none;
  }

  .gnav_list {
    display: block;
    border-top: solid 1px #46b1c8;
    max-width: 500px;
    margin: 0 auto;
  }

  .gnav_item {
    margin-right: 0px;
    border-bottom: solid 1px #46b1c8; 
  }

  .gnav_item a {
    position: relative;
    letter-spacing: 0.08em;
    padding: 20px 0px;
    text-align: center;
  }

  .gnav_item a::after {
    content: none;
  }

  .gnav_item-alt {
    margin-top: 20px;
  }

  .gnav_item-alt a {
    padding: 15px 50px 16px 20px;
  }

  .gnav_item-alt a:hover {
    color: #46b1c8;
  }

  .gnav_item-alt a::after {
    top: 12px;
  }

  .gnav_item-alt a:hover::after {
    background-image: url("../img/cart-blue.svg");
  }

  .gnav_item-alt a::before {
    content: none;
  }


  .gnav_item-sdgs {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .gnav_item-sdgs a {
    width: 100%;
  }
}



/* ------------------------------
 Main
------------------------------ */
.l-main {
  padding-top: 90px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .l-main {
    padding-top: 60px;
  }
}



/* ------------------------------
 Footer
------------------------------ */
.l-footer {
  background-color: #351f00;
  padding: 30px 50px;
}

.footer_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer_contact {
  order: 2;
  width: 220px;
}

.footer_contact_logo a {
  display: block;
  transition: all .4s ease-in-out;
}

.footer_contact_logo a:hover {
  opacity: 0.7;
}

.footer_contact_btn {
  margin-top: 30px;
}

.footer_contact_btn a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: #ffffff;
  border: solid 1px #ffffff;
  padding-top: 19px;
  padding-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: all .4s ease-in-out;
}

.footer_contact_btn a:hover {
  color: #351f00;
}

.footer_contact_btn a::before {
  content: "";
  width: 20px;
  height: 16px;
  display: inline-block;
  background-image: url("../img/mail-white.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 18px;
  transform: translateY(2px);
  transition: all .4s ease-in-out;
}

.footer_contact_btn a:hover::before {
  background-image: url("../img/mail-brown.svg");
}

.footer_contact_btn a::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ffffff;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  transition: all .4s ease-in-out;
  transform-origin: left;
  transform: scaleX(0);
}

.footer_contact_btn a:hover::after {
  transform: scaleX(1);
}

.footer_info {
  order: 1;
}

.footer_name {
  width: 230px;
}

.footer_address {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: #ffffff;
  margin-top: 18px;
}

.footer_address a {
  color: #ffffff !important;
}

.copyright {
  font-size: 1rem;
  font-weight: 300;
  color: #ffffff;
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .l-footer {
    padding: 30px 20px;
  }

  .footer_wrap {
    display: block;
  }

  .footer_contact {
    margin: 0 auto;
  }

  .footer_info {
    margin-top: 50px;
    text-align: center;
  }

  .footer_name {
    margin: 0 auto;
  }

  .copyright {
    text-align: center;
    margin-top: 40px;
  }
}