/*========================================
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: 22px 0;
}
.breadcrumbs .bread-list {
  justify-content: flex-start;
  align-items: flex-start;
}
.breadcrumbs .bread-list-item {
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  line-height: 1;
}
.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: #9baebc;
  margin: auto;
  border-top: 1px solid;
  border-right: 1px solid;
}
.breadcrumbs .bread-list-item:last-child {
  flex: 1;
}
.breadcrumbs .bread-list-item a {
  line-height: 1;
  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: #112734;
  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: #112734;
}
.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 {
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #112734;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}
.cmn-title-en {
  position: absolute;
  top: -47px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 6rem;
  font-weight: 500;
  color: #ebeeef;
  letter-spacing: 0.08em;
  z-index: -1;
}

.cmn-btn {
  max-width: 380px;
  width: 100%;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: #fff !important;
  background: linear-gradient(to right, #112734, #1e4b64);
  border-radius: 3px;
  position: relative;
}
.cmn-btn::before {
  position: absolute;
  content: "";
  top: 29px;
  right: 30px;
  width: 36px;
  height: 7px;
  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: 20px;
}

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