@charset "utf-8";

.com-ttl-01.v2 {
  margin: 20px 0 30px;
}

.tab-container {
  margin: 30px auto 80px;
}
.tab-nav {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  cursor: pointer;
}
.tab-nav li {
  position: relative;
  display: table-cell;
  border: 1px solid transparent;
  line-height: 1.4;
  padding: .8em 1.5em;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #c6c6c6;
  z-index: 0;
  transition: all .3s ease;
}
.tab-nav li.active,
.tab-nav li:hover {
  background: linear-gradient(65deg, #111 0, #555 100%);
}
.tab-nav li.active::after,
.tab-nav li:hover::after {
  margin-top: 0;
  opacity: 1;
}
.tab-nav li::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: transparent;
  border-top-color: #303030;
  transform: translateX(-50%);
  z-index: -1;
  transition: all .3s ease;
  margin-top: -5px;
  opacity: 0;
}
.tab-content {
  margin-top: 30px;
}
.tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.n20_info.v2 {
  padding: 0;
}

.sec-message {
  margin-bottom: 150px;
}
.sec-message-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
.sec-message-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 50px;
}
.sec-message-grid__item {
  padding: 14px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.3);
}
.sec-message-grid__item-top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.sec-message-grid__item-top span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  line-height: 1.2;
  background: #E84B7A;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
}
.sec-message-grid__item-top p {
  font-weight: bold;
}
.sec-message-grid__item-text {
  font-size: 14px;
}

.sec-success {
  margin-bottom: 100px;
}
.sec-success .voice_box {
  display: block;
  width: 100%;
  max-width: 100%;
  padding-bottom: 0;
}
.sec-success .voice_box .voice_user_box {
  width: 100%;
  padding-bottom: 0;
}

.sec-success {
  & .slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background: linear-gradient(65deg, #111 0, #555 100%);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
  }
  & .slick-prev::before, .slick-next::before {
    color: #fff;
    font-size: 20px;
    font-family: initial;
    opacity: 1;
  }
  & .slick-prev { left: -20px; }
  & .slick-next { right: -20px; }
}

/* RESPONSIVE */
@media screen and (max-width:1080px) {
  .sec-message-grid {
    overflow-x: scroll;
    padding-bottom: 15px;
  }
  .sec-message-grid__item {
    min-width: 250px;
  }
}
@media screen and (max-width:767px) {
  .sec-message {
    margin-bottom: 80px;
  }
  .sec-message-title {
    font-size: 16px;
  }
  .sec-message-grid {
    margin-top: 30px;
  }
  .tab-nav li {
    font-size: 1.2rem;
  }
  .sec-success {
    margin-bottom: 80px;
  }
  .sec-success .voice_box .voice_user_box_inner h4 {
    font-size: 12px;
  }
  .sec-success {
    & .slick-prev, .slick-next {
      width: 30px;
      height: 30px;
    }
    & .slick-prev::before, .slick-next::before {
      font-size: 16px;
    }
    & .slick-prev { left: 0; }
    & .slick-next { right: 0; }
  }
}


@charset "utf-8";

/* public
============================================================ */
body.index .com-article-inner{
  background: #f2f6fa;
}


/* course-nav
============================================================ */
.course-nav {
  background: #ccc;
}
.course-nav ul {
  display: table;
  table-layout: fixed;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-collapse: collapse;
}
.course-nav ul + ul {
  border-top: 1px solid rgba(255, 255, 255, .3);
}
.course-nav li {
  display: table-cell;
  vertical-align: top;
  border-left: 1px solid rgba(255, 255, 255, .3);
  border-right: 1px solid rgba(255, 255, 255, .3);
}
.course-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1.4;
  height: 50px;
  padding: 0 1em;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 811px) {
  .course-nav a {
    height: 4rem;
    font-size: 1rem;
  }
}


/* course-list
============================================================ */
.course-list {
  height: 100%;
  border-top: 4px solid #003773;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 6px 0 rgba(221, 221, 221, .6);
}
.course-list__ttl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  line-height: 1.4;
  padding: .5em 1em;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .06);
  z-index: 1;
}
.course-list__target {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  line-height: 1.4;
  padding: .5em 1em;
  color: #fff;
  background: #00448d;
}
.course-list__target:before {
  content: "対象";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  line-height: 1.9;
  padding: 0 2em;
  font-size: 1.4rem;
  border-radius: 1.9em;
  background: #002b59;
  transform: translate(-50%, -50%);
}
.course-list-inner {
  padding: 40px;
}
.course-list__txt {
  margin-bottom: 35px;
}
.course-list__btn a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  line-height: 1.4;
  font-weight: bold;
  box-sizing: content-box;
  border: 1px solid #e6e6e6;
  border-bottom-width: 5px;
}
.course-list__btn a span {
  padding: 0 2em 0 1em;
}
.course-list__btn a i {
  position: absolute;
  top: 50%;
  right: 1em;
  color: #002b59;
  transform: translateY(-50%);
}

@media screen and (min-width: 812px) {
  .course-list__btn-list {
    margin: -6px;
  }
  .course-list__btn-list ul {
    display: flex;
    flex-wrap: wrap;
  }
  .course-list__btn-list li {
    width: 100%;
    margin: 6px;
  }
  .course-list__btn-list.col3 li {
    width: 140px;
  }
  .course-list__btn-list.col3 li.col2 {
    width: 292px;
  }
}

@media screen and (max-width: 811px) {
  .course-list {
    border-top-width: .2rem;
  }
  .course-list__ttl {
    height: 6rem;
    font-size: 1.6rem;
  }
  .course-list__target {
    height: 6rem;
  }
  .course-list__target:before {
    font-size: 1rem;
  }
  .course-list-inner {
    padding: 2rem;
  }
  .course-list__txt {
    margin-bottom: 1.5rem;
  }
  .course-list__btn a {
    height: 4rem;
    border-width: .1rem;
    border-bottom-width: .25rem;
  }
  .course-list__btn-list li + li {
    margin-top: .5rem;
  }
}
