@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
.slide-dot .slick-dots {
  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;
  gap: 10px;
  bottom: -30px;
}
.slide-dot .slick-dots li {
  margin: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cad1d8;
}
.slide-dot .slick-dots li.slick-active {
  background: #6f97f9;
}
.slide-dot .slick-dots li button {
  width: unset;
  height: unset;
  padding: 0;
}
.slide-dot .slick-dots li button::before {
  display: none;
}

@media (min-width: 1921px) {
  .slide-dot .slick-dots {
    gap: 11.25px;
    bottom: -33.75px;
  }
  .slide-dot .slick-dots li {
    width: 11.25px;
    height: 11.25px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .slide-dot .slick-dots {
    gap: 0.7692307692vw;
    bottom: -2.3076923077vw;
  }
  .slide-dot .slick-dots li {
    width: 0.7692307692vw;
    height: 0.7692307692vw;
  }
}
.slide-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(#4d7cf0), to(#88a9fa));
  background: -webkit-linear-gradient(bottom, #4d7cf0 0%, #88a9fa 100%);
  background: linear-gradient(0deg, #4d7cf0 0%, #88a9fa 100%);
  z-index: 1;
  cursor: pointer;
}
.slide-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 11px;
}

.prev-arrow {
  left: 0;
}
.prev-arrow::after {
  background: url(../img/icon/prev-arrow_left.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.next-arrow {
  right: 0;
}
.next-arrow::after {
  background: url(../img/icon/prev-arrow_right.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (min-width: 1921px) {
  .slide-arrow {
    width: 68.625px;
    height: 68.625px;
  }
  .slide-arrow::after {
    width: 16.875px;
    height: 12.375px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .slide-arrow {
    width: 4.6923076923vw;
    height: 4.6923076923vw;
  }
  .slide-arrow::after {
    width: 1.1538461538vw;
    height: 0.8461538462vw;
  }
}
@media (max-width: 768px) {
  .slide-arrow {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
  .slide-arrow::after {
    width: 4vw;
    height: 2.9333333333vw;
  }
}
.pagination {
  margin: 70px auto 0;
}

.pager {
  gap: 7px;
}
.pager li {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.pager li.active {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #6f97f9;
  color: #6f97f9;
  background: transparent;
}
.pager li a {
  position: relative;
  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;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #6f97f9;
  color: #fff;
  background: -webkit-gradient(linear, left bottom, left top, from(#4d7cf0), to(#88a9fa));
  background: -webkit-linear-gradient(bottom, #4d7cf0 0%, #88a9fa 100%);
  background: linear-gradient(0deg, #4d7cf0 0%, #88a9fa 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .pager li a:hover {
    opacity: 0.6;
  }
}
.pager li .dots {
  display: block;
  padding-bottom: 10px;
  color: #6f97f9;
}
.pager li.prev a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}
.pager li.next a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 50%;
  left: calc(50% - 2px);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 1921px) {
  .pagination {
    margin: 78.75px auto 0;
  }
  .pager {
    gap: 7.875px;
  }
  .pager li {
    font-size: 22.5px;
  }
  .pager li.active {
    width: 56.25px;
    height: 56.25px;
  }
  .pager li a {
    width: 56.25px;
    height: 56.25px;
  }
  .pager li .dots {
    padding-bottom: 11.25px;
  }
  .pager li.prev a::after {
    width: 9px;
    height: 9px;
    border-right: 2.25px solid #fff;
    border-bottom: 2.25px solid #fff;
  }
  .pager li.next a::after {
    width: 9px;
    height: 9px;
    border-right: 2.25px solid #fff;
    border-bottom: 2.25px solid #fff;
    left: calc(50% - 2.25px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .pagination {
    margin: 5.3846153846vw auto 0;
  }
  .pager {
    gap: 0.5384615385vw;
  }
  .pager li {
    font-size: 1.5384615385vw;
  }
  .pager li.active {
    width: 3.8461538462vw;
    height: 3.8461538462vw;
  }
  .pager li a {
    width: 3.8461538462vw;
    height: 3.8461538462vw;
  }
  .pager li .dots {
    padding-bottom: 0.7692307692vw;
  }
  .pager li.prev a::after {
    width: 0.6153846154vw;
    height: 0.6153846154vw;
    border-right: 0.1538461538vw solid #fff;
    border-bottom: 0.1538461538vw solid #fff;
  }
  .pager li.next a::after {
    width: 0.6153846154vw;
    height: 0.6153846154vw;
    border-right: 0.1538461538vw solid #fff;
    border-bottom: 0.1538461538vw solid #fff;
    left: calc(50% - 0.1538461538vw);
  }
}
@media (max-width: 768px) {
  .pagination {
    margin: 8vw auto 0;
  }
  .pager {
    gap: 1.3333333333vw;
  }
  .pager li {
    font-size: 5.3333333333vw;
  }
  .pager li.active {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
  .pager li a {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
  .pager li .dots {
    padding-bottom: 2.6666666667vw;
  }
  .pager li.prev a::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-right: 0.5333333333vw solid #fff;
    border-bottom: 0.5333333333vw solid #fff;
  }
  .pager li.next a::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-right: 0.5333333333vw solid #fff;
    border-bottom: 0.5333333333vw solid #fff;
    left: calc(50% - 0.5333333333vw);
  }
}
.page {
  position: relative;
}

.pageBg {
  width: 100%;
  height: 100%;
}

.pageTop {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.pageTop__en {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.06em;
  color: #6f97f9;
}

.pageTop__title {
  margin-top: 10px;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: center;
}
.pageTop__title span {
  font-size: 38px;
  color: #6f97f9;
}

.bread {
  margin-top: 30px;
}
.bread .line {
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-right: 20px;
  background: #cad1d8;
  vertical-align: middle;
}

.bread__main {
  font-size: 14px;
}

.bread__link {
  display: inline-block;
  padding-right: 30px;
}

.yellow-mark {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffda3e), color-stop(50%, transparent));
  background: -webkit-linear-gradient(left, #ffda3e 50%, transparent 50%);
  background: linear-gradient(left, #ffda3e 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 0.8em;
  background-position: 100% 1em;
  -webkit-transition: 2s;
  transition: 2s;
}
.yellow-mark.active {
  background-position: 0% 1em;
}

.red-mark {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffd1d1), color-stop(50%, transparent));
  background: -webkit-linear-gradient(left, #ffd1d1 50%, transparent 50%);
  background: linear-gradient(left, #ffd1d1 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 0.8em;
  background-position: 100% 1em;
  -webkit-transition: 2s;
  transition: 2s;
}
.red-mark.active {
  background-position: 0% 1em;
}

@media (min-width: 1921px) {
  .pageTop__en {
    font-size: 22.5px;
  }
  .pageTop__title {
    margin-top: 11.25px;
    font-size: 31.5px;
  }
  .pageTop__title span {
    font-size: 42.75px;
  }
  .bread {
    margin-top: 33.75px;
  }
  .bread .line {
    width: 22.5px;
    margin-right: 22.5px;
  }
  .bread__main {
    font-size: 15.75px;
  }
  .bread__link {
    padding-right: 33.75px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .pageTop__en {
    font-size: 1.5384615385vw;
  }
  .pageTop__title {
    margin-top: 0.7692307692vw;
    font-size: 2.1538461538vw;
  }
  .pageTop__title span {
    font-size: 2.9230769231vw;
  }
  .bread {
    margin-top: 2.3076923077vw;
  }
  .bread .line {
    width: 1.5384615385vw;
    margin-right: 1.5384615385vw;
  }
  .bread__main {
    font-size: 1.0769230769vw;
  }
  .bread__link {
    padding-right: 2.3076923077vw;
  }
}
@media (max-width: 768px) {
  .pageTop {
    top: 26.6666666667vw;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: nowrap;
  }
  .pageTop__en {
    font-size: 5.3333333333vw;
  }
  .pageTop__title {
    margin-top: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
  .pageTop__title span {
    font-size: 6.9333333333vw;
  }
  .bread {
    margin-top: 5.3333333333vw;
  }
  .bread .line {
    width: 5.3333333333vw;
    height: 1px;
    margin-left: 2.6666666667vw;
    margin-right: 2.6666666667vw;
  }
  .bread__main {
    font-size: 3.2vw;
    line-height: 1.7;
  }
  .bread__link {
    padding-right: 0;
  }
}
.pickuip {
  padding: 50px 50px 50px;
  border: 3px solid #6f97f9;
  border-radius: 40px;
  background: -webkit-linear-gradient(315deg, #f9faff 0%, #f9faff 33%, #edf1fa 66%, #e5effa 100%);
  background: linear-gradient(135deg, #f9faff 0%, #f9faff 33%, #edf1fa 66%, #e5effa 100%);
}

.pickuip__top {
  position: relative;
  padding-left: 28px;
  font-size: 35px;
  font-weight: bold;
  color: #6f97f9;
}
.pickuip__top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 34px;
  border-radius: 0 10px 10px 0;
  background: #6f97f9;
}

.pickuip__lists.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.pickuip__lists.slide-dot .slick-dots {
  bottom: -10px;
}
.pickuip__lists .prev-arrow {
  left: -80px;
}
.pickuip__lists .next-arrow {
  right: -80px;
}

.pickuip__list {
  position: relative;
  overflow: hidden;
  margin: 30px 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px 0 rgba(50, 61, 136, 0.2);
          box-shadow: 0 0 10px 0 rgba(50, 61, 136, 0.2);
}

.pickuip__img {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.pickuip__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pickuip__wrap {
  position: relative;
  padding: 15px;
  background: #fff;
}

.pickuip__cats {
  gap: 4px;
  min-height: 31px;
}

.pickuip__cat {
  height: 31px;
  padding: 0 10px;
  border: 1px solid #6f97f9;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #6f97f9;
}

.pickuip__date {
  margin-left: auto;
  font-size: 14px;
  color: #949494;
}

.pickuip__ttl {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
}

.pickuip__tag {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #6f97f9;
}

@media (min-width: 1921px) {
  .pickuip {
    padding: 56.25px 56.25px 56.25px;
    border: 3.375px solid #6f97f9;
    border-radius: 45px;
  }
  .pickuip__top {
    padding-left: 31.5px;
    font-size: 39.375px;
  }
  .pickuip__top::after {
    width: 6.75px;
    height: 38.25px;
    border-radius: 0 11.25px 11.25px 0;
  }
  .pickuip__lists.slide-dot .slick-dots {
    bottom: -11.25px;
  }
  .pickuip__lists .prev-arrow {
    left: -90px;
  }
  .pickuip__lists .next-arrow {
    right: -90px;
  }
  .pickuip__list {
    margin: 33.75px 11.25px;
    border-radius: 11.25px;
    -webkit-box-shadow: 0 0 11.25px 0 rgba(50, 61, 136, 0.2);
            box-shadow: 0 0 11.25px 0 rgba(50, 61, 136, 0.2);
  }
  .pickuip__img {
    height: 236.25px;
  }
  .pickuip__wrap {
    padding: 16.875px;
  }
  .pickuip__cats {
    gap: 4.5px;
    min-height: 34.875px;
  }
  .pickuip__cat {
    height: 34.875px;
    padding: 0 11.25px;
    border-radius: 4.5px;
    font-size: 14.625px;
  }
  .pickuip__date {
    font-size: 15.75px;
  }
  .pickuip__ttl {
    margin-top: 11.25px;
    font-size: 18px;
  }
  .pickuip__tag {
    margin-top: 11.25px;
    font-size: 13.5px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .pickuip {
    padding: 3.8461538462vw 3.8461538462vw 3.8461538462vw;
    border: 0.2307692308vw solid #6f97f9;
    border-radius: 3.0769230769vw;
  }
  .pickuip__top {
    padding-left: 2.1538461538vw;
    font-size: 2.6923076923vw;
  }
  .pickuip__top::after {
    width: 0.4615384615vw;
    height: 2.6153846154vw;
    border-radius: 0 0.7692307692vw 0.7692307692vw 0;
  }
  .pickuip__lists.slide-dot .slick-dots {
    bottom: -0.7692307692vw;
  }
  .pickuip__lists .prev-arrow {
    left: -6.1538461538vw;
  }
  .pickuip__lists .next-arrow {
    right: -6.1538461538vw;
  }
  .pickuip__list {
    margin: 2.3076923077vw 0.7692307692vw;
    border-radius: 0.7692307692vw;
    -webkit-box-shadow: 0 0 0.7692307692vw 0 rgba(50, 61, 136, 0.2);
            box-shadow: 0 0 0.7692307692vw 0 rgba(50, 61, 136, 0.2);
  }
  .pickuip__img {
    height: 16.1538461538vw;
  }
  .pickuip__wrap {
    padding: 1.1538461538vw;
  }
  .pickuip__cats {
    gap: 0.3076923077vw;
    min-height: 2.3846153846vw;
  }
  .pickuip__cat {
    height: 2.3846153846vw;
    padding: 0 0.7692307692vw;
    border-radius: 0.3076923077vw;
    font-size: 1vw;
  }
  .pickuip__date {
    font-size: 1.0769230769vw;
  }
  .pickuip__ttl {
    margin-top: 0.7692307692vw;
    font-size: 1.2307692308vw;
  }
  .pickuip__tag {
    margin-top: 0.7692307692vw;
    font-size: 0.9230769231vw;
  }
}
@media (max-width: 768px) {
  .pickuip {
    width: calc(100% + 13.3333333333vw);
    margin-left: -6.6666666667vw;
    padding: 8vw 0 11.2vw;
    border: 0.8vw solid #6f97f9;
    border-radius: 5.3333333333vw;
  }
  .pickuip__top {
    margin-left: 6.6666666667vw;
    padding-left: 3.4666666667vw;
    font-size: 6.6666666667vw;
  }
  .pickuip__top::after {
    width: 1.2vw;
    height: 7.2vw;
    border-radius: 0 2.6666666667vw 2.6666666667vw 0;
  }
  .pickuip__lists.slide-dot .slick-dots {
    bottom: -2.6666666667vw;
  }
  .pickuip__list {
    margin: 5.3333333333vw 6.6666666667vw 6.6666666667vw;
    border-radius: 2.6666666667vw;
    -webkit-box-shadow: 0 0 2.6666666667vw 0 rgba(50, 61, 136, 0.2);
            box-shadow: 0 0 2.6666666667vw 0 rgba(50, 61, 136, 0.2);
  }
  .pickuip__img {
    height: 53.3333333333vw;
  }
  .pickuip__wrap {
    padding: 4vw;
  }
  .pickuip__cats {
    gap: 1.0666666667vw;
    min-height: 7.2vw;
  }
  .pickuip__cat {
    height: 7.2vw;
    padding: 0 2.6666666667vw;
    border: 1px solid #6f97f9;
    border-radius: 1.0666666667vw;
    font-size: 3.2vw;
  }
  .pickuip__date {
    font-size: 3.4666666667vw;
  }
  .pickuip__ttl {
    margin-top: 2.1333333333vw;
    font-size: 4vw;
    line-height: 1.4;
  }
  .pickuip__tag {
    margin-top: 2.1333333333vw;
    font-size: 3.2vw;
  }
}
.side {
  width: 370px;
}

.side__search form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.side__search input {
  width: calc(100% - 53px);
  padding: 10px;
  border: 1px solid #cad1d8;
  border-radius: 10px 0 0 10px;
  font-size: 16px;
  color: #1e1e1e;
}
.side__search input::-webkit-input-placeholder {
  color: #cad1d8;
}
.side__search input::-moz-placeholder {
  color: #cad1d8;
}
.side__search input:-ms-input-placeholder {
  color: #cad1d8;
}
.side__search input::-ms-input-placeholder {
  color: #cad1d8;
}
.side__search input::placeholder {
  color: #cad1d8;
}
.side__search input:focus {
  outline: none;
}
.side__search button {
  width: 53px;
  height: 52px;
  border: none;
  border-radius: 0 10px 10px 0;
  background: #6f97f9;
  cursor: pointer;
}
.side__search .icon {
  width: 25px;
  height: 25px;
}

.side__bnr {
  display: block;
  margin-top: 20px;
}

.side__hd {
  gap: 8px;
  height: 46px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: -webkit-gradient(linear, left bottom, left top, from(#4d7cf0), to(#88a9fa));
  background: -webkit-linear-gradient(bottom, #4d7cf0 0%, #88a9fa 100%);
  background: linear-gradient(0deg, #4d7cf0 0%, #88a9fa 100%);
}
.side__hd.first {
  margin-top: 30px;
}
.side__hd .icon_new {
  width: 34px;
  height: 34px;
}
.side__hd .icon_book {
  width: 20px;
  height: 23px;
}
.side__hd .icon_tag {
  width: 24px;
  height: 24px;
}

.side__link {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.side__img {
  position: relative;
  overflow: hidden;
  width: 140px;
  height: 86px;
  border-radius: 10px;
}
.side__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.side__cont {
  width: calc(100% - 10px - 140px);
}
.side__cont .ttl {
  font-size: 14px;
  font-weight: bold;
}
.side__cont .cats {
  gap: 5px;
  margin-top: 6px;
}
.side__cont .cat {
  font-size: 12px;
  font-weight: 500;
  color: #6f97f9;
}

.side__tags {
  gap: 6px;
}

.side__tag {
  height: 31px;
  padding: 0 12px;
  border: 1px solid #d9e3f8;
  border-radius: 17px;
  font-size: 13px;
  font-weight: 500;
  color: #6f97f9;
  background: #fff;
}

@media (min-width: 1921px) {
  .side {
    width: 416.25px;
  }
  .side__search input {
    width: calc(100% - 59.625px);
    padding: 11.25px;
    border-radius: 11.25px 0 0 11.25px;
    font-size: 18px;
  }
  .side__search button {
    width: 59.625px;
    height: 58.5px;
    border-radius: 0 11.25px 11.25px 0;
  }
  .side__search .icon {
    width: 28.125px;
    height: 28.125px;
  }
  .side__bnr {
    margin-top: 22.5px;
  }
  .side__hd {
    gap: 9px;
    height: 51.75px;
    margin-top: 22.5px;
    margin-bottom: 22.5px;
    padding-left: 16.875px;
    border-radius: 5.625px;
    font-size: 20.25px;
  }
  .side__hd.first {
    margin-top: 33.75px;
  }
  .side__hd .icon_new {
    width: 38.25px;
    height: 38.25px;
  }
  .side__hd .icon_book {
    width: 22.5px;
    height: 25.875px;
  }
  .side__hd .icon_tag {
    width: 27px;
    height: 27px;
  }
  .side__link {
    gap: 11.25px;
    margin-top: 22.5px;
  }
  .side__img {
    width: 157.5px;
    height: 96.75px;
    border-radius: 11.25px;
  }
  .side__cont {
    width: calc(100% - 11.25px - 157.5px);
  }
  .side__cont .ttl {
    font-size: 15.75px;
  }
  .side__cont .cats {
    gap: 5.625px;
    margin-top: 6.75px;
  }
  .side__cont .cat {
    font-size: 13.5px;
  }
  .side__tags {
    gap: 6.75px;
  }
  .side__tag {
    height: 34.875px;
    padding: 0 13.5px;
    border-radius: 19.125px;
    font-size: 14.625px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .side {
    width: 28.4615384615vw;
  }
  .side__search input {
    width: calc(100% - 4.0769230769vw);
    padding: 0.7692307692vw;
    border-radius: 0.7692307692vw 0 0 0.7692307692vw;
    font-size: 1.2307692308vw;
  }
  .side__search button {
    width: 4.0769230769vw;
    height: 4vw;
    border-radius: 0 0.7692307692vw 0.7692307692vw 0;
  }
  .side__search .icon {
    width: 1.9230769231vw;
    height: 1.9230769231vw;
  }
  .side__bnr {
    margin-top: 1.5384615385vw;
  }
  .side__hd {
    gap: 0.6153846154vw;
    height: 3.5384615385vw;
    margin-top: 1.5384615385vw;
    margin-bottom: 1.5384615385vw;
    padding-left: 1.1538461538vw;
    border-radius: 0.3846153846vw;
    font-size: 1.3846153846vw;
  }
  .side__hd.first {
    margin-top: 2.3076923077vw;
  }
  .side__hd .icon_new {
    width: 2.6153846154vw;
    height: 2.6153846154vw;
  }
  .side__hd .icon_book {
    width: 1.5384615385vw;
    height: 1.7692307692vw;
  }
  .side__hd .icon_tag {
    width: 1.8461538462vw;
    height: 1.8461538462vw;
  }
  .side__link {
    gap: 0.7692307692vw;
    margin-top: 1.5384615385vw;
  }
  .side__img {
    width: 10.7692307692vw;
    height: 6.6153846154vw;
    border-radius: 0.7692307692vw;
  }
  .side__cont {
    width: calc(100% - 0.7692307692vw - 10.7692307692vw);
  }
  .side__cont .ttl {
    font-size: 1.0769230769vw;
  }
  .side__cont .cats {
    gap: 0.3846153846vw;
    margin-top: 0.4615384615vw;
  }
  .side__cont .cat {
    font-size: 0.9230769231vw;
  }
  .side__tags {
    gap: 0.4615384615vw;
  }
  .side__tag {
    height: 2.3846153846vw;
    padding: 0 0.9230769231vw;
    border-radius: 1.3076923077vw;
    font-size: 1vw;
  }
}
@media (max-width: 768px) {
  .side {
    width: calc(100% + 13.3333333333vw);
    margin-left: -6.6666666667vw;
    padding: 5.3333333333vw 6.6666666667vw 16vw;
    background: #fff;
  }
  .side__search input {
    width: calc(100% - 13.8666666667vw);
    padding: 2.6666666667vw;
    border: 1px solid #cad1d8;
    border-radius: 2.6666666667vw 0 0 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
  .side__search button {
    width: 13.8666666667vw;
    height: 13.8666666667vw;
    border-radius: 0 2.6666666667vw 2.6666666667vw 0;
  }
  .side__search .icon {
    width: 6.1333333333vw;
    height: 6.1333333333vw;
  }
  .side__bnr {
    margin-top: 5.3333333333vw;
  }
  .side__hd {
    gap: 2.6666666667vw;
    height: 12.2666666667vw;
    margin-top: 8vw;
    margin-bottom: 5.3333333333vw;
    padding-left: 4vw;
    border-radius: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
  .side__hd.first {
    margin-top: 8vw;
  }
  .side__hd .icon_new {
    width: 9.0666666667vw;
    height: 9.0666666667vw;
  }
  .side__hd .icon_book {
    width: 5.0666666667vw;
    height: 5.8666666667vw;
  }
  .side__hd .icon_tag {
    width: 5.6vw;
    height: 5.6vw;
  }
  .side__link {
    gap: 2.6666666667vw;
    margin-top: 5.3333333333vw;
  }
  .side__img {
    width: 37.3333333333vw;
    height: 22.9333333333vw;
    border-radius: 2.6666666667vw;
  }
  .side__cont {
    width: calc(100% - 2.6666666667vw - 37.3333333333vw);
  }
  .side__cont .ttl {
    font-size: 3.7333333333vw;
  }
  .side__cont .cats {
    gap: 1.3333333333vw;
    margin-top: 1.6vw;
  }
  .side__cont .cat {
    font-size: 3.2vw;
  }
  .side__tags {
    gap: 1.3333333333vw;
  }
  .side__tag {
    height: 8.2666666667vw;
    padding: 0 3.2vw;
    border: 1px solid #d9e3f8;
    border-radius: 4.5333333333vw;
    font-size: 3.4666666667vw;
  }
}
.main.bg_blue .bread {
  margin-top: 0;
  padding-top: 30px;
  background: #f4f7fa;
}
.main.bg_blue .p-col {
  background: #f4f7fa;
}
.main.bg_blue .p-colBg {
  display: none;
}

.p-col {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 90px;
}

.p-colBg {
  position: absolute;
  top: 330px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-height: 3048px;
  width: 100%;
  height: 100%;
}
.p-colBg img {
  height: 100%;
}

.p-colCats {
  position: relative;
  margin-top: 110px;
  padding: 45px 35px 35px;
  border-radius: 20px;
  background: #fff;
}

.p-colCats__icon {
  position: absolute;
  top: -45px;
  right: 38px;
  width: 103px;
}

.p-colCats__top {
  font-size: 22px;
  font-weight: bold;
}

.p-colCat {
  margin-top: 14px;
  gap: 14px 10px;
}
.p-colCat a {
  height: 34px;
  padding: 0 10px;
  border: 1px solid #6f97f9;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #6f97f9;
}
.p-colCat a.active {
  color: #fff;
  background: #6f97f9;
}

.p-colTtl {
  margin-top: 100px;
  font-size: 32px;
  font-weight: bold;
}

.p-colFlex {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 84px;
  margin-top: 15px;
}

.p-colCont {
  width: 730px;
  padding-top: 40px;
  border-top: 1px solid #c2d3f5;
}

.p-colCont__main {
  gap: 50px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.card {
  position: relative;
  overflow: hidden;
  width: calc((100% - 50px) / 2);
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(50, 61, 136, 0.2);
          box-shadow: 0 0 10px 0 rgba(50, 61, 136, 0.2);
}

.card__img {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.card__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__wrap {
  position: relative;
  padding: 15px;
  background: #fff;
}

.card__cats {
  gap: 4px;
  min-height: 31px;
}

.card__cat {
  height: 31px;
  padding: 0 10px;
  border: 1px solid #6f97f9;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #6f97f9;
}

.card__date {
  margin-left: auto;
  font-size: 14px;
  color: #949494;
}

.card__ttl {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
}

.card__tag {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #6f97f9;
}

@media (min-width: 1921px) {
  .main.bg_blue .bread {
    padding-top: 33.75px;
  }
  .p-col {
    padding-top: 90px;
    padding-bottom: 101.25px;
  }
  .p-colBg {
    top: 371.25px;
    max-height: 3429px;
  }
  .p-colCats {
    margin-top: 123.75px;
    padding: 50.625px 39.375px 39.375px;
    border-radius: 22.5px;
  }
  .p-colCats__icon {
    top: -50.625px;
    right: 42.75px;
    width: 115.875px;
  }
  .p-colCats__top {
    font-size: 24.75px;
  }
  .p-colCat {
    margin-top: 15.75px;
    gap: 15.75px 11.25px;
  }
  .p-colCat a {
    height: 38.25px;
    padding: 0 11.25px;
    border-radius: 4.5px;
    font-size: 18px;
  }
  .p-colTtl {
    margin-top: 112.5px;
    font-size: 36px;
  }
  .p-colFlex {
    gap: 94.5px;
    margin-top: 16.875px;
  }
  .p-colCont {
    width: 821.25px;
    padding-top: 45px;
  }
  .p-colCont__main {
    gap: 56.25px;
  }
  .card {
    width: calc((100% - 56.25px) / 2);
    border-radius: 11.25px;
    -webkit-box-shadow: 0 0 11.25px 0 rgba(50, 61, 136, 0.2);
            box-shadow: 0 0 11.25px 0 rgba(50, 61, 136, 0.2);
  }
  .card__img {
    height: 236.25px;
  }
  .card__wrap {
    padding: 16.875px;
  }
  .card__cats {
    gap: 4.5px;
    min-height: 34.875px;
  }
  .card__cat {
    height: 34.875px;
    padding: 0 11.25px;
    border-radius: 4.5px;
    font-size: 14.625px;
  }
  .card__date {
    font-size: 15.75px;
  }
  .card__ttl {
    margin-top: 11.25px;
    font-size: 18px;
  }
  .card__tag {
    margin-top: 11.25px;
    font-size: 13.5px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  .main.bg_blue .bread {
    padding-top: 2.3076923077vw;
  }
  .p-col {
    padding-top: 6.1538461538vw;
    padding-bottom: 6.9230769231vw;
  }
  .p-colBg {
    top: 25.3846153846vw;
    max-height: 234.4615384615vw;
  }
  .p-colCats {
    margin-top: 8.4615384615vw;
    padding: 3.4615384615vw 2.6923076923vw 2.6923076923vw;
    border-radius: 1.5384615385vw;
  }
  .p-colCats__icon {
    top: -3.4615384615vw;
    right: 2.9230769231vw;
    width: 7.9230769231vw;
  }
  .p-colCats__top {
    font-size: 1.6923076923vw;
  }
  .p-colCat {
    margin-top: 1.0769230769vw;
    gap: 1.0769230769vw 0.7692307692vw;
  }
  .p-colCat a {
    height: 2.6153846154vw;
    padding: 0 0.7692307692vw;
    border-radius: 0.3076923077vw;
    font-size: 1.2307692308vw;
  }
  .p-colTtl {
    margin-top: 7.6923076923vw;
    font-size: 2.4615384615vw;
  }
  .p-colFlex {
    gap: 6.4615384615vw;
    margin-top: 1.1538461538vw;
  }
  .p-colCont {
    width: 56.1538461538vw;
    padding-top: 3.0769230769vw;
  }
  .p-colCont__main {
    gap: 3.8461538462vw;
  }
  .card {
    width: calc((100% - 3.8461538462vw) / 2);
    border-radius: 0.7692307692vw;
    -webkit-box-shadow: 0 0 0.7692307692vw 0 rgba(50, 61, 136, 0.2);
            box-shadow: 0 0 0.7692307692vw 0 rgba(50, 61, 136, 0.2);
  }
  .card__img {
    height: 16.1538461538vw;
  }
  .card__wrap {
    padding: 1.1538461538vw;
  }
  .card__cats {
    gap: 0.3076923077vw;
    min-height: 2.3846153846vw;
  }
  .card__cat {
    height: 2.3846153846vw;
    padding: 0 0.7692307692vw;
    border-radius: 0.3076923077vw;
    font-size: 1vw;
  }
  .card__date {
    font-size: 1.0769230769vw;
  }
  .card__ttl {
    margin-top: 0.7692307692vw;
    font-size: 1.2307692308vw;
  }
  .card__tag {
    margin-top: 0.7692307692vw;
    font-size: 0.9230769231vw;
  }
}
@media (max-width: 768px) {
  .main.bg_blue .bread {
    margin-top: 0;
    padding-top: 8vw;
  }
  .main.bg_blue .p-col {
    padding-top: 0;
  }
  .p-col {
    padding-top: 10.6666666667vw;
    padding-bottom: 0;
  }
  .p-colBg {
    position: absolute;
    top: 26.6666666667vw;
    left: 0;
    -webkit-transform: unset;
            transform: unset;
    max-height: unset;
    background: #f4f7fa;
  }
  .p-colCats {
    margin-top: 13.8666666667vw;
    padding: 5.3333333333vw 6.6666666667vw;
    border-radius: 5.3333333333vw;
  }
  .p-colCats__icon {
    top: -9.3333333333vw;
    right: 6.6666666667vw;
    width: 18.6666666667vw;
  }
  .p-colCats__top {
    font-size: 4.8vw;
  }
  .p-colCat {
    display: none;
  }
  .p-colSelect {
    position: relative;
    margin-top: 3.4666666667vw;
  }
  .p-colSelect::after {
    content: "";
    position: absolute;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-right: 0.5333333333vw solid #6f97f9;
    border-bottom: 0.5333333333vw solid #6f97f9;
    top: calc(50% - 0.5333333333vw);
    right: 5.3333333333vw;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .p-colSelect select {
    width: 100%;
    height: 10.6666666667vw;
    padding: 2.6666666667vw 4vw;
    border: 1px solid #6f97f9;
    border-radius: 1.0666666667vw;
    font-size: 4.2666666667vw;
    font-weight: bold;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #6f97f9;
  }
  .p-colSelect select:focus {
    outline: none;
  }
  .p-colTtl {
    margin-top: 10.6666666667vw;
    font-size: 5.3333333333vw;
  }
  .p-colFlex {
    display: block;
    gap: 0;
    margin-top: 2.6666666667vw;
  }
  .p-colCont {
    width: 100%;
    padding-top: 8vw;
    padding-bottom: 16vw;
    border-top: 1px solid #c2d3f5;
  }
  .p-colCont__main {
    gap: 5.3333333333vw;
  }
  .card {
    width: 100%;
    border-radius: 2.6666666667vw;
    -webkit-box-shadow: 0 0 2.6666666667vw 0 rgba(50, 61, 136, 0.2);
            box-shadow: 0 0 2.6666666667vw 0 rgba(50, 61, 136, 0.2);
  }
  .card__img {
    height: 53.3333333333vw;
  }
  .card__wrap {
    padding: 4vw;
  }
  .card__cats {
    gap: 1.0666666667vw;
    min-height: 8.2666666667vw;
  }
  .card__cat {
    height: 7.2vw;
    padding: 0 2.6666666667vw;
    border: 1px solid #6f97f9;
    border-radius: 1.0666666667vw;
    font-size: 3.2vw;
  }
  .card__date {
    font-size: 3.4666666667vw;
  }
  .card__ttl {
    margin-top: 2.1333333333vw;
    font-size: 4vw;
    line-height: 1.4;
  }
  .card__tag {
    margin-top: 2.1333333333vw;
    font-size: 3.2vw;
  }
}/*# sourceMappingURL=p-column.css.map */