:root {
  --base-bg-color: #f5f5f5;
  --base-border-color: #ececec;
  --theme-color: #708f6d;
}

html {
  position: relative;
  background: #f5f5f5;
  color: #292929;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

.content-wrapper {
  overflow-x: clip;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .inner {
    width: 100%;
    max-width: 100vw;
    padding: 0 10px;
  }
}

.anim {
  opacity: 0;
  animation: fadeIn 1s cubic-bezier(0.4, 0.4, 0, 1) forwards;
  animation-play-state: paused;
}
.anim.inview {
  animation-play-state: running;
}

main {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 86px;
  padding-bottom: 415px;
  background-image: url(../../img/common/base-line.png);
  background-size: contain;
  background-repeat: repeat-y;
}
@media screen and (max-width: 1024px) {
  main {
    max-width: 100vw;
    padding-bottom: 150px;
    background-image: none;
  }
}
main:before, main:after {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 1px;
  height: 100%;
  min-height: 100vh;
  background-color: var(--base-border-color);
  content: "";
}
main:before {
  left: 0;
}
main:after {
  right: 0;
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

.top-line::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 200vw;
  height: 1px;
  background-color: var(--base-border-color);
  content: "";
}
@media screen and (max-width: 1024px) {
  .top-line::before {
    width: 100vw;
  }
}

.bottom-line::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 200vw;
  height: 1px;
  background-color: var(--base-border-color);
  content: "";
}
@media screen and (max-width: 1024px) {
  .bottom-line::after {
    width: 100vw;
  }
}

.main-linkStyle {
  display: inline-flex;
  align-items: center;
  color: var(--theme-color);
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.14em;
  gap: 14px;
}
.main-linkStyle__icon {
  line-height: 0;
}
.main-linkStyle img {
  width: 100%;
}
.main-linkStyle__underline {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--theme-color);
  gap: 25px;
}

.more-linkStyle {
  display: inline-flex;
  align-items: center;
  color: var(--theme-color);
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.06em;
  gap: 16px;
}
.more-linkStyle img {
  width: 6px;
}

.title40 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.05em;
}
.title40 span {
  color: var(--theme-color);
}
@media screen and (max-width: 1024px) {
  .title40 {
    font-size: 29px;
    line-height: 114%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  width: 100vw;
  pointer-events: none;
}
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 45px;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 30px 21px;
  }
}
.header__menu {
  text-align: right;
}
.header__menu button {
  position: relative;
  line-height: 0;
  cursor: pointer;
  pointer-events: auto;
}
.header__menu button svg rect {
  transition: fill 0.3s ease-in-out;
}
.header__menu button.open svg rect {
  fill: #ffffff;
}

.menu {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.menu.open {
  opacity: 1;
  pointer-events: auto;
}
.menu__list {
  display: flex;
  flex-direction: column;
  width: 49%;
  height: 100%;
  margin-left: auto;
  padding-top: 9.2vw;
  padding-left: 8.7vw;
  background-color: var(--theme-color);
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 260%;
  font-family: "IBM Plex Sans JP";
  letter-spacing: 0.05em;
  gap: 0.3vw;
}
@media screen and (max-width: 1024px) {
  .menu__list {
    width: 100%;
    padding-top: 130px;
  }
}
.menu__item {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}

.top {
  position: absolute;
  left: 0;
  z-index: 2;
  margin: 0 auto;
  padding: 30px 45px;
}
@media screen and (max-width: 1024px) {
  .top {
    padding: 30px 21px;
  }
}
.top:before, .top:after {
  position: absolute;
  left: 0;
  z-index: -1;
  /* width: 99vw; */
  height: 1px;
  background-color: var(--base-border-color);
  content: "";
}
.top:before {
  top: 30px;
}
.top:after {
  top: 69px;
}
.top__logo {
  width: 264px;
}
.top__logo img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .top__logo {
    width: 160px;
  }
}

.footer {
  position: relative;
  color: #ffffff;
}
.footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #708f6d;
  content: "";
}
.footer__logo {
  width: 18vw;
  max-width: 265px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    width: 265px;
  }
}
.footer__address {
  margin-bottom: 38px;
  font-weight: 700;
  font-size: 13px;
  line-height: 154%;
  letter-spacing: 0.15em;
}
.footer__copyright {
  font-weight: 700;
  font-size: 11px;
  line-height: 13px;
}
.footer__menu-item {
  margin-bottom: 19px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ffffff;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
}
.footer__inner {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 152px;
  grid-template-columns: 30% 16.2% 16.2% auto;
  grid-template-rows: 1fr;
  grid-column-gap: 2.5%;
  grid-row-gap: 0;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    padding-top: 95px;
    padding-right: 16px;
    padding-bottom: 33px;
    padding-left: 16px;
    grid-template-columns: 1fr;
  }
}
.footer__inner--grid4 {
  display: flex;
  gap: 30px;
}
.footer__inner--grid4 img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .footer__inner--grid4 {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .footer__inner--grid1 {
    grid-area: 4/1/5/2;
  }
  .footer__inner--grid2 {
    grid-area: 1/1/2/2;
  }
  .footer__inner--grid3 {
    margin-bottom: 32px;
    grid-area: 2/1/3/2;
  }
  .footer__inner--grid4 {
    margin-bottom: 90px;
    grid-area: 3/1/4/2;
  }
}

.pagination {
  color: var(--theme-color);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.pagination button {
  padding: 2px 8px;
  border: 1px solid var(--theme-color);
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.pagination button.active, .pagination button:hover {
  background-color: var(--theme-color);
  color: #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=common.css.map */