/* ---------------main-visual-section START--------------- */
.main-visual-section.active .main-visual-wrap .bg-box img {
  transform: scale(1);
}
.main-visual-section.active .main-visual-wrap .text-box .btn-about {
  opacity: 1;
}
.main-visual-section.active .main-visual-wrap .seminar-box {
  opacity: 1;
  transform: scale(1);
}
.main-visual-section .main-visual-wrap {
  position: relative;
  width: 97.5%;
  height: 800px;
  max-height: 100vh;
  margin-left: 1.25%;
  border-radius: 30px;
  overflow: hidden;
}
.main-visual-section .main-visual-wrap .bg-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.main-visual-section .main-visual-wrap .bg-box::before {
  content: "";
  z-index: 1;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(16, 78, 182, 0.5) 100%);
}
.main-visual-section .main-visual-wrap .bg-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: scale(1.1);
  transition-timing-function: linear;
  transition: transform 20s;
}
.main-visual-section .main-visual-wrap .text-box {
  z-index: 2;
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.main-visual-section .main-visual-wrap .text-box .btn-about {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 210px;
  height: 45px;
  border-radius: 45px;
  margin-top: 35px;
  box-sizing: border-box;
  border: 1px solid #104eb6;
  opacity: 0;
  transition: background-color 0.3s, color 0.3s, opacity 1s;
  transition-delay: 0s, 0s, 0.6s;
}
.main-visual-section .main-visual-wrap .seminar-box {
  z-index: 2;
  position: absolute;
  right: 80px;
  bottom: 80px;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 20px;
  background: linear-gradient(to bottom, #04f1fe 0%, #4facfe 100%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1s, transform 1s;
  transition-delay: 0.9s;
}
.main-visual-section .main-visual-wrap .seminar-box .seminar-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 330px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  padding: 30px;
}
.main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-text {
  position: relative;
  width: calc(100% - 60px);
}
.main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-text .seminar-tit {
  margin-top: 15px;
  line-height: 1.3;
}
.main-visual-section .main-visual-wrap .seminar-box .seminar-inner .btn-seminar {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(79, 172, 254, 0.7);
  transition: background-color 0.3s;
}
.main-visual-section .main-visual-wrap .seminar-box .seminar-inner .btn-seminar img {
  display: block;
  width: 33.333%;
  height: auto;
}

/* ---------------main-visual-section END--------------- */
/* ---------------logo-section START--------------- */
.logo-section.active .logo-wrap .logo-slider {
  opacity: 1;
}
.logo-section .logo-wrap .logo-slider {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}
.logo-section .logo-wrap .logo-slider::before, .logo-section .logo-wrap .logo-slider::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  display: block;
  width: 20%;
  height: 100%;
  pointer-events: none;
}
.logo-section .logo-wrap .logo-slider::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}
.logo-section .logo-wrap .logo-slider::after {
  right: 0;
  background: linear-gradient(to right, transparent 0%, white 100%);
}
.logo-section .logo-wrap .logo-slider .slider-box {
  display: inline-flex;
  margin: 0 20px;
  vertical-align: top;
}
.logo-section .logo-wrap .logo-slider .slider-box img {
  display: block;
  height: 35px;
  width: auto;
  filter: grayscale(1);
}

/* ---------------logo-section END--------------- */
/* ---------------about-section START--------------- */
.about-section.active .about-wrap .img-box {
  opacity: 1;
  transform: scale(1);
}
.about-section .about-wrap {
  display: flex;
  align-items: center;
}
.about-section .about-wrap .img-box {
  width: 56%;
  aspect-ratio: 1.31/1;
  border-radius: 30px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1s, transform 1s;
}
.about-section .about-wrap .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.about-section .about-wrap .text-box {
  width: 44%;
  box-sizing: border-box;
  padding: 70px 0 70px 70px;
}

