@import url("./var.css");

/* ===================================================
  * resetcss
==================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  word-break: break-all;
}

html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table.table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-align: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

html {
  font-size: 62.5%;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a img {
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  line-height: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

a:active,
a:focus {
  outline: 0;
}

/* ===================================================
  * resetcss_end
==================================================== */

/* ===================================================
  * common
==================================================== */
.pc {
  @media (max-width: 767px) {
    display: none !important;
  }
}

.sp {
  @media (min-width: 768px) {
    display: none !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: 700;
}

body {
  position: relative;
  display: block;
  width: 100%;
  min-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  /* background: #fff; */
  /* text-align: left;
  text-align: justify;
  text-justify: inter-ideograph; */
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #333;

  @media (min-width: 768px) {
    font-size: 15px;
  }
}

p {
  line-height: 1.5;
}


/* ===================================================
  * common_end
==================================================== */

/* ===================================================
  * header
==================================================== */
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  background-color: transparent;
  border-bottom: none;
  margin-bottom: 0;
  background: #fff;
  border-top: 10px solid var(--main-primary-color);
  border-bottom: 1px solid #ccc;

  @media (min-width: 768px) {
    border-bottom: none;
  }

  &.is-open {
    background: rgba(255, 255, 255, 0.95);
  }

  &.fixed {
    background: rgba(255, 255, 255, 0.7);
  }
}

.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 8px;

  @media (min-width: 768px) {
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1500px;
  }
}

.header__logo {
  display: block;
  width: 100%;
  max-width: 190px;
  margin: 0 auto;

  @media (min-width: 768px) {
    margin: 0 25px 0 0;
    max-width: 150px;
  }
}

.header__logo a {
  display: block;
}



.header__search .sp {
  position: fixed;
  width: 30px;
  height: 30px;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 9999;
}

.header__search {
  position: fixed;
  width: 30px;
  height: 30px;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 9999;

  @media (min-width: 768px) {
    display: none;
    width: auto;
    height: auto;
  }

  @media (min-width: 768px) {
    position: static;
    display: none;
    order: 1;
    margin: 0 auto 0 30px;
  }

  @media (min-width: 1360px) {
    display: block;
    margin: 0 auto 0 0;
  }

  img {
    width: 30px;
  }
}

@media (max-width: 767px) {
  .header__search_sp {}

  .header__search_sp_btn {
    cursor: pointer;
  }

  .header__search_sp_body {
    width: 90vw;
    margin: 5px calc(90% - 90vw);
  }

  .header__search_sp_body.d-none {
    display: none;
  }
}

.gnav {
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  height: 100%;
  transition: 0.3s ease-in-out;
  width: 100%;
  position: fixed;
  top: 60px;
  left: 0;

  @media (min-width: 768px) {
    z-index: 0;
    display: block;
    opacity: 1;
    pointer-events: visible;
    visibility: visible;
    width: auto;
    position: static;
    top: 0;
    order: 2;
    flex-grow: 1;
    /* margin-left: 30px; */
  }
}

.gnav.is-open {
  visibility: visible;
  transition: 0.5s ease-in-out;
  opacity: 1;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  pointer-events: visible;
  overflow-y: scroll;
}

.gnav.is-disabled {
  transition: none !important;
}

.gnav__list {
  color: #000;
  font-size: 16px;
  padding: 40px 40px 100px;

  @media (min-width: 768px) {
    display: flex;
    justify-content: center;
    padding: 0;
    font-size: 14px;
  }
}

.gnav__item {
  position: relative;
  padding: 10px;

  @media (min-width: 768px) {
    display: flex;
    align-items: center;
    padding: 5px;
  }

  &:not(.gnav__item--education):not(.gnav__item--registration):not(.gnav__item--login) {
    @media (min-width: 768px) {
      display: none;
    }

    @media (min-width: 1060px) {
      display: flex;
      padding: 10px 6px;
    }
  }

  &.gnav__item--education,
  &.gnav__item--registration,
  &.gnav__item--login {
    @media (min-width: 768px) {
      font-size: 13px;
    }
  }
}

