@charset "UTF-8";
/*========================================
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;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  color: #004025;
  margin: auto;
}
.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: #291804;
  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: #291804;
}
.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: 200px;
  width: 100%;
  height: 45px;
  margin: 0 auto;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #004025;
  position: relative;
}
.cmn-btn::before {
  position: absolute;
  content: "";
  top: 19px;
  right: 9px;
  width: 22px;
  height: 8px;
  background: center/cover no-repeat url(../../images/common/contact-arrow.png);
  transition: all 0.3s;
}
.cmn-btn:hover {
  opacity: 0.8;
}
.cmn-btn:hover::before {
  right: 2px;
}

/*========================================
section
==========================================*/
.section-title {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 61px;
  position: relative;
}
.section-title::before {
  position: absolute;
  content: "";
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 31px;
  background: center/cover no-repeat url(../images/top/section-title-deco.png);
}
.section-title-en {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #004025;
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-title-en::before {
  content: "";
  width: 15px;
  height: 16px;
  margin-right: 12px;
  background: center/cover no-repeat url(../images/top/section-title-deco02.png);
}
.section-title-en::after {
  content: "";
  width: 15px;
  height: 16px;
  margin-left: 12px;
  background: center/cover no-repeat url(../images/top/section-title-deco02.png);
}/*# sourceMappingURL=common.css.map */