/*========================================
mixin
==========================================*/
/*========================================
common-sp
==========================================*/
body {
  min-width: 375px;
}

.pc {
  display: none !important;
}

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

.c-nav-btn {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  background-color: #2467ae;
  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%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-nav-btn span:nth-child(2) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-nav-btn span:nth-child(3) {
  bottom: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-nav-btn.active {
  -webkit-transform: translateX(0) translateY(-50%);
          transform: translateX(0) translateY(-50%);
}
.c-nav-btn.active span {
  position: absolute;
}
.c-nav-btn.active span:nth-child(1) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-nav-btn.active span:nth-child(2) {
  opacity: 0;
  top: 50%;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-nav-btn.active span:nth-child(3) {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.breadcrumbs {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
}
.breadcrumbs .bread-list {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: 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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7px;
  height: 7px;
  right: 10px;
  color: #2467ae;
  margin: auto;
  border-top: 1px solid;
  border-right: 1px solid;
}
.breadcrumbs .bread-list-item:last-child {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.breadcrumbs .bread-list-item a {
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.pagenation {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation li {
  font-size: 1.5rem;
  font-weight: 700;
}
.pagenation li span {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #2467ae;
  border: 2px solid #dedede;
}
.pagenation li a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #222 !important;
  background-color: #fff;
  border: 2px solid #dedede;
}
.pagenation li a:hover {
  color: #fff !important;
  background-color: #2467ae;
}
.pagenation li a.right {
  padding-left: 7px;
}
.pagenation li a.left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  padding-left: 7px;
}
.pagenation li:not(:last-child) {
  margin-right: 15px;
}

.com-shine {
  background: -webkit-linear-gradient(115deg, transparent 50%, #e6f4ff 60%, transparent 70%);
  background: linear-gradient(-25deg, transparent 50%, #e6f4ff 60%, transparent 70%);
  background-size: 300% 100%;
  position: relative;
  -webkit-animation: shine 20s infinite;
  animation: shine 20s infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes shine {
  0% {
    left: -100%;
  }
  80% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  80% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
/*========================================
section
==========================================*/