.gnav__item--btn {}

.gnav__item--education {
  .btn {
    color: var(--item-secondary-color);
    border: 2px solid var(--item-secondary-color);
    border-radius: 50px;
    padding: 10px 20px;
  }

  @media (min-width: 768px) {
    margin-left: auto;
  }
}

.gnav__item--registration {
  .btn {
    border-radius: 50px;
    padding: 12px 20px;
  }
}


.gnav__item.lg {
  display: none;
}

.gnav__link {
  cursor: pointer;
  font-weight: 700;
  transition: opacity 0.3s ease;

  &:hover {
    opacity: 0.7;
  }
}

.gnav-toggle {
  display: block;
  position: fixed;
  width: 30px;
  height: 30px;
  top: 15px;
  left: 15px;
  cursor: pointer;
  z-index: 9999;

  @media (min-width: 768px) {
    display: none;
  }
}

.gnav-toggle.is-open .gnav-toggle__item {
  background: transparent;
}

.gnav-toggle.is-open .gnav-toggle__item::before {
  transform: rotate(-45deg);
  margin-top: 0;
}

.gnav-toggle.is-open .gnav-toggle__item::after {
  transform: rotate(45deg);
  margin-top: 0;
}

.gnav-toggle__item,
.gnav-toggle__item::before,
.gnav-toggle__item::after {
  position: absolute;
  top: 50%;
  left: 0;
  margin: auto;
  height: 2px;
  width: 30px;
  background: #000;
  display: block;
  transform: translateY(-50%);
  border-radius: 2px;
  content: "";
  transition: 0.5s ease;
}

.gnav-toggle__item::before {
  margin-top: -10px;
}

.gnav-toggle__item::after {
  margin-top: 10px;
}



/** 追加 **/

.gnav__item--login-sp .btn--primary {
  background: var(--header-btn-color);
}

@media (min-width: 768px) {

  .header__search--sp,
  .gnav__item--sp,
  .gnav__item--login-sp {
    display: none !important;
  }
}

@media (max-width: 767px) {

  .gnav__item--pc,
  .gnav__item--login-pc {
    display: none !important;
  }

  .header__search--sp {
    padding: 0 20px;
  }

  .gnav__list {
    padding-top: 20px;
  }
}

/* ===================================================
  * header_end
==================================================== */

/* ===================================================
  * main
==================================================== */
.main--member {
  @media (min-width: 768px) {
    width: calc(100% - 280px);
  }
}

.main--search {
  @media (min-width: 768px) {
    width: calc(100% - 290px);
  }
}

/* ===================================================
  * main_end
==================================================== */

/* ===================================================
  * footer
==================================================== */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
}

footer .cmn_footer {
  position: relative;
  background: #323232;
  line-height: 1.5;
  color: #ffffff;
}

footer .cmn_footer .inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

footer .cmn_footer h2 {
  margin-bottom: 5px;
  font-size: 16px;
  color: #e8e8e8;
}

footer .cmn_footer p {
  font-size: 14px;
}

footer .cmn_footer .footBox1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer .cmn_footer .footBox1 ul li {
  margin: 0;
  padding: 5px 0;
  font-size: 14px;
}

footer .cmn_footer .footBox1 ul li a {
  color: #a5a5a5;
  text-decoration: none;
  transition: 0.5s;
}

footer .cmn_footer .footBox1 ul li a:hover {
  color: #ffffff;
  text-decoration: none;
}

footer .cmn_footer .footBox1 .footCol {
  padding: 0 0 15px;
}

footer .cmn_footer .footBox2 .footCol2 p span {
  display: inline-block;
}

footer .cmn_footer .footBox2 .footCol1 {
  padding: 0 0 15px;
}

