@charset "UTF-8";
/* ======================================================================
 setting
====================================================================== */
/* ======================================================================
 p_top
====================================================================== */
@keyframes slidein {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  70% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slidein2 {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bgslide {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes fade-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  opacity: 0;
}

.p_top .l_container_top {
  overflow: hidden;
}
.p_top body {
  opacity: 0;
  background: #f5f5f5;
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p_top .swiper-container {
  backface-visibility: hidden;
  opacity: 1;
  width: 110vw;
  overflow: hidden;
  transform: rotateZ(-5deg) translateX(-3vw);
  position: relative;
  transition: opacity 3.2s ease;
  min-width: 1358px;
  padding: 0 0 40px 0;
}
@media screen and (min-width: 1600px) {
  .p_top .swiper-container {
    transform: rotateZ(-5deg) translateX(-1vw);
  }
}
@media screen and (max-width: 768px) {
  .p_top .swiper-container {
    transform: rotateZ(-5deg) translateX(-22vw);
    width: 160vw;
    padding: 0 0 50px;
    min-width: initial;
  }
}
.p_top .swiper-container.active {
  opacity: 1;
}
.p_top .swiper-container button {
  position: absolute;
  bottom: 2.5vw;
  left: 73vw;
  z-index: 1;
  letter-spacing: .2em;
  font-size: 12px;
  color: #1F4AA1;
  font-family: 'Roboto',serif;
  padding: 0 45px 0 0;
}
@media screen and (max-width: 1170px) {
  .p_top .swiper-container button {
    left: 78vw;
  }
}
@media screen and (max-width: 1065px) {
  .p_top .swiper-container button {
    left: 85vw;
  }
}
@media screen and (max-width: 1000px) {
  .p_top .swiper-container button {
    left: 79vw;
  }
}
@media screen and (max-width: 768px) {
  .p_top .swiper-container button {
    padding: 0 35px 0 0;
    left: 25.6875vw;
    bottom: 6vw;
  }
}
.p_top .swiper-container button:before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #1F4AA1;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p_top .swiper-container button:before {
    width: 30px;
    height: 30px;
  }
}
.p_top .swiper-container button:after {
  content: url(../img/p_top/slide-arrow.svg);
  position: absolute;
  top: 0;
  right: 13px;
  transition: right .2s ease;
}
@media screen and (max-width: 768px) {
  .p_top .swiper-container button:after {
    top: 1px;
    right: 11px;
    content: url(../img/p_top/sp/slide-arrow.svg);
  }
}
.p_top .swiper-container button:hover:after {
  right: 11px;
}
@media screen and (max-width: 768px) {
  .p_top .swiper-container button:hover:after {
    right: 11px;
  }
}
.p_top .swiper-slide {
  width: 600px;
  margin: 0;
  position: relative;
  will-change: transform;
  backface-visibility: hidden;
}
.p_top .swiper-slide.swiper-slide-active {
  margin: 0 -70px;
  opacity: 0;
  transition: transform .1s ease;
  transform: translateY(0);
}
@media screen and (max-width: 1000px) {
  .p_top .swiper-slide.swiper-slide-active {
    margin: 0 -40px;
  }
}
@media screen and (max-width: 768px) {
  .p_top .swiper-slide.swiper-slide-active {
    margin: 0 -20px;
  }
}
.p_top .swiper-slide.swiper-slide-active .swiper-txtbox {
  opacity: 1;
}
.p_top .swiper-slide.swiper-slide-active .swiper-txtbox > span {
  opacity: 1;
}
.p_top .swiper-slide.swiper-slide-active .swiper-txtbox > span.active:before {
  animation: bgslide .7s ease forwards;
  animation-delay: .1s;
}
.p_top .swiper-slide.swiper-slide-active .swiper-txtbox > span.active > span {
  animation: fade-opacity 1s ease forwards;
  animation-delay: .25s;
  display: inline-block;
}
.p_top .swiper-slide img {
  width: 100%;
  border-radius: 0;
  clip-path: polygon(0% 10%, 95% 0%, 100% 90%, 5% 100%);
  -webkit-clip-path: polygon(0% 10%, 95% 0%, 100% 90%, 5% 100%);
}
.p_top .swiper-txtbox {
  transform: translateY(20px);
  opacity: 0;
  position: absolute;
  bottom: 4vw;
  left: 3vw;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 2;
  overflow: hidden;
  transition: opacity .5s ease;
}
@media screen and (max-width: 768px) {
  .p_top .swiper-txtbox {
    bottom: 44vw;
    left: 5vw;
  }
}
.p_top .swiper-txtbox > span {
  opacity: 0;
  margin: 5px 0;
  color: #1F4AA1;
  position: relative;
  padding: 0 10px;
  align-self: baseline;
}
.p_top .swiper-txtbox > span.first {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p_top .swiper-txtbox > span {
    font-size: 12px;
  }
}
.p_top .swiper-txtbox > span:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: all 1s ease;
  z-index: -1;
}
.p_top .swiper-txtbox > span > span {
  opacity: 0;
}
.p_top .swiper-container {
  visibility: hidden;
  /* 読み込み中は非表示 */
}
.p_top .swiper-slide {
  transform: scale(0.8) translateY(20px) rotateZ(5deg);
}
.p_top #nextSlideBtn {
  transform: rotateZ(5deg);
}
.p_top .section .inner {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p_top .section .inner {
    width: 100%;
  }
}
.p_top .section.sec_1 {
  position: relative;
  padding: 40px 0 0;
}
@media screen and (max-width: 768px) {
  .p_top .section.sec_1 {
    padding: 20px 4.6875vw 0;
  }
}
.p_top .section.sec_1:before {
  content: url(../img/p_top/section-ico1.svg);
  position: absolute;
  top: -350px;
  right: -760px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p_top .section.sec_1:before {
    top: -220px;
    right: -230px;
    content: url(../img/p_top/sp/section-ico1.svg);
  }
}
.p_top .section.sec_1 .lead {
  margin: 15px 0 0;
}
.p_top .section.sec_1 .c_list_1 {
  margin: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .p_top .section.sec_1 .c_list_1 {
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p_top .section.sec_1 .btnwrap {
    padding: 0;
  }
}
.p_top .sec_2 {
  position: relative;
  padding: 200px 0 100px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 {
    margin: 50px 0;
    padding: 50px 0;
  }
}
.p_top .sec_2:before {
  content: url(../img/p_top/section-ico2.svg);
  position: absolute;
  top: -140px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2:before {
    display: none;
  }
}
.p_top .sec_2:after {
  content: "";
  width: calc(100vw - 100px);
  height: calc(100% - 100px);
  background: #F6F7F9;
  border-radius: 0 60px 60px 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2:after {
    width: 100vw;
    height: 100%;
    border-radius: 0 30px 30px 0;
  }
}
.p_top .sec_2 .inner {
  position: relative;
  display: flex;
  gap: 0 40px;
  padding: 0 0 0 calc( (100% - 1100px) / 2 );
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner {
    flex-direction: column;
  }
}
.p_top .sec_2 .inner .box {
  width: 325px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .box {
    width: 100%;
    padding: 0 4.6875vw;
  }
}
.p_top .sec_2 .inner .lead {
  margin: 15px 0 0;
}
.p_top .sec_2 .inner .c_list_2 {
  width: calc(100% - 365px);
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .c_list_2 {
    width: 100%;
    margin: 30px 0 0;
  }
}
.p_top .sec_2 .inner .case-slider .slick-cloned {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.p_top .sec_2 .inner .case-slider.slick-initialized .slick-cloned {
  visibility: visible;
  opacity: 1;
}
.p_top .sec_2 .inner .case-slider .slick-slide {
  margin: 0 10px;
}
.p_top .sec_2 .inner .case-slider .slick-slide .c_list_txtbox .ttl {
  padding: 0 70px 10px 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slick-list {
    padding: 0 0 0 4.6875vw;
  }
}
.p_top .sec_2 .inner .slider-status {
  margin: 45px 0 0;
  color: #B7B7B7;
  font-size: 24px;
  display: flex;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slider-status {
    justify-content: flex-end;
    margin: 30px 0 0;
    font-size: 20px;
    gap: 0 10px;
    padding: 0 130px 0 0;
  }
}
.p_top .sec_2 .inner .slider-status .half {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slider-status .half {
    font-size: 18px;
  }
}
.p_top .sec_2 .inner .slider-status .active {
  color: #1170C3;
}
.p_top .sec_2 .inner .slick-arrow {
  z-index: 1;
}
.p_top .sec_2 .inner .slick-arrow:before {
  content: "";
  opacity: 1;
  font-size: 0;
}
.p_top .sec_2 .inner .slick-prev {
  width: 60px;
  height: 60px;
  top: 292px;
  left: -178px;
  border: 1px solid #1170C3;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slick-prev {
    width: 40px;
    height: 40px;
    left: initial;
    right: calc(4.6875vw + 60px);
    top: -40px;
  }
}
.p_top .sec_2 .inner .slick-prev.slick-disabled {
  background: #EBEBEB;
  border: 1px solid #EBEBEB;
}
.p_top .sec_2 .inner .slick-prev.slick-disabled:before {
  content: url(../img/p_top/arrow-disabled.svg);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slick-prev.slick-disabled:before {
    content: url(../img/p_top/sp/arrow-disabled.svg);
  }
}
.p_top .sec_2 .inner .slick-prev.slick-disabled:hover:before {
  left: 50%;
}
.p_top .sec_2 .inner .slick-prev:before {
  content: url(../img/p_top/arrow-slick.svg);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  position: absolute;
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slick-prev:before {
    content: url(../img/p_top/sp/arrow-slick.svg);
  }
}
.p_top .sec_2 .inner .slick-prev:hover:before {
  left: calc(50% - 3px);
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slick-prev:hover:before {
    left: 50%;
  }
}
.p_top .sec_2 .inner .slick-next {
  width: 60px;
  height: 60px;
  top: 292px;
  left: -98px;
  border: 1px solid #1170C3;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slick-next {
    width: 40px;
    height: 40px;
    left: initial;
    right: 4.6875vw;
    top: -40px;
  }
}
.p_top .sec_2 .inner .slick-next.slick-disabled {
  background: #EBEBEB;
  border: 1px solid #EBEBEB;
}
.p_top .sec_2 .inner .slick-next.slick-disabled:before {
  content: url(../img/p_top/arrow-disabled.svg);
  left: 50%;
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slick-next.slick-disabled:before {
    content: url(../img/p_top/sp/arrow-disabled.svg);
  }
}
.p_top .sec_2 .inner .slick-next.slick-disabled:hover:before {
  left: 50%;
}
.p_top .sec_2 .inner .slick-next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: left .2s ease;
  transform: translate(-50%, -50%);
  content: url(../img/p_top/arrow-slick.svg);
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slick-next:before {
    content: url(../img/p_top/sp/arrow-slick.svg);
  }
}
.p_top .sec_2 .inner .slick-next:hover:before {
  left: calc(50% + 3px);
}
@media screen and (max-width: 768px) {
  .p_top .sec_2 .inner .slick-next:hover:before {
    left: 50%;
  }
}
.p_top .sec_3 {
  margin: 100px 0 0;
  padding: 100px 0;
  background: url(../img/p_top/reason-bg.png);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .p_top .sec_3 {
    margin: 50px 0 0;
    padding: 50px 4.6875vw 100px;
  }
}
.p_top .sec_3 .lead {
  margin: 15px 0 64px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p_top .sec_3 .lead {
    text-align: left;
    line-height: 2;
    margin: 15px 0 30px;
  }
}
.p_top .sec_3 .c_ttl_3 .u_oz {
  color: #fff;
}
.p_top .sec_3 .reason-item {
  display: flex;
  gap: 0 60px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_3 .reason-item {
    flex-direction: column;
  }
}
.p_top .sec_3 .reason-item:not(:first-of-type) {
  margin: 75px 0 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_3 .reason-item:not(:first-of-type) {
    margin: 35px 0 0;
    flex-direction: column-reverse;
  }
}
.p_top .sec_3 .reason-item:not(:first-of-type) .c_ttl_4 {
  margin: -22px 0 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_3 .reason-item:not(:first-of-type) .c_ttl_4 {
    margin: 0 0 25px;
    padding: 0 0 0 75px;
  }
}
.p_top .sec_3 .reason-txtbox {
  width: calc(100% - 580px);
}
@media screen and (max-width: 768px) {
  .p_top .sec_3 .reason-txtbox {
    width: 100%;
  }
}
.p_top .sec_3 .reason-txtbox .u_txt_1 {
  margin: 15px 0 0;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p_top .sec_3 .reason-txtbox .u_txt_1 {
    margin: 5px 0 15px;
  }
}
.p_top .sec_3 .reason-imgbox {
  width: 520px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_3 .reason-imgbox {
    width: 100%;
  }
}
.p_top .sec_3 .reason-imgbox img {
  width: 100%;
}
.p_top .sec_3 .btnwrap {
  margin: 70px 0 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_3 .btnwrap {
    margin: 35px 0 0;
    padding: 0;
  }
}
.p_top .sec_4 {
  padding: 100px 0;
  border-radius: 40px 40px 0 0;
  background: #fff;
  margin: -40px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 {
    padding: 50px 0;
    border-radius: 30px 30px 0 0;
  }
}
.p_top .sec_4:before {
  content: "";
  width: 100vw;
  height: calc(100% + 80px);
  background: #EAF5FF;
  position: absolute;
  z-index: -1;
  top: 60px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4:before {
    height: 100%;
    top: 0;
  }
}
.p_top .sec_4 .c_ttl_3 {
  color: #1170C3;
}
.p_top .sec_4 .inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .inner {
    width: 100%;
  }
}
.p_top .sec_4 .pickup {
  width: 1100px;
  margin: 0 auto;
  border-radius: 40px;
  padding: 40px 50px;
  display: flex;
  gap: 0 40px;
  position: relative;
  z-index: 1;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .pickup {
    width: 100%;
    padding: 58px 0 0;
    border-radius: 10px;
    flex-direction: column-reverse;
    background: transparent;
    overflow: hidden;
  }
  .p_top .sec_4 .pickup:before {
    position: absolute;
    content: url(../img/p_top/sp/pickup-icon.svg);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}
.p_top .sec_4 .pickup-outer {
  margin: 60px 0 0;
  padding: 40px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .pickup-outer {
    margin: 20px 0 0;
    padding: 20px 4.6875vw 30px;
  }
}
.p_top .sec_4 .pickup-outer:before {
  content: "";
  background: #EAF5FF;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p_top .sec_4 .pickup-outer > a {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .pickup-outer > a {
    width: auto;
  }
}
@media screen and (min-width: 769px) {
  .p_top .sec_4 .pickup-outer > a:hover .c_link_1 {
    opacity: 0.7;
    color: #1170C3;
  }
  .p_top .sec_4 .pickup-outer > a:hover .c_link_1:before {
    border: 1px solid #1170C3;
  }
  .p_top .sec_4 .pickup-outer > a:hover .c_link_1:after {
    right: 6px;
    content: url(../img/p_top/arrow-more-hover.svg);
  }
  .p_top .sec_4 .pickup-outer > a:hover .c_link_2 {
    color: #1170C3;
    opacity: 0.7;
  }
  .p_top .sec_4 .pickup-outer > a:hover .c_link_2:before {
    border: 1px solid #1F4AA1;
  }
  .p_top .sec_4 .pickup-outer > a:hover .c_link_2:after {
    right: 6px;
    content: url(../img/p_top/arrow-more-hover.svg);
  }
}
.p_top .sec_4 .pickup-txtbox {
  width: 460px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .pickup-txtbox {
    background: #fff;
    width: 100%;
    padding: 15px 15px 55px;
  }
  .p_top .sec_4 .pickup-txtbox img {
    display: none;
  }
}
.p_top .sec_4 .pickup-txtbox .tagflex {
  display: flex;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .pickup-txtbox .tagflex {
    flex-wrap: wrap;
  }
  .p_top .sec_4 .pickup-txtbox .tagflex .pickup-times {
    margin-bottom: 10px;
  }
  .p_top .sec_4 .pickup-txtbox .tagflex .c_tags_3 {
    margin-bottom: 10px;
  }
}
.p_top .sec_4 .pickup-imgbox {
  width: 500px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .pickup-imgbox {
    width: 100%;
    position: relative;
    z-index: 2;
  }
}
.p_top .sec_4 .pickup-imgbox img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .pickup-imgbox img {
    border-radius: 10px 10px 0 0;
  }
}
.p_top .sec_4 .pickup .c_tags_2 {
  margin: 15px 0 10px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .pickup .c_tags_2 {
    margin: 0 0 10px;
  }
}
.p_top .sec_4 .pickup-times {
  margin: 0 0 20px;
  background: #EAF5FF;
  border-radius: 3px;
  padding: 0 10px;
  display: inline-flex;
  gap: 0 10px;
}
.p_top .sec_4 .pickup-times.disabled {
  background: #F4F4F4;
  color: #9A9A9A;
}
.p_top .sec_4 .pickup-times.disabled .pickup-day {
  color: #9A9A9A;
}
.p_top .sec_4 .pickup-times.disabled .pickup-day:before {
  content: url(../img/p_top/day-icon-dis.svg);
}
.p_top .sec_4 .pickup-times.disabled .pickup-time {
  color: #9A9A9A;
}
.p_top .sec_4 .pickup-times.disabled .pickup-time:before {
  content: url(../img/p_top/time-icon-dis.svg);
}
.p_top .sec_4 .pickup-day {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  padding: 0 0 0 23px;
  position: relative;
  color: #0D3863;
}
.p_top .sec_4 .pickup-day:before {
  position: absolute;
  content: url(../img/p_top/day-icon.svg);
  top: 57%;
  transform: translateY(-50%);
  left: 0;
}
.p_top .sec_4 .pickup-time {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  padding: 0 0 0 22px;
  position: relative;
  color: #0D3863;
}
.p_top .sec_4 .pickup-time:before {
  position: absolute;
  content: url(../img/p_top/time-icon.svg);
  top: 57%;
  transform: translateY(-50%);
  left: 0;
}
.p_top .sec_4 .pickup-ttl {
  margin: 5px 0 0;
  padding: 0 0 40px;
  color: #0D3863;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .pickup-ttl {
    font-size: 18px;
  }
}
.p_top .sec_4 .pickup .c_link_1, .p_top .sec_4 .pickup .c_link_2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .pickup .c_link_1, .p_top .sec_4 .pickup .c_link_2 {
    right: 15px;
    bottom: 15px;
  }
}
.p_top .sec_4 .seminar-card {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .seminar-card {
    width: auto;
  }
}
@media screen and (min-width: 769px) {
  .p_top .sec_4 .seminar-card:hover .c_link_1 {
    opacity: 0.7;
    color: #1170C3;
  }
  .p_top .sec_4 .seminar-card:hover .c_link_1:before {
    border: 1px solid #1170C3;
  }
  .p_top .sec_4 .seminar-card:hover .c_link_1:after {
    right: 6px;
    content: url(../img/p_top/arrow-more-hover.svg);
  }
  .p_top .sec_4 .seminar-card:hover .c_link_2 {
    color: #1170C3;
    opacity: 0.7;
  }
  .p_top .sec_4 .seminar-card:hover .c_link_2:before {
    border: 1px solid #1F4AA1;
  }
  .p_top .sec_4 .seminar-card:hover .c_link_2:after {
    right: 6px;
    content: url(../img/p_top/arrow-more-hover.svg);
  }
}
.p_top .sec_4 .subpickup {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #E3E3E3;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .subpickup {
    width: 90.625%;
    padding: 30px 0 60px;
    margin: 0 auto;
    flex-direction: column-reverse;
  }
}
.p_top .sec_4 .subpickup-txtbox {
  width: 645px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .subpickup-txtbox {
    margin: -1px 0 0;
    width: 100%;
  }
}
.p_top .sec_4 .subpickup-imgbox {
  width: 315px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .subpickup-imgbox {
    display: none;
    width: 100%;
  }
}
.p_top .sec_4 .subpickup-imgbox img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .subpickup .pickup-times {
    margin-bottom: 10px;
  }
}
.p_top .sec_4 .subpickup .c_tags_2 {
  margin: 0 0 10px;
}
.p_top .sec_4 .subpickup .tagflex {
  display: flex;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .subpickup .tagflex {
    flex-wrap: wrap;
  }
  .p_top .sec_4 .subpickup .tagflex + .u_sp {
    margin: 10px 0 15px;
  }
  .p_top .sec_4 .subpickup .tagflex + .u_sp img {
    width: 100%;
    border-radius: 5px;
  }
}
.p_top .sec_4 .subpickup .c_link_1, .p_top .sec_4 .subpickup .c_link_2 {
  position: absolute;
  bottom: 6px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_4 .subpickup .c_link_1, .p_top .sec_4 .subpickup .c_link_2 {
    bottom: -40px;
  }
}
.p_top .sec_5 {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p_top .sec_5 {
    padding: 50px 4.6875vw 50px 9.375vw;
  }
}
.p_top .sec_5:before {
  position: absolute;
  content: "";
  width: calc( 100vw - ( (100vw - 1100px) / 2) + 50px );
  height: 100%;
  background: #F6F7F9;
  border-radius: 60px 0 0 60px;
  z-index: -1;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_5:before {
    width: calc( 100vw - 4.6875vw);
    border-radius: 30px 0 0 30px;
  }
}
.p_top .sec_5 .flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p_top .sec_5 .flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p_top .sec_5 .c_ttl_1 {
    text-align: left;
  }
}
.p_top .sec_5 .news-lists {
  width: 850px;
  margin: -20px 0 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_5 .news-lists {
    width: 100%;
    margin: 10px 0 0;
  }
}
.p_top .sec_5 .news-link {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #E3E3E3;
}
.p_top .sec_5 .news-link p {
  font-size: 16px;
  font-weight: bold;
  color: #1170C3;
}
.p_top .sec_5 .news-link:hover .u_txt_3 {
  color: #637A91;
}
.p_top .sec_5 .news-link:hover .u_txt_3 .arrow:after {
  opacity: 1;
  right: 7px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_5 .news-link:hover .u_txt_3 .arrow:after {
    right: 9px;
  }
}
.p_top .sec_5 .news-link .u_txt_3 {
  margin: 10px 0 0;
  color: #0D3863;
  padding: 0 50px 0 0;
  position: relative;
  transition: all .2s ease;
}
.p_top .sec_5 .news-link .u_txt_3 .arrow {
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid #0D3863;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p_top .sec_5 .news-link .u_txt_3 .arrow {
    right: 0;
  }
}
.p_top .sec_5 .news-link .u_txt_3 .arrow:after {
  content: url(../img/p_top/btn-arrow1.svg);
  position: absolute;
  top: 39%;
  right: 9px;
  transform: translateY(-50%);
  transition: all .2s ease;
}
@media screen and (max-width: 768px) {
  .p_top .sec_5 .btnwrap {
    padding: 0;
  }
}
.p_top .sec_6 {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p_top .sec_6 {
    padding: 50px 0;
  }
}
.p_top .sec_6 .c_ttl_3 {
  color: #1170C3;
}
.p_top .sec_6 .lead {
  margin: 15px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_top .sec_6 .lead {
    padding: 0 4.6875vw;
    text-align: left;
  }
}
.p_top .sec_6 .c_list_3 {
  margin: 60px 0 0;
  padding: 0 0 70px;
}
@media screen and (max-width: 768px) {
  .p_top .sec_6 .c_list_3 {
    margin: 25px 0 0;
    padding: 0 0 35px;
  }
}
.p_top .sec_6 .slick-dots {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  bottom: 0;
}
.p_top .sec_6 .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid #1170C3;
}
.p_top .sec_6 .slick-dots li.slick-active {
  background: #1170C3;
}
.p_top .sec_6 .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}
.p_top .sec_6 .slick-dots li button:before {
  width: 10px;
  height: 10px;
  display: none;
}
@media screen and (max-width: 768px) {
  .p_top .sec_6 .slick-slide {
    margin: 0 10px;
  }
}
.p_top .btnwrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .p_top .btnwrap {
    margin: 30px 0 0;
    width: 100%;
    padding: 0 4.6875vw;
  }
}

/*# sourceMappingURL=top.css.map */