/* ---------------about-section END--------------- */
/* ---------------package-section START--------------- */
.package-section.active .package-wrap .package-list .list-item {
  opacity: 1;
  transform: translateY(0);
}
.package-section .package-wrap .package-list {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.package-section .package-wrap .package-list .list-item {
  width: calc((100% - 50px) / 3);
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s, transform 1s;
}
.package-section .package-wrap .package-list .list-item:nth-of-type(1) {
  transition-delay: 0.3s;
}
.package-section .package-wrap .package-list .list-item:nth-of-type(2) {
  transition-delay: 0.6s;
}
.package-section .package-wrap .package-list .list-item:nth-of-type(3) {
  transition-delay: 0.9s;
}
.package-section .package-wrap .package-list .list-item .list-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.package-section .package-wrap .package-list .list-item .list-inner .step-tit {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 85px;
  border-radius: 30px;
}
.package-section .package-wrap .package-list .list-item .list-inner .dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
}
.package-section .package-wrap .package-list .list-item .list-inner .dot.dot-1 {
  background-color: #104eb6;
}
.package-section .package-wrap .package-list .list-item .list-inner .dot.dot-2 {
  background-color: #84a3d7;
}
.package-section .package-wrap .package-list .list-item .list-inner .dot.dot-3 {
  background-color: #cad6eb;
}
.package-section .package-wrap .package-list .list-item .list-inner .package-box {
  width: 100%;
  box-sizing: border-box;
  border-radius: 30px;
  padding: 50px 60px;
}
.package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list {
  margin-top: 35px;
}
.package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li:not(:nth-of-type(1)) {
  margin-top: 15px;
}
.package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .icon {
  flex-shrink: 0;
  display: block;
  width: 17px;
  box-sizing: border-box;
  padding-top: 5px;
}
.package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .icon img {
  display: block;
  width: 100%;
  height: auto;
}
.package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .package-text {
  width: calc(100% - 17px - 10px);
  line-height: 1.3;
}
.package-section .package-wrap .package-list .list-item .list-inner .package-box .btn-cousult {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 45px;
  border-radius: 45px;
  margin-top: 35px;
  box-sizing: border-box;
  border: 1px solid #104eb6;
  transition: background-color 0.3s, color 0.3s;
}