footer .cmn_footer .footBox2 .footCol2 p a {
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width: 813px) {
  footer .cmn_footer .footBox1 {
    display: flex;
    box-sizing: border-box;
  }

  footer .cmn_footer .footBox1 .footCol {
    padding: 10px;
    -ms-flex-basis: 25%;
    flex-basis: 25%;
  }

  footer .cmn_footer .footBox2 {
    display: flex;
    box-sizing: border-box;
  }

  footer .cmn_footer .footBox2 .footCol1 {
    width: 200px;
    padding: 0;
  }

  footer .cmn_footer .footBox2 .footCol2 {
    flex: 1 1;
  }
}


.bottomFooter {
  width: 100%;
  padding: 30px 0;
  background: #191919;
}

.menu-footer-menu-container {
  margin: 0 auto;
  padding: 0 15px;
}

.menu-footer-menu-container #menu-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.menu-footer-menu-container #menu-footer-menu>li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.menu-footer-menu-container #menu-footer-menu>li a,
.menu-footer-menu-container #menu-footer-menu>li a:hover {
  color: inherit;
  text-decoration: none;
}

.menu-footer-menu-container #menu-footer-menu>li a {
  display: block;
  margin: 0 10px;
  line-height: 1.5;
  border-bottom: 2px solid transparent;
  transition: .15s;
}

.menu-footer-menu-container #menu-footer-menu>li a:hover {
  animation: flash 1s;
  border-color: #fff;
}

@keyframes flash {
  0% {
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

@media only screen and (min-width: 992px) {
  .menu-footer-menu-container #menu-footer-menu>li {
    font-size: 15px;
  }
}

.copy {
  background: #000000;
  color: #FFFFFF;
  font-size: 12px;
  text-align: center;
  margin: 0 auto;
  padding: 8px 5px;
  box-sizing: border-box;
}

/****************************************************** old 20250623
.footer {
  @media (min-width: 768px) {
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #070707 50%, #070707 100%);
  }
}

.footer__inner {
  @media (min-width: 768px) {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.footer__main {
  border-top: 1px solid #aaa;
  padding: 0px 20px;
  @media (min-width: 768px) {
    width: 30%;
    padding-top: 100px;
    border-top: none;
  }
}

.footer-nav__title {
  padding: 20px 0px;
  @media (min-width: 768px) {
    padding-top: 0;
  }
}

.footer-nav__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 20px 0;

  &::before,
  &::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 20px);
    height: 1px;
    background: #fff;
  }

  &::before {
    top: 0;
  }

  &::after {
    bottom: 0;
  }

  @media (min-width: 768px) {
    margin: 0 0 30px;

    &::after {
      display: none;
    }
  }
}

.footer-nav__item {
  width: 50%;
  padding: 10px;

  @media (min-width: 768px) {
    width: 100%;
  }

}

.footer-nav__link {
  font-weight: 700;
}

.footer__detail {
  background: var(--footer-bg-color);
  color: #fff;
  padding: 0px 20px 50px;
  @media (min-width: 768px) {
    width: 70%;
    padding: 100px 20px 40px;
  }
}

.footer__group {
  margin-bottom: 30px;

  @media (min-width: 768px) {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 530px;
  }

  .footer-nav {
    @media (min-width: 768px) {
      width: 50%;
      padding: 0 20px;
    }
  }

  .footer-nav:nth-of-type(2) {
    @media (min-width: 768px) {
      margin-bottom: 40px;
    }
  }
}

.footer__info {
  text-align: center;

  @media (min-width: 768px) {
    text-align: right;
  }

}

.footer__logo--company {
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 0 auto 20px;

  @media (min-width: 768px) {
    margin: 0 0 30px auto;
  }

}

.footer__copy {
  font-size: 12px;
}

/* ===================================================
  * footer_end
==================================================== */

/* ===================================================
  * Sticky Nav
==================================================== */
.sticky-nav {
  background: #000;
  color: #fff;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  height: 60px;
  z-index: 300;
  padding: 7px 5px 5px;
  display: flex;
  justify-content: center;
  align-items: center;

  @media (min-width: 768px) {
    display: none;
  }
}

.sticky-nav__list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  width: 100%;
  margin-bottom: 0;
}

