/*========================================
mixin
==========================================*/
@keyframes shine {
  0% {
    left: -100%;
  }
  80% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
/*========================================
common-sp
==========================================*/
body {
  min-width: 375px;
}

.pc {
  display: none !important;
}

.cmn-wrapper {
  width: calc(100% - 25px);
  margin: 0 auto;
  padding: 50px 0;
}

.cmn-table {
  width: 100%;
}
.cmn-table tr th {
  display: block;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  background-color: #f84c89;
}
.cmn-table tr td {
  display: block;
  line-height: 1.6;
  color: color(main);
  padding: 20px;
  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;
}

.c-nav-btn {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-color: #000;
  border: none;
  z-index: 9999;
}
.c-nav-btn span {
  width: 32px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  display: block;
}
.c-nav-btn span:nth-child(1) {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}
.c-nav-btn span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-nav-btn span:nth-child(3) {
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}
.c-nav-btn.active {
  transform: translateX(0) translateY(-50%);
}
.c-nav-btn.active span {
  position: absolute;
}
.c-nav-btn.active span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-nav-btn.active span:nth-child(2) {
  opacity: 0;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}
.c-nav-btn.active span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.breadcrumbs {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
}
.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: #2446ba;
  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: #f84c89;
  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: #f84c89;
}
.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: 280px;
  width: 100%;
  height: 55px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "M PLUS 1p", serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  color: #fff !important;
  background-color: #e04e4e;
  border: 2px solid #1e1e1e;
  border-radius: 26.5px;
  box-shadow: 4px 4px 0 0 #000000;
  position: relative;
  z-index: 1;
}
.cmn-btn::before {
  content: "";
  margin-right: 11px;
  width: 10px;
  height: 14px;
  background: center/cover no-repeat url(../images/common/cmn-btn-arrow.png);
}
.cmn-btn:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}

.cmn-title {
  font-family: "M PLUS 1p", serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #f5a44e;
  margin-bottom: 30px;
  text-align: center;
}
.cmn-title-en {
  display: block;
  margin-bottom: 20px;
}
.cmn-title-en img {
  height: 40px;
}

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