/*========================================
mixin
==========================================*/
/*========================================
common
==========================================*/
body {
  min-width: 1280px;
}

.sp {
  display: none !important;
}

.cmn-wrapper {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0;
}

.cmn-table {
  width: 100%;
}
.cmn-table tr th {
  width: 400px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  padding: 20px 0;
  background-color: #000;
}
.cmn-table tr td {
  line-height: 1.6;
  vertical-align: middle;
  color: #000;
  padding: 20px 0 20px 80px;
  background-color: #fff;
}
.cmn-table tr:not(:last-child) th {
  border-bottom: 1px solid #b6b6b6;
}
.cmn-table tr:not(:last-child) td {
  border-bottom: 1px solid #b6b6b6;
}

.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.6rem;
  border-radius: 5px;
}
.pagenation li span {
  padding: 10px 15px;
  color: #fff;
  background-color: #000;
}
.pagenation li a {
  padding: 10px 15px;
  color: #000 !important;
  background-color: #fff;
}
.pagenation li a:hover {
  color: #fff !important;
  background-color: #000;
}
.pagenation li:not(:last-child) {
  margin-right: 15px;
}

.cmn-btn {
  max-width: 205px;
  width: 100%;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #242424 !important;
  position: relative;
}
.cmn-btn::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 9px;
  width: 180px;
  height: 9px;
  background: center/contain no-repeat url(../images/common/cmn-btn-arrow01.png);
  transition: all 0.5s;
}
.cmn-btn::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 1px solid #3361ae;
  border-radius: 50%;
}
.cmn-btn:hover::before {
  left: 15px;
}

.cmn-title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #565656;
  margin-bottom: 80px;
}
.cmn-title-en {
  display: block;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: #242424;
  margin-bottom: 23px;
}

/*========================================
section
==========================================*/
.section-title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #565656;
  margin-bottom: 80px;
}
.section-title-en {
  display: block;
  margin-bottom: 23px;
}/*# sourceMappingURL=common.css.map */