.sticky-nav__item {
  margin-bottom: 0;
  padding: 0 5px;
  width: 20%;
}

.sticky-nav__item.profile {
  padding: 0 3px;
}

.sticky-nav__item.profile .sticky-nav__link {
  letter-spacing: -0.15rem;
}

.sticky-nav__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: -0.05rem;
}

/* .sticky-nav__link.is-active,
.sticky-nav__item.is-active .sticky-nav__link {
  color: #fff;
} */

.sticky-nav__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  margin: 0 0 10px;
}

/* .sticky-nav__icon svg path,
.sticky-nav__icon svg rect,
.is-active .sticky-nav__icon svg path,
.is-active .sticky-nav__icon svg rect {
  fill: #fff !important;
} */

.sticky-nav__item.myprofile {
  background: transparent;
}

.sticky-nav__item {
  margin: 0;
}


/* ===================================================
  * Search
==================================================== */
.search-box {
  display: flex;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}

.search-box__text {
  font-weight: 700;
  color: #777;
  padding: 15px 10px 15px 20px;
  margin: 0;
  border: none;
  width: calc(100% - 80px);
}

.search-box__submit {
  color: #fff;
  font-weight: 700;
  background: var(--header-btn-color);
  width: 80px;
  padding: 10px 10px 10px 10px;
  margin: 0;
  border: none;
  cursor: pointer;
  transition: 0.3s ease all;

  &:hover {
    opacity: 0.7;
  }
}


/* ===================================================
  * Search_end
==================================================== */

/* ===================================================
  * Text
==================================================== */

.text--primary {
  color: var(--main-primary-color);
}

.text--secondary {
  color: #AB8526;
}

.text--center {
  text-align: center;
}

/* ===================================================
  * Text_end
==================================================== */


/* ===================================================
  * Button
==================================================== */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
}

.btn--primary {
  color: #fff;
  background: var(--main--gradient-color);
  padding: 15px;
  border-radius: 80px;
}

.btn--secondary {
  color: var(--main-primary-color);
  border: 1px solid var(--main-primary-color);
  background: #fff;
  padding: 15px;
  border-radius: 80px;
}

.btn--tertiary {
  color: #fff;
  background: linear-gradient(90deg, #070707 0%, #586372 100%);
  ;
  padding: 15px;
  border-radius: 80px;
}

.btn--detail {
  color: var(--main-primary-color);
  background: #fff;
  padding: 15px;
  border-radius: 80px;
  border: 2px solid var(--main-primary-color);
}

.btn--more {
  position: relative;
  background: #fff;
  border: var(--main-primary-color) 1px solid;
  padding: 15px 30px 15px 15px;
  border-radius: 80px;
  width: 200px;
  font-weight: 700;
  margin: 0 auto;
  font-size: 13px;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 28px;
    width: 13px;
    height: 13px;
    transform: translateY(-50%);
    background: url(../images/common/icon-arrow-triangle-primary.svg) no-repeat center center/contain;
  }
}

.btn--disabled {
  background: #ccc;
  border: 1px solid #ccc;
  color: #888;
  padding: 3px 10px;
  width: 125px;
  cursor: not-allowed;
}

/* ===================================================
  * Button_end
==================================================== */



/* ===================================================
  * Card
==================================================== */

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  padding: 20px;
}

.card__thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  aspect-ratio: 16 / 9;
}

.card__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-width: none;
  ofject-fit: cover;
}

.card__head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.card__category {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  padding: 5px 10px;
  background: var(--item-primary-color);
  color: #fff;
  z-index: 1;
}

.card__category.review {
  background: var(--item-third-color);
}

.card__category.advance {
  background: var(--item-secondary-color);
}

.card__keywords {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 10px;
}

.card__keyword {
  color: var(--main-primary-color);
  font-weight: 700;
  padding: 0 5px 3px;
  font-size: 14px;
}

