/*================================
	text
================================*/
.c-text {
  font-size: 1.6rem;
}
.c-text .-strong {
  font-weight: bold;
  color: #0050A5;
}
.c-text.-notes {
  font-size: 1.4rem;
  color: #666;
}

/*================================
	link
================================*/
.c-link {
  color: #0050a5;
  transition: all 0.2s;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  padding: 0 5px 1.2px;
  display: inline-block;
}
.c-link::after {
  content: "";
  background-color: #0050a5;
  width: 100%;
  height: 1px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-link:hover {
    color: #0050a5;
  }
}
.c-link.-blank::before {
  content: url(/assets/images/icn_blank_blue.jpg);
  display: inline-block;
  position: relative;
  padding-right: 8px;
}
.c-link.-pdf {
  color: #000;
  font-weight: normal;
  transition: all 0.1s;
  padding-left: 46.03px;
}
.c-link.-pdf::before {
  content: url(/assets/images/icon_pdf_blue.svg);
  display: inline-block;
  position: absolute;
  padding-right: 15.7px;
  top: -1px;
  left: 5px;
}
.c-link.-pdf::after {
  display: none;
}
.c-link.-pdf:hover {
  text-decoration: underline;
}
.c-link.-anchor {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  background: url(/assets/images/icn_arrow_down_blue.svg) no-repeat left center;
  background-size: 9px 6px;
  background-position-x: 10px;
}

.c-link2 {
  display: inline-block;
  position: relative;
  color: #000;
  transition: all 0.4s;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 40px;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  .c-link2:hover {
    color: #0050a5;
  }
}
@media screen and (min-width: 768px) {
  .c-link2:hover::after {
    width: 8px;
  }
}
.c-link2::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  right: calc(100% - 32px);
  width: 32px;
  height: 1px;
  background-color: #0050a5;
  transition: all 0.4s;
}
.c-link2.-blank {
  padding-left: 61px;
}
.c-link2.-blank::before {
  content: url(/assets/images/icn_blank_blue.jpg);
  display: inline-block;
  position: absolute;
  right: calc(100% - 61px);
  padding-right: 8px;
}
.c-link2.-blank::after {
  top: 0.7em;
}

