/*========================================
mixin
==========================================*/
/*========================================
common
==========================================*/
body {
  min-width: 1280px;
}

.sp {
  display: none !important;
}

.cmn-wrapper {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
}

.counter {
  counter-reset: number 0;
}
.counter .item {
  position: relative;
}
.counter .item::before {
  position: absolute;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  counter-increment: number 1;
  content: "0" counter(number);
}

.breadcrumbs {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
}
.breadcrumbs .bread-list {
  justify-content: flex-start;
  align-items: flex-start;
}
.breadcrumbs .bread-list-item {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.breadcrumbs .bread-list-item:not(:last-child) {
  padding: 0 22px 0 0;
}
.breadcrumbs .bread-list-item:not(:last-child)::after {
  content: "";
  display: block;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  right: 10px;
  color: #000;
  margin: auto;
  border-top: 1px solid;
  border-right: 1px solid;
}
.breadcrumbs .bread-list-item:last-child {
  flex: 1;
}
.breadcrumbs .bread-list-item a {
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pagenation {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagenation li {
  font-size: 1.5rem;
  font-weight: 700;
}
.pagenation li span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #56854f;
  border: 2px solid #dedede;
}
.pagenation li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222 !important;
  background-color: #fff;
  border: 2px solid #dedede;
}
.pagenation li a:hover {
  color: #fff !important;
  background-color: #56854f;
}
.pagenation li a.right {
  padding-left: 7px;
}
.pagenation li a.left {
  transform: rotate(180deg);
  padding-left: 7px;
}
.pagenation li:not(:last-child) {
  margin-right: 15px;
}

.cmn-title {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.cmn-title::before {
  position: absolute;
  content: "";
  top: -32px;
  left: -64px;
  width: 121px;
  height: 65px;
  background: center/cover no-repeat url(../images/common/cmn-title-deco.png);
  z-index: -1;
}

.cmn-btn {
  max-width: 380px;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: #002900 !important;
  border: 1px solid #002900;
  border-radius: 30px;
  position: relative;
}
.cmn-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 19px;
  height: 14px;
  background: center/cover no-repeat url(../images/common/cmn-btn-arrow.png);
  transition: all 0.4s;
}
.cmn-btn:hover {
  opacity: 0.8;
}
.cmn-btn:hover::before {
  right: 11px;
}

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