.card__features {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.card__feature {
  background: var(--main-secondary-color);
  padding: 5px 10px;
  margin: 0 5px 5px 0;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
}

.card__title {
  margin-bottom: 20px;
}

.card__number,
.card__style,
.card__days,
.card__price {
  color: var(--text-card-info-color);
  font-weight: 700;
}

.card__number {
  font-size: 10px;
  margin-bottom: 10px;
}

.card__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card__styles {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 10px;
  gap: 5px;
}

.card__style {
  border: 1px solid var(--text-card-info-color);
  border-radius: 5px;
  font-size: 10px;
  padding: 5px 8px;

  @media screen and (min-width: 768px) {
    font-size: 12px;
  }
}

.card__days {
  position: relative;
  font-size: 10px;
  padding-left: 15px;

  @media screen and (min-width: 768px) {
    font-size: 12px;
  }

  &::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0px;
    width: 12px;
    height: 12px;
    background: url(../images/common/icon-clock.svg) no-repeat center center/contain;
  }
}

.card__price {
  font-size: 12px;

  @media screen and (min-width: 768px) {
    font-size: 12px;
  }
}

.card__cta {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
  margin-top: 20px;

  @media screen and (min-width: 768px) {
    justify-content: end;
  }
}

.card__link {
  width: 50%;
}

.card--l {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 20px;
  gap: 20px;
  margin: 0 -20px;
  width: calc(100% + 40px);
  border-top: 1px solid #ccc;
  box-shadow: none;
  border-radius: 0;

  &:last-of-type {
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
  }

  .card__thumbnail {
    aspect-ratio: 4 / 3;
    width: 100px;
    flex-shrink: 0;
  }

  .card__category {
    z-index: 100;
    width: 100%;
    top: 0px;
    transform: translateY(-100px);
  }

  .card__desc {
    display: none;

    @media (min-width: 768px) {
      display: block;
      margin-bottom: 20px;
    }
  }

  .card__title {
    margin-bottom: 30px;
  }

  .card__cta {
    margin-left: -120px;
  }

  @media (min-width: 768px) {
    margin: 0 0 40px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    &:last-of-type {
      border-bottom: none;
      margin-bottom: 40px;
    }

    .card__thumbnail {
      aspect-ratio: 1 / 1;
      width: 30%;
    }

    .card__content {
      width: 70%;
    }

    .card__title {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .card__styles {
      width: auto;
    }

    .card__cta {
      margin-left: 0;
    }
  }
}

/** seminar list **/
.card---l {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 0 -20px;
  width: calc(100% + 40px);
  border-top: 1px solid #ccc;
  box-shadow: none;
  border-radius: 0;

  &:last-of-type {
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
  }

  .card__thumbnail {
    width: 100%;
  }

  .card__content {
    width: 100%;
  }

  .card__category {
    z-index: 100;
    width: 100%;
    top: 0px;
    transform: translateY(-100px);
  }

  .card__desc {
    display: none;

    @media (min-width: 768px) {
      display: block;
      margin-bottom: 20px;
    }
  }

  .card__title {
    margin-bottom: 30px;
  }

  @media (min-width: 768px) {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin: 0 0 40px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    &:last-of-type {
      border-bottom: none;
      margin-bottom: 40px;
    }

    .card__thumbnail {
      aspect-ratio: 1 / 1;
      width: 30%;
    }

    .card__content {
      width: 70%;
    }

    .card__title {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .card__styles {
      width: auto;
    }
  }
}


/* ===================================================
  * Card__end
==================================================== */


/* ===================================================
  * Learning Map
==================================================== */
.learning-map {}

.learning-map__title {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 30px;

  @media (min-width: 768px) {
    font-size: 20px;
    padding-left: 34px;
  }
}

.learning-map__title::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 7px solid var(--main-primary-color);

  @media (min-width: 768px) {
    top: 6px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 7px solid var(--main-primary-color);
  }
}

.learning-map__subtitle {
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 20px;
  margin-bottom: 15px;
  border-radius: 10px;

  @media screen and (min-width: 768px) {
    font-size: 16px;
  }
}

.learning-map__basic {
  background: #f4e0e0;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;

  @media screen and (min-width: 768px) {
    display: flex;
    gap: 20px;
  }
}

.learning-map__panel {
  padding: 15px;

  @media screen and (min-width: 768px) {
    width: 50%;
  }

  .learning-map__subtitle {
    background: var(--main-primary-color);
  }

  .card {
    margin-bottom: 20px;

    @media screen and (min-width: 768px) {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 0;
    }
  }

  .card__category {
    position: static;
    background: var(--main-primary-color);
    margin-right: 15px;
  }

  .card__keywords {
    margin-bottom: 0px;
  }

  .card__content {
    @media screen and (min-width: 768px) {
      width: 100%;
    }
  }

  .card__title {
    font-size: 16px;

    @media screen and (min-width: 768px) {
      font-size: 18px;
    }
  }

  .card__cta {
    width: 100%;
  }
}

.learning-map__panel.review {
  position: relative;
  background: #F3F3F3;
  border-radius: 10px;

  &::before {
    @media screen and (min-width: 768px) {
      content: '';
      position: absolute;
      top: 50%;
      left: -25px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 50px 0 50px 30px;
      border-color: transparent transparent transparent var(--main-primary-color);
      transform: translate(0, -50%);
    }
  }

  .learning-map__subtitle {
    background: var(--item-third-color);
  }
}

.learning-map__advance {
  position: relative;
  background: #f4efe3;
  padding: 30px;
  border-radius: 10px;

  .learning-map__subtitle {
    background: var(--item-secondary-color);
  }

  .icon-plus {
    position: absolute;
    width: 42px;
    height: 42px;
    background: var(--item-secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);

    &::before,
    &::after {
      content: '';
      position: absolute;
      background: #FFF;
      width: 30px;
      height: 4px;
      border-radius: 2px;
    }

    &::after {
      transform: rotate(90deg);
    }
  }
}


/* ===================================================
  * Learning Map__end
==================================================== */


/* ===================================================
  * Search
==================================================== */
.search-tab {
  background: var(--bg-gray-color);
  padding: 20px;
  margin-bottom: 20px;
}

.search-tab__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  /* max-width: 330px; */
  margin: 0 auto;

  @media screen and (min-width: 768px) {
    max-width: 820px;
  }
}

.search-tab__item {
  padding: 0 2px;
  width: calc(100% / 4);
  margin-bottom: 10px;

  @media screen and (min-width: 768px) {
    padding: 0 5px;
    width: calc(100% / 7);
    margin-bottom: 0;
  }
}

.search-tab__item.is-active {
  .search-tab__icon {
    rect {
      fill: #b00000 !important;
    }

    #icon_all {
      stroke: #fff !important;
      fill: transparent !important;
    }

    g {
      fill: #fff !important;
    }

    #icon_cad path,
    #icon_cam path {
      fill: #fff !important;
    }
  }
}

.search-tab__item .top-category__tab {
  display: block;
  padding: 5px;
  color: #b00000;
  background-color: #fff;
  border: 1px solid #b00000;
}

.search-tab__item.is-active .top-category__tab {
  color: #fff;
  background-color: #b00000;
}

.search-tab__link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
  font-size: 10px;

  @media screen and (min-width: 768px) {
    font-size: 13px;
  }
}

.search-tab__icon {
  margin-bottom: 5px;

  @media screen and (min-width: 768px) {
    margin-bottom: 10px;
  }

  svg {
    width: 100%;
    max-width: 100%;
  }
}


.search-filter {
  width: 100%;
  margin-bottom: 20px;

  @media screen and (min-width: 768px) {
    width: 260px;
    padding-right: 30px;
  }
}


