@charset "utf-8";

/* ↓↓↓ common ↓↓↓ */
:root {
  --text-sans: 'Noto Sans JP', sans-serif;
  --text-cg: "Cormorant Garamond", serif;
  --text-sippori: "Shippori Mincho", serif;
}

body {
  position: relative;
  font-size: 1.6rem;
  font-family: var(--text-sans);
  background-color: #879D87;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg-filter.png) repeat;
  background-size: 100px 100px;
  mix-blend-mode: multiply;
}

section {
  position: relative;
  z-index: 1;
}

picture {
  display: block;
}

.-noscroll {
  overflow: hidden;
}

.-pc {
  display: block;
}

.-sp {
  display: none;
}

@media (max-width: 768px) {
  .-pc {
    display: none;
  }

  .-sp {
    display: block;
  }
}

.-wb {
  display: inline-block;
}

#entry-btn {
  position: fixed;
  right: 23px;
  bottom: 0;
  width: 200px;
  height: 64px;
  display: grid;
  place-content: center;
  font-family: var(--text-cg);
  font-size: 2.4rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  overflow: hidden;
  z-index: 2;
}

.-lower #entry-btn {
  top: 19px;
  right: 186px;
  bottom: initial;
  width: 154px;
  height: 49px;
  font-size: 1.8rem;
  z-index: 5;
}

#entry-btn .txt {
  position: relative;
  padding-top: 10px;
  z-index: 1;
}

#entry-btn::before {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, rgba(3, 100, 29, 1) 0%, rgba(0, 150, 87, 1) 50%, rgba(3, 100, 29, 1) 100%);
  transition: translate 300ms ease;
}

#entry-btn::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 4px;
  left: 50%;
  width: calc(100% - 5px * 2);
  height: calc(100% - 4px);
  border: 1px solid #fff;
}

@media (min-width: 769px) {
  #entry-btn:hover::before {
    translate: 0 0;
  }
}

@media (max-width: 768px) {
  #entry-btn {
    right: 10px;
    width: 154px;
    height: 49px;
    font-size: 1.8rem;
  }

  #entry-btn .txt {
    padding-top: 5px;
  }

  .-lower #entry-btn {
    top: initial;
    right: 10px;
    bottom: 0;
    width: 154px;
    height: 49px;
  }
}

/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ header ↓↓↓ */
header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 88px;
  z-index: 5;
}

header .logo-wrap {
  display: flex;
}

header .logo-wrap .logo a {
  display: block;
  height: 100%;
  padding: 15px 14px 15px 0;
  background-color: #fff;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  header .logo-wrap .logo a:hover {
    opacity: 0.7;
  }
}

header .logo-wrap .logo img {
  width: 262px;
}

header .logo-wrap .sub {
  position: relative;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #fff;
  background-color: #2E7048;
  padding: 22px 14px 0;
}

header .logo-wrap .sub::after {
  content: '';
  position: absolute;
  translate: -50% 0;
  bottom: 7px;
  left: 50%;
  width: 13px;
  height: 8px;
  background: url(../img/common/header-sub-arrow.svg);
  background-size: cover;
}

header .menu-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
}

header .menu-btn .text {
  font-family: var(--text-cg);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}

header .menu-btn .box {
  position: relative;
  width: 64px;
  height: 18px;
}

header .menu-btn .box span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: top 300ms ease, rotate 300ms ease;
}

header .menu-btn .box span:first-of-type {
  top: 0;
}

header .menu-btn .box span:nth-of-type(2) {
  top: 8px;
}

header .menu-btn .box span:last-of-type {
  top: 16px;
}

.header .menu-btn.-active span:nth-of-type(1) {
  top: 40%;
  rotate: 20deg;
}

header .menu-btn.-active .box span:nth-of-type(2) {
  display: none;
}

.header .menu-btn.-active span:last-of-type {
  top: 40%;
  rotate: -20deg;
}

@media screen and (max-width: 768px) {
  header {
    height: 61px;
  }

  header .logo-wrap .logo a {
    padding: 11px 10px 11px 0;
  }

  header .logo-wrap .logo img {
    width: 181px;
  }

  header .logo-wrap .sub {
    font-size: 1rem;
    padding: 13px 7px 0;
  }

  header .logo-wrap .sub::after {
    bottom: 5px;
    width: 9px;
    height: 5px;
  }

  header .menu-btn {
    position: relative;
    display: block;
    padding: 20px 24px 0;
  }

  header .menu-btn .text {
    position: absolute;
    translate: -50% 0;
    bottom: -3px;
    left: 50%;
  }

  header .menu-btn .box {
    width: 47px;
  }
}

/* ↑↑↑ header ↑↑↑ */

/* ↓↓↓ menu ↓↓↓ */
.menu {
  position: fixed;
  translate: 101% 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  overflow-y: scroll;
  color: #fff;
  background-color: #282828;
  z-index: 4;
  pointer-events: none;
  transition: translate 300ms ease;
}

.menu.-active {
  translate: 0 0;
  pointer-events: auto;
}

.menu .inner {
  padding: 140px 32px 94px;
}

.menu .container {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  container-type: inline-size;
}

.menu .container::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -3%;
  width: 19.82421875cqw;
  height: 25.78125cqw;
  background: url(../img/common/copy.svg) no-repeat;
  background-size: cover;
}

.menu .inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10.9375cqw;
}


.menu .inner nav .list {
  display: flex;
  flex-direction: column;
}

.menu .inner nav .-category {
  font-family: var(--text-cg);
  font-size: 2.34375cqw;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1;
}

