<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;
}

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

.cmn-table {
  width: 100%;
}
.cmn-table tr {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.cmn-table tr th {
  width: 180px;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  padding: 15px 0;
  background-color: #4454c2;
}
.cmn-table tr td {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
  vertical-align: middle;
  color: #000;
  padding: 15px 0 15px 30px;
  background-color: #f5f5f5;
}
.cmn-table tr:not(:last-child) th {
  border-bottom: 1px solid #6e7cdd;
}
.cmn-table tr:not(:last-child) td {
  border-bottom: 1px solid #000;
}

.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 {
  width: 100%;
  padding: 10px 0;
  background-color: #f5f5f5;
}
.breadcrumbs .bread-list {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
}
.breadcrumbs .bread-list-item {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #4454c2;
  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: "&gt;";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  color: #4454c2;
  margin: auto;
}
.breadcrumbs .bread-list-item:last-child {
  flex: 1;
}
.breadcrumbs .bread-list-item a {
  color: #4454c2 !important;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pagenation {
  padding: 40px 0;
  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: #4454c2;
}
.pagenation li a {
  padding: 10px 15px;
  color: #4454c2 !important;
  background-color: #fff;
}
.pagenation li a:hover {
  color: #fff !important;
  background-color: #4454c2;
}
.pagenation li:not(:last-child) {
  margin-right: 15px;
}

.cmn-title {
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #4454c2;
}
.cmn-title-text {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  color: #4454c2;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
  position: relative;
}
.cmn-title-text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -32px;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background-color: #4454c2;
}
.cmn-title-text::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  width: 20px;
  height: 1px;
  background-color: #4454c2;
}
.cmn-title-text-bg {
  position: relative;
  z-index: 1;
}
.cmn-title-text-bg::before {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 10px;
  background-color: rgba(255, 207, 41, 0.2);
  z-index: -1;
}
.cmn-title-text.left::after {
  display: none;
}
.cmn-title-main {
  display: block;
}
.cmn-title-main::first-letter {
  color: #ffcf29;
}

.cmn-btn {
  max-width: 200px;
  width: 100%;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  color: #4454c2 !important;
  padding: 10px 0;
  background-color: #ffcf29;
  position: relative;
}
.cmn-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 14px;
  height: 15px;
  background: center/cover no-repeat url(../images/common/cmn-btn-arrow.png);
  transition: all 0.3s;
}
.cmn-btn:hover::before {
  right: -20px;
}
.cmn-btn:hover {
  opacity: 0.6;
}

/*========================================
section
==========================================*/
.section-title {
  font-size: 5rem;
  font-weight: 700;
  color: #4454c2;
  letter-spacing: 0.08em;
  margin-bottom: 45px;
  position: relative;
}
.section-title::first-letter {
  color: #ffcf29;
}
.section-title::before {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background-color: #4454c2;
}/*# sourceMappingURL=common.css.map */</pre></body></html>