.c-link3 {
  display: flex;
}
.c-link3__inner {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover {
    margin-left: 10px;
  }
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover .c-link3__text {
    margin-right: 14px;
  }
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover .c-link3__circle::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
  }
}
@media screen and (min-width: 768px) {
  .c-link3__inner:hover .c-link3__circle::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.c-link3__text {
  color: #0050a5;
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 16px;
  transition: margin-right 0.4s;
  flex: 1;
}
.c-link3__circle {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #0050a5;
  border: 1px solid #0050a5;
  position: relative;
  overflow: hidden;
}
.c-link3__circle::after {
  content: "";
  display: block;
  position: absolute;
  top: 36%;
  left: 31%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0050a5;
  border-right: 2px solid #0050a5;
  transform: rotate(45deg);
}
.c-link3__circle::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s ease-in-out;
}
.c-link3.-blank .c-link3__inner::before {
  content: url(/assets/images/icn_blank_blue.jpg);
  display: inline-block;
  position: relative;
  padding-right: 8px;
}
.c-link3.-center {
  justify-content: center;
  width: 100%;
}
.c-link3.-black .c-link3__inner:hover .c-link3__circle {
  border: 1px solid #FCCA00;
}
@media screen and (min-width: 768px) {
  .c-link3.-black .c-link3__inner:hover .c-link3__circle::after {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}
.c-link3.-black.-blank .c-link3__inner::before {
  content: url(/assets/images/icn_blank_black.svg);
}
.c-link3.-black .c-link3__text {
  color: #000;
}
.c-link3.-black .c-link3__circle {
  background-color: #FCCA00;
  border: 1px solid #000;
}
.c-link3.-black .c-link3__circle::before {
  background-color: #000;
}
.c-link3.-black .c-link3__circle::after {
  border-top: 2px solid #FCCA00;
  border-right: 2px solid #FCCA00;
}
.c-link3.-yellow .c-link3__inner:hover .c-link3__circle {
  border: 1px solid #FCCA00;
}
@media screen and (min-width: 768px) {
  .c-link3.-yellow .c-link3__inner:hover .c-link3__circle::after {
    border-top: 2px solid #000;
    border-right: 2px solid #000;
  }
}
.c-link3.-yellow.-blank .c-link3__inner::before {
  content: url(/assets/images/icn_blank_yellow.svg);
}
.c-link3.-yellow .c-link3__text {
  color: #FCCA00;
}
.c-link3.-yellow .c-link3__circle {
  background-color: #FCCA00;
  border: 1px solid #FCCA00;
}
.c-link3.-yellow .c-link3__circle::before {
  background-color: #fff;
}
.c-link3.-yellow .c-link3__circle::after {
  border-top: 2px solid #FCCA00;
  border-right: 2px solid #FCCA00;
}

.c-button {
  display: flex;
}
.c-button__inner {
  position: relative;
  display: block;
  background-color: #0050a5;
  border: 1px solid #0050a5;
  border-radius: 8px;
  color: #fff;
  padding: 10px 35px 10px;
  width: 320px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  overflow: hidden;
  isolation: isolate;
}
.c-button__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 36%;
  right: 15.5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  z-index: 2;
}
.c-button__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  border-radius: 8px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  display: block;
  background-color: #fff;
  transform: translateX(-100%);
  transition: all 0.2s;
  z-index: 1;
}
.c-button__inner:hover {
  color: #0050a5;
}
.c-button__inner:hover::before {
  border-top: 2px solid #0050a5;
  border-right: 2px solid #0050a5;
}
.c-button__inner:hover::after {
  transform: translateX(0);
}
.c-button__text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-position: 18px center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  outline: 0;
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  z-index: 2;
}
.c-button.-blank .c-button__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  left: auto;
  bottom: 0;
  display: inline-block;
  margin: auto 0;
  z-index: 10;
  width: 13px;
  height: 11px;
  background: url(/assets/images/icn_blank_white.svg) no-repeat;
  background-size: contain;
  border: none;
  transform: translateX(-100%);
}
.c-button.-blank .c-button__inner:hover::before {
  background: url(/assets/images/icn_blank_blue.svg) no-repeat;
  background-size: contain;
}
.c-button.-center {
  justify-content: center;
}
.c-button.-yellow .c-button__inner {
  color: #000;
  background-color: #FCCA00;
  border: 1px solid #FCCA00;
}
.c-button.-yellow .c-button__inner::before {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.c-button.-yellow .c-button__inner::after {
  background-color: #000;
}
.c-button.-yellow .c-button__inner:hover {
  color: #FCCA00;
}
.c-button.-yellow .c-button__inner:hover::before {
  border-top: 2px solid #FCCA00;
  border-right: 2px solid #FCCA00;
}
.c-button.-yellow.-blank .c-button__inner::before {
  background: url(/assets/images/icn_blank_black.svg) no-repeat;
  background-size: contain;
  border: none;
}
.c-button.-yellow.-blank .c-button__inner:hover::before {
  background: url(/assets/images/icn_blank_yellow.svg) no-repeat;
  background-size: contain;
}
.c-button.-download .c-button__inner {
  color: #fff;
  background-color: #0050a5;
  border: 1px solid #0050a5;
}
.c-button.-download .c-button__inner::before {
  background: url(/assets/images/icon_dl_white.svg) no-repeat;
  background-size: contain;
  border: none;
  transform: rotate(0);
  width: 13px;
  height: 16.5px;
  top: 29%;
}
.c-button.-download .c-button__inner::after {
  background-color: #fff;
}
.c-button.-download .c-button__inner:hover {
  color: #0050a5;
}
.c-button.-download .c-button__inner:hover::before {
  background: url(/assets/images/icon_dl_blue.svg) no-repeat;
  background-size: contain;
}
.c-button.-black .c-button__inner {
  color: #000;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
}
.c-button.-black .c-button__inner::before {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.c-button.-black .c-button__inner::after {
  background-color: #0050a5;
}
.c-button.-black .c-button__inner:hover {
  color: #fff;
  border: 1px solid #0050a5;
}
.c-button.-black .c-button__inner:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-button.-black.-blank .c-button__inner::before {
  background: url(/assets/images/icn_blank_black.svg) no-repeat;
  background-size: contain;
  border: none;
}
.c-button.-black.-blank .c-button__inner:hover::before {
  background: url(/assets/images/icn_blank_white.svg) no-repeat;
  background-size: contain;
}
.c-button.-black.-download .c-button__inner::before {
  background: url(/assets/images/icon_dl_blue.svg) no-repeat;
  background-size: contain;
  border: none;
}
.c-button.-black.-download .c-button__inner:hover::before {
  background: url(/assets/images/icon_dl_white.svg) no-repeat;
  background-size: contain;
}

.wkwk-banner {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .wkwk-banner {
    padding: 0 20px 80px;
  }
}
.wkwk-banner__wrap {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .wkwk-banner__wrap {
    padding: 40px 20px 0;
    max-width: 1240px;
  }
}
@media screen and (max-width: 767px) {
  .wkwk-banner__wrap {
    padding-top: 40px;
  }
}
.wkwk-banner__link__box {
  display: flex;
  justify-content: center;
}

.section__inner.-border {
  border-top: 1px solid #D8D8D8;
  margin-top: 40px;
  padding-top: 40px;
}
.section__head.-border {
  border-top: 1px solid #D8D8D8;
  margin-top: 40px;
  padding-top: 40px;
}