.menu .inner nav .-category+.-category {
  margin-top: 4.6875cqw;
}

.menu .inner nav .-page {
  font-size: max(1.2rem, 1.171875cqw);
  margin-top: 1em;
  letter-spacing: 0.04em;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  .menu .inner nav .-page:hover {
    opacity: 0.7;
  }
}

.menu .inner nav .-page+.-category {
  margin-top: 4.6875cqw;
}

.menu .inner .info-wrap {
  margin-top: 218px;
}

.menu .inner .info-wrap .outlink {
  position: relative;
  font-size: max(1.2rem, 1.171875cqw);
  letter-spacing: 0.04em;
  padding-right: 21px;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  .menu .inner .info-wrap .outlink:hover {
    opacity: 0.7;
  }
}

.menu .inner .info-wrap .outlink::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  right: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  background: url(../img/common/ex-link.svg) no-repeat;
}

.menu .inner .info-wrap .copyright {
  display: block;
  font-family: var(--text-cg);
  font-size: max(1.4rem, 1.3671875cqw);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-top: 2.734375cqw;
}

@media screen and (max-width: 768px) {
  .menu .inner {
    padding: 100px 40px 90px;
  }

  .menu .container::before {
    right: -16px;
    bottom: 60px;
    width: 150px;
    height: 194px;
  }

  .menu .inner nav {
    flex-direction: column;
  }

  .menu .inner nav .-category {
    font-size: 2.4rem;
  }

  .menu .inner nav .-category+.-category {
    margin-top: 32px;
  }

  .menu .inner nav .-page {
    font-size: 1.2rem;
  }

  .menu .inner nav .-page+.-category {
    margin-top: 32px;
  }

  .menu .inner .info-wrap {
    margin-top: 56px;
  }

  .menu .inner .info-wrap .outlink {
    font-size: 1.2rem;
  }

  .menu .inner .info-wrap .copyright {
    font-size: 1.2rem;
    margin-top: 16px;
  }
}

/* ↑↑↑ menu ↑↑↑ */

/* ↓↓↓ footer ↓↓↓ */
footer {
  color: #fff;
  background-color: #282828;
}

footer .inner {
  padding: 80px 32px;
}

footer .container {
  position: relative;
  max-width: 1066px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 7.129455909943714%;
  margin: 0 auto;
  container-type: inline-size;
}

footer .container::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -3%;
  width: 19.04315196998124cqw;
  height: 24.765478424015008cqw;
  background: url(../img/common/copy.svg) no-repeat;
  background-size: cover;
}

footer .inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6.0037523452157595cqw;
}

footer .inner nav .list {
  display: flex;
  flex-direction: column;
}

footer .inner nav .-category {
  font-family: var(--text-cg);
  font-size: 2.25140712945591cqw;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  footer .inner nav .-category a {
    transition: opacity 300ms ease;
  }
  footer .inner nav .-category a:hover {
    opacity: 0.7;
  }
}

footer .inner nav .-category+.-category {
  margin-top: 4.50281425891182cqw;
}

footer .inner nav .-page {
  font-size: max(1.2rem, 1.125703564727955cqw);
  margin-top: 1em;
  letter-spacing: 0.04em;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  footer .inner nav .-page:hover {
    opacity: 0.7;
  }
}

footer .inner nav .-page+.-category {
  margin-top: 4.50281425891182cqw;
}

footer .inner .info-wrap {
  padding-bottom: 5.628517823639775cqw;
}

footer .inner .info-wrap .logo {
  display: block;
  width: 25.14071294559099cqw;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  footer .inner .info-wrap .logo:hover {
    opacity: 0.7;
  }
}

footer .inner .info-wrap .sub {
  font-size: max(1.4rem, 1.3133208255159476cqw);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.6566604127579738cqw;
}

footer .inner .info-wrap .outlink {
  position: relative;
  display: inline-block;
  font-size: max(1.2rem, 1.125703564727955cqw);
  letter-spacing: 0.04em;
  padding-right: 21px;
  margin-top: 4.50281425891182cqw;
  transition: opacity 300ms ease;
}

@media screen and (min-width: 769px) {
  footer .inner .info-wrap .outlink:hover {
    opacity: 0.7;
  }
}

footer .inner .info-wrap .outlink::after {
  content: '';
  position: absolute;
  translate: 0 -50%;
  right: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  background: url(../img/common/ex-link.svg) no-repeat;
}

footer .inner .copyright {
  display: block;
  width: 100%;
  font-family: var(--text-cg);
  font-size: max(1.4rem, 1.3133208255159476cqw);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-top: 23.921200750469044cqw;
}

@media screen and (max-width: 768px) {
  footer .inner {
    padding: 52px 32px 40px;
  }

  footer .container::before {
    right: -8px;
    bottom: 50px;
    width: 150px;
    height: 194px;
  }

  footer .inner .info-wrap {
    padding-bottom: 0;
  }

  footer .inner .info-wrap .logo {
    width: 202px;
  }

  footer .inner .info-wrap .sub {
    font-size: 1.4rem;
    margin-top: 8px;
  }

  footer .inner .info-wrap .outlink {
    font-size: 1.2rem;
    margin-top: 193px;
  }

  footer .inner .copyright {
    font-size: 1.2rem;
    margin-top: 16px;
  }

  footer .inner nav {
    display: none;
  }
}

/* ↑↑↑ footer ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ common ↓↓↓ */
/* ↑↑↑ common ↑↑↑ */
@media screen and (max-width: 1280px) {}

@media screen and (max-width: 768px) {}