/* PC */
@media (max-width: 1200px) {

}
/* タブレット大 */
@media (max-width: 992px) {

}
/* タブレット小 */
@media (max-width: 768px) {
  
}
/* スマホ */
@media (max-width: 576px) {

}


/* ヘッダー */
header {
  background-color: #fff;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px #e8e8e8;
}
header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 400;
}
header.bg {
  background-color: transparent;
}
.header-container {
  width: 1300px;
  margin: auto;
  position: relative;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo-frame {
  width: 110px;
  display: inline-block;
  position: relative;
  z-index: 301;
}
.header-logo {
  width: 100%;
  transition: .3s;
  vertical-align: baseline;
}
.header-logo:hover {
  opacity: .7;
}
.header-lists {
  list-style: none;
  display: flex;
  align-items: center;
}
.header-list {
  margin-left: 30px;
  position: relative;
}
.header-list.company:hover .header-list_company {
  bottom: -120px;
  opacity: 1;
}
.header-list_company {
  width: 200px;
  border: 1px solid #DBDBDB;
  background-color: #fff;
  box-shadow: 0 0 5px #e8e8e8;
  position: absolute;
  bottom: 90px;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: .3s;
}
.header-list_company_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: var(--text);
  padding: 12px 0;
  font-weight: 600;
  transition: .3s;
}
.header-list_company_link:hover {
  opacity: .7;
}
.header-list_company_link::after {
  content: "→";
  width: auto;
  height: auto;
  font-size: 12px;
}
.header-list_company_divider {
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
}
.header-list:nth-child(1) {
  margin-left: 0;
}
.header-link {
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}
.header-link:hover {
  opacity: .7;
}
.header-link.download {
  display: inline-block;
  text-align: center;
  color: var(--primary);
  padding: 8px 24px;
  border-radius: 50px;
  border: 2px solid #DBDBDB;
}
.header-link.contact {
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: var(--primary);
  padding: 8px 24px;
  border-radius: 50px;
  /* border: 2px solid #DBDBDB; */
}


/* 
hamburger(ハンバーガーアイコン)
=================================== */
.header-wrapper {
  position: relative;
}
.hamburger {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 300;
}
.hamburger__line {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.5s;
}
.hamburger__line--1 {
  top: 4px;
}
.hamburger__line--2 {
  top: 0px;
  bottom: 0;
  margin: auto;
}
.hamburger__line--3 {
  bottom: 4px;
  width: 15px;
  right: 0;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}
.open .hamburger__line--2 {
  opacity: 0;
}
.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
  width: 30px;
}

/* 
sp-nav(ナビ)
=================================== */
.header-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 100%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.header-nav-lists {
  padding: 80px 0;
  margin: auto;
  width: 80%;
  list-style: none;
}
.header-nav-list {
  border-bottom: 1px solid var(--primary);
}
.header-nav-link {
  color: var(--primary);
  display: inline-block;
  font-size: 14px;
  padding: 20px 12px;
  font-weight: 600;
}
.header-nav-list:last-of-type {
  margin-bottom: 60px;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .header-nav {
  right: 0;
}

.header-nav-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1200px) {
  .header-container {
    width: 992px;
  }
}
@media (max-width: 992px) {
  .header-container {
    width: 90%;
  }
  header {
    height: 55px;
  }
  .header-logo-frame {
    width: 80px;
  }
  .header-logo {
    vertical-align: bottom;
  }
  header.bg {
    background-color: #fff;
  }
}
@media (max-width: 767px) {

}
@media (max-width: 576px) {

}
/* ヘッダー */





/* ============================
________FV_______
============================ */
.p_fv {
  height: calc(100vh - 66px);
  background-image: url('../image/fv/img.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.p_fv_content {
  color: #fff;
  text-align: center;
  padding-top: 120px;
}
.p_fv_content_title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 32px;
}
.p_fv_content_desc {
  margin-bottom: 40px;
}
.p_fv_content_btn_wrap {
  display: flex;
  gap: 24px;
  justify-content: center;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  .p_fv {
    height: 720px;
  }
  .p_fv_content_title {
    font-size: 22px;
  }
  .p_fv_content_desc {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .p_fv {
    height: 600px;
    background-image: url('../image/fv/img-sp.jpg');
  }
  .p_fv_content_btn_wrap {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
/* ============================
________FV_______
============================ */


/* ============================
________CAROUSEL_______
============================ */
.p_logo_carousel_sec {
  padding: 20px 0;
  margin-bottom: 80px;
}
.p_logo_carousel {
  overflow: hidden;
  width: 100%;
  background: #fff;
  padding: 10px 0;
}
.p_logo_carousel_track {
  display: flex;
  width: fit-content;
}
.p_logo_carousel_track.normal {
  animation: scroll 40s linear infinite;
}
.p_logo_carousel_track.reverse {
  animation: reverse_scroll 40s linear infinite;
}
.p_logo_carousel img {
  /* height: 50px; */
  max-width: 150px;
  object-fit: contain;
  margin: 0 30px;
  flex-shrink: 0;
}
/* アニメーション */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes reverse_scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  
}
@media (max-width: 576px) {
  .p_logo_carousel img {
    max-width: 110px;
    margin: 0 10px;
  }
  .p_logo_carousel_sec {
    margin-bottom: 40px;
  }
}
/* ============================
________CAROUSEL_______
============================ */



/* ============================
________QUESTION_______
============================ */
.p_question {
  z-index: 100;
  position: relative;
  padding-bottom: 90px;
}
.p_question_wrap {
  display: flex;
}
.p_question_head {
  width: calc(100% - 600px);
}
.p_question_head_title {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}
.p_question_head_border {
  width: 30px;
  height: 2px;
  background-color: var(--primary);
  margin-bottom: 12px;
}
.p_question_head_desc {
  font-size: 27px;
  font-weight: 600;
}
.p_question_body {
  width: 600px;
}
.p_question_body_item {
  display: flex;
  gap: 13px;
  padding: 32px 0;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}
.p_question_body_item:last-of-type {
  border-bottom: none;
}
.p_question_body_item_icon {
  width: 18px;
}
.p_question_body_item_desc {

}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  .p_question_wrap {
    flex-direction: column;
  }
  .p_question_head {
    width: 100%;
    text-align: center;
  }
  .p_question_head_border {
    margin: 12px auto;
  }
  .p_question_body {
    width: 100%;
  }
  .p_question_head_desc {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  
}
@media (max-width: 576px) {
  .p_question_head_desc {
    font-size: 21px;
  }
  .p_question_body_item {
    align-items: flex-start;
  }
  .p_question_body_item_desc {
    font-size: 14px;
  }
}
/* ============================
________QUESTION_______
============================ */



/* ============================
________FEATURE_______
============================ */
.p_feature {
  background-color: var(--bg-blue);
}
.p_feature_wrap {
  display: flex;
  flex-direction: column;
  gap: 84px;
  position: relative;
  z-index: 100;
  margin-bottom: 200px;
}
.p_feature_item {
  width: 760px;
  position: relative;
  padding: 50px 52px 24px;
  background-color: #fff;
  border-radius: 5px;
}
.p_feature_item:nth-child(odd) {
  margin-left: auto;
}
.p_feature_item_img {
  position: absolute;
  width: 370px;
  bottom: -50px;
  right: -340px;
  left: auto;
}
.p_feature_item:nth-child(odd) .p_feature_item_img {
  left: -310px;
  right: auto;
}
.p_feature_item_title_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.p_feature_item_title_no {
  width: 54px;
  height: 54px;
  border: 1px solid var(--primary);
  border-radius: 100px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p_feature_item_title_txt {
  font-size: 23px;
  font-weight: 600;
  color: var(--primary);
}
.p_feature_item_desc {
  margin-bottom: 12px;
}
.p_feature_item_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  font-size: 15px;
  font-weight: 600;
  width: 140px;
  margin-left: auto;
}
.p_feature_item_btn::after {
  content: "→";
  width: auto;
  height: auto;
}

@media (max-width: 1200px) {
  .p_feature_item_img {
    width: 260px;
    bottom: 0px;
  }
  .p_feature_item_img {
    right: -210px;
  }
  .p_feature_item:nth-child(odd) .p_feature_item_img {
    left: -210px;
    right: auto;
  }
}
@media (max-width: 992px) {
  .p_feature_wrap {
    gap: 184px;
  }
  .p_feature_item {
    padding: 30px 52px 84px;
  }
  .p_feature_item_title_wrap {
    flex-direction: column;
    align-items: center;
  }
  .p_feature_item_btn {
    margin: auto;
  }
  .p_feature_item_img {
    left: 0;
    right: 0;
    bottom: -130px;
    margin: auto;
  }
  .p_feature_item:nth-child(odd) .p_feature_item_img {
    left: 0;
    right: 0;
    bottom: -130px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .p_feature_item {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .p_feature_item {
    padding: 20px 16px 84px;
  }
  .p_feature_item_title_txt {
    font-size: 18px;
  }
  .p_feature_item_desc {
    font-size: 14px;
  }
  .p_feature_item_img {
    width: 290px;
  }
  .p_feature_item:nth-child(odd) .p_feature_item_img {
    bottom: -160px;
  }
  .p_feature_item_img {
    bottom: -160px;
  }
  .p_feature_wrap {
    margin-bottom: 300px;
  }
}
/* ============================
________FEATURE_______
============================ */



/* ============================
________CASE_______
============================ */
.p_case {

}
/* ============================
________CASE_______
============================ */



/* ============================
________SUPPORT______
============================ */
.p_support {
  background-color: var(--bg-blue);
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  
}
@media (max-width: 576px) {
  
}
/* ============================
________SUPPORT______
============================ */



/* ============================
________SEMINAR_______
============================ */
.p_seminar {

}
/* ============================
________SEMINAR_______
============================ */



/* ============================
________CASE_______
============================ */
.p_case_btn_wrap {
  margin: 80px 0;
  text-align: center;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  
}
@media (max-width: 576px) {
  
}
/* ============================
________CASE_______
============================ */



/* ============================
________SUPPORT_______
============================ */
.p_support_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px 26px;
  position: relative;
  z-index: 100;
}
.p_support_item {
  width: calc(100% / 4 - 20px);
  background-color: #fff;
  border-radius: 5px;
  padding: 44px 24px 20px;
  position: relative;
}
.p_support_item_no {
  width: 55px;
  height: 55px;
  border-radius: 100px;
  background-color: var(--primary);
  border: 5px solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  top: -26px;
  left: 0;
  right: 0;
  margin: auto;
}
.p_support_item_img {
  width: 80px;
  margin: 0 auto 16px;
  display: block;
}
.p_support_item_title {
  font-size: 23px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 12px;
}
.p_support_item_desc {
  font-size: 12px;
}
.p_support_item_cat {
  font-size: 12px;
  color: var(--primary);
  background-color: #F7F7F7;
  padding: 6px;
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  .p_support_item {
    width: calc(100% / 3 - 18px);
  }
}
@media (max-width: 767px) {
  .p_support_item {
    width: calc(100% / 2 - 13px);
  }
}
@media (max-width: 576px) {
  .p_support_item {
    width: 75%;
  }
  .p_support_item_title {
    font-size: 16px;
  }
  .p_support_item_title br {
    display: none;
  }
}
/* ============================
________SUPPORT_______
============================ */



/* ============================
________FOOTER_______
============================ */
footer {
  background-color: var(--primary);
  padding: 100px 0 90px;
}
.p_footer_logo {
  display: block;
  width: 155px;
  margin-bottom: 20px;
}
.p_footer_logo img {
  width: 100%;
}


.p_footer_main_wrap {
  display: flex;
  justify-content: space-between;
}
.p_footer_info {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.p_footer_info_detail {

}
.p_footer_info_detail_company {
  margin-bottom: 32px;
}
.p_footer_info_detail_address {
  font-size: 12px;
}

.p_footer_info_copy {
  display:flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
}
.p_footer_info_copy_txt {
  /* font-size: 10px; */
}
.p_footer_info_copy_privacy {
  text-decoration:underline;
  color:#fff;
}



.p_footer_nav {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
.p_footer_nav_list {
  color: #fff;
  list-style: none;
}
.p_footer_nav_list_item {
  
}
.p_footer_nav_list_item.lg {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.p_footer_nav_list_item.sm {
  font-size: 12px;
  font-weight: 300;
  margin-top: 8px;
}
.p_footer_nav_list_item a {
  color: #fff;
  transition: .3s;
}
.p_footer_nav_list_item a:hover {
  opacity: .7;
}

.p_footer_nav_suv_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p_footer_nav_btn_wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p_footer_nav_btn {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: block;
  width: 160px;
  padding: 4px 0;
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
}
.p_footer_nav_btn:hover {
  opacity: .7;
}
.p_footer_nav_btn::after {
  content: "↗︎";
  width: auto;
  height: auto;
  font-size: 16px;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  .p_footer_main_wrap {
    flex-direction: column;
    gap: 40px;
  }
  .p_footer_info {
    order: 2;
    width: 100%;
  }
  .p_footer_nav {
    order: 1;
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }
  .p_footer_nav_list_item.lg {
    margin-bottom: 14px;
  }
  .p_footer_info {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  footer {
    padding: 60px 0;
  }
  .p_footer_logo {
    width: 110px;
  }
  .p_footer_info_copy {
    flex-direction: column;
    align-items: center;
  }
}
/* ============================
________FOOTER_______
============================ */



/* ============================
________SEMINAR一覧ページ_______
============================ */
.p_seminar_archive_section {

}
.p_seminar_archive_section_title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
}
.p_seminar_archive_section_divider {
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  margin-top: 90px;
  margin-bottom: 90px;
}



.p_seminar_archive_past_wrap {
  display: flex;
  flex-direction: column;
}
.p_seminar_archive_past_item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #DBDBDB;
}
.p_seminar_archive_past_item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.p_seminar_archive_past_item:hover .p_seminar_archive_past_item_img {
  transform: scale(1.05);
}
.p_seminar_archive_past_item_frame {
  width: 300px;
  border-radius: 5px;
  overflow: hidden;
}
.p_seminar_archive_past_item_img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: .3s;
  border-radius: 5px;
}
.p_seminar_archive_past_item_detail {
  width: calc(100% - 350px);
}
.p_seminar_archive_past_item_detail_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333333;
}
.p_seminar_archive_past_item_detail_sub_info {
  display: flex;
  flex-direction: column;
}
.p_seminar_archive_past_item_detail_sub_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.p_seminar_archive_past_item_detail_sub_icon {
  width: 20px;
}
.p_seminar_archive_past_item_detail_sub_txt {
  color: #333333;
}
.p_seminar_archive_past_item_detail_btn {
  display: flex;
  justify-content: space-between;
  width: 150px;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
}
.p_seminar_archive_past_item_detail_btn::after {
  content: "→";
  width: auto;
  height: auto;
  font-size: 16px;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  .p_seminar_archive_past_item {
    flex-direction: column;
    gap: 30px;
  }
  .p_seminar_archive_past_item_frame {
    width: 100%;
  }
  .p_seminar_archive_past_item_detail {
    width: 100%;
  }
  .p_seminar_archive_past_item_detail_sub_info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .p_seminar_archive_past_item_detail_sub_wrap {
    margin-bottom: 0;
  }
  .p_seminar_archive_past_item_detail_title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .p_seminar_archive_past_item_detail_sub_txt {
    font-size: 12px;
  }
}
/* ============================
________SEMINAR一覧ページ_______
============================ */



/* ============================
________お役立ち資料一覧_______
============================ */
.p_ebook_archive_section {

}
.p_ebook_archive_section_title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
}
.p_ebook_archive_section_divider {
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  margin-top: 90px;
  margin-bottom: 120px;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  .p_ebook_archive_section_title {
    font-size: 21px;
  }
  .p_ebook_archive_section_divider {
    margin: 80px 0;
  }
}
@media (max-width: 576px) {
  
}
/* ============================
________お役立ち資料一覧_______
============================ */



/* ============================
________お問い合わせ_______
============================ */
.p_contact_wrap {
  display: flex;
  justify-content: space-between;
}
.p_contact_info {
  width: calc(100% - 580px);
}
.p_contact_title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 32px;
}
.p_contact_desc {
  margin-bottom: 40px;
}
.p_contact_content {
  box-shadow: 0 0 5px #cdcdcd;
  border-radius: 5px;
  padding: 32px 52px;
}
.p_contact_content_title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 28px;
}
.p_contact_content_step_wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p_contact_content_step_item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.p_contact_content_step_item_no {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: var(--bg-blue);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}
.p_contact_content_step_txt {
  font-size: 14px;
  padding-top: 2px;
  width: calc(100% - 34px);
}
.p_contact_content_step_txt span {
  font-size: 12px;
}
.p_contact_form {
  width: 540px;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  .p_contact_wrap {
    flex-direction: column;
    gap: 60px;
  }
  .p_contact_info {
    width: 100%;
  }
  .p_contact_form {
    width: 100%;
  }
}
@media (max-width: 767px) {
  
}
@media (max-width: 576px) {
  .p_contact_title {
    text-align: center;
    font-size: 21px;
    margin-bottom: 28px;
  }
  .p_contact_desc {
    font-size: 14px;
    text-align: center;
    margin-bottom: 40px;
  }
  .p_contact_desc br {
    display: none;
  }
  .p_contact_content {
    padding: 30px;
  }
  .p_contact_content_title {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
  }
}
/* ============================
________お問い合わせ_______
============================ */



/* ============================
________メンバー一覧_______
============================ */
.p_member_archive_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 22px;
}
.p_member_archive_item {
  width: calc(100% / 3 - 15px);
}
.p_member_archive_item_frame {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
/* .p_member_archive_item:hover img {
  transform: scale(1.05);
} */
.p_member_archive_item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 5px;
  transition: .3s;
}
.p_member_archive_item_wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.p_member_archive_item_info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #333333;
}
.p_member_archive_item_info_name {
  font-size: 20px;
  font-weight: 600;
}
.p_member_archive_item_info_position {
  font-size: 14px;
}
.p_member_archive_item_info_description {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 20px;
}
.p_member_archive_item_arrow {
  min-width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  .p_member_archive_wrap {
    gap: 60px 21px;
  }
  .p_member_archive_item {
    width: calc(100% / 3 - 14px);
  }
}
@media (max-width: 767px) {
  .p_member_archive_wrap {
    gap: 60px 20px;
  }
  .p_member_archive_item {
    width: calc(100% / 2 - 10px);
  }
}
@media (max-width: 576px) {
  .p_member_archive_item img {
    height: 240px;
    width: 100%;
    object-fit: contain;
  }
  .p_member_archive_item_info_name {
    font-size: 16px;
  }
  .p_member_archive_item_info_position {
    font-size: 12px;
  }
  .p_member_archive_item_arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .p_member_archive_item {
    width: 80%;
    margin: auto;
  }
}
/* ============================
________メンバー一覧_______
============================ */



/* ============================
________会社概要_______
============================ */
.p_info_sec_wrap {
  display: flex;
  flex-direction: column;
  gap: 180px;
}

.p_info_sec_title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.p_info_sec_subtitle {
  font-size: 14px;
  color: #DBDBDB;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}

.p_info_record {
  display: flex;
  border-bottom: 1px solid #DBDBDB;
  padding: 36px 0;
}
.p_info_record:last-of-type {
  border-bottom: none;
}
.p_info_record_head {
  color: var(--primary);
  width: 125px;
}
.p_info_record_body {

}


.p_info_mv_img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 60px;
}
.p_info_mv_wrap {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.p_info_mv_item {
  text-align: center;
}
.p_info_mv_item_header {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 4px 12px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.p_info_mv_item_title {
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 24px;
}
.p_info_mv_item_desc {
  text-align: left;
  line-height: 2;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  
}
@media (max-width: 576px) {
  .p_info_sec_wrap {
    gap: 80px;
  }
  .p_info_record {
    font-size: 12px;
    padding: 20px 0;
  }
  .p_info_record_head {
    width: 70px;
  }
  .p_info_sec_title {
    font-size: 21px;
    margin-bottom: 12px;
  }
  .p_info_sec_subtitle {
    font-size: 12px;
    margin-bottom: 40px;
  }
  .p_info_mv_img {
    aspect-ratio: 16 / 9;
    height: auto;
  }
  .p_info_mv_item_header {
    font-size: 14px;
  }
  .p_info_mv_item_title {
    font-size: 16px;
  }
  .p_info_mv_item_desc {
    font-size: 12px;
  }
}
/* ============================
________会社概要_______
============================ */



/* ============================
________サンクスページ_______
============================ */
.p_thanks_sec {
  background-color: var(--bg-blue);
  height: 350px;
  padding-top: 66px;
}
.p_thanks_fv_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.p_thanks_fv_title {
  font-size: 27px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}
.p_thanks_fv_title br {
  display: none;
}
.p_thanks_fv_desc {

}
.p_thanks_sec_title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
}
.p_thanks_divider {
  width: 100%;
  height: 1px;
  background-color: #DBDBDB;
  margin-top: 90px;
  margin-bottom: 120px;
}

.p_thanks_cta_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.p_thanks_cta_item {
  display: block;
  width: calc(100% / 3 - 20px);
  box-shadow: 0 0 5px #e8e8e8;
  border-radius: 5px;
  padding: 40px;
  position: relative;
  text-align: center;
  transition: .3s;
}
.p_thanks_cta_item:hover {
  opacity: .7;
}
.p_thanks_cta_item_arrow {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 2px solid #DBDBDB;
  font-weight: 600;
  color: #DBDBDB;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.p_thanks_cta_item_img {
  width: 80px;
  margin-bottom: 12px;
}
.p_thanks_cta_item_title {
  font-size: 23px;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  .p_thanks_cta_item_title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .p_thanks_fv_title {
    font-size: 21px;
    margin-bottom: 16px;
    text-align: center;
  }
  .p_thanks_fv_title br {
    display: block;
  }
  .p_thanks_fv_desc {
    font-size: 14px;
    text-align: center;
  }
  .p_thanks_sec_title {
    font-size: 21px;
    margin-bottom: 40px;
  }

  .p_thanks_cta_wrap {
    flex-direction: column;
    gap: 40px;
  }
  .p_thanks_cta_item {
    width: 100%;
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .p_thanks_sec {
    height: 300px;
  }
}
/* ============================
________サンクスページ_______
============================ */



/* ============================
________メンバー個別ページ_______
============================ */
.p_author_container {
  width: 760px;
  margin: auto;
}
.p_author_name {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 16px;
}
.p_author_position {
  margin-bottom: 32px;
}
.p_author_frame {
  width: 100%;
  height: 420px;
  border-radius: 5px;
  margin-bottom: 60px;
}
.p_author_frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p_author_desc {
  line-height: 2;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  .p_author_container {
    width: 576px;
  }
}
@media (max-width: 576px) {
  .p_author_container {
    width: 100%;
  }
  .p_author_desc {
    font-size: 14px;
  }
  .p_author_frame {
    height: 200px;
    margin-bottom: 30px;
  }
}
/* ============================
________メンバー個別ページ_______
============================ */



/* ============================
________お役立ち資料個別ページ_______
============================ */
.p_ebook_single_wrap {
  display: flex;
  justify-content: space-between;
}
.p_ebook_single_main {
  width: calc(100% - 560px);
}
.p_ebook_single_main_title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 32px;
}
.p_ebook_single_main_desc {
  margin-bottom: 54px;
}
.p_ebook_single_main_frame {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.p_ebook_single_main_img_lg {
  width: 100%;
  border-radius: 5px;
}
.p_ebook_single_main_sub_frame {
  display: flex;
  gap: 20px;
}
.p_ebook_single_main_img_sm {
  width: calc(100% / 2 - 10px);
  border-radius: 5px;
}
.p_ebook_single_main_content {
  padding: 42px 52px;
  box-shadow: 0 0 5px #e8e8e8;
  border-radius: 5px;
}
.p_ebook_single_main_content_title {
  font-weight: 600;
  margin-bottom: 20px;
}
.p_ebook_single_main_content_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p_ebook_single_main_content_point {

}
.p_ebook_single_form {
  width: 530px;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  .p_ebook_single_wrap {
    flex-direction: column;
    gap: 60px;
  }
  .p_ebook_single_main {
    width: 100%;
  }
  .p_ebook_single_form {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .p_ebook_single_main_title {
    font-size: 21px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .p_ebook_single_main_frame {
    gap: 10px;
  }
  .p_ebook_single_main_sub_frame {
    gap: 10px;
  }
  .p_ebook_single_main_img_sm {
    width: calc(100% / 2 - 5px);
  }
  .p_ebook_single_main_content {
    padding: 30px;
  }
  .p_ebook_single_main_content_title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .p_ebook_single_main_content_wrap {
    padding-left: 16px;
    gap: 10px;
  }
  .p_ebook_single_main_content_point {
    font-size: 12px;
  }
}
/* ============================
________お役立ち資料個別ページ_______
============================ */


/* ============================
________個別ページ→支援事例_______
============================ */
.p_single_case_relation {
  /* background-color: var(--bg-blue); */
  padding: 120px 0 90px;
}
.p_single_case_relation_title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
  color: var(--primary);
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  .p_single_case_relation_title {
    font-size: 21px;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  
}
/* ============================
________個別ページ→支援事例_______
============================ */


/* ============================
________セミナー個別ページ_______
============================ */
.p_single_seminar_speaker {
  margin-bottom: 90px;
}
.p_single_seminar_h2 {
  font-size: 23px;
  font-weight: 600;
  color: var(--primary);
  padding: 16px 0;
  border-bottom: 1px solid #DBDBDB;
  margin-bottom: 32px;
}
.p_single_seminar_speaker_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p_single_seminar_speaker_item {
  display: flex;
  justify-content: space-between;
}
.p_single_seminar_speaker_item_img {
  width: 160px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 5px;
}
.p_single_seminar_speaker_item_detail {
  width: calc(100% - 195px);
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}
.p_single_seminar_speaker_item_detail_company {
  font-size: 14px;
  margin-bottom: 14px;
}
.p_single_seminar_speaker_item_detail_name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.p_single_seminar_speaker_item_detail_desc {
  font-size: 16px;
  line-height: 1.6;
}


@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  .p_single_seminar_speaker_item {
    flex-direction: column;
    gap: 20px;
  }
  .p_single_seminar_speaker_item_detail {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .p_single_seminar_speaker_item_detail_desc {
    font-size: 14px;
  }
}
/* ============================
________セミナー個別ページ_______
============================ */


/* ============================
________ブログ個別ページ_______
============================ */
.p_single_blog_author {

}
.p_single_blog_author_title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  margin-bottom: 24px;

}
.p_single_blog_author_content {
  padding: 30px 52px;
  background-color: #F7F7F7;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.p_single_blog_author_content img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
}
.p_single_blog_author_content_info {

}
.p_single_blog_author_content_info_name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.p_single_blog_author_content_info_desc {
  font-size: 14px;
}

.p_single_blog_relation {
  margin-top: 80px;
}
.p_single_blog_relation_title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 45px;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  .p_single_blog_author_content {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .p_single_blog_author_content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* ============================
________ブログ個別ページ_______
============================ */


/* ============================
________目次______
============================ */
.p-widget {

}
.p-widget__headline {
  display: none;
}
.toc_widget_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toc_widget_list li a {
  color: var(--text);
  font-size: 14px;
  display: block;
  padding: 6px 10px;
}

.toc_widget_list li .is-active {
  background-color: #F7F7F7;
  color: var(--primary);
  font-weight: 600;
}
.toc_widget_list li .is-active span {
  background-color: var(--primary);
  color: #fff;
}

.toc_widget_list li a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background-color: var(--bg-blue);
  color: var(--primary);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-right: 4px;
}

@media (max-width: 1200px) {
  
}
@media (max-width: 992px) {
  
}
@media (max-width: 767px) {
  
}
@media (max-width: 576px) {
  
}
/* ============================
________目次_______
============================ */


/* ============================
________メンバー個別ページ_______
============================ */
/* ============================
________メンバー個別ページ_______
============================ */
