html {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
html body {
  font-family: "Zen Old Mincho", serif;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
html body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
html body header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  padding-left: 50px;
}
@media screen and (max-width: 1600px) {
  html body header {
    padding-left: 50px;
    padding-left: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  html body header {
    padding-left: 1rem;
  }
}
html body header .header-inner {
  display: flex;
  align-items: center;
  height: 70px;
}
@media screen and (max-width: 991px) {
  html body header .header-inner {
    height: 50px;
    width: 100%;
  }
}
html body header .header-inner .logo-wrapper a {
  display: inline-block;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  html body header .header-inner .logo-wrapper img {
    width: 287px;
    width: 17.9375vw;
  }
}
@media screen and (max-width: 991px) {
  html body header .header-inner .logo-wrapper img {
    width: 106px;
  }
}
html body header .header-inner .pc-nav {
  margin-left: auto;
  padding-right: 50px;
}
@media screen and (max-width: 1600px) {
  html body header .header-inner .pc-nav {
    padding-right: 50px;
    padding-right: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  html body header .header-inner .pc-nav {
    display: none;
  }
}
html body header .header-inner .pc-nav nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1400px) {
  html body header .header-inner .pc-nav nav ul {
    gap: 30px;
    gap: 2.1428571429vw;
  }
}
html body header .header-inner .pc-nav nav ul li {
  text-align: center;
}
html body header .header-inner .pc-nav nav ul li a {
  color: #007D66;
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
}
@media screen and (max-width: 1600px) {
  html body header .header-inner .pc-nav nav ul li a {
    font-size: 20px;
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 1199px) {
  html body header .header-inner .pc-nav nav ul li a {
    font-size: 16px;
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 1199px) {
  html body header .header-inner .pc-nav nav ul li img {
    width: 32px;
    width: 2.6666666667vw;
  }
}
html body header .header-inner .menu-button-wrapper {
  margin-left: auto;
  z-index: 11;
  display: none;
}
@media screen and (max-width: 991px) {
  html body header .header-inner .menu-button-wrapper {
    display: block;
  }
}
html body header .header-inner .menu-button-wrapper #menuButton {
  color: #fff;
  font-size: 0.625rem;
  text-align: center;
  line-height: 1;
  display: inline-block;
  padding: 16px 12px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  z-index: 1;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
}
html body header .header-inner .menu-button-wrapper #menuButton span {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #007D66;
  transition: 0.4s;
}
html body header .header-inner .menu-button-wrapper #menuButton span::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #007D66;
  opacity: 1;
  transition: 0.4s;
}
html body header .header-inner .menu-button-wrapper #menuButton span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #007D66;
  transition: 0.4s;
}
html body header .header-inner .menu-button-wrapper {
  /* #menu-open */
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span {
  animation: none;
  width: 18px;
  transition: 0.4s;
  transform: translate(0, 2px) rotate(45deg);
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span::before {
  transition: 0.4s;
  opacity: 0;
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span::after {
  animation: none;
  width: 18px;
  transition: 0.4s;
  transform: translate(0px, -8px) rotate(90deg);
}
html body header .header-inner .sp-nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: 0.4s ease-in;
  z-index: 10;
  opacity: 0;
}
html body header .header-inner .sp-nav nav {
  height: 100%;
  background-color: #fff;
  padding: 3.5rem 0 0;
  overflow-y: scroll;
}
html body header .header-inner .sp-nav nav ul li {
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  transition: 0.6s;
}
html body header .header-inner .sp-nav nav ul li a {
  color: #007D66;
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  display: block;
  padding: 1rem 0;
}
@media screen and (max-width: 575px) {
  html body header .header-inner .sp-nav nav ul li a {
    font-size: 1rem;
  }
}
html body header .header-inner .sp-nav nav ul li a span {
  font-size: 0.625rem;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}
html body header .header-inner .sp-nav.menu-open {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: 0.4s ease-in;
}
html body header .header-inner .sp-nav.menu-open nav ul li {
  opacity: 1;
  transition: 0.6s;
}
html body footer {
  padding: 2rem 0 1rem;
}
html body footer .footer-link {
  text-align: center;
}
html body footer .footer-link ul {
  display: inline-block;
}
html body footer .footer-link ul li {
  float: left;
  padding: 0 1rem;
}
html body footer .footer-link ul li a {
  color: #ECE0CD;
  font-size: 0.875rem;
  display: inline-block;
  border-bottom: 1px solid #ECE0CD;
}
html body footer .copyright {
  text-align: center;
  margin-top: 30px;
  padding: 0 1rem;
}
html body .subvisual {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  margin-top: 74.9px;
}
@media screen and (max-width: 991px) {
  html body .subvisual {
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  html body .subvisual {
    margin-top: 50px;
    height: 200px;
  }
}
html body .subvisual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.3);
  z-index: 1;
}
html body .subvisual h1 {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.2em;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  html body .subvisual h1 {
    font-size: 1.75rem;
  }
}
html body .subvisual h1 span {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  html body .subvisual h1 span {
    font-size: 0.75rem;
  }
}
html body .contents-breadcrumb {
  padding-top: 1.25rem;
}
html body .contents-breadcrumb.single-breadcrumb {
  margin-top: 86px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 991px) {
  html body .contents-breadcrumb.single-breadcrumb {
    margin-top: 50px;
  }
}
html body .contents-breadcrumb .breadcrumb a {
  border-bottom: 1px solid #555;
}
html body .contents-breadcrumb .breadcrumb span.bread-list {
  padding: 0 0.625rem;
}
html body .contents-breadcrumb .breadcrumb span.bread-nolink {
  padding: 0 0.625rem;
}
html body .contents-breadcrumb .breadcrumb span.current-item {
  padding: 0 0.625rem;
}
html body .pagetop {
  position: fixed;
  z-index: 11;
  right: 20px;
  bottom: 60px;
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 0;
  padding-top: 15px;
  background-color: #ECE0CD;
  text-align: center;
}
@media screen and (max-width: 575px) {
  html body .pagetop {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 40px;
    padding-top: 12px;
  }
}
html body .pagetop::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #fff transparent;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  html body .pagetop::after {
    top: 10px;
    left: calc(50% - 6px);
    border-width: 0 6px 10px 6px;
  }
}
html body .pagetop span {
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  html body .pagetop span {
    font-size: 0.625rem;
  }
}
html body .contents {
  color: #007D66;
  padding: 4rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body .contents {
    padding: 3.75rem 0;
  }
}
html body .contents h2 {
  color: #007D66;
  font-weight: 600;
  font-size: 35px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  html body .contents h2 {
    margin-bottom: 20px;
  }
}
html body .contents p,
html body .contents li,
html body .contents dd {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  html body .contents p,
  html body .contents li,
  html body .contents dd {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.8em;
  }
}
html body .contents p:last-child,
html body .contents li:last-child,
html body .contents dd:last-child {
  margin-bottom: 0;
}
html body .contents .more a {
  color: #ECE0CD;
  display: inline-block;
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  html body .contents .more a {
    margin-top: 40px;
  }
}
html body .contents .more a:hover::after {
  width: 0;
  transition: 0.6s;
}
html body .contents .more a::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -22px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent transparent #ECE0CD transparent;
}
html body .contents .more a::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  height: 1px;
  width: calc(100% + 20px);
  background-color: #ECE0CD;
  transition: 0.6s;
}
html body .wrapper {
  max-width: calc(1000px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}
html body img {
  height: auto;
  max-width: 100%;
}
html body .cf::before, html body .cf::after {
  display: table;
  clear: both;
  content: "";
}
html body .alpha {
  transition: opacity 250ms;
}
html body .alpha:hover {
  opacity: 0.75;
}
html body figure {
  text-align: center;
}
html body br.pc {
  display: none;
}
@media screen and (min-width: 376px) {
  html body br.pc {
    display: block;
  }
}
html body br.sp {
  display: none;
}
@media screen and (max-width: 575px) {
  html body br.sp {
    display: block;
  }
}
html body .pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  html body .pc_only {
    display: none;
  }
}
html body .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  html body .sp_only {
    display: block;
  }
}
html body .kome {
  padding-left: 1em;
}
html body .kome span {
  margin-left: -1em;
}
html body .t_r {
  text-align: right;
}

/*# sourceMappingURL=common.css.map */
