<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*========================================
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 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
  z-index: 10;
}
.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: #948044;
  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: #39559d;
  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: #39559d;
}
.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-btn {
  max-width: 220px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 500;
  color: #fff !important;
  letter-spacing: 0.06em;
  background-color: #948044;
  position: relative;
  border-radius: 25px;
}
.cmn-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  width: 14px;
  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: 3px;
}

.cmn-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  margin-bottom: 60px;
}

/*========================================
section
==========================================*//*# sourceMappingURL=common.css.map */</pre></body></html>