@charset "UTF-8";
:root {
  --innerPC: 1000px;
  --innerPaddingPC: 4rem;
  --innerPaddingPCx2: 8rem;
  --innerPaddingSP: 2rem;
  --innerPaddingSPx2: 4rem;
  --fontx1: 1.6rem;
  --courseBasic: #309da4;
  --courseMarketing: #f39800;
  --courseSales: #1c4586;
  --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;
}

.com_bluebtn {
  background-color: #084974;
  color: white;
  border: 1px solid #084974;
  transition: all 0.2s ease-out;
}
@media (width < 1080px) {
  .com_bluebtn {
    background-color: #108fe2;
    border: 1px solid #108fe2;
  }
}

.com_bluebtn:hover {
  color: #084974 !important;
  background-color: white !important;
}
@media (width < 1080px) {
  .com_bluebtn:hover {
    color: #108fe2 !important;
  }
}

/* /common */
@media (1080px <= width) {
  body,
  html {
    font-size: 10px;
  }
  body {
    padding-top: 80px;
  }
}
@media (width < 1080px) {
  body {
    padding-top: 4.8rem;
  }
}
/* const header */
#header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 998;
  background: white;
}

@media (1080px <= width) {
  #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 li p {
    font-size: initial;
  }
  #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;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    /*表示する高さ*/
    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 (1080px <= width) {
  #header .-menu a {
    font-weight: 700;
    text-align: center;
  }
}
@media (width < 1080px) {
  #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 .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 .-inner,
  footer .-inner {
    max-width: 472px;
    width: 100%;
    padding: 0 16px;
  }
}
@media (1080px <= width) {
  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 (width < 1080px) {
  main > section {
    width: 100%;
  }
}
/* /const main */
/* const mainvisual */
#mainvisual .-notice {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  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: 1.2rem 1rem;
  gap: 1rem;
}

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

#mainvisual .-notice .-inner .-start .-date {
  color: #108fe2;
  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: center;
  gap: 0.6rem;
}

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

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

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

#mainvisual .-end {
  border: 1px #108fe2 solid;
  color: #108fe2;
  padding: 0.8rem 1rem;
}

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

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

@media (width < 1080px) {
  #mainvisual .-notice .-inner {
    max-width: none;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 14px 10px;
  }
  #mainvisual .-notice .-inner .-start {
    gap: 0.2rem;
  }
  #mainvisual .-notice .-inner .-end {
    gap: 0.5rem;
  }
  #mainvisual .-notice p {
    line-height: normal;
    font-size: 10px;
    font-weight: 700;
  }
  #mainvisual .-end {
    padding: 12px 10px;
  }
  #mainvisual .-end p {
    font-size: 14px;
    line-height: 1;
  }
  #mainvisual .-notice .-inner .-start .-date {
    line-height: 1.4;
  }
  #mainvisual .-notice .-inner .-date #start_ddd {
    font-size: 12px;
    line-height: 1.4em;
  }
  #mainvisual .-notice .-inner .-date #start_MMDD {
    font-size: 32px;
  }
  #mainvisual .-notice .-inner .-date #deadline_MMDD {
    font-size: 16px;
  }
  #mainvisual .-notice .-inner .-date #deadline_ddd {
    font-size: 10px;
  }
  #mainvisual p.-attention {
    width: 100%;
    font-size: 10px;
    font-weight: 400;
    text-align: center;
  }
  #mainvisual .-attention br {
    display: none;
  }
}
/* /const mainvisual */
/* const campaign */
#campaign {
  background-color: #fff;
  padding: 40px 20px;
}
@media (width < 1080px) {
  #campaign {
    display: grid;
    place-items: center;
    padding: 0;
  }
}

@media (width < 1080px) {
  #campaign img {
    padding: 20px 16px;
  }
}
@media (width < 472px) {
  #campaign img {
    padding: 20px 0;
  }
}

