/* =====================
  main
===================== */

/*-- text --*/
.text-center {
  text-align: center;
}

/*-- icon --*/
.pdf::after {
  content: "PDF";
  margin-left: 8px;
  padding: 0 6px;
  width: 32px;
  height: 16px;
  font-size: 1.2rem;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  line-height: 1em;
  background-color: #cc0000;
  box-sizing: border-box;
}

/*-- spacer --*/
.spacer-l {
  margin-bottom: 30px;
}

/*-- flex --*/
.flx {
  display: flex;
}

.flx-center {
  display: flex;
  align-items: center;
}

.flx-centers {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flx-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flx-between {
  justify-content: space-between;
}

/*-- btn --*/
.btn-pc {
  display: none;
}

.btn,
.btn-n {
  position: relative;
  width: 200px;
  height: 40px;
  overflow: hidden;
}

.btn > .text,
.btn-n > .text {
  position: relative;
  font-family: 'Oswald', sans-serif;
  margin-right: 10px;
  z-index: 1;
  transition: .3s;
  line-height: 1em;
}

.btn-bdr,
.btn-n-bdr {
  border: solid 1px;
}

.arrow,
.arrow-n {
  position: relative;
  width: 50px;
  height: 1px;
  background: #000;
  z-index: 1;
  transition: .3s;
}

.arrow::after,
.arrow-n::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  transform: rotate(40deg);
  top: -2px;
  right: 0;
  background: #000;
  transition: .3s;
}

/*-- btn-hover --*/
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: .3s;
}

.btn:hover::before {
  left: 0;
}

/*-- blue-btn --*/
.btn-blue,
.btn-n-blue {
  color: #184aa1;
}

.arrow-blue,
.arrow-n-blue {
  background: #184aa1;
}

.arrow-blue::after,
.arrow-n-blue::after {
  background: #184aa1;
}

/*-- blue-btn-hover --*/
.btn-blue::before {
  background: #184aa1;
}

.btn-blue:hover > .text {
  color: #fff;
}

.btn-blue:hover .arrow-blue {
  background: #fff;
}

.btn-blue:hover .arrow-blue::after {
  background: #fff;
}

/*-- white-btn --*/
.btn-white {
  color: #fff;
}

.arrow-white {
  background: #fff;
}

.arrow-white::after {
  background: #fff;
}

/*-- white-btn-hover --*/
.btn-white::before {
  background: #fff;
}

.btn-white:hover > .text {
  color: #184aa1;
}

.btn-white:hover .arrow-white {
  background: #184aa1;
}

.btn-white:hover .arrow-white::after {
  background: #184aa1;
}

/*-- white-area-btn-hover --*/
.area-btn-white:hover .btn::before {
  left: 0;
}

.area-btn-white:hover .btn-white::before {
  background: #fff;
}

.area-btn-white:hover .btn-white > .text {
  color: #184aa1;
}

.area-btn-white:hover .btn-white .arrow-white {
  background: #184aa1;
}

.area-btn-white:hover .btn-white .arrow-white::after {
  background: #184aa1;
}

/*-- archive --*/
.list {
  border-bottom: solid 1px #ccc;
}

.list-inner {
  display: block;
  padding: 20px 0;
}

/*-- page --*/
.main {
  margin-bottom: 80px;
}

.section {
  margin-bottom: 40px;
}

.section:last-child {
  margin-bottom: 0;
}

.section-inner-s {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

.inner {
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {}



/* ====================================================================================
		tablet
==================================================================================== */
@media screen and (min-width: 768px) {

  .flx-tb {
    display: flex;
  }

  .flx-center-tb {
    display: flex;
    align-items: center;
  }

}



/* ====================================================================================
		PC
==================================================================================== */

@media screen and (min-width: 1024px) {

  .text-center-pc {
    text-align: center;
  }

  .text-right-pc {
    text-align: right;
  }

  .text-left-pc {
    text-align: left;
  }

  .spacer-l {
    margin-bottom: 40px;
  }

  .flx-pc {
    display: flex;
  }

  .flx-center-pc {
    display: flex;
    align-items: center;
  }

  .flx-centers-pc {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flx-wrap-pc {
    display: flex;
    flex-wrap: wrap;
  }

  .btn-pc {
    display: block;
  }

  .btn-sp {
    display: none;
  }

  .main {
    margin-bottom: 150px;
  }

  .section {
    margin-bottom: 80px;
  }

  .list-inner {
    padding: 40px;
  }

  .list-inner h2 {
    display: inline-block;
    padding-bottom: 0;
    font-size: 1.8rem;
    text-align: left;
  }

}