/* ---------------package-section END--------------- */
/* ---------------counsel-section START--------------- */
.counsel-section.active .counsel-wrap .counsel-list .list-item {
  opacity: 1;
  transform: scale(1);
}
.counsel-section .counsel-wrap .counsel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.counsel-section .counsel-wrap .counsel-list .list-item {
  width: calc((100% - 60px) / 4);
  aspect-ratio: 1/1;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1s, transform 1s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(1) {
  transition-delay: 0.3s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(2) {
  transition-delay: 0.6s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(3) {
  transition-delay: 0.9s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(4) {
  transition-delay: 1.2s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(5) {
  transition-delay: 1.5s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(6) {
  transition-delay: 1.8s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(7) {
  transition-delay: 2.1s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(8) {
  transition-delay: 2.4s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(9) {
  transition-delay: 2.7s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(10) {
  transition-delay: 3s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(11) {
  transition-delay: 3.3s;
}
.counsel-section .counsel-wrap .counsel-list .list-item:nth-of-type(12) {
  transition-delay: 3.6s;
}
.counsel-section .counsel-wrap .counsel-list .list-item a {
  height: 100%;
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 30px;
  overflow: hidden;
  background-color: #1c1c1c;
  box-sizing: border-box;
  padding: 40px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner.bg-red::before {
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(208, 43, 43, 0.4) 100%);
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner.bg-yellow::before {
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(255, 146, 50, 0.4) 100%);
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner.bg-blue::before {
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(20, 133, 220, 0.4) 100%);
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner.bg-green::before {
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(29, 129, 39, 0.4) 100%);
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner.bg-turquoise::before {
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(22, 167, 148, 0.4) 100%);
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner.bg-purple::before {
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(110, 69, 171, 0.4) 100%);
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner.bg-indigo::before {
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, rgba(31, 43, 154, 0.4) 100%);
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner > img {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 68%;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
  transition-timing-function: linear;
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner .counsel-tit {
  z-index: 1;
  position: relative;
  line-height: 1.3;
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner .counsel-info {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner .counsel-info .counsel-cate {
  line-height: 1.3;
}
.counsel-section .counsel-wrap .counsel-list .list-item a .list-inner .counsel-info .counsel-name {
  margin-top: 10px;
}

/* ---------------counsel-section END--------------- */
/* ---------------guide-section START--------------- */
.guide-section.active .guide-wrap .seminar-inner .seminar-board-list .list-item {
  opacity: 1;
  transform: translateY(0);
}
.guide-section.active .guide-wrap .guide-inner .guide-list li {
  opacity: 1;
  transform: scale(1);
}
.guide-section .guide-wrap {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.guide-section .guide-wrap .seminar-inner {
  width: calc(60% - 50px);
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item {
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  padding: 45px 0;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s, transform 1s;
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item:nth-of-type(1) {
  border-top: 1px solid #eee;
  transition-delay: 0.3s;
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item:nth-of-type(2) {
  transition-delay: 0.6s;
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a {
  display: flex;
  align-items: center;
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .img-box {
  background-color: #f8f8f8;
  box-sizing: border-box;
  border: 1px solid #eee;
  overflow: hidden;
  border-radius: 20px;
  width: 380px;
  aspect-ratio: 16/9;
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.3s;
  transition-timing-function: linear;
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box {
  box-sizing: border-box;
  padding: 0 50px;
  width: calc(100% - 380px);
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box .subject {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-break: break-word;
  transition: color 0.3s;
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box .subject span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box .subject span::before {
  content: "";
  z-index: -1;
  display: block;
  width: 0;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(16, 78, 182, 0.1);
  transition: width 0.3s;
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box .subject + .info {
  margin-top: 15px;
}
.guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box .info {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-break: break-word;
  line-height: 1.3;
}
.guide-section .guide-wrap .guide-inner {
  width: 40%;
}
.guide-section .guide-wrap .guide-inner .text-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.guide-section .guide-wrap .guide-inner .text-box .guide-tel {
  box-sizing: border-box;
  padding-bottom: 5px;
}
.guide-section .guide-wrap .guide-inner .text-box .guide-tel a {
  transition: color 0.3s;
}
.guide-section .guide-wrap .guide-inner .guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.guide-section .guide-wrap .guide-inner .guide-list li {
  width: calc((100% - 25px) / 2);
  aspect-ratio: 1/1;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1s, transform 1s;
}
.guide-section .guide-wrap .guide-inner .guide-list li:nth-of-type(1) {
  transition-delay: 0.3s;
}
.guide-section .guide-wrap .guide-inner .guide-list li:nth-of-type(2) {
  transition-delay: 0.6s;
}
.guide-section .guide-wrap .guide-inner .guide-list li:nth-of-type(3) {
  transition-delay: 0.9s;
}
.guide-section .guide-wrap .guide-inner .guide-list li:nth-of-type(4) {
  transition-delay: 1.2s;
}
.guide-section .guide-wrap .guide-inner .guide-list li a {
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #eee;
  padding: 35px;
  border-radius: 30px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s, background-color 0.3s;
}
.guide-section .guide-wrap .guide-inner .guide-list li a .icon {
  display: block;
  height: 50px;
}
.guide-section .guide-wrap .guide-inner .guide-list li a .icon img {
  display: block;
  height: 100%;
  width: auto;
}
.guide-section .guide-wrap .guide-inner .guide-list li a .guide-tit {
  line-height: 1.3;
  transition: color 0.3s;
}

/* ---------------guide-section END--------------- */
/* ---------------mediviewer-section START--------------- */
.mediviewer-section {
  background-color: #f1f5f6;
}
.mediviewer-section.active .mediviewer-wrap .h_list_wrap #first_list {
  opacity: 1;
}
.mediviewer-section.active .mediviewer-wrap .h_list_wrap #business_list {
  opacity: 1;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li {
  width: calc((100% - 45px) / 4);
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.06);
  height: 100%;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .position-relative {
  position: relative;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .position-relative .complete {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  background: rgba(0, 74, 158, 0.7);
  color: #fff;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .position-relative .complete p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  gap: 10px;
  transform: translateY(-50%);
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .position-relative .rect {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .position-relative .rect::after {
  content: "";
  display: block;
  padding-bottom: 76.41%;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .position-relative .rect img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt {
  box-sizing: border-box;
  padding: 15px;
  background-color: #fff;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .mb_12 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .mb_12 .badge {
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .mb_12 .badge.badge-secondary {
  border: 1px solid #339cae;
  color: #339cae;
  background: #fff;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .mb-4 {
  margin-bottom: 15px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .mb-4 .line1_text {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 5px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .mb-4 .line2_text {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-height: 1.3;
  min-height: 2.6em !important;
  -webkit-box-orient: vertical;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .amount_list .d-flex {
  display: flex;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .amount_list .d-flex .border_sp {
  box-sizing: border-box;
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid #eee;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .amount_list .d-flex .border_sp span {
  display: inline-block;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .amount_list .d-flex .border_sp .tit {
  margin-right: 5px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .amount_list .price_wr {
  margin-top: 5px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .amount_list .price_wr .price {
  margin-left: 5px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .item_txt .amount_list .mt-4 {
  margin-top: 15px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li .content_box .py-3 {
  padding: 15px;
  background-color: #F5F8F9;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li {
  width: calc((100% - 15px) / 2);
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box {
  display: flex;
  height: 100%;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background: #fff;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .position-relative {
  position: relative;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .position-relative.left {
  width: 30%;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .position-relative .complete {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  background: rgba(0, 74, 158, 0.7);
  color: #fff;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .position-relative .complete p {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .position-relative .img_bc {
  width: 100%;
  height: 100%;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .position-relative .img_bc img {
  width: 100%;
  height: 165px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt {
  width: 70%;
  box-sizing: border-box;
  padding: 15px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .mb-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .mb-2 > .d-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .mb-2 > .d-flex .badge {
  display: inline-block;
  padding: 5px 10px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.3px;
  margin-right: 10px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .mb-2 > .d-flex .badge.badge-secondary {
  border: 1px solid #339cae;
  color: #339cae;
  background: #fff;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .mb-2 > .d-flex > .d-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .mb-2 > .d-flex > .d-flex .mr-3 {
  margin-right: 10px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .line1_text {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .amount_list .d-flex {
  display: flex;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .amount_list .d-flex .border_sp {
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid #eee;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .amount_list .d-flex .border_sp .tit {
  margin-right: 5px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .amount_list .price_wr {
  margin-top: 5px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .amount_list .price_wr .tit {
  margin-right: 5px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .amount_list .price_wr .price {
  margin-left: 5px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .amount_list .mt-4 {
  margin-top: 15px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .amount_list .mt-4 .border_sp {
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid #eee;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li .content_box .item_txt .amount_list .mt-4 .border_sp .tit {
  margin-right: 5px;
}
.mediviewer-section .mediviewer-wrap .h_list_wrap #btn_more1,
.mediviewer-section .mediviewer-wrap .h_list_wrap #btn_more2 {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #ddd;
  width: 270px;
  height: 50px;
  margin: 0 auto;
  margin-top: 15px;
}

/* ---------------mediviewer-section START--------------- */
/* ---------------community-section START--------------- */
.community-section.active .community-wrap .text-box .slider-btn-box {
  opacity: 1;
}
.community-section.active .community-wrap .community-slider {
  opacity: 1;
}
.community-section .community-wrap .text-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.community-section .community-wrap .text-box .slider-btn-box {
  display: flex;
  gap: 25px;
  opacity: 0;
  transition: opacity 1s;
}
.community-section .community-wrap .text-box .slider-btn-box .btn-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  transition: background-color 0.3s;
}
.community-section .community-wrap .text-box .slider-btn-box .btn-slider img {
  display: block;
  width: 17%;
  height: auto;
}
.community-section .community-wrap .community-slider {
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}
.community-section .community-wrap .community-slider .slider-wrapper .slider-box {
  width: calc((100% - 60px) / 4);
  aspect-ratio: 1.35/1;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 20px;
  box-sizing: border-box;
  border: 1px solid #f7f7f7;
}
.community-section .community-wrap .community-slider .slider-wrapper .slider-box.slider-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(28, 28, 28, 0.5);
}
.community-section .community-wrap .community-slider .slider-wrapper .slider-box a {
  display: block;
  height: 100%;
}
.community-section .community-wrap .community-slider .slider-wrapper .slider-box a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: transform 0.3s;
  transition-timing-function: linear;
}

/* ---------------community-section END--------------- */
/* ---------------media screen START--------------- */
@media screen and (min-width: 991.1px) {
  /* ---------------main-visual-section START--------------- */
  .main-visual-section .main-visual-wrap .text-box .btn-about:hover {
    background-color: #fff;
    color: #104eb6;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .btn-seminar:hover {
    background-color: #4facfe;
  }
  /* ---------------main-visual-section END--------------- */
  /* ---------------package-section START--------------- */
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .btn-cousult:hover {
    background-color: #fff;
    color: #104eb6;
  }
  /* ---------------package-section END--------------- */
  /* ---------------counsel-section START--------------- */
  .counsel-section .counsel-wrap .counsel-list .list-item a:hover .list-inner > img {
    transform: translate(-50%, -50%) scale(1.05);
  }
  /* ---------------counsel-section END--------------- */
  /* ---------------guide-section START--------------- */
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a:hover .img-box img {
    transform: scale(1.05);
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a:hover .text-box .subject {
    color: #104eb6;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a:hover .text-box .subject span::before {
    width: 100%;
  }
  .guide-section .guide-wrap .guide-inner .text-box .guide-tel a:hover {
    color: #04378f;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a:hover {
    background-color: #f2f7ff;
    border-color: #104eb6;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a:hover .guide-tit {
    color: #104eb6;
  }
  /* ---------------guide-section END--------------- */
  /* ---------------community-section START--------------- */
  .community-section .community-wrap .text-box .slider-btn-box .btn-slider:hover {
    background-color: #f2f7ff;
  }
  .community-section .community-wrap .community-slider .slider-wrapper .slider-box a:hover img {
    transform: scale(1.05);
  }
  /* ---------------community-section END--------------- */
}
@media screen and (max-width: 1350px) {
  /* ---------------main-visual-section START--------------- */
  .main-visual-section .main-visual-wrap {
    height: 720px;
    border-radius: 27px;
  }
  .main-visual-section .main-visual-wrap .text-box .btn-about {
    width: 190px;
    height: 41px;
    margin-top: 32px;
  }
  .main-visual-section .main-visual-wrap .seminar-box {
    right: 72px;
    bottom: 72px;
    border-radius: 18px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner {
    width: 300px;
    height: 225px;
    border-radius: 18px;
    padding: 27px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-text {
    width: calc(100% - 54px);
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-text .seminar-tit {
    margin-top: 13.5px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .btn-seminar {
    right: 27px;
    bottom: 27px;
    width: 54px;
    height: 54px;
  }
  /* ---------------main-visual-section END--------------- */
  /* ---------------logo-section START--------------- */
  .logo-section .logo-wrap .logo-slider .slider-box {
    margin: 0 18px;
  }
  .logo-section .logo-wrap .logo-slider .slider-box img {
    height: 32px;
  }
  /* ---------------logo-section END--------------- */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .img-box {
    border-radius: 27px;
  }
  .about-section .about-wrap .text-box {
    padding: 60px 0 60px 60px;
  }
  /* ---------------about-section END--------------- */
  /* ---------------package-section START--------------- */
  .package-section .package-wrap .package-list {
    gap: 22.5px;
  }
  .package-section .package-wrap .package-list .list-item {
    width: calc((100% - 45px) / 3);
  }
  .package-section .package-wrap .package-list .list-item .list-inner {
    gap: 18px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .step-tit {
    height: 77px;
    border-radius: 27px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box {
    border-radius: 27px;
    padding: 45px 54px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list {
    margin-top: 32px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li {
    gap: 9px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li:not(:nth-of-type(1)) {
    margin-top: 13.5px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .icon {
    width: 16px;
    padding-top: 4px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .package-text {
    width: calc(100% - 16px - 9px);
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .btn-cousult {
    height: 41px;
    margin-top: 32px;
  }
  /* ---------------package-section END--------------- */
  /* ---------------counsel-section START--------------- */
  .counsel-section .counsel-wrap .counsel-list {
    gap: 18px;
  }
  .counsel-section .counsel-wrap .counsel-list .list-item {
    width: calc((100% - 54px) / 4);
  }
  .counsel-section .counsel-wrap .counsel-list .list-item a .list-inner {
    border-radius: 27px;
    padding: 36px;
  }
  .counsel-section .counsel-wrap .counsel-list .list-item a .list-inner .counsel-info .counsel-name {
    margin-top: 9px;
  }
  /* ---------------counsel-section END--------------- */
  /* ---------------guide-section START--------------- */
  .guide-section .guide-wrap {
    gap: 45px;
  }
  .guide-section .guide-wrap .seminar-inner {
    width: calc(60% - 45px);
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item {
    padding: 41px 0;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .img-box {
    border-radius: 18px;
    width: 340px;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box {
    padding: 0 45px;
    width: calc(100% - 340px);
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box .subject + .info {
    margin-top: 13.5px;
  }
  .guide-section .guide-wrap .guide-inner .text-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
  }
  .guide-section .guide-wrap .guide-inner .text-box .guide-tel {
    padding-bottom: unset;
    margin-top: 15px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list {
    gap: 22.5px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li {
    width: calc((100% - 22.5px) / 2);
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a {
    padding: 32px;
    border-radius: 27px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a .icon {
    height: 45px;
  }
  /* ---------------guide-section END--------------- */
  /* ---------------mediviewer-section START--------------- */
  /* ---------------mediviewer-section START--------------- */
  /* ---------------community-section START--------------- */
  .community-section .community-wrap .text-box .slider-btn-box {
    gap: 22.5px;
  }
  .community-section .community-wrap .text-box .slider-btn-box .btn-slider {
    width: 63px;
    height: 63px;
  }
  .community-section .community-wrap .community-slider .slider-wrapper .slider-box {
    width: calc((100% - 54px) / 4);
    border-radius: 18px;
    margin-right: 18px;
  }
  /* ---------------community-section END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------main-visual-section START--------------- */
  .main-visual-section .main-visual-wrap {
    height: 640px;
    border-radius: 24px;
  }
  .main-visual-section .main-visual-wrap .text-box .btn-about {
    width: 170px;
    height: 37px;
    margin-top: 29px;
  }
  .main-visual-section .main-visual-wrap .seminar-box {
    right: 64px;
    bottom: 64px;
    border-radius: 16px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner {
    width: 270px;
    height: 200px;
    border-radius: 16px;
    padding: 24px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-text {
    width: calc(100% - 48px);
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-text .seminar-tit {
    margin-top: 12px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .btn-seminar {
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
  }
  /* ---------------main-visual-section END--------------- */
  /* ---------------logo-section START--------------- */
  .logo-section .logo-wrap .logo-slider .slider-box {
    margin: 0 16px;
  }
  .logo-section .logo-wrap .logo-slider .slider-box img {
    height: 29px;
  }
  /* ---------------logo-section END--------------- */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .img-box {
    border-radius: 24px;
  }
  .about-section .about-wrap .text-box {
    padding: 50px 0 50px 50px;
  }
  /* ---------------about-section END--------------- */
  /* ---------------package-section START--------------- */
  .package-section .package-wrap .package-list {
    gap: 20px;
  }
  .package-section .package-wrap .package-list .list-item {
    width: calc((100% - 40px) / 3);
  }
  .package-section .package-wrap .package-list .list-item .list-inner {
    gap: 16px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .step-tit {
    height: 69px;
    border-radius: 24px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box {
    border-radius: 24px;
    padding: 40px 48px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list {
    margin-top: 29px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li {
    gap: 8px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li:not(:nth-of-type(1)) {
    margin-top: 12px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .icon {
    width: 15px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .package-text {
    width: calc(100% - 15px - 8px);
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .btn-cousult {
    height: 37px;
    margin-top: 29px;
  }
  /* ---------------package-section END--------------- */
  /* ---------------counsel-section START--------------- */
  .counsel-section .counsel-wrap .counsel-list {
    gap: 16px;
  }
  .counsel-section .counsel-wrap .counsel-list .list-item {
    width: calc((100% - 48px) / 4);
  }
  .counsel-section .counsel-wrap .counsel-list .list-item a .list-inner {
    border-radius: 24px;
    padding: 32px;
  }
  .counsel-section .counsel-wrap .counsel-list .list-item a .list-inner .counsel-info .counsel-name {
    margin-top: 8px;
  }
  /* ---------------counsel-section END--------------- */
  /* ---------------guide-section START--------------- */
  .guide-section .guide-wrap {
    gap: 40px;
  }
  .guide-section .guide-wrap .seminar-inner {
    width: calc(60% - 40px);
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item {
    padding: 37px 0;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .img-box {
    border-radius: 16px;
    width: 300px;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box {
    padding: 0 40px;
    width: calc(100% - 300px);
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box .subject + .info {
    margin-top: 12px;
  }
  .guide-section .guide-wrap .guide-inner .text-box .guide-tel {
    margin-top: 13.5px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list {
    gap: 20px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li {
    width: calc((100% - 20px) / 2);
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a {
    padding: 29px;
    border-radius: 24px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a .icon {
    height: 40px;
  }
  /* ---------------guide-section END--------------- */
  /* ---------------mediviewer-section START--------------- */
  /* ---------------mediviewer-section START--------------- */
  /* ---------------community-section START--------------- */
  .community-section .community-wrap .text-box .slider-btn-box {
    gap: 20px;
  }
  .community-section .community-wrap .text-box .slider-btn-box .btn-slider {
    width: 56px;
    height: 56px;
  }
  .community-section .community-wrap .community-slider .slider-wrapper .slider-box {
    width: calc((100% - 48px) / 4);
    border-radius: 16px;
    margin-right: 16px;
  }
  /* ---------------community-section END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------main-visual-section START--------------- */
  .main-visual-section .main-visual-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(var(--full-vh, 100vh) * 1 - 80px);
  }
  .main-visual-section .main-visual-wrap .text-box {
    height: auto;
    align-items: center;
    text-align: center;
  }
  .main-visual-section .main-visual-wrap .text-box .btn-about:active {
    background-color: #fff;
    color: #104eb6;
  }
  .main-visual-section .main-visual-wrap .seminar-box {
    position: unset;
    right: unset;
    bottom: unset;
    margin-top: 58px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .btn-seminar:active {
    background-color: #4facfe;
  }
  /* ---------------main-visual-section END--------------- */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap {
    flex-direction: column;
  }
  .about-section .about-wrap .img-box,
  .about-section .about-wrap .text-box {
    width: 100%;
    max-width: 500px;
  }
  .about-section .about-wrap .text-box {
    padding: 50px 0 0 0;
    text-align: center;
  }
  /* ---------------about-section END--------------- */
  /* ---------------package-section START--------------- */
  .package-section .package-wrap .package-list {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .package-section .package-wrap .package-list .list-item {
    width: 100%;
    max-width: 500px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .btn-cousult:active {
    background-color: #fff;
    color: #104eb6;
  }
  /* ---------------package-section END--------------- */
  /* ---------------counsel-section START--------------- */
  .counsel-section .counsel-wrap .counsel-list .list-item {
    width: calc((100% - 32px) / 3);
  }
  .counsel-section .counsel-wrap .counsel-list .list-item a:active .list-inner > img {
    transform: translate(-50%, -50%) scale(1.05);
  }
  /* ---------------counsel-section END--------------- */
  /* ---------------guide-section START--------------- */
  .guide-section .guide-wrap {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .guide-section .guide-wrap .seminar-inner,
  .guide-section .guide-wrap .guide-inner {
    width: 100%;
    max-width: 600px;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a:active .img-box img {
    transform: scale(1.05);
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a:active .text-box .subject {
    color: #104eb6;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a:active .text-box .subject span::before {
    width: 100%;
  }
  .guide-section .guide-wrap .guide-inner .text-box .guide-tel a:active {
    color: #04378f;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a:active {
    background-color: #f2f7ff;
    border-color: #104eb6;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a:active .guide-tit {
    color: #104eb6;
  }
  /* ---------------guide-section END--------------- */
  /* ---------------mediviewer-section START--------------- */
  .mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li {
    width: calc((100% - 30px) / 3);
  }
  /* ---------------mediviewer-section START--------------- */
  /* ---------------community-section START--------------- */
  .community-section .community-wrap .text-box .slider-btn-box .btn-slider:active {
    background-color: #f2f7ff;
  }
  .community-section .community-wrap .community-slider .slider-wrapper .slider-box {
    width: calc((100% - 32px) / 3);
  }
  .community-section .community-wrap .community-slider .slider-wrapper .slider-box a:active img {
    transform: scale(1.05);
  }
  /* ---------------community-section END--------------- */
}
@media screen and (max-width: 850px) {
  /* ---------------counsel-section START--------------- */
  .counsel-section .counsel-wrap .counsel-list .list-item {
    width: calc((100% - 16px) / 2);
  }
  /* ---------------counsel-section END--------------- */
  /* ---------------mediviewer-section START--------------- */
  .mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li {
    width: calc((100% - 15px) / 2);
  }
  .mediviewer-section .mediviewer-wrap .h_list_wrap #business_list .item_list > li {
    width: 100%;
  }
  /* ---------------mediviewer-section START--------------- */
}
@media screen and (max-width: 600px) {
  /* ---------------main-visual-section START--------------- */
  .main-visual-section .main-visual-wrap {
    border-radius: 21px;
  }
  .main-visual-section .main-visual-wrap .text-box .btn-about {
    width: 150px;
    height: 33px;
    margin-top: 26px;
  }
  .main-visual-section .main-visual-wrap .seminar-box {
    border-radius: 14px;
    padding: 4px;
    margin-top: 52px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner {
    width: 240px;
    height: 175px;
    border-radius: 14px;
    padding: 21px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-text {
    width: calc(100% - 42px);
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-text .seminar-tit {
    margin-top: 10.5px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .btn-seminar {
    right: 21px;
    bottom: 21px;
    width: 42px;
    height: 42px;
  }
  /* ---------------main-visual-section END--------------- */
  /* ---------------logo-section START--------------- */
  .logo-section .logo-wrap .logo-slider .slider-box {
    margin: 0 14px;
  }
  .logo-section .logo-wrap .logo-slider .slider-box img {
    height: 26px;
  }
  /* ---------------logo-section END--------------- */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .img-box {
    border-radius: 21px;
  }
  .about-section .about-wrap .text-box {
    padding: 40px 0 0 0;
  }
  /* ---------------about-section END--------------- */
  /* ---------------package-section START--------------- */
  .package-section .package-wrap .package-list {
    gap: 40px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner {
    gap: 14px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .dot {
    width: 6px;
    height: 6px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .step-tit {
    height: 61px;
    border-radius: 21px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box {
    border-radius: 21px;
    padding: 35px 42px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list {
    margin-top: 26px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li {
    gap: 7px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li:not(:nth-of-type(1)) {
    margin-top: 10.5px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .icon {
    width: 14px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .package-text {
    width: calc(100% - 14px - 7px);
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .btn-cousult {
    height: 33px;
    margin-top: 26px;
  }
  /* ---------------package-section END--------------- */
  /* ---------------counsel-section START--------------- */
  .counsel-section .counsel-wrap .counsel-list {
    gap: 14px;
  }
  .counsel-section .counsel-wrap .counsel-list .list-item {
    width: calc((100% - 14px) / 2);
  }
  .counsel-section .counsel-wrap .counsel-list .list-item a .list-inner {
    border-radius: 21px;
    padding: 28px;
  }
  .counsel-section .counsel-wrap .counsel-list .list-item a .list-inner .counsel-info .counsel-name {
    margin-top: 7px;
  }
  /* ---------------counsel-section END--------------- */
  /* ---------------guide-section START--------------- */
  .guide-section .guide-wrap {
    gap: 40px;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item {
    padding: 33px 0;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a {
    flex-wrap: wrap;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .img-box {
    border-radius: 14px;
    width: 100%;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box {
    padding: 20px 20px 0 20px;
    width: 100%;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box .subject + .info {
    margin-top: 10.5px;
  }
  .guide-section .guide-wrap .guide-inner .text-box .guide-tel {
    margin-top: 12px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list {
    gap: 17.5px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li {
    width: calc((100% - 17.5px) / 2);
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a {
    padding: 26px;
    border-radius: 21px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a .icon {
    height: 35px;
  }
  /* ---------------guide-section END--------------- */
  /* ---------------mediviewer-section START--------------- */
  .mediviewer-section .mediviewer-wrap .h_list_wrap #first_list .item_list > li {
    width: 100%;
  }
  /* ---------------mediviewer-section START--------------- */
  /* ---------------community-section START--------------- */
  .community-section .community-wrap .text-box {
    flex-direction: column;
    justify-content: unset;
    align-items: flex-start;
    gap: 40px;
  }
  .community-section .community-wrap .text-box .slider-btn-box {
    gap: 17.5px;
  }
  .community-section .community-wrap .text-box .slider-btn-box .btn-slider {
    width: 49px;
    height: 49px;
  }
  .community-section .community-wrap .community-slider .slider-wrapper .slider-box {
    width: calc((100% - 14px) / 2);
    border-radius: 14px;
    margin-right: 14px;
  }
  /* ---------------community-section END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------main-visual-section START--------------- */
  .main-visual-section .main-visual-wrap {
    border-radius: 18px;
  }
  .main-visual-section .main-visual-wrap .text-box .btn-about {
    width: 130px;
    height: 29px;
    margin-top: 23px;
  }
  .main-visual-section .main-visual-wrap .seminar-box {
    border-radius: 12px;
    width: 90%;
    margin: 0 auto;
    margin-top: 46px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    padding: 18px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-text {
    width: calc(100% - 36px);
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .seminar-text .seminar-tit {
    margin-top: 9px;
  }
  .main-visual-section .main-visual-wrap .seminar-box .seminar-inner .btn-seminar {
    right: 18px;
    bottom: 18px;
    width: 36px;
    height: 36px;
  }
  /* ---------------main-visual-section END--------------- */
  /* ---------------logo-section START--------------- */
  .logo-section .logo-wrap .logo-slider .slider-box {
    margin: 0 12px;
  }
  .logo-section .logo-wrap .logo-slider .slider-box img {
    height: 23px;
  }
  /* ---------------logo-section END--------------- */
  /* ---------------about-section START--------------- */
  .about-section .about-wrap .img-box {
    border-radius: 18px;
  }
  .about-section .about-wrap .text-box {
    padding: 30px 0 0 0;
  }
  /* ---------------about-section END--------------- */
  /* ---------------package-section START--------------- */
  .package-section .package-wrap .package-list {
    gap: 30px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner {
    gap: 12px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .dot {
    width: 5px;
    height: 5px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .step-tit {
    height: 53px;
    border-radius: 18px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box {
    border-radius: 18px;
    padding: 30px 36px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list {
    margin-top: 23px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li {
    gap: 6px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li:not(:nth-of-type(1)) {
    margin-top: 9px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .icon {
    width: 13px;
    padding-top: 3px;
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .package-text-list li .package-text {
    width: calc(100% - 13px - 6px);
  }
  .package-section .package-wrap .package-list .list-item .list-inner .package-box .btn-cousult {
    height: 29px;
    margin-top: 23px;
  }
  /* ---------------package-section END--------------- */
  /* ---------------counsel-section START--------------- */
  .counsel-section .counsel-wrap .counsel-list {
    gap: 12px;
  }
  .counsel-section .counsel-wrap .counsel-list .list-item {
    width: 100%;
  }
  .counsel-section .counsel-wrap .counsel-list .list-item a .list-inner {
    border-radius: 18px;
    padding: 24px;
  }
  .counsel-section .counsel-wrap .counsel-list .list-item a .list-inner .counsel-info .counsel-name {
    margin-top: 6px;
  }
  /* ---------------counsel-section END--------------- */
  /* ---------------guide-section START--------------- */
  .guide-section .guide-wrap {
    gap: 30px;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item {
    padding: 29px 0;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .img-box {
    border-radius: 12px;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box {
    padding: 18px 18px 0 18px;
  }
  .guide-section .guide-wrap .seminar-inner .seminar-board-list .list-item a .text-box .subject + .info {
    margin-top: 9px;
  }
  .guide-section .guide-wrap .guide-inner .text-box .guide-tel {
    margin-top: 10.5px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list {
    gap: 15px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li {
    width: calc((100% - 15px) / 2);
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a {
    padding: 23px;
    border-radius: 18px;
  }
  .guide-section .guide-wrap .guide-inner .guide-list li a .icon {
    height: 30px;
  }
  /* ---------------guide-section END--------------- */
  /* ---------------community-section START--------------- */
  .community-section .community-wrap .text-box {
    gap: 30px;
  }
  .community-section .community-wrap .text-box .slider-btn-box {
    gap: 15px;
  }
  .community-section .community-wrap .text-box .slider-btn-box .btn-slider {
    width: 42px;
    height: 42px;
  }
  .community-section .community-wrap .community-slider .slider-wrapper .slider-box {
    width: calc((100% - 12px) / 2);
    border-radius: 12px;
    margin-right: 12px;
  }
  /* ---------------community-section END--------------- */
}
/* ---------------media screen END--------------- */