/*Main*/
.c-main {
  margin-top: 120px;
}
.c-main__inner {
  text-align: center;
  margin-bottom: 115px;
}
.c-main__inner img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .c-main {
    margin-top: 70px;
  }
}
/*End Main*/
/*Banner*/
.c-banner {
  height: 400px;
  width: 100%;
  position: relative;
  background-size: cover;
}

.c-banner__content {
  overflow: hidden;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
}
.c-banner__title {
  font-size: 50px;
  font-weight: 600;
  font-family: YuMincho;
  margin-bottom: 47px;
}
.c-banner__txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}

.c-breadcrum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  padding: 33px 20px 75px;
}
.c-breadcrum__link {
  display: block;
  letter-spacing: 1.6px;
  font-size: 12px;
  line-height: 2;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .c-banner__txt {
    font-size: 15px;
  }
  .c-banner__title {
    font-size: 42px;
    margin-bottom: 35px;
  }
  .c-banner {
    height: 300px;
  }
}

@media all and (max-width: 768px) {
  .c-banner {
    height: 200px;
  }
  .c-banner__content {
    padding: 0 5px;
    bottom: 66px;
  }
  .c-banner__title {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .c-banner__txt {
    font-size: 13px;
  }
  .c-breadcrum {
    padding: 15px 20px 50px;
  }
  .c-breadcrum__link {
    font-size: 11px;
  }
}
/*End Banner*/
/**---------------------------------------------------------*/
/* PAGINATION */
.c-pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 78px;
}
.c-pagination .item {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  font-weight: 500;
  font-size: 13px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  margin: 0 5px;
}
.c-pagination .item.prev {
  margin-right: 40px;
  margin-left: 0 !important;
}
.c-pagination .item.next {
  margin-left: 40px;
  margin-right: 0 !important;
}
.c-pagination .item-arrow img {
  display: block;
  width: 17px;
  height: 17px;
}
.c-pagination .item a {
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.c-pagination .item:not(.item-arrow) a:hover {
  opacity: 1;
}
.c-pagination .item:not(.item-arrow):hover,
.c-pagination .item.current {
  background: #58a745;
  color: white;
}
.c-pagination .item.current,
.c-pagination .item.item-dot {
  pointer-events: none;
}
@media all and (max-width: 768px) {
  .c-pagination {
    margin-top: 30px;
  }
  .c-pagination .item {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .c-pagination .item.prev {
    margin-right: 10px;
  }
  .c-pagination .item.next {
    margin-left: 10px;
  }
}
/*End Custom*/

/**Tabs*/
.c-tabs {
  gap: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.c-tabs__item {
  width: 180px;
  padding: 21px 5px;
  border-radius: 50px;
  border: 1px solid #999999;
  text-align: center;
  font-weight: bold;
  transition: all ease 0.4s;
  background: #fff;
}
.c-tabs__item:hover {
  border-color: #58a745;
  color: #fff;
  background: #58a745;
  opacity: 1;
}
@media (max-width: 500px) {
  .c-tabs {
    gap: 15px;
  }
  .c-tabs__item {
    width: 130px;
    font-size: 13px;
    padding: 13px 5px;
  }
}
/**=======================================================*/
.c-heading {
  display: flex;
  padding-bottom: 25px;
  padding-left: 20px;
  font-size: 22px;
  color: #f596aa;
  gap: 7px;
  border-bottom: 1px solid #f596aa;
  align-items: center;
  font-weight: bold;
}
.c-heading::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/profile/ic-check.png");
  width: 20px;
  height: 20px;
  margin-top: 3px;
  display: block;
}
.c-heading__txt {
  padding: 0 20px;
  font-weight: bold;
  line-height: 1.6;
  font-size: 16px;
}
@media (max-width: 767px) {
  .c-heading {
    font-size: 18px;
    padding-bottom: 20px;
    padding-left: 10px;
  }
  .c-heading::before {
    width: 15px;
    height: 15px;
  }
  .c-heading__txt {
    font-size: 14px;
    padding: 0 10px;
  }
}
/**-------------------------------------------------*/
.c-title1 {
  font-size: 36px;
  text-align: center;
  font-weight: bold;
}
.c-title1 small {
  font-size: 13px;
  color: #d1d1d1;
  display: block;
  text-align: center;
  line-height: 1.6;
}

.fz16 {
  font-size: 16px;
  line-height: 1.5;
}
.fz15 {
  font-size: 15px;
  line-height: 1.5;
}
.u-tc {
  text-align: center;
}
.fwb {
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-title1 {
    font-size: 22px;
  }
  .c-title1 small {
    font-size: 11px;
  }

  .fz16 {
    font-size: 14px;
  }
  .fz15 {
    font-size: 13px;
  }
}

.c-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.c-table th.c-table__heading {
  background-color: #f596aa;
  color: #fff;
  word-break: keep-all;
}
.c-table th {
  background: #f9f9f9;
  font-weight: normal;
}
.c-table th,
.c-table td {
  padding: 6px 5px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ddd;
  line-height: 2;
  vertical-align: middle;
}

@media all and (max-width: 600px) {
  .scroll-sp {
    overflow-x: auto;
    width: 100%;
  }

  .scroll-sp table {
    width: 1000px;
  }
}
