@charset "UTF-8";

:root {
  --innerPC: 1000px;
  --innerPaddingPC: 4rem;
  --innerPaddingPCx2: 8rem;
  --innerPaddingSP: 2rem;
  --innerPaddingSPx2: 4rem;
  --fontx1: 1.6rem;
  --courseBasic: #309da4;
  --courseMarketing: #f39800;
  --courseSales: #1c4586;
  --courseHiring: #992453;
  --blue: #2368a7;
}

* {
  padding: 0;
  margin: 0;
}

/* common */

.com_orangebtn {
  background-color: #f47808;
  color: white;
  border: 1px solid #f47808;
  transition: all 0.2s ease-out;
}

.com_orangebtn:hover {
  color: #f47808 !important;
  background-color: white !important;
}

/* /common */

@media (min-width: 769px) {
  body,
  html {
    font-size: 10px;
  }

  body {
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  body,
  html {
    font-size: 2.57vw;
    /* 1rem=10px */
  }

  body {
    padding-top: 4.8rem;
  }
}

/* const header */
#header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 998;
  background: white;
}

@media (min-width: 769px) {
  #header {
    height: 80px;
    display: flex;
    justify-content: center;
  }

  #header .-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0 2rem;
  }

  #header .-logo {
    height: 24px;
    width: auto;
  }

  #header .-logo img {
    width: auto;
    height: 100%;
  }

  #header .-container {
    display: flex;
  }

  #header .-menu {
    display: flex;
    flex-direction: row;
    gap: var(--fontx1);
    align-items: center;
  }

  #header .-menu a {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    display: inline-flex;
    align-items: center;
	  gap: 4px;
  }

  #header .-menu a.external_link::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("../img/external_link.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }

  #header a.-btn {
    background-color: #f47808;
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
  }

  .openbtn {
    position: relative;
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #000000;
    width: 45%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  #g-nav {
    position: fixed;
    z-index: 999;
    top: -120%;
    left: 0;
    width: 100%;
    height: 370px;
    background: rgba(255, 255, 255, 0.96);
    transition: all 0.6s;
    font-weight: bold;
    box-shadow: 1px 2px 18px 0px rgba(0, 0, 0, 0.28);
    -webkit-box-shadow: 1px 2px 18px 0px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 1px 2px 18px 0px rgba(0, 0, 0, 0.28);
  }

  #g-nav.panelactive {
    top: 0;
  }

  #g-nav a {
    color: #242533;
    background: transparent;
    text-align: left;
    padding: 0;
  }

  #g-nav #g-nav-list {
    padding: 80px;
  }

  #g-nav #g-nav-list ul {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  #g-nav #g-nav-list ul li {
    width: 32%;
    margin-bottom: 16px;
  }

  #g-nav #g-nav-list ul li ul {
    display: block;
  }

  #g-nav #g-nav-list ul li ul li {
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 12px;
    font-size: 0.8em;
  }

  #g-nav #g-nav-list ul li ul .list {
    display: grid;
    gap: 12px;
    padding-left: 16px;
  }

  #g-nav #g-nav-list ul li ul li .title {
    font-size: 14px;
  }

  #g-nav #g-nav-list ul li ul li .anchor {
    font-size: 14px;
    padding-left: 14px;
  }

  #g-nav #g-nav-list ul li ul li p {
    font-size: initial;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 370px;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #header .is_sp {
    display: none;
  }

  #header .corporate-training {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 1.5rem;
  }

  #header .corporate-training::after {
    content: '';
    width: 1px;
    height: 2rem;
    background: #cecece;
    /* display: inline-block; */
    position: absolute;
    margin-left: -1.5rem;
  }
}

@media (max-width: 1000px) and (min-width: 769px) {
  #header .-logo {
    height: 19px;
    width: auto;
  }

  #header .-menu {
    gap: 1rem;
  }

  #header .corporate-training::after {
    height: 1rem;
  }

  #header .-wrapper {
    padding: 0 1rem;
  }

  header a.-btn {
    padding: 1rem 1rem !important;
  }
}

@media (max-width: 1060px) and (min-width: 769px) {
  #header .-menu a {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
  }
  #header .-menu a {
    font-size: 1rem;
  }

  #header .corporate-training {
    padding-left: 1rem;
  }

  #header .corporate-training::after {
    margin-left: -1rem;
  }
}

@media (max-width: 768px) {
  #header .-wrapper.is_sp {
    display: flex;
    height: 4.8rem;
    padding: 0 1.6rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  #header .-wrapper.is_sp a {
    height: 1.6rem;
    font-size: 1.4rem;
  }

  #header .-wrapper.is_sp a img {
    height: 100%;
    width: auto;
  }

  #g-nav_sp {
    position: fixed;
    z-index: 999;
    top: 4.8rem;
    right: -120%;
    width: 90%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    transition: all 0.6s;
    padding: 20px;
  }

  #g-nav_sp.panelactive {
    right: 0;
  }

  #g-nav_sp a {
    font-weight: 700;
    color: #ffffff;
    background: transparent;
    text-align: left;
    padding: 0;
  }

  #g-nav_sp #g-nav-list_sp ul {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    font-size: 0.9em;
    padding: 10px 0;
    gap: 1rem;
  }

  #g-nav_sp #g-nav-list_sp .sub-list {
    gap: 1rem;
  }

  #g-nav_sp #g-nav-list_sp ul:nth-of-type(2) {
    border-bottom: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
    gap: 1rem;
  }

  #g-nav_sp #g-nav-list_sp ul:nth-of-type(2) p {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: bold;
  }

  #g-nav_sp #g-nav-list_sp ul:nth-of-type(3) {
    border: none;
  }

  #g-nav_sp #g-nav-list_sp ul:nth-of-type(3) li a {
    font-size: 2em;
  }

  #g-nav_sp #g-nav-list_sp ul:nth-of-type(3) li:nth-of-type(n + 3) {
    margin: 10px 0;
  }

  #g-nav_sp #g-nav-list_sp ul:nth-of-type(3) li:nth-of-type(n + 3) a {
    font-size: 1.4em;
  }

  #g-nav_sp #g-nav-list_sp ul:nth-of-type(3) li:last-of-type a::after {
    background: url(../img/link_blank.svg) center center no-repeat;
    background-size: cover;
    content: '';
    display: inline-block;
    width: 18px;
    height: 14px;
    margin-left: 6px;
  }

  #g-nav_sp #g-nav-list_sp ul .top a {
    font-size: 1.6rem;
  }

  #g-nav_sp #g-nav-list_sp .unorder-list {
    padding: 0;
  }

  #g-nav_sp #g-nav-list_sp ul li {
    width: 100%;
  }

  #g-nav_sp #g-nav-list_sp ul .top a {
    font-size: 1.6rem;
  }

  #g-nav_sp #g-nav-list_sp ul li ul .list {
    display: grid;
    gap: 1rem;
    padding-left: 1.6rem;
  }

  #g-nav_sp #g-nav-list_sp ul li ul li .title {
    font-size: 1.4rem;
  }

  #g-nav_sp #g-nav-list_sp ul li ul li .anchor {
    font-size: 1.4rem;
    padding-left: 1.4rem;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav_sp.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 350px;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn_sp {
    position: relative;
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /*×に変化*/
  .openbtn_sp span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #000000;
    width: 45%;
  }

  .openbtn_sp span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn_sp span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn_sp span:nth-of-type(3) {
    top: 31px;
  }

  .openbtn_sp.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn_sp.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn_sp.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  #header .is_pc {
    display: none;
  }

  #header .corporate-training {
    display: flex;
    gap: 1rem;
  }

  #header .corporate-training::after {
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/arrow-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
  }
}

/* /const header */

/* const main */

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
@media (width >= 1080px) {
  main > section {
    padding: var(--innerPaddingPC) 0;
  }
}
@media (width < 1080px) {
  main > section {
    padding: 5.48vw 0 5.48vw;
  }
}
@media (min-width: 769px) {
  main > section {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  main > section .-inner,
  footer .-inner {
    max-width: 1000px;
    width: 90%;
  }

  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  main > section {
    width: 100%;
    padding: 2.2rem;
  }
}

/* /const main */

/* const mainvisual */

#mainvisual {
  position: relative;
  max-width: none !important;
}

#mainvisual .-notice {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

#mainvisual .-notice .-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  gap: 1rem;
}

#mainvisual .-notice .-inner .-start {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

#mainvisual .-notice .-inner .-start .-date {
  line-height: 2rem;
}

#mainvisual .-notice .-inner .-date #start_MMDD {
  font-family: din-2014;
  font-size: 4rem;
  vertical-align: bottom;
  line-height: 1em;
}

#mainvisual .-notice .-inner .-date #start_ddd {
  font-size: 1.6rem;
  line-height: 2em;
}

#mainvisual .-notice .-inner .-end {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.6rem;
}

#mainvisual .-notice .-inner .-date #deadline_MMDD {
  font-family: din-2014;
  font-size: 2.2rem;
  vertical-align: bottom;
}

#mainvisual .-notice .-inner .-date #deadline_ddd {
  font-size: 1.2rem;
  line-height: 1.2em;
}

@media (min-width: 769px) {
  #mainvisual {
    height: 400px;
  }

  #mainvisual .-notice p {
    line-height: 140%;
    font-size: 1.2rem;
    font-weight: 700;
  }

  #mainvisual .-end {
    border: 1px white solid;
    padding: 0.8rem 1rem;
    background-color: #2c333b;
  }

  #mainvisual .-end p {
    font-size: 1.4rem;
  }

  #mainvisual p.-attention {
    font-size: 1.2rem;
    font-weight: 400;
  }
}

@media (max-width: 768px) {
  #mainvisual .-notice {
    height: 7.4rem;
  }

  #mainvisual .-notice .-inner {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  #mainvisual .-notice p {
    line-height: 140%;
    font-size: 1rem;
    font-weight: 700;
  }

  #mainvisual .-end {
    border: 1px white solid;
    padding: 0.8rem 1rem;
    background-color: #2c333b;
  }

  #mainvisual .-end p {
    font-size: 1.4rem;
  }

  #mainvisual .-notice .-inner .-date #start_ddd {
    font-size: 1.4rem;
    line-height: 1.4em;
  }

  #mainvisual .-notice .-inner .-date #start_MMDD {
    font-size: 3.4rem;
  }

  #mainvisual .-notice .-inner .-date #deadline_MMDD {
    font-size: 1.6rem;
  }

  #mainvisual .-notice .-inner .-date #deadline_ddd {
    font-size: 1rem;
  }

  #mainvisual p.-attention {
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
  }

  #mainvisual .-attention br {
    display: none;
  }

  #mainvisual #floatingCTA.btnScroll {
    position: fixed;
    z-index: 999;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    left: 0;
    display: flex;
    height: 7rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    transition: 0.6s;
  }

  #mainvisual #floatingCTA.btnScroll li {
    width: 100%;
    height: 100%;
  }

  #mainvisual #floatingCTA.btnScroll li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f47808;
    color: white;
    width: 100%;
    height: 100%;
    font-weight: 700;
    border-radius: 0.5rem;
  }

  #mainvisual #floatingCTA.btnRemove {
    visibility: hidden;
    opacity: 0;
  }

  #mainvisual #floatingCTA:not(.btnScroll) {
    background-color: transparent;
    position: absolute;
    bottom: 7.4rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    height: 9rem;
    align-items: center;
    padding: 2rem 2rem;
  }

  #mainvisual #floatingCTA:not(.btnScroll) li {
    width: 100%;
    height: 100%;
  }

  #mainvisual #floatingCTA:not(.btnScroll) li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f47808;
    color: white;
    width: 100%;
    height: 100%;
    font-weight: 700;
    border-radius: 0.5rem;
  }
}

/* /const mainvisual */

/* const campaign */
#campaign {
  background-color: #FFFFFF;
}

@media (min-width: 769px) {
  #campaign .is_sp {
    display: none;
  }
}

@media (max-width: 768px) {
  #campaign .is_pc {
    display: none;
  }

  #campaign {
    padding: 0;
  }
}

/* /const campaign */

/* /

/* const supervisor */
#supervisor {
  padding: var(--innerPaddingPCx2);
  /* reverse direction */
}

#supervisor .-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (width <= 1272px) {
  #supervisor .-inner {
    gap: 2.778vw;
  }
}

#supervisor h2 {
  display: flex;
  font-size: 3.2rem;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  color: black;
}
@media (width <= 1272px) {
  #supervisor h2 {
    font-size: 2.222vw;
    gap: 1.389vw;
  }
}

#supervisor h2:after {
  content: '';
  display: block;
  height: 2px;
  background-color: black;
  width: 4rem;
}

#supervisor .title-box {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.6em;
  font-weight: 900;
  background: linear-gradient(90deg, #309da4 0%, #2368a7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (width <= 1272px) {
  #supervisor .title-box {
    font-size: 1.667vw;
  }
}

#supervisor .supervisor-box {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 1.2rem;
  padding: var(--innerPaddingPC);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (width <= 1272px) {
  #supervisor .supervisor-box {
    padding: 2.778vw;
  }
}

.supervisor-box .title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1em;
  color: var(--courseBasic);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6em;
}

.supervisor-box .title:after {
  content: '';
  display: block;
  width: 6em;
  height: 1em;
  background: url('../img/supervisor-popupline.svg') top left no-repeat;
  background-size: 100% auto;
}

#supervisor h3 {
  font-size: 2rem;
  line-height: 160%;
}
@media (width <= 1272px) {
  #supervisor h3 {
    font-size: 1.389vw;
  }
}

#supervisor h3 span {
  font-size: 0.6em;
}

#supervisor .job {
  font-size: 1.2rem;
  line-height: 1.6em;
}

#supervisor .supervisor-intro {
  grid-gap: 3.2rem;
  align-items: center;
  display: grid;
  place-content: center;
  place-items: center;
  grid-auto-flow: column;
}

@media (width <= 768px) {
  #supervisor .supervisor-intro {
    align-items: initial;
  }
}

#supervisor picture {
  width: 407px;
  height: auto;
}
@media (width <= 1272px) {
  #supervisor picture {
    width: 28.264vw;
    height: 28.264vw;
  }
}

#supervisor .introduction {
  /* width: calc(60% - 2.4rem); */
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width <= 1272px) {
  #supervisor .introduction {
    gap: 1.667vw;
  }
}

#supervisor .career {
  font-size: 1.6rem;
  line-height: 180%;
}
@media (width <= 1272px) {
  #supervisor .career {
    font-size: 1.111vw;
  }
}

#supervisor .roles {
  display: flex;
  flex-direction: column;
  list-style: disc;
  margin-left: 1.6em;
  font-size: 1.4rem;
  gap: 0.8em;
}
@media (width <= 1272px) {
  #supervisor .roles {
    font-size: 1.111vw;
  }
}

@media (max-width: 768px) {
  #supervisor {
    padding: 4rem 1rem;
    /* reverse direction */
  }

  #supervisor .-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  #supervisor h2 {
    display: flex;
    font-size: 2.4rem;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    color: black;
  }

  #supervisor h2:after {
    content: '';
    display: block;
    height: 2px;
    background-color: black;
    width: 4rem;
  }

  #supervisor .title-box {
    font-size: 2rem;
    text-align: center;
    line-height: 1.6em;
    font-weight: 900;
    background: linear-gradient(90deg, #309da4 0%, #2368a7 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  #supervisor .supervisor-box {
    padding: 1.6rem;
    width: 96%;
  }

  #supervisor .supervisor-intro {
    width: 100%;
  }

  #supervisor .name {
    font-size: 1.69rem;
    margin-top: 5rem;
    margin-bottom: 1rem;
  }

  #supervisor .job {
    font-size: 1.3rem;
  }

  #supervisor picture {
    width: 12rem;
  }

  #supervisor .introduction {
    width: 18rem;
  }

  #supervisor .career {
    transform: translate(-14rem, 4rem);
    width: 32rem;
    font-size: 1.4rem;
  }

  #supervisor .roles {
    transform: translate(-14rem, 4rem);
    width: 28rem;
    padding-bottom: 4.6rem;
    font-size: 3.733vw;
    line-height: 160%;
  }
}

/* const supervisor */

/* const plan */

#plan {
  background-color: #f0f5f9;
  padding: var(--innerPaddingPCx2) 0;
}

#plan .-inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

#plan h2 {
  display: flex;
  font-size: 3.2rem;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  color: black;
  margin-bottom: 1.5em;
}

#plan h2:after {
  content: '';
  display: block;
  height: 2px;
  background-color: black;
  width: 4rem;
}

#plan .-course {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--innerPaddingPC);
  gap: var(--innerPaddingPC);
  border-radius: var(--fontx1);
}

#plan .-course > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fontx1);
}

#plan .-course p {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.6em;
}

#plan h3 {
  font-size: 2.4rem;
}

#plan .-single h3 {
  color: var(--courseBasic);
}

#plan .-set h3 {
  color: var(--blue);
}

#plan .-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#plan .-container .-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3em;
  line-height: 160%;
}

#plan .-container ul {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  color: #242533;
  line-height: 1.6;
}

#plan .-container ul li {
  font-size: 1.4rem;
  position: relative;
}

#plan .-container ul li::before {
  content: '●';
  margin-right: 0.6em;
}

#plan .-container ul ul > li {
  text-indent: -1em;
  padding-left: 1em;
}

#plan .-container ul ul > li::before {
  content: '・';
}

#plan .-container ul ul {
  margin-top: 0.8em;
}

#plan .-container ul ul ul {
  margin-top: 0.4em;
  margin-left: 1.2em;
}

#plan .-container__note {
  font-size: 1rem;
  @media (max-width: 768px) {
    margin-bottom: 16px;
  }
}

#plan .-container__note p {
  margin-bottom: 16px;
  @media (max-width: 768px) {
    margin-bottom: 12px;
  }
}

#plan .-container__note ul li {
  font-size: 1rem;
}

#plan .-container a {
  display: inline;
  font-size: inherit;
  text-decoration: underline;
}

#plan .extension-charge {
  border: 1px solid #acc5d1;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--fontx1);
  gap: 5rem;
}

#plan .price {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  max-width: 27.7rem;
  width: 100%;
  margin-left: 10rem;
}

#plan .price .column {
  display: flex;
  flex-direction: column;
  gap: 12px;

  max-width: 30.6rem;
  width: 100%;
}

#plan .price .box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#plan .price p {
  max-width: 8rem;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  color: var(--courseBasic);
}

#plan .price span {
  display: inline-block;
}

#plan .price div {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

#plan .pricelabel {
  font-size: 1rem;
  text-align: center;
  color: var(--courseBasic);
  border: 1px solid var(--courseBasic);
  padding: 0.5rem 1rem;
}

#plan .pricedetail {
  font-weight: 700;
  font-size: 3.2rem;
  color: #242533;
}

#plan .pricedetail small {
  font-size: 1.6rem;
}

#plan .pricedetail small span {
  font-size: 1em;
}

#plan .extension-charge .notes {
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  color: #242533;
}
#plan .extension-charge .notes li {
  display: flex;
  gap: 0.5rem;
}

#plan .extension-charge .notes li::before {
  content: "●";
  font-size: 1.4rem;
}

@media (min-width: 769px) {
  #plan .-course p br {
    display: none;
  }
}

@media (max-width: 768px) {
  #plan {
    padding: 4rem 1.6rem;
  }

  #plan .-course {
    padding: 1.6rem;
    gap: 1.6rem;
  }

  #plan .-course p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6em;
  }

  #plan h2 {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.6em;
    margin-bottom: 0;
  }

  #plan h2 .is_sp {
    display: block;
  }

  #plan .-caption {
    font-size: 1rem;
    line-height: 1.8em;
  }

  #plan .-container ul {
    gap: 0.3em;
  }

  #plan .-container li {
    font-size: 1.2rem;
    line-height: 1.6em;
  }

  #plan .-container ul li::before {
    margin-right: 0.3em;
  }

  #plan .extension-charge {
    border: 1px solid #ACC5D1;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--fontx1);
    gap: 3vw;
    flex-wrap: wrap;
  }

  #plan .price {
    flex-direction: column;
    margin-left: 0;
    gap: 3.267vw;
  }

  #plan .price p {
    font-size: 1.6rem;
  }

  #plan .pricelabel {
    max-width: 14rem;
    padding: 0.8vw 2.667vw;
  }
  #plan .pricedetail {
    font-size: 8.533vw;
  }

  #plan .pricedetail small {
    font-size: 5.333vw;
  }

  #plan .pricedetail small span {
    font-size: 3.2vw;
  }

  #plan div.scroll {
    display: block;
    overflow-x: scroll;
  }

  #plan .scroll img {
    width: 150%;
    max-width: none;
  }

  #plan .extension-charge p {
    text-align: center;
  }
  #plan .extension-charge .price div {
    align-items: center;
    gap: 3.267vw;
  }

  #plan .extension-charge .notes li {
    line-height: 1.4em;
    font-size: 1.2rem;
    gap: 0;
  }

  #plan .extension-charge .notes li::before {
    margin-right: 0.3em;
    width: 1.2rem;
    height: 1.2rem;
  }
}

/* /const plan */

/* const flow */

#flow {
  padding-top: var(--innerPaddingPCx2);
}

#flow .-inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

#flow h2 {
  display: flex;
  font-size: 3.2rem;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  color: black;
}

#flow h2:after {
  content: '';
  display: block;
  height: 2px;
  background-color: black;
  width: 4rem;
}

#flow ul {
  display: flex;
  justify-content: space-between;
}

#flow li {
  width: 21%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

#flow picture {
  position: relative;
}

#flow picture source,
#flow picture img {
  position: relative;
  z-index: 2;
}

#flow picture:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 6px;
  background-color: #eff5f9;
  top: 50%;
  z-index: 1;
  left: 80%;
}

#flow li:last-child picture:after {
  display: none;
}

#flow li > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
}

#flow li .-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--courseBasic);
}

#flow .-detail {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.8em;
}

#flow a {
  display: block;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.8em;
  border-radius: 2em;
}

#flow .flow1 span,
#flow .flow3 span {
  color: #f47808;
}

#flow .flow2 span {
  font-size: 1.2em;
}

@media (max-width: 768px) {
  #flow {
    padding: 4rem 1.6rem 0;
  }

  #flow h2 {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.6em;
    margin-bottom: 0;
  }

  #flow ul {
    flex-direction: column;
    gap: 2rem;
  }

  #flow li {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
  }

  #flow li.flow3,
  #flow li.flow4 {
    align-items: center;
  }

  #flow li .-ttl {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--courseBasic);
  }

  #flow li > div {
    padding-top: 0.5rem;
    align-items: flex-start;
    gap: 1rem;
  }

  #flow li p {
    text-align: left;
  }

  #flow picture {
    width: 12rem;
  }

  #flow picture:after {
    position: absolute;
    content: '';
    width: 0.3rem;
    height: 10rem;
    background-color: #eff5f9;
    top: 45%;
    z-index: 1;
    left: 6rem;
  }

  #flow .com_orangebtn {
    padding: 0.5rem 1rem;
    width: auto;
  }

  #flow .is_sp {
    display: block;
  }
}

/* /const flow */

/* const faq */

#faq {
  background-color: #f0f5f9;
  padding: var(--innerPaddingPCx2) 0;
}

#faq .-inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
}

#faq h2 {
  font-size: 2rem;
  flex-direction: column;
  color: black;
}

#faq a {
  display: block;
  flex-direction: column;
  color: var(--courseBasic);
  font-weight: 700;
  border: 2px solid var(--courseBasic);
  padding: 1em 4em;
  border-radius: 0.5em;
  background-color: white;
  transition: all 0.2s ease-out;
}

#faq a:hover {
  background-color: var(--courseBasic);
  color: white;
}

/* /const faq */

/* const footer */
#footer {
  background: #172223;
  padding: 80px 0 0;
  color: #ffffff;
}

#footer a {
  background: transparent;
  text-align: left;
  padding: 0;
}

#footer img {
  max-width: 180px;
}

@media (min-width: 769px) {
  #footer img {
    max-width: 280px;
  }
}

#footer ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 1em;
  padding: 10px 0;
}

@media (min-width: 769px) {
  #footer ul {
    margin-bottom: 40px;
  }
}

#footer ul.-link {
  margin-top: 30px;
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  #footer ul.-link {
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
  }
}

#footer ul.-link li {
  border-top: 1px solid #ffffff;
  padding: 16px 0 16px 8px;
  width: 100%;
}

@media (min-width: 769px) {
  #footer ul.-link li {
    width: -moz-fit-content;
    width: fit-content;
    margin-right: 30px;
    margin-bottom: 0;
    border-top: none;
  }
}

#footer ul.-link li p {
  font-weight: bold;
  font-size: 1.6em;
  margin-bottom: 16px;
}

@media (min-width: 769px) {
  #footer ul.-link li p {
    margin-bottom: 0;
  }
}

#footer ul.-link li ul {
  padding-left: 15px;
}

@media (min-width: 769px) {
  #footer ul.-link li ul {
    display: flex;
    flex-direction: column;
  }
}

#footer ul.-link li ul li {
  border: none;
  padding: 0 0 12px 0;
}

#footer ul.-link li a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: #6b6b6b;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.4em 0.6em;
  border-left-color: currentColor;
  border-right: 0;
  margin-right: 6px;
}

@media (min-width: 769px) {
  #footer ul.-link li a::before {
    margin-right: 8px;
  }
}

#footer ul.-policy {
  display: flex;
}

#footer ul.-policy li {
  margin: 0 20px 10px 0;
  font-size: 0.9em;
}

#footer ul.-policy li:first-of-type {
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  #footer ul.-policy li:first-of-type {
    width: -moz-fit-content;
    width: fit-content;
  }
}

#footer p.-copyright {
  font-size: 1.2em;
  width: 100%;
  text-align: left;
  padding: 20px 0 50px;
  width: 92%;
  margin: 0 auto;
}

@media (min-width: 769px) and (max-width: 1000px) {
  #footer ul.-link li a,
  #footer ul.-link li p {
    font-size: 1.2rem;
  }
  #footer ul.-link li {
    margin-right: 24px;
  }
}

@media (min-width: 769px) {
  #footer p.-copyright {
    text-align: right;
    padding: 20px 80px 20px 0;
    background: #000000;
    width: 100%;
  }
}

@media (max-width: 768px) {
  #footer {
    padding: 7rem 1.6rem 1rem;
  }
}

/* const slick */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin: 0 1rem;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  padding: 5px;
  width: 0.7rem;
  height: 0.7rem;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  content: '';
  text-align: center;
  opacity: 0.25;
  border-radius: 1rem;
  background-color: var(--courseBasic);
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* /const slick */

/* const voice */
#voice {
  background-color: #f0f5f9;
  padding: var(--innerPaddingPCx2) 0;
}

#voice .-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

#voice h2 {
  font-size: 3.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 0.4em;
}

#voice h2:before,
#voice h2:after {
  content: '';
  display: block;
  width: 1.4em;
  height: 1.4em;
  background: url('../img/point.svg') top left no-repeat;
  background-size: 100% auto;
}

#voice .card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

#voice h2:after {
  transform: scaleX(-1);
}

#voice h3 {
  width: calc(100% + calc(var(--fontx1) * 2));
  text-align: center;
  font-size: var(--fontx1);
  padding: 0.4em 0;
  color: white;
  transform: translate(calc(var(--fontx1) * -1), -1.6rem);
  margin-bottom: -1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 2.4em;
}

@media (max-width: 768px) {
  #voice h3 {
    transform: translate(calc(var(--fontx1) * -1), -1.6rem);
    margin-bottom: -1.6rem;
  }
}

#voice .basic h3 {
  background-color: var(--courseBasic);
}

#voice .marketing h3 {
  background-color: var(--courseMarketing);
}

#voice .sales h3 {
  background-color: var(--courseSales);
}

#voice .hiring h3 {
  background-color: var(--courseHiring);
}

#voice .content {
  padding: 0 var(--fontx1);
  display: flex;
  flex-direction: column;
  font-size: var(--fontx1);
  gap: 1.2em;
}

#voice .top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

#voice img {
  width: 24%;
  height: auto;
}

#voice .top > div {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

#voice .summary {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4em;
  color: var(--courseSales);
}

#voice .basic .summary {
  color: var(--courseBasic);
}

#voice .marketing .summary {
  color: var(--courseMarketing);
}

#voice .sales .summary {
  color: var(--courseSales);
}

#voice .hiring .summary {
  color: var(--courseHiring);
}

#voice .name {
  font-size: 1rem;
  line-height: 1.4em;
}

#voice .strong {
  font-weight: 700;
}

#voice .before_after {
  font-size: var(--fontx1);
}

#voice .before_after img {
  height: 1.8rem;
  width: auto;
}

#voice .before p {
  font-size: 1.2rem;
  line-height: 1.6em;
  margin-top: 0.2em;
}

#voice .before p span {
  font-size: 1.2em;
  font-weight: 700;
}

#voice .before {
  position: relative;
  margin-bottom: 2rem;
}

#voice .before:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: '';
  display: block;
  width: 4rem;
  height: 1rem;
  background-color: #dae9f1;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  transform: translateY(1.6rem);
}

#voice .after p {
  font-size: 1.2rem;
  line-height: 1.6em;
  margin-top: 0.2em;
  font-weight: 700;
}

#voice .after p span {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--courseSales);
}

#voice .comment::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #eee;
  margin-bottom: 1.6rem;
}

#voice .before_after .strong {
  font-size: 1.2em;
}

#voice .basic .after .strong {
  color: var(--courseBasic);
}

#voice .marketing .after .strong {
  color: var(--courseMarketing);
}

#voice .sales .after .strong {
  color: var(--courseSales);
}

#voice .hiring .after .strong {
  color: var(--courseHiring);
}

#voice .comment {
  padding: var(--fontx1);
  font-size: 1.2rem;
  line-height: 1.8em;
}

#voice > div > p {
  width: 100%;
  text-align: left;
  margin-top: -2em;
  font-size: 1.2rem;
}


#voice .note-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

@media (width < 769px) {
  #voice .note-wrapper {
    width: 1.2rem;
    width: 80%;
  }
}

.note {
  font-size: 1rem;
}

/* /const voice */

/* const voice */
#voice {
  background-color: #f0f5f9;
  padding: var(--innerPaddingPCx2) 0;
}

#voice .-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

#voice .slickwrapper {
  padding-top: 1.6rem;
}

@media (min-width: 1000px) {
  #voice .swiper-wrapper {
    justify-content: space-between;
  }

  #voice .swiper-slide {
    width: 31%;
  }
}

@media (max-width: 1331px) and (min-width: 769px) {
  #voice .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    height: auto;
  }
  #voice .swiper-slide {
    height: auto;
  }  
}

@media (max-width: 1000px) and (min-width: 769px) {
  #voice .swiper-slide {
    height: auto;
  }
  #voice .slickwrapper {
    height: 100%;
  }
  #voice .card {
    width: 44%;
  }
}

@media (max-width: 768px) {
  #voice h2 {
    font-size: 2.2rem;
  }

  #voice .-inner {
    gap: 2rem;
  }

  #voice .-inner .data {
    padding: 1rem 1.6rem;
    gap: 2rem;
  }

  #voice .swiper {
    padding-bottom: 3rem;
  }

  #voice .-slideshow li .slickwrapper {
    padding-top: 1.6rem;
  }

  #voice .card {
    width: 80%;
    height: auto;
  }

  #voice .slickwrapper {
    height: 100%;
  }
}

/* /const voice */

/* const application */

#application {
  padding: 0;
}

/* /const application */

/* const highlight */
.highlight {
  padding: 0 0.3em !important;
  margin: 0 0.2em;
}

/* const course-skill(swiper) */

.course-skill .swiper-slide.course-box {
  height: auto;
}

@media (min-width: 1001px) {
  .course-skill .swiper-wrapper {
    justify-content: space-between;
  }

  .course-skill .swiper-slide.course-box {
    width: 31% !important;
  }
  .course-skill .swiper-slide.course-box .slickwrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 1000px) and (min-width: 769px) {
  .course-skill .swiper-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .course-skill .swiper-slide.course-box {
    width: 44% !important;
  }

  .course-skill .swiper-slide.course-box {
    width: 80%;
    display: flex;
    flex-direction: column;
    background-color: #eff5f9;
    padding: var(--fontx1);
    border-top: 3px solid #2368a7;
    justify-content: space-between;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .courses {
    width: calc(100% + 4rem);
  }

  .course-skill {
    padding-bottom: 3rem;
  }

  .course-skill .swiper-slide.course-box {
    width: 80%;
    display: flex;
    flex-direction: column;
    background-color: #eff5f9;
    padding: var(--fontx1);
    border-top: 3px solid #2368a7;
    justify-content: space-between;
    gap: 1rem;
  }
}

/* override swiper */

.swiper-pagination-bullet-active {
  background-color: var(--courseBasic);
}

/* Calender */

@media screen and (min-width: 768px) {
  #counseling .counseling .calendar h3 {
    margin-bottom: 1.4rem !important;
  }
}

.calender_attention {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6em;
  margin-bottom: 1.6rem !important;
}

.calender_attention span {
  background: linear-gradient(transparent 60%, #e9d171 50%);
}

@media screen and (max-width: 767px) {
  .calender_attention {
    padding: 0 2rem;
    text-align: left;
  }
}