.search-filter__title {
  position: relative;
  background: #fff;
  color: var(--main-primary-color);
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 10px 10px 40px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;

  @media screen and (min-width: 768px) {
    border-radius: 5px;
    width: 150px;
  }

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: url(../images/common/icon-filter-title.svg) no-repeat center center/contain;
  }
}

.search-filter__main {
  /*display: none;*/
  background: #fff;
  border-radius: 10px;
  padding: 0 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);

  @media screen and (min-width: 768px) {
    display: block !important;
  }
}

.search-filter details summary {
  display: block;
}

/*
@media screen and (max-width: 768px) {
.search-filter__main {
	display: none;
}
}
*/
.search-filter__clear {
  cursor: pointer;
  display: flex;
  font-weight: 700;
  font-size: 14px;
  justify-content: flex-end;
  color: var(--main-primary-color);
  transition: all 0.3s ease;

  &:hover {
    opacity: 0.7;
  }

  span {
    display: inline-block;
    position: relative;
    padding-left: 24px;

    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0px;
      width: 20px;
      height: 20px;
      transform: translateY(-50%);
      background: url(../images/common/icon-filter-clear.svg) no-repeat center center/contain;
    }
  }
}

.search-filter__subtitle {
  font-size: 16px;
  font-weight: 700;
  padding: 10px 10px 10px 30px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
  }

  &.features {
    &::before {
      background: url(../images/common/icon-filter-features.svg) no-repeat center center/contain;
    }
  }

  &.seminar-style {
    &::before {
      background: url(../images/common/icon-filter-seminar-style.svg) no-repeat center center/contain;
    }
  }

  &.keyword {
    &::before {
      background: url(../images/common/icon-filter-keyword.svg) no-repeat center center/contain;
    }
  }

  &.course {
    &::before {
      background: url(../images/common/icon-filter-course.svg) no-repeat center center/contain;
    }
  }

  &.location {
    &::before {
      background: url(../images/common/icon-filter-location.svg) no-repeat center center/contain;
    }
  }

  &.price {
    &::before {
      background: url(../images/common/icon-filter-price.svg) no-repeat center center/contain;
    }
  }
}

.search-filter__content {
  padding: 10px 0;

  label {
    display: block;
    padding: 5px;
    cursor: pointer;
  }

  .tag {
    display: inline-block;
    color: var(--main-primary-color);
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    font-weight: 700;
  }
}

.search-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  margin-bottom: 20px;

  @media screen and (min-width: 768px) {
    padding: 0;
  }
}

.search-sort {
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.search-sort__tab {
  background: #fff;
  color: #484D54;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;

  @media screen and (min-width: 768px) {
    font-size: 14px;
    padding: 10px 20px;
  }

  &.is-active {
    background: var(--main-primary-color);
    color: #fff;
  }

  &:not(:last-child) {
    border-right: 1px solid #ccc;
  }
}

.search-result__count {
  font-size: 12px;
  font-weight: 700;

  @media screen and (min-width: 768px) {
    font-size: 20px;
  }
}

.pagination {
  text-align: center;
}

.page-numbers {
  padding: 10px;
  font-weight: 700;
  font-size: 15px;
}

.sidenav.is-closed .top-sidebar__bnr {
	display:none;
} 

/* ===================================================
  * Search__end
==================================================== */

/* ボタン内 GETTロゴ */
/* .gnav__item--education a.btn{
	padding-top: 2px;
	padding-bottom: 2px;
} */
a.btn--logo::before {
  content: none;
  /* content: ""; */
  display: inline-block;
  width: 33px;
  height: 33px;
  margin: 5px 5px 0 0;
  background: url("/wp-content/themes/new_proskilll/assets/images/common/icon_gett-proskill-fb-tate.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/* ProSkillロゴ横 GETTロゴ */
/*.header__logo a{
	position: relative;
}
.header__logo a::before {
	position:absolute;
	left: 0;
	top: -5px;
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("/wp-content/themes/new_proskilll/assets/images/common/GETT-proskill-tate.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.header__logo img{
	margin-left: 45px;
	max-width: 135px;
}/*
