@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: none;
  box-sizing: border-box;
}

/* iOSのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
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;
}

/* iOSサファリで発生する部分的な文字の拡大表示の抑制 */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #3F3A37;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #FCFAEF;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border: none;
  -webkit-backface-visibility: hidden; /*クロームの画像ぼけ防止*/
  image-rendering: -webkit-optimize-contrast; /*クロームの画像ぼけ防止*/
}

button {
  border: 0;
  outline: none;
  font-size: 0;
  color: transparent;
  line-height: 0;
  background-color: transparent;
}

header {
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background-color: #FFFEF7;
}
header #logo {
  width: 170px;
}
@media screen and (max-width: 450px) {
  header #logo {
    width: 110px;
  }
}
header #toggle {
  width: 25px;
  height: 24px;
  display: none;
  position: absolute;
  right: 40px;
  top: 27px;
  z-index: 3;
  background-color: transparent;
}
@media screen and (max-width: 900px) {
  header #toggle {
    display: block;
    top: 18px;
  }
}
header #toggle span {
  width: 25px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  background-color: #1F7E61;
  transition: 0.2s;
}
header #toggle span:nth-of-type(1) {
  top: 0;
}
header #toggle span:nth-of-type(2) {
  width: 25px;
  top: 11px;
}
header #toggle span:nth-of-type(3) {
  bottom: 0;
}
header #toggle.open span {
  background-color: #FFF;
}
header #toggle.open span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
header #toggle.open span:nth-of-type(2) {
  width: 25px;
  top: 11px;
  transform: rotate(-45deg);
}
header #toggle.open span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}
header nav {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  header nav {
    width: 100%;
    height: 100vh;
    padding: 77px 0 0 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #1F7E61;
    z-index: 2;
  }
}
header nav #gnav {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 900px) {
  header nav #gnav {
    display: block;
  }
}
header nav #gnav li {
  font-size: 14px;
  font-weight: 700;
  color: #1F7E61;
  line-height: 1;
  padding: 0 20px;
  border-right: 1px solid #1F7E61;
}
@media screen and (max-width: 900px) {
  header nav #gnav li {
    font-weight: 400;
    color: #FFF;
    text-align: center;
    display: block;
    padding: 0;
  }
}
header nav #gnav li:first-child {
  border-left: 1px solid #1F7E61;
  border-right: 1px solid #1F7E61;
}
header nav #gnav li a {
  color: #1F7E61;
  transition: 0.3s;
}
header nav #gnav li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 900px) {
  header nav #gnav li a {
    width: 100%;
    padding: 20px 0;
    display: block;
    color: #FFF;
    text-align: center;
  }
}
header nav #gnav li.pulldown {
  position: relative;
}
header nav #gnav li .subnav {
  position: relative;
}
@media screen and (max-width: 900px) {
  header nav #gnav li .subnav {
    padding: 15px 0;
  }
}
@media screen and (max-width: 900px) {
  header nav #gnav li .subnav:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 20px;
    top: 15px;
    transition: 0.2s;
    border-top: solid 2px #FFF;
    border-right: solid 2px #FFF;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 900px) {
  header nav #gnav li .subnav.change:before {
    transform: rotate(135deg);
    top: 15px;
  }
}
header nav #gnav li ul {
  display: none;
  padding: 15px 0 0 0;
  border: none;
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  header nav #gnav li ul {
    padding: 0;
    position: relative;
    opacity: 0.7;
  }
}
header nav #gnav li ul li {
  white-space: nowrap;
  padding: 0;
  border-bottom: 1px solid #FFFEF7;
  background-color: #1F7E61;
}
@media screen and (max-width: 900px) {
  header nav #gnav li ul li {
    border-bottom: none;
  }
}
header nav #gnav li ul li:last-child {
  border-bottom: none;
}
header nav #gnav li ul li a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 20px 30px;
  display: block;
}
header nav #sns {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  header nav #sns {
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    background-color: #FFFEF7;
  }
}
header nav #sns li:nth-child(1) a {
  color: #1F7E61;
}
header nav #sns li:nth-child(2) a {
  color: #841F3A;
}
header nav #sns li a {
  display: flex;
  flex-direction: column;
}
header nav #sns li small {
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 5px 0;
}
@media screen and (max-width: 900px) {
  header nav #sns li small {
    font-size: 14px;
  }
}
header nav #sns li div img {
  width: 40px;
  margin-inline: auto;
}

.category {
  font-family: "Kaisei Opti", serif;
  font-size: 32px;
  font-weight: 700;
  color: #841F3A;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 450px) {
  .category {
    font-size: 24px;
    margin: 0 0 40px 0;
  }
}

footer {
  background-color: #1F7E61;
}
footer #footerinfo {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 450px) {
  footer #footerinfo {
    flex-direction: column;
    gap: 40px;
  }
}
footer #footerinfo #footernav {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  padding: 45px 0 0 40px;
  display: grid;
  grid-template-rows: 1fr;
  gap: 45px;
}
@media screen and (max-width: 450px) {
  footer #footerinfo #footernav {
    padding: 20px 0 0 0;
    gap: 40px;
    text-align: center;
  }
}
footer #footerinfo #footernav a {
  color: #fff;
  transition: 0.3s;
}
footer #footerinfo #footernav a:hover {
  opacity: 0.7;
}
footer #footerinfo #footernav .subnav ul {
  display: grid;
  grid-template-rows: 1fr;
  gap: 45px;
}
footer #footerinfo #footernav .subnav ul li a {
  padding: 0 0 0 40px;
  opacity: 0.7;
  transition: 0.3s;
}
footer #footerinfo #footernav .subnav ul li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 450px) {
  footer #footerinfo #footernav .subnav ul li a {
    padding: 0;
  }
}
footer #footerinfo #footersns {
  width: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  background-color: #FCFAEF;
}
@media screen and (max-width: 450px) {
  footer #footerinfo #footersns {
    width: 100%;
    padding: 40px 0;
  }
}
footer #footerinfo #footersns div {
  width: 100px;
  margin-inline: auto;
}
footer #footerinfo #footersns p {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-inline: auto;
}
footer #footerinfo #footersns p a {
  transition: 0.3s;
}
footer #footerinfo #footersns p a:hover {
  opacity: 0.7;
}
footer #footerinfo #footersns p img {
  width: 40px;
  margin-inline: auto;
}
footer #credit {
  font-size: 12px;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 20px 0;
}/*# sourceMappingURL=common.css.map */