body {
  background: #ffffff;
}

.gothic {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
}

body * {
  font-family: "Hina Mincho", "Zen Kaku Gothic New", "Noto Serif JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.2em;
  color: #136722;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

.en {
  text-transform: uppercase;
}

.commonWidth {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.innerWidth {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}

.contentWidth {
  max-width: 900px;
  margin: 0 auto;
  width: 90%;
}

.mds {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 40px;
}
.mds:after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background-color: #136722;
  margin: auto;
}
.mds span {
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #136722;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1em;
  text-align: center;
  display: block;
}
.mds h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  color: #136722;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-align: center;
  padding-bottom: 8px;
}

@media screen and (max-width: 900px) {
  .mds {
    margin-bottom: 48px;
  }
  .mds h2 {
    font-size: 26px;
  }
}
.mds2 {
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 32px;
}
.mds2 span {
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #136722;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1em;
  display: block;
}
.mds2 h3 {
  font-size: clamp(20px, 2.5vw, 32px);
  color: #136722;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  text-align: left;
  font-weight: normal;
}

@media screen and (max-width: 900px) {
  .mds2 {
    padding-bottom: 24px;
  }
  .mds2 span {
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #136722;
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1em;
    display: block;
  }
  .mds2 h3 {
    font-size: clamp(20px, 2.5vw, 32px);
    color: #136722;
    line-height: 1.4em;
    letter-spacing: 0.1em;
    text-align: left;
    font-weight: normal;
  }
}
header {
  height: 124px;
  position: fixed;
  width: 100%;
  z-index: 300;
  mix-blend-mode: difference;
}
header .headerIn {
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 16px 30px;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
header .hamburger {
  background-color: hsla(0, 0%, 100%, 0);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
header .hamburger .hamburger__line {
  width: 18px;
  height: 1px;
  background-color: #ffffff;
  left: 10px;
}
header .hamburger .hamburger__line.hamburger__line--1 {
  top: 14px;
}
header .hamburger .hamburger__line.hamburger__line--2 {
  top: 19px;
  opacity: 1;
  transition: 0.3s;
}
header .hamburger .hamburger__line.hamburger__line--3 {
  top: 24px;
}
header.header-on .headerIn {
  opacity: 1;
  pointer-events: all;
}
header.header-on .hamburger {
  opacity: 1;
  pointer-events: all;
}

.nav-open header .hamburger .hamburger__line.hamburger__line--1 {
  top: 19px;
}
.nav-open header .hamburger .hamburger__line.hamburger__line--2 {
  top: 19px;
  opacity: 0;
  transition: 0.3s;
}
.nav-open header .hamburger .hamburger__line.hamburger__line--3 {
  top: 19px;
}

.global-nav {
  width: auto;
  min-height: 100lvh;
  background-color: #faf3e4;
  transform: initial;
  left: auto;
  top: 0;
  right: 0;
  padding: 30px;
  display: flex;
  align-items: center;
}
.global-nav .global-nav-inner {
  display: block;
  padding: 0;
}
.global-nav .global-nav-inner a {
  padding: 9px 0;
  color: #136722;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.global-nav .global-nav-inner a:before {
  content: "";
  width: 17px;
  height: 1px;
  background-color: #136722;
}

.nav-open .global-nav {
  width: auto;
  min-height: 100lvh;
  background-color: #faf3e4;
  transform: initial;
  left: auto;
  top: 0;
  right: 0;
}
.nav-open .black-bg {
  opacity: 0.4;
}

@media screen and (max-width: 900px) {
  header {
    height: 124px;
    position: fixed;
    width: 100%;
    z-index: 300;
    mix-blend-mode: difference;
  }
  header .headerIn {
    opacity: 1;
    pointer-events: all;
  }
  header .hamburger {
    opacity: 1;
    pointer-events: all;
    right: 16px;
    top: 16px;
  }
  .nav-open .global-nav {
    width: 100%;
  }
  .nav-open .global-nav .global-nav-inner {
    margin: auto;
  }
  .nav-open .black-bg {
    opacity: 0.4;
  }
}
.titlelogo {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  width: 168px;
  height: auto;
}

.header-on .titlelogo {
  opacity: 1;
  pointer-events: all;
  transition: 0.3s;
}

footer .wrap {
  background-image: url(../img/footer_bg_pc.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10vw;
}
footer .wrap .link a {
  padding: 9px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(15px, 2.1vw, 16px);
}
footer .wrap .link a:before {
  content: "";
  width: 17px;
  height: 1px;
  background-color: #ffffff;
}
footer .copyright {
  width: 100%;
  padding: 10px;
  background: #136722;
}
footer .copyright p {
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media screen and (max-width: 900px) {
  footer .wrap {
    justify-content: center;
  }
  footer .wrap .link {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */