@charset "utf-8";
/*************************************************************
CSS information
style info :  TOPページ限定のスタイル
**************************************************************/

a {
  text-decoration: none;
}

/* 
====================
↓メインビジュアル
====================
*/

.main_visual {
  box-sizing: border-box;
  position: relative;
  height: 220px;  
	background: url(../images/mv_bg.webp) no-repeat center;
	background-size: cover;  
}

.main_visual::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 220px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.6) 100%);
  -webkit-linear-background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.6) 100%);
  -ms-linear-background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 0;
}

.main_visual > .main_visual_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 10;
}

.main_visual_inner > .mv_title {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.25;
  color: #F2F2F2;
}

/* 
====================
↓アンカーメニュー
====================
*/

.anchor_menu {
  width: 100%;
  padding: 20px 0;
}

.anchor_menu_container {
  display: flex;
  justify-content: space-around;
  max-width: 1296px;
  margin: 0 auto;
}

.anchor_menu_item {
  width: 100%;
  list-style: none;
  box-sizing: border-box;
  border-left: 1px solid #D8D8D8;
}

.anchor_menu_item > a {
  text-decoration: none;
  outline: none;

  display: grid;
  place-items: center;
  width: 100%;
  height: 40px;

  font-size: 16px;
  color: #012E83;
}

.anchor_menu_item:last-child {
  border-right: 1px solid #D8D8D8;
}


/* 
====================
↓受講インタビュー一覧
====================
*/

.section_interview {
  box-sizing: border-box;
  width: 100%;
  padding: 56px 11.5% 80px;

  background: #F6F9FC;
}

.section_interview .title_board {
  box-sizing: border-box;
  width: 100%;
  padding: 18px 16px;
  background: #012E83;
  margin-top: 80px;

  font-size: 24px;
  /* font-weight: bold; */
  line-height: 1.5;
  text-align: left;
  color: #fff;
}

.section_interview .title_board:first-child {
  margin-top: 0;
}

/*ラジオボタンを非表示*/
.section_interview input[name="tab_issue_item"],
.section_interview input[name="tab_category_item"] {
  display: none;
}

.section_interview .tabs {
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
}

.section_interview .tabs > .tab_menu {
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 0;

  width: 100%;
}

.section_interview .tab_menu::before {
  position: absolute;
  content: '';
  bottom: 0;
  left:0;
  width: 100%;
  height: 1px;
  background:#D8D8D8;
}

.section_interview .tab_item {
  position: relative;
  display: grid;
  place-items: center;
  width: auto;
  padding: 24px 12px;
}

.section_interview .tab_item h3 {
  font-size: 16px;
  line-height: 1.25;
  color: #666;
  text-align: left;
}

.section_interview .tab_menu input:checked + .tab_item::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #012E83 0.46%, #0C59BE 74.77%);
  z-index: 10;
}

.section_interview .tab_menu input:checked + .tab_item h3 {
  color: #012E83;
  font-weight: bold;
}

.section_interview .tab_content {
  width: 100%;
  margin-top: 40px;
}

.section_interview .cardlist {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 16px;

  width: 100%;
}

.section_interview .cardlist a {
  text-decoration: none;
  display: block;
  height: fit-content;
  outline: none;
}

.section_interview .cardlist .card_item {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 338px;

  background: #fff;
  border: 1px solid rgba(216, 216, 216, 0.6);
  border-radius: 4px;

  box-sizing: border-box;
  overflow: hidden;
}

.thumbnail_area {
  position: relative;
  overflow: hidden;
}

.thumbnail_area .service_label {
  box-sizing: border-box;
  position: relative;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  min-height: 45px;
  padding: 0 5%;
  display: grid;
  place-items: center;
  background: #012e83;

  word-break: break-all ;
  font-size: 13px;
  text-align: center;
  /* font-weight: bold; */
  line-height: 1.5;
  color: #fff;
  z-index: 10;
}

.card_item .caption_area {
  padding: 16px 16px 24px;
}

.card_item:hover .thumbnail_img {
  filter: brightness(0.9);
  transform: scale(1.1);
}

.section_interview .cardlist .card_item img {
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
  transition: .3s;
}

.section_interview .cardlist .card_item .company_name {
  margin-bottom: 4px;
  
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #222;
}

.section_interview .cardlist .card_item h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  color: #222;
}

.section_interview .cardlist .card_item p {
  margin-top: 16px;
  
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #222222;
}

.meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
  margin-bottom: 16px;
}

.meta .date {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  color: #666;
}

.meta .tag {
  display: inline-block;
  padding: 5px 12px;

  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.section_interview .button_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 24px;

  width: 100%;
  margin: 0 auto;
  margin-top: 64px;
}

.section_interview .button_wrapper > .button_load {
  box-sizing: border-box;
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 64px;
  padding-right: 20px;
  border-radius: 4px;
  border: 2px solid #0C59BE;
  background: #0C59BE;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  /* font-weight: 600; */
  transition: .3s;
  cursor: pointer;
}

.section_interview .button_wrapper > .button_load::after {
  position: absolute;
  content: "";
  margin: auto;
  top: 46%;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  
  transform: translateY(-50%) rotate(135deg);
  -webkit-transform: translateY(-50%) rotate(135deg);
  -ms-transform: translateY(-50%) rotate(135deg);
}

.section_interview .button_wrapper > .button_close {
  display: grid;
  place-items: center;
  display: none;
  box-sizing: border-box;
  position: relative;
  width: 220px;
  height: 64px;
  padding-right: 20px;
  border-radius: 4px;
  border: 1.5px solid #0C59BE;
  background: #0C59BE;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 61px;
  /* font-weight: 600; */
  transition: .3s;
  cursor: pointer;
}

.section_interview .button_wrapper > .button_close::after {
  position: absolute;
  content: "";
  margin: auto;
  top: 54%;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  
  transform: translateY(-50%) rotate(315deg);
  -webkit-transform: translateY(-50%) rotate(315deg);
  -ms-transform: translateY(-50%) rotate(315deg);
}

.section_interview .button_wrapper > .button_more {
  box-sizing: border-box;
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 64px;
  padding-right: 20px;
  border-radius: 4px;
  border: 1.5px solid #0C59BE;
  background: #fff;
  text-decoration: none;
  text-align: center;
  color: #0C59BE;
  font-size: 16px;
  /* font-weight: 600; */
  transition: .3s;
  cursor: pointer;
}

.section_interview .button_wrapper > .button_more::after {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #0C59BE;
  border-right: 1.5px solid #0C59BE;
  transform: rotate(45deg);
}

/* マウスホバー */
.section_interview .button_wrapper > .button_load:hover {
  filter: brightness(0.9);
}

/* マウスホバー */
.section_interview .button_wrapper > .button_more:hover {
  opacity: 0.7;
}

.name_container{
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.name_container > div{
  line-height: 15px;
}
.name_container > div:nth-child(2){
  margin: 0 50px;
}
.name_containerSp{
  display: none;
}

@media screen and (max-width: 1024px) {
  .name_container{
    display: none;
  }

  .name_containerSp{
    display: block;
  }
  .name_containerSp > div{
    line-height: 12px;
  }
}


@media screen and (max-width: 1024px) {

  /* 
  ====================
  ↓メインビジュアル
  ====================
  */

  .main_visual > .main_visual_inner {
    width: 100%;
    text-align: center;
  }

  .main_visual_inner > .mv_title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.25;
    color: #F2F2F2;
  }

  /* 
  ====================
  ↓アンカーメニュー
  ====================
  */

  .anchor_menu {
    width: 100%;
    padding: 0;
  }

  .anchor_menu_container {
    display: grid;
    grid-template-columns: 1fr;
  
    margin: 0;
  }

  .anchor_menu_item > a {
    list-style: none;
    box-sizing: border-box;
  
    display: grid;
    place-items: center start;
    height: 56px;
    padding: 0 5%;
    border-left: none;
    border-bottom:1px solid rgba(216, 216, 216, 0.5);
  
    text-align: left;
    font-size: 14px;
  }

  .anchor_menu_item {
    position: relative;
    border-left: none;
  }

  .anchor_menu_item:last-child {
    border-right: none;
  }

  .anchor_menu_item::after {
    position: absolute;
    content: "";
    margin: auto;
    top: 0;
    bottom: 4px;
    right: 5%;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid rgba(153, 153, 153, 0.7);
    border-right: 1.5px solid rgba(153, 153, 153, 0.7);
    transform: rotate(135deg);
  }
  
  /* 
  ====================
  ↓受講インタビュー一覧
  ====================
  */

  .section_interview {
    position: relative;
    padding: 40px 5%;
  }

  .section_interview .title_board {
    position: absolute;
    box-sizing: border-box;
    left: 0;
    width: 95%;
    padding: 22.5px 0 22.5px 18px;
    margin-top: 40px;

    font-size: 18px;
    font-weight: normal;
  }

  .section_interview .tabs {
    position: relative;
    width: 100%;
    
    margin: 0 auto;
    padding-top: 96px;
  }

  .section_interview .tabs > .tab_menu {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 95vw;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 10;
  }

  .section_interview .tab_menu::before {
    content: none;
  }

  .section_interview .tab_item {
    white-space: nowrap;
  }

  .section_interview .fill_margin {
    white-space: normal;
    width: 100%;
  }

  .section_interview .tab_item::before {
    position: absolute;
    content: '';
    bottom: 0;
    left:0;
    width: 100%;
    height: 1px;
    background:#D8D8D8;
  }

  .section_interview .fill_margin::before {
    position: absolute;
    content: '';
    bottom: 0;
    left:0;
    width: 100%;
    height: 1px;
    background:#D8D8D8;
    z-index: 0;
  }


  .section_interview .tab_item h3 {
    font-size: 13px;
  }

  .section_interview .tabs > .tab_menu::-webkit-scrollbar {
    display: none;
  }

  .section_interview .tab_item {
    display: block;
    padding: 14px 8px;
  }
  
  .thumbnail_area .service_label {
    min-height: 48px;
  }

  .section_interview .tab_item h3 {
    line-height: 1.25;
  }

  .section_interview .tab_content {
    margin-top: 0px;
    padding-top: 24px;
  }
  
  .section_interview .cardlist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px 0;
  
    width: 100%;
  }

  .section_interview .button_wrapper {
    gap: 0 16px;
    margin-top: 32px;

  }

  .section_interview .button_wrapper > .button_load,
  .section_interview .button_wrapper > .button_close {
    width: 162px;
    height: 56px;
    padding-right: 12px;
    border: 1px solid #0C59BE;
    font-size: 14px;
    line-height: 54px;
    /* font-weight: 600; */
  }

  .section_interview .button_wrapper > .button_load::after,
  .section_interview .button_wrapper > .button_close::after {
    right: 16px;
  }
  .sp_ex_mt40 {
    margin-top: 40px !important;
  }

}