/* /const campaign */
/* const supervisor */
#supervisor {
  background: #e9edf1;
  padding: var(--innerPaddingPCx2);
}
@media (width < 1080px) {
  #supervisor {
    display: flex;
    justify-content: center;
    padding: 120px 0 80px;
  }
}

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

#supervisor .title-box {
  color: #108fe2;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.6em;
  font-weight: 900;
}
@media (width < 1080px) {
  #supervisor .title-box {
    font-size: 24px;
  }
}
@media (width < 472px) {
  #supervisor .title-box {
    letter-spacing: -0.02em;
  }
}

#supervisor .supervisor-box {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 1.6rem;
  background: #fff;
  padding: var(--innerPaddingPC);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
@media (width < 1080px) {
  #supervisor .supervisor-box {
    width: 100%;
    padding: 18px;
  }
}

.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;
}
@media (width < 1080px) {
  #supervisor h3 {
    align-self: initial;
    font-size: 16px;
    grid-area: 1/2/3/3;
    white-space: nowrap;
  }
}

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

#supervisor .job {
  font-size: 1.4rem;
  line-height: 1.6em;
}
@media (width < 1080px) {
  #supervisor .job {
    grid-area: 2/2/3/3;
  }
}

#supervisor .supervisor-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (width < 1080px) {
  #supervisor .supervisor-intro {
    display: grid;
    grid-template-columns: min-content;
    gap: 8px;
  }
}

#supervisor picture {
  width: 40%;
}
@media (width < 1080px) {
  #supervisor picture {
    grid-area: 1/1/3/2;
    width: 120px;
  }
}

#supervisor .introduction {
  width: calc(60% - 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (width < 1080px) {
  #supervisor .introduction {
    display: contents;
  }
}

#supervisor .career {
  font-size: 1.6rem;
  line-height: 1.8em;
}
@media (width < 1080px) {
  #supervisor .career {
    grid-area: 3/1/4/3;
  }
}

#supervisor .roles {
  display: flex;
  flex-direction: column;
  list-style: disc;
  margin-left: 1.6em;
  font-size: 1.4rem;
  gap: 0.8em;
  line-height: 160%;
}
@media (width < 1080px) {
  #supervisor .roles {
    grid-area: 4/1/5/3;
  }
}

/* const supervisor */
/* const flow */
#flow {
  padding-top: 40px;
}
@media (width < 1080px) {
  #flow {
    display: flex;
    justify-content: center;
  }
}

#flow .-inner {
  display: flex;
  flex-direction: column;
  gap: 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;
}
@media (width < 769px) {
  #flow li.flow3, #flow li.flow4 {
    align-items: center;
  }
}

#flow picture {
  position: relative;
}

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

#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: #084974;
}

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

#flow .-detail .normal {
  color: #000;
  font-weight: normal;
  font-size: 10px;
}

#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: #084974;
}

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

@media (width < 1080px) {
  #flow {
    padding: 4rem 0 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 .-ttl {
    font-size: 1.4rem;
    font-weight: 700;
    color: #108fe2;
  }
  #flow li > div {
    flex: 1;
    padding-top: 0.5rem;
    align-items: flex-start;
    gap: 1rem;
  }
  #flow li p {
    text-align: left;
  }
  #flow .-detail .normal {
    font-weight: normal;
    font-size: 12px;
  }
  #flow .flow1 span,
  #flow .flow3 span {
    color: #108fe2;
  }
  #flow picture {
    width: 10rem;
  }
  #flow a {
    width: auto;
    padding: 8px 12px;
  }
}
/* /const flow */
/* const faq */
#faq {
  background-color: #e9edf1;
  padding: var(--innerPaddingPCx2) 0;
}
@media (width < 1080px) {
  #faq {
    display: flex;
    justify-content: center;
  }
}

#faq .-inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
}
@media (width < 1080px) {
  #faq .-inner {
    max-width: none;
    width: 100%;
    padding: 0 2rem;
  }
}

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

#faq a {
  display: block;
  flex-direction: column;
  color: #f48e08;
  font-weight: 700;
  border: 2px solid #f48e08;
  padding: 1em 4em;
  border-radius: 0.5em;
  background-color: white;
  transition: all 0.2s ease-out;
}
@media (width < 1080px) {
  #faq a {
    width: 100%;
    text-align: center;
    padding: 1em 0;
  }
}

#faq a:hover {
  background-color: #f48e08;
  color: white;
}

/* /const faq */
/* const footer */
#footer {
  background: #172223;
  padding: 80px 0 0;
  color: #ffffff;
}
@media (width < 1080px) {
  #footer {
    display: grid;
    justify-content: center;
  }
}

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

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

@media (1080px <= width) {
  #footer img {
    max-width: 280px;
  }
}
#footer ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 1em;
  padding: 10px 0;
}

@media (1080px <= width) {
  #footer ul {
    margin-bottom: 40px;
  }
}
#footer ul.-link {
  margin-top: 30px;
  margin-bottom: 10px;
}

@media (1080px <= width) {
  #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 (1080px <= width) {
  #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 (1080px <= width) {
  #footer ul.-link li p {
    margin-bottom: 0;
  }
}
#footer ul.-link li ul {
  padding-left: 15px;
}

@media (1080px <= width) {
  #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 (1080px <= width) {
  #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;
}

@media (1080px <= width) {
  #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 (1080px <= width) {
  #footer ul.-link li a,
  #footer ul.-link li p {
    font-size: 1.2rem;
  }
  #footer ul.-link li {
    margin-right: 24px;
  }
}
@media (1080px <= width) {
  #footer p.-copyright {
    text-align: right;
    padding: 20px 80px 20px 0;
    background: #000000;
    width: 100%;
  }
}
@media (width < 1080px) {
  #footer {
    padding: 7rem 1.6rem 1rem;
  }
}
/* const voice */
#voice {
  padding: 40px 0 80px;
}
@media (width < 1080px) {
  #voice {
    display: flex;
    justify-content: center;
  }
}

#voice .-wrapper {
  display: grid;
  gap: 40px;
}
@media (width < 1080px) {
  #voice .-wrapper {
    display: block;
    width: 100%;
  }
}
@media (width < 472px) {
  #voice .-wrapper {
    max-width: 472px;
  }
}

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

#voice .content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

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

#voice img {
  width: 72px;
}

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

#voice .summary {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4em;
  color: #108fe2;
}

#voice .basic .summary {
  color: #108fe2;
}

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

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

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

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

#voice .before_after img {
  width: 70px;
}

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

#voice .before p span {
  font-size: 1.4rem;
  font-weight: 700;
}

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

#voice .before:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  display: block;
  width: 3.6rem;
  height: 1rem;
  background-color: #dae9f1;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          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: 10px;
  font-weight: 700;
}

#voice .after p span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #108fe2;
}

#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 .comment {
  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: 1195px;
  margin: 0 auto;
}
@media (width < 1080px) {
  #voice .note-wrapper {
    margin-top: 40px;
    max-width: 392px;
  }
}
@media (width < 472px) {
  #voice .note-wrapper {
    max-width: 80%;
  }
}
#voice .note-wrapper .note {
  font-size: 10px;
}

/* /const voice */
/* const application */
#application {
  padding: 0 !important;
}
@media (width < 1080px) {
  #application {
    display: flex;
    justify-content: center;
  }
}

/* /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 (1080px <= width) {
  .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 (width < 1080px) {
  .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 {
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 1.77px;
  color: #333333;
  margin: 14px 0;
  text-align: center;
}

@media screen and (max-width: 1079px) {
  .calender_attention {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .calender_attention {
    text-align: center;
  }
}
.calender_attention span {
  background: linear-gradient(transparent 60%, #e9d171 50%);
}

@media screen and (max-width: 767px) {
  .calender_attention {
    padding: 0 2rem;
    text-align: left;
  }
}/*# sourceMappingURL=common.css.map */