@charset "UTF-8";
/*--  Base  -------------------------------------------------------------------*/
/*--  reset.css  --*/
/* http://meyerweb.com/eric/tools/css/reset/  v2.0 | 20110126 License: none (public domain) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

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

/*--  base  --*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}

html {
  height: 100%;
}

body {
  background: #fff;
  color: #1F1F1F;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

main {
  display: block;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

p {
  font-weight: 400;
}

h1 {
  font-size: 2.625rem;
  line-height: 1.52381;
  letter-spacing: 0.02381em;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.77778;
  letter-spacing: 0.02778em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 2;
}

a, a:link {
  color: #1F1F1F;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover, a:active {
  color: #F76B1C;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

a img, a:link img, a:visited img, a:hover img, a:active img {
  text-decoration: none;
}

[type="text"], select, button {
  border: 0;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
}

button:hover {
  cursor: pointer;
}

/* 2025/4/4 Katsu */
li.c-trainingLinkListItem:hover {
  cursor: pointer;
}

/* for all input tagged button add by K.T. 2024/5/22 */
input[type="button"],input[type="submit"],button{
  cursor: pointer;
}

select, button, [type="text"] {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

.is-sm {
  display: none;
}

.is-pc {
  display: block;
}

.ut-spacer {
  display: block;
}

.ut-enText {
  font-family: Arial;
}

.ut-fwBold { /* add from 2024/05/07 rt */
  font-weight: 700;
}

.ut-externalLink {
  position: relative;
}

.js-accordionContent {
  display: none;
}
	ul.number li {
		margin-bottom: 5px;
		counter-increment: section;
	}
	ul.number li::before {
		content: counter(section, decimal-leading-zero) ".";
		font-family: 'Montserrat', sans-serif;
		font-weight: 600;
		font-style: italic;
		color: #f7861e;
	}
	ul.number li:nth-last-child(1) {
		margin-bottom: 0;
	}
@media screen and (max-width: 768px) {
  .is-sm {
    display: block;
  }
  .is-pc {
    display: none;
  }
  h1 {
    font-size: 40px;
    font-size: 5.20156vw;
    line-height: 1.2;
  }
  h2 {
    font-size: 48px;
    font-size: 6.24187vw;
    line-height: 1.04167;
    letter-spacing: 0.01667em;
  }
  h3 {
    font-size: 36px;
    font-size: 4.6814vw;
    line-height: 1.38889;
    letter-spacing: 0.03333em;
  }
  p { /* adjusted from 2024/05/07 rt */
    font-size: 30px;       /* font-size: 28px; */
    font-size: 3.90117vw;  /* font-size: 3.64109vw; */
    line-height: 1.8;      /* line-height: 1.92857; */
    letter-spacing: 0.03667em; /* letter-spacing: 0.03929em; */
  }
}

/*--  Module  -------------------------------------------------------------------*/
.globalHeader__areaUpper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2C2C2C;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.625rem 1.25rem 0.625rem 1.25rem;
}

.globalHeader__areaMiddle {
  display: block;
  margin: 0 auto 0 auto;
  max-width: 68.75rem;
  padding: 0 1.25rem 0 1.25rem;
  position: relative;
}

.globalHeader__upperNavList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.globalHeader__upperNavListItem {
  position: relative;
  margin: 0 1.25rem 0 0;
}

.globalHeader__upperNavListItem:before {
  background: #fff;
  bottom: 50%;
  content: "";
  position: absolute;
  top: 50%;
  right: -0.4375rem;
  display: block;
  margin: auto;
  width: 0.0625rem;
  height: 100%;
}

.globalHeader__upperNavListItem a {
  color: #fff;
  font-size: 0.875rem;
}

.globalHeader__tagLine {
  font-size: 0.875rem;
}

.globalHeader__mainNavListItem {
  float: left;
  margin: 0 3.125rem 0 0;
  line-height: 4.375rem;
  font-size: 0.875rem;
  font-weight: bold;
}

.globalHeader__mainNavListItem .pd {
  display: none;
}

.globalHeader__mainNavListItem:hover:after {
  content: "";
  background: #F76B1C;
  display: block;
  height: 0.25rem;
  margin: -0.1875rem 0 0 0;
  width: calc(100% + 20px);
}

.globalHeader__mainNavListItem span {
  display: block;
  width: auto;
}

.globalHeader__mainNavListItem--sp {
  display: none;
}

.globalHeader__mainNavListItem--business .globalHeader__childWrapperListItem {
  min-width: 10.625rem;
}

.globalHeader__mainNavListItem__navTitle {
  position: relative;
}

.globalHeader__mainNavListItem__navTitle:before {
  border-top: 0.0625rem solid #797979;
  border-right: 0.0625rem solid #797979;
  bottom: 0;
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  right: -20px;
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  top: 0;
  height: 8px;
  width: 8px;
  z-index: 2;
}

.globalHeader__mainNavSubList {
  border-radius: 0 0 3.125rem 3.125rem;
  display: none;
  position: absolute;
  padding: 4.375rem 1.25rem 0.625rem 1.25rem;
  background-color: #fff;
  top: 1.875rem;
  z-index: -1;
}

.globalHeader__mainNavSubList:before {
  content: "";
  background: #797979;
  display: block;
  left: 0;
  height: 0.0625rem;
  position: absolute;
  top: 2.5rem;
  width: 100%;
}

.globalHeader__mainNavSubListItem {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0 0 1.25rem 0;
  padding: 0 0 0 0;
  width: 30%;
}

.globalHeader__mainNavSubListItem:nth-child(2) {
  max-width: 38.75rem;
  width: 60%;
}

.globalHeader__mainNavSubListItem__title {
  font-size: 1.375rem;
  font-weight: bold;
  margin: 0 0 0 0;
}

.globalHeader__childWrapperList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.globalHeader__childWrapperList a {
  padding: 0 0 0 0;
  font-weight: bold;
  line-height: 1.3;
}

.globalHeader__childWrapperListItem {
  margin: 0 1.875rem 0 0;
}

.globalHeader__childWrapperListItem:last-child {
  margin: 0 0 0 0;
}

.globalHeader__childListItem {
  margin: 0 0 1.25rem 0;
}

.globalHeader__childListItem--child {
  margin: 0.625rem 1.25rem 0 1.25rem;
  position: relative;
}

.globalHeader__childListItem--child:before {
  content: '-';
  padding: 0 0.625rem 0 0;
}

.globalHeader__childListItem:last-child {
  margin: 0 0 0 0;
}

.globalHeader__cartBtn {
  position: absolute;
  right: -5.625rem;
}

.globalHeader__cartBtn a {
  background: #F76B1C;
  border-radius: 0.375rem;
  color: #fff;
  display: block;
  text-align: center;
  height: 4.625rem;
  padding: 0.625rem 0.625rem 0 0.625rem;
  width: 4.625rem;
}

.globalHeader__cartBtn--text {
  display: block;
  font-size: 0.625rem;
  padding: 0.625rem 0 0 0;
  text-align: center;
}

#main {
  margin: 3rem 0 0 0;
}

#main-navibtn {
  display: none;
  cursor: pointer;
}

#navi {
  background-color: #fff;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0 0.1875rem 1.875rem 0.25rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 1.875rem 0.25rem rgba(0, 0, 0, 0.16);
  left: 0;
  margin: 1.25rem auto 0 auto;
  max-width: 68.75rem;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100vw - 200px);
  z-index: 9999;
}

#navi input, #navi #navibtn {
  display: none;
}

.menu-left {
  float: left;
}

.menu-left img {
  vertical-align: middle;
  margin: 0 0 0 0.625rem;
}

.menu-right {
  float: right;
}

#menu-navibtn {
  display: none;
}

@media screen and (max-width: 1200px) { /* add from 2024/05/07 rt */
  .globalHeader__tagLine {
    font-size: 11px;
  }
  .globalHeader__upperNavListItem a {
    font-size: 11px;
    line-height: 2;
  }
  .globalHeader__mainNavListItem span {
    font-size: 13px;
    margin: 0 0 0 0;
  }
  .globalHeader__mainNavListItem {
    font-size: 13px;
    margin: 0 30px 0 0;
  }
}

@media screen and (min-width: 960px) {
  .globalHeader__mainNavListItem {
    position: static;
  }
  .globalHeader__mainNavListItem:hover .globalHeader__mainNavSubList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .globalHeader__mainNavSubList {
    left: 0;
    width: 100%;
  }
  .globalHeader__mainNavSubListItem {
    padding: 0 0.875rem 0 0.875rem;
    vertical-align: top;
  }
}

@media screen and (max-width: 1024px) {  /* adjusted from 2024/05/07 rt -- old media screen and (max-width: 768px)  */
  #menu {
    display: none;
  }
  #menu label {
    position: absolute;
    right: 0;
    top: 0;
  }
  .globalHeader__areaUpper {
    display: none;
  }
  .globalHeader__mainNavListItem {
    border-bottom: 0.0625rem solid #fff;
    height: auto;
    margin: 0 0 0 0;
    padding: 0 1.25rem 0 1.25rem;
    position: relative;
    width: 100%;
  }
  .globalHeader__mainNavListItem .pd {
    display: block;
    width: 100%;
  }
  .globalHeader__mainNavListItem label:hover {
    cursor: pointer;
  }
  .globalHeader__mainNavListItem:hover:after {
    display: none;
  }
  .globalHeader__mainNavListItem span {
    font-size: 1.25rem;
    padding: 0 1.25rem 0 1.25rem;
  }
  .globalHeader__mainNavListItem--voice a {
    display: block;
    font-size: 20px;
    padding: 0 20px;
  }
  .globalHeader__mainNavSubList {
    background-color: #fff;
    border-radius: 0 0 3.125rem 3.125rem;
    display: block;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    position: unset;
    top: 1.875rem;
    width: 100%;
    z-index: -1;
  }
  .globalHeader__mainNavSubList:before {
    display: none;
  }
  .globalHeader__mainNavSubListItem {
    display: none;
  }
  .globalHeader__mainNavSubListItem:nth-child(2) {
    width: 60%;
  }
  .globalHeader__mainNavSubListItem:last-child {
    border-bottom: none;
  }
  .globalHeader__childWrapperList {
    display: block;
    left: 0;
    top: inherit;
  }
  .globalHeader__childListItem a {
    background: #ffefe7;
    font-size: 1.125rem;
    font-weight: 400;
    display: block;
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    position: relative;
    width: 100%;
  }
  .globalHeader__childListItem a:after {
    display: inline-block;
    border-right: 0.125rem solid #F76B1C;
    border-top: 0.125rem solid #F76B1C;
    bottom: 0;
    content: '';
    height: 0.5rem;
    margin: auto auto auto auto;
    position: absolute;
    right: 1.25rem;
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 0.5rem;
    z-index: 2;
  }
  .globalHeader__childListItem--child {
    border-bottom: #fff 0.0625rem solid;
    margin: 0 0 0 0;
  }
  .globalHeader__childListItem--child:before {
    display: none;
  }
  .globalHeader__cartBtn {
    top: 0;
    right: 3.75rem;
  }
  .globalHeader__cartBtn a {
    border-radius: 0;
    height: 3.75rem;
    padding: 0.5625rem 0.625rem 0 0.625rem;
    width: 3.75rem;
  }
  .globalHeader__cartBtn--text {  /* begin add from 2024/05/07 rt */
    padding: 0.3125rem 0 0 0;
  }
  .globalHeader__spMenuList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
    margin: 40px 20px 0 20px;
  }
  .globalHeader__spMenuListItem {
    width: 100%;
  }
  .globalHeader__spMenuListItem a {
    background: #2c2c2c;
    color: #fff;
    display: block;
    font-size: 16px;
    text-align: center;
  } /* end add from 2024/05/07 rt */
  #menu-navibtn:checked ~ #navi {
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    position: fixed;
  }
  #menu-navibtn:checked ~ * #menu {
    display: block;
  }
  #menu-navibtn:checked ~ * #menu .globalHeader__mainNavListItem {
    border-bottom: 0.0625rem solid #F76B1C;
    max-height: inherit;
    overflow-y: visible;
    padding: 0 0 0 0;
    position: relative;
    width: 100%;
  }
  #menu-navibtn:checked ~ * #menu .globalHeader__mainNavListItem--sp { /* add from 2024/05/07 rt */
    display: block;
    border: none;
  }
  #menu input[type="checkbox"]:checked ~ label ~ ul > .globalHeader__mainNavSubListItem,
  #menu input[type="checkbox"]:checked ~ label ~ ul > .globalHeader__mainNavSubListItem ul li {
    max-height: inherit;
    overflow-y: visible;
    display: block;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    width: 100vw;  /* width: 100%; adjusted to 2024/05/07 rt */
  }
  #menu input[type="checkbox"]:checked ~ label ~ ul > .globalHeader__mainNavSubListItem:first-child {
    display: none;
  }
  #navi {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    right: 0;
    margin: 0 auto 0 auto;
    width: 100%;
  }
  #navi input[type="checkbox"]:checked ~ label .pd .angletoggle:before {
    content: "-";
  }
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
  #navi #navibtn span {
    background-color: #F76B1C;
    display: block;
    height: 3.75rem;
    width: 3.75rem;
  }
  #navi #navibtn span span {
    display: block;
    color: #fff;
    font-size: 0.625rem;
    text-align: center;
    padding: 2.5rem 0 0 0;
  }
  #navi #navibtn span span::after, #navi #navibtn span span::before {
    background-color: #fff;
    content: "";
    left: 0;
    height: 0.125rem;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1.875rem;
  }
  #navi #navibtn span span::before {
    top: 1.125rem;
  }
  #navi #navibtn span span::after {
    bottom: 1.75rem;
  }
  #navi #navibtn:checked ~ #navi label#navibtn span::after {
    bottom: 2.375rem;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  #navi #navibtn:checked ~ #navi label#navibtn span span:before, #navi #navibtn:checked ~ #navi label#navibtn span span:after {
    top: 1.1875rem;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .angletoggle:before {
    content: "+";
  }
  .menu-left img {
    height: 3.75rem;
    margin: 0 0 0 0.625rem;
  }
  .menu-right {
    border-top: 0.0625rem solid #F76B1C;
  }
}

/*------------------------------------------------ footer*/
.contents-link {
  background: #F5F6F7;
  padding: 3.75rem 9.375rem 2.5rem 9.375rem;
  position: relative;
  z-index: 1;
}

.contents-link__container {
  display: -ms-grid;
  display: grid;
  font-size: 1.125rem;
  gap: 1.875rem;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

.contents-link__container a {
  background: #fff;
  -webkit-box-shadow: 0 0.1875rem 1.875rem 0.25rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 1.875rem 0.25rem rgba(0, 0, 0, 0.16);
  width: 100%;
}

.contents-link__item {
  margin: 0 0 0 0;
  padding: 2.5rem 0 1.875rem 0;
  text-align: center;
}

.contents-link__item img {
  height: 5rem;
  margin: 0 0 20px 0;
}

.contents-link__container .contents-link__item img { /* add from 2024/05/07 rt */
  -webkit-box-shadow: none;
          box-shadow: none;
}

.footer {
  background: #1F1F1F;
  color: #fff;
}

.footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5rem 1.25rem 5rem 1.25rem;
  max-width: 88.75rem;
  margin: 0 auto;
}

.footer__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin: 0 0 10rem 0;
}

.footer__item__title {
  font-weight: bold;
  font-size: 1rem;
  margin: 0 0 1.25rem 0;
}

.footer__item__title a {
  color: #fff;
}

.footer__item__lists {
  font-size: 0.875rem;
  padding: 0 0 0 0.9375rem;
}

.footer__item__list {
  list-style-type: none;
  padding: 0 0 1.25rem 0;
  position: relative;
}

.footer__item__list a {
  color: #fff;
  position: relative;
}

.footer__item__list a::before {
  background: #fff;
  bottom: 0;
  content: "";
  height: 0.0625rem;
  left: -0.625rem;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0.1875rem;
}

.footer__portal {
  margin: 0 0 0.9375rem 0;
}

.footer__under__item a {
  color: #fff;
}

.footer__news {
  margin: 0 0 1.25rem 0;
}

.footer__news .main__sub__text {
  padding: 0.625rem 0.625rem 0.625rem 2.5rem;
}

.footer__contact {
  margin: 0 0 1.25rem 0;
}

.footer-sns-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  padding: 14.375rem 0 1.875rem 0;
}

.footer-sns-icon img {
  padding: 0.375rem 0 0.375rem 0;
}

.footer-x, .footer-facebook, .footer-youtube, .footer-instagram {
  margin: 0 1.25rem 0 0;
}

.footer-x img {
  padding: 0.375rem 0 0.375rem 0;
}

.footer-instagram img {
  padding: 0.375rem 0 0.375rem 0;
}

.footer-facebook img {
  padding: 0.0625rem 0 0.0625rem 0;
}

.footer-youtube img {
  padding: 0.375rem 0 0.375rem 0;
}

.footer__link {
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  padding: 0 0.5rem 0 0.5rem;
  position: relative;
}

.footer__link::before {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 0.9375rem;
  position: absolute;
  top: 18%;
  right: -0.0625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.0625rem;
}

.footer__link__last::before {
  display: none;
}

.footer__text {
  font-size: 0.75rem;
}

.main__sub__img {
  background: #fff;
  border-radius: 50%;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}

.main__sub__img img {
  height: 1.375rem;
  text-align: center;
  width: auto;
}

.main__sub__text {
  color: #fff;
  font-size: 1.125rem;
  padding: 0.3125rem 0.625rem 0.3125rem 2.5rem;
}

.main__sub__portal, .main__sub__register {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.3125rem;
  padding: 0.8125rem 0.8125rem 0.8125rem 0.8125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, right top, from(#7D7A7B), to(#9E9F9F));
  background: -webkit-linear-gradient(left, #7D7A7B, #9E9F9F);
  background: linear-gradient(90deg, #7D7A7B, #9E9F9F);
}

.main__sub__register {
  background: -webkit-gradient(linear, left top, right top, from(#F47219), to(#FACD59));
  background: -webkit-linear-gradient(left, #F47219, #FACD59);
  background: linear-gradient(90deg, #F47219, #FACD59);
}

.main__sub__contact {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.3125rem;
  background: #fff;
  color: #1F1F1F;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8125rem 0.8125rem 0.8125rem 0.8125rem;
}

.main__sub__contact .main__sub__text {
  color: #1F1F1F;
}

.main__sub__contact .main__sub__img {
  background: #8F8F8F;
}

@media screen and (max-width: 768px) {
  .contents-link {
    padding: 5vw;
  }
  .contents-link__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contents-link__container a {
    margin: 0 0 0 0;
    width: calc(50% - 10px);
  }
  .contents-link__item {
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  }
  .contents-link__item img {
    height: 100px;
    margin: 0 0 0 0;
  }
  .contents-link__text {
    font-size: 1rem;
    margin: 0 0 0 0;
  }
  .footer {
    padding: 3.125rem 1.25rem 5rem 1.25rem;
    position: relative;
  }
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
    text-align: center;
  }
  .footer__container .main__sub__register, .footer__container .main__sub__portal {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer__right .main__sub__text {
    padding: 0 0 0 40px;
  }
  .footer__right .main__sub__img {
    width: 40px;
  }
  .footer__portal, .footer__news, .footer__contact {
    display: block;
  }
  .footer-sns-icon {
    padding: 0 0 0 0;
    margin: 0 auto 2.5rem auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__items {
    display: none;
  }
  .footer__text {
    bottom: 1.875rem;
    left: 0;
    position: absolute;
    right: 0;
  }
}

/*------------------------------------------------ ボタン*/
a.c-btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 0.3125rem;
  color: #F76B1C;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 0 auto;
  padding: 0.875rem 1.25rem 0.875rem 1.25rem;
  position: relative;
  max-width: 18.75rem;
}

a.c-btn--color {
  background: #FEF0E8;
}

a.c-btnExternalLink {
  background: -webkit-linear-gradient(left, #7D7A7B, #9E9F9F);
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 18px 40px;
}

a.c-btn--gray {
  background: -webkit-linear-gradient(left, #7D7A7B, #9E9F9F);
  border-radius: 5px;
  color: #fff;
}

a.c-btn--gray .c-btnArrow {
  background: #fff;
  display: block;
  margin: 0 0 0 20px;
}

a.c-btn--gray .c-btnArrow:before {
  border-right: 0.0625rem #797979 solid;
  border-top: 0.0625rem #797979 solid;
}

a.c-btn--gray .c-btnArrow:after {
  background: #797979;
}

a.c-btn--main {
  background: -webkit-linear-gradient(left, #F47219, #FACD59);
  color: #fff;
}

a.c-btn--main .c-btnArrow {
  background: #fff;
}

a.c-btn--main .c-btnArrow:before {
  border-right: 0.0625rem #f0b07e solid;
  border-top: 0.0625rem #f0b07e solid;
}

a.c-btn--main .c-btnArrow:after {
  background: #f0b07e;
}
.c-btn__double a.c-btn{
	max-width: none;
}

.c-btn__double a.c-btn--main .c-btnArrow{
	margin: 0 0 0 20px;
}

.c-btnArrow {
  background: #F76B1C;
  border-radius: 50%;
  display: inline-block;
  height: 2.125rem;
  position: relative;
  width: 2.125rem;
}

.c-btnArrow:before {
  border-right: 0.0625rem #fff solid;
  border-top: 0.0625rem #fff solid;
  bottom: 0;
  content: '';
  display: block;
  height: 0.375rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.375rem;
  z-index: 2;
}

.c-btnArrow:after {
  background: #fff;
  bottom: 0;
  content: '';
  display: block;
  height: 0.0625rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 0.625rem;
  z-index: 2;
}

.c-btnArrow--side {
  background: transparent;
  margin: 0 0 0 10px;
}

.c-btnArrow--side:before {
  border-right: 0.0625rem #f0731a solid;
  border-top: 0.0625rem #f0731a solid;
}

.c-btnArrow--side:after {
  display: none;
}

.c-btn--more {
  display: inline-block;
  margin: 50px auto 20px auto;
  position: relative;
  width: auto;
}

.c-btn--gray {
  background: -webkit-linear-gradient(left, #7D7A7B, #9E9F9F);
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px 16px 20px;
}

.c-btn--gray a {
  background: -webkit-linear-gradient(left, #7D7A7B, #9E9F9F);
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px 16px 20px;
}

.c-btn--gray .c-btnArrow {
  background: #fff;
  display: block;
  margin: 0 0 0 20px;
}

.c-btn--gray .c-btnArrow:before {
  border-right: 0.0625rem #797979 solid;
  border-top: 0.0625rem #797979 solid;
}

.c-btn--gray .c-btnArrow:after {
  background: #797979;
}

.c-btn--main {
  background: -webkit-linear-gradient(left, #F47219, #FACD59);
  color: #fff;
}

.c-btn--main .c-btnArrow {
  background: #fff;
}

.c-btn--main .c-btnArrow:before {
  border-right: 0.0625rem #f0b07e solid;
  border-top: 0.0625rem #f0b07e solid;
}

.c-btn--main .c-btnArrow:after {
  background: #f0b07e;
}

p.c-btn {
  display: inline-block;
}

input.c-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 8px;
  display: block;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 80px 18px 20px;
}

input.c-btn--gray {
  background: -webkit-linear-gradient(left, #7D7A7B, #9E9F9F);
  color: #fff;
}

.more {
  text-align: left;
  padding: 20px 140px 20px 20px;
  border-radius: 5px;
  background: -webkit-linear-gradient(left, #7D7A7B, #9E9F9F);
  color: #fff;
  font-size: 18px;
  min-width: 280px;
}

.more:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  bottom: 0;
  content: '';
  display: block;
  right: 20px;
  margin: auto;
  position: absolute;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 0;
  height: 8px;
  width: 8px;
  z-index: 2;
}

a.c-btn--pdf {
    background: #817e7e url(/common/img/icon__pdf.png) no-repeat 95% center;
    color: #fff;
    margin: 0;
    padding: 16px 40px 16px 16px;
}


@media screen and (max-width: 768px) {
  a.c-btn {
    font-size: 1.125rem;
    max-width: unset;
  }
}

/*------------------------------------------------ 
    BaseSection
------------------------------------------------*/
.l-baseSection {
  overflow: hidden;
}

.l-section {
  margin: 0 0 7.5rem 0;
}

.l-section__inner {
  max-width: 76.25rem;
  padding: 0 0.625rem 0 0.625rem;
  margin: 0 auto 0 auto;
}

.l-section__inner .c-btnList {
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
}

.l-section__header {
  margin: 0 0 2.5rem 0;
}

.l-sectionTitle {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  position: relative;
}

.l-sectionTitle__main {
  color: #F76B1C;
  font-size: 1rem;
  padding: 0 0 0 1.25rem;
}

.l-2column {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-2column .c-trainingTable {
  text-align: left;
  width: calc(50% - 10px);
}

.c-vendorImage img {
  -webkit-box-shadow: 0 0.1875rem 1.875rem 0.25rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 1.875rem 0.25rem rgba(0, 0, 0, 0.16);
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .l-section {
    margin: 0 0 60px 0;
  }
  .l-section__inner {
    padding: 0 1.25rem 0 1.25rem;
  }
  .l-sectionTitle {
    font-size: 3.25rem;
    position: relative;
  }
  .l-sectionTitle__main {
    font-size: 0.875rem;
  }
  .l-sectionTitle--content {
    font-size: 0.75rem;
    margin: 0 0 1.25rem 0;
  }
  .l-section__header {
    margin: 0 0 1.25rem 0;
  }
  .l-section__headerText {
    margin: 1.25rem 0 0 0;
  }
  .c-vendorImage img {
    width: 100%;
  }
}

/*------------------------------------------------ 
    Contents
------------------------------------------------*/
.c-trainingList {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-trainingListItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 40px 0;
  width: calc(33% - 20px);
}

.c-trainingListItem a {
  background: #fff;
  border-radius: 5px;
  display: block;
}

.c-trainingListItem__image img {
  border-radius: 5px 5px 0 0;
}

.c-trainingListItem__areaText {
  padding: 20px;
}

.c-trainingListItem__title {
  font-size: 20px;
  margin: 0 0 20px 0;
}

.c-trainingListItem__text {
  font-size: 16px;
  line-height: 1.3;
}

.c-newsListItem {
  border-top: 0.0625rem solid #F5F6F7;
  padding: 1.5rem 0 1.5rem 1.5rem;
}

.c-newsListItemTextHeader {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #F76B1C;
  margin: 0 0 1.25rem 0;
}

.c-newsListItemTextHeader--date {
  font-size: 0.9375rem;
  margin: 0 1.25rem 0 0;
}

.c-newsListItemTextHeader--tag {
  background: #FDE1D2;
  font-size: 0.75rem;
  padding: 0.375rem 1.25rem 0.375rem 1.25rem;
}

.c-newsListItemImage {
  margin: 0 0 2.5rem 0;
}

.c-newsListItem a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-newsListItem__date {
  color: #F76B1C;
  font-size: 0.9375rem;
  margin: 0 1.25rem 0 0;
}

.c-newsListItem__tag {
  background: #FDE1D2;
  color: #F76B1C;
  font-size: 0.75rem;
  margin: 0 1.25rem 0 0;
  padding: 0.125rem 0.875rem 0.125rem 0.875rem;
  text-align: center;
  width: 6.25rem;
}

.c-newsListItem__title {
  font-size: 1.125rem;
  font-weight: 400;
  width: 70%;
}

.c-newsListItem:last-child {
  border-bottom: 0.0625rem solid #F5F6F7;
}

.c-serviceListItem {
  background: #fff;
  border-radius: 0.5rem;
  margin: 0 0 1.25rem 0;
}

.c-serviceListItem a {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1.875rem 2.5rem 1.5rem 2.5rem;
  width: 100%;
}

.c-serviceListItem__number {
  color: #F76B1C;
  font-size: 2rem;
  margin: 0 2.75rem 0 0;
}

.c-serviceListItem__tagList {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0.625rem 0;
}

.c-serviceListItem__tagListItem {
  background: #8F8F8F;
  border-radius: 3.125rem;
  font-size: 1rem;
  padding: 0.375rem 1.5rem 0.375rem 1.5rem;
  margin: 0 1.25rem 0 0;
}

.c-serviceListItem__tagListItem:first-child {
  margin: 0 1.25rem 0 0;
}

.c-serviceListItem__tagListItem:nth-child(2) {
//  margin: 0 1.25rem 20px 0;
}

.c-serviceListItem__tagListItem--vendor {
  font-family: Arial;
  font-size: 1.125rem;
}

.c-serviceListItem__tagListItem--course {
  background: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 20px 0;
  padding: 0 0 0 0;
  text-align: left;
}

.c-serviceListItem__tagListItem--courseTitle {
  background: #797979;
  color: #fff;
  font-size: 14px;
  margin: 0 10px 0 0;
  padding: 0 20px;
}

.c-serviceListItem__tagListItem--courseText {
  font-size: 14px;
  font-weight: 700;
}

.c-serviceListItem__title {
  font-size: 1.375rem;
  font-weight: 400;
}

.c-customerList {
  margin: 0 0 3.125rem 0;
}

.c-customerListItem__name {
  color: #F76B1C;
  font-size: 1.375rem;
  font-weight: bold;
  margin: 0 0 1.25rem 0;
}

.c-featureListItem {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-featureListItem:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 7.5rem 0 7.5rem 0;
}

.c-featureList__image {
  width: 37.5rem;
}

.c-featureList__areaText {
  width: calc(100% - 680px);
}

.c-featureList__number {
  color: #F76B1C;
  font-size: 2.75rem;
  line-height: 1.2;
}

.c-featureList__title {
  font-size: 1.375rem;
  margin: 0 0 1.25rem 0;
}

.c-partnerList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 0 2.5rem 0;
}

.c-partnerListItem {
  margin: 0 0 1.25rem 0;
  width: calc(100% / 4);
}

.c-partnerEstablishment {
  background: #fff;
  margin: 0 0 2.5rem 0;
  padding: 1.875rem 1.875rem 0.625rem 1.875rem;
}

.c-partnerEstablishment__title {
  background: -webkit-gradient(linear, left top, right top, from(#F47219), to(#FACD59));
  background: -webkit-linear-gradient(left, #F47219, #FACD59);
  background: linear-gradient(90deg, #F47219, #FACD59);
  border-radius: 0.625rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 1.25rem 0;
  padding: 0.5rem 1.25rem 0.5rem 1.25rem;
}

.c-partnerEstablishment__listItem, .c-partnerEstablishment__childListItem {
  margin: 0 0 1.25rem 0;
  padding: 0 0 0 2.5rem;
  position: relative;
}

.c-partnerEstablishment__listItem:before, .c-partnerEstablishment__childListItem:before {
  background: #F76B1C;
  border-radius: 50%;
  bottom: 0;
  content: '';
  display: block;
  height: 0.5rem;
  left: 1.25rem;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0.5rem;
}

.c-partnerEstablishment__list--teacher {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-partnerEstablishment__list--teacher .c-partnerEstablishment__listItem:before {
  display: none;
}

.c-partnerEstablishment--trainer .c-partnerEstablishment__listItem {
  padding: 0 0 0 0;
}

.c-partnerEstablishment--trainer .c-partnerEstablishment__listItem:before {
  display: none;
}

.c-blogListItem {
  margin: 0 0 3.125rem 0;
}

.c-blogListItem__image {
  margin: 0 0 2.5rem 0;
}

.c-blogListItem__head {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #F76B1C;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1.25rem 0;
}

.c-blogListItem__date {
  font-size: 0.9375rem;
  margin: 0 1.25rem 0 0;
}

.c-blogListItem__tag {
  background: #FDE1D2;
  font-size: 0.75rem;
  padding: 0.125rem 1.25rem 0.125rem 1.25rem;
}

.c-blogListItem__title {
  font-size: 1rem;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .c-trainingListItem {
    margin: 0 0 1.875rem 0;
    width: 100%;
  }
  .c-blogList {
    display: block;
    margin: 0 auto 0 auto;
  }
  .c-blogListItem__image {
    margin: 0 0 1.25rem 0;
  }
  .c-blogListItem__image img {
    width: 100%;
  }
  .c-blogListItem__title {
    line-height: 1.5;
  }
  .c-blogListItem, .c-customerListItem {
    margin: 0 0 2.5rem 0;
  }
  .c-blogListItem a, .c-customerListItem a {
    position: relative;
  }
  .c-blogListItem a:after, .c-customerListItem a:after {
    border: #F76B1C 0.0625rem solid;
    border-radius: 0.3125rem;
    content: '詳しく見る';
    color: #F76B1C;
    display: block;
    margin: 1.25rem 0 0 0;
    max-width: 8.75rem;
    text-align: center;
    padding: 0.625rem 0.625rem 0.625rem 0.625rem;
  }
  .c-blogListItem a:before, .c-customerListItem a:before {
    border-top: 0.0625rem solid #F76B1C;
    border-right: 0.0625rem solid #F76B1C;
    bottom: 0.9375rem;
    content: '';
    display: block;
    height: 0.375rem;
    left: 8.125rem;
    margin: auto;
    position: absolute;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 0.375rem;
    z-index: 2;
  }
  .c-serviceListItem a {
    display: block;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    position: relative;
  }
  .c-serviceListItem__title {
    font-size: 20px;
  }
  .c-serviceListItem__tagList {
    display: block;
    margin: 0 0 1rem 3.125rem;
  }
  .c-serviceListItem__tagListItem {
    font-size: 16px;
    padding: 0.375rem 0.375rem 0.375rem 0.375rem;
    text-align: center;
  }
  .c-serviceListItem__tagListItem:first-child {
    margin: 0 0 0.625rem 0;
  }
  .c-serviceListItem__tagListItem--vendor {
    font-size: 1.5rem;
    text-align: center;
  }
  .c-serviceListItem__tagListItem__title {
    font-size: 1.25rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
  .c-serviceListItem__number {
    font-size: 2.5rem;
    position: absolute;
    top: 0;
  }
  .c-customerList {
    display: block;
  }
  .c-customerListItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .c-customerListItem__name {
    margin: 1.25rem 0 1.25rem 0;
  }
  .c-customerListItem:nth-child(2) {
    margin: 0 0 2.5rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .c-customerListItem__image img {
    width: 100%;
  }
  .c-customerList__areaText {
    width: 100%;
  }
  .c-customerList__image {
    margin: 0 0 1.25rem 0;
    width: auto;
  }
  .c-customerList__number {
    margin: 0 0 0.625rem 0;
  }
  .c-customerList__title {
    margin: 0 0 1.25rem 0;
  }
  .c-partnerList {
    gap: 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 1.25rem 0;
  }
  .c-partnerListItem {
    width: calc(50% - 10px);
  }
  .c-partnerEstablishment__title {
    border-radius: 0.3125rem;
  }
  .c-partnerEstablishment__listItem, .c-partnerEstablishment__childListItem {
    line-height: 1.3;
    padding: 0 0 0 20px;
  }
  .c-partnerEstablishment__listItem:before, .c-partnerEstablishment__childListItem:before {
    left: 0;
  }
  .c-newsList {
    padding: 0 0 7.5rem 0;
  }
  .c-newsListItem {
    padding: 20px;
  }
  .c-newsListItem a {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .c-newsListItem__tag {
    margin: 0 0 0.625rem 0;
    min-width: 100px;
    width: auto;
  }
  .c-newsListItem__title {
    width: 100%;
  }
  .c-featureListItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .c-featureListItem__title {
    font-size: 1.875rem;
    margin: 0 0 2rem 0;
  }
  .c-featureListItem:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin: 3.75rem 0 3.75rem 0;
  }
  .c-featureList__areaText, .c-featureList__image {
    width: 100%;
  }
  .c-featureList__image {
    margin: 0 0 1.875rem 0;
  }
}

/*------------------------------------------------  Page_contents */
.c-breadcrumb {
  margin: 0 0 48px 0;
}

.c-breadcrumbList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-breadcrumbListItem {
  margin: 0 20px 0 0;
}

.c-breadcrumbListItem:last-child {
  margin: 0 0 0 0;
}

.c-breadcrumbListItem a {
  position: relative;
}

.c-breadcrumbListItem a:after {
  border-top: 0.0625rem solid #fff;
  border-right: 0.0625rem solid #fff;
  bottom: 0;
  content: '';
  display: block;
  height: 0.25rem;
  margin: auto;
  position: absolute;
  right: -0.625rem;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.25rem;
  z-index: 2;
}

.c-breadcrumbListItem, .c-breadcrumbListItem a {
  color: #fff;
  font-size: 12px;
}

.c-pageLinkList {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-pageLinkListItem {
  text-align: center;
  width: calc(100% / 4);
}

.c-pageLinkListItem3 {
  text-align: center;
  width: calc(100% / 2);
}

.c-pageLinkListItem a {
  color: #1F1F1F;
  display: block;
  font-size: 17px;
  font-weight: 700;
  height: 80px;
  letter-spacing: -.2px;
  line-height: 1.5;
  padding: 28px 0;
  position: relative;
}

.c-pageLinkListItem a:after {
  border-top: 2px solid #797979;
  border-right: 2px solid #797979;
  bottom: 0;
  content: '';
  display: block;
  height: 10px;
  margin: auto;
  position: absolute;
  right: 10px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 0;
  width: 10px;
  z-index: 2;
}

.c-pageLinkListItem a:before {
  background: #1F1F1F;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.c-pageLinkListItem a:hover {
  color: #F76B1C;
}

.c-pageLinkListItem a:hover:after {
  border-top: 2px solid #F76B1C;
  border-right: 2px solid #F76B1C;
}

.c-pageLinkListItem--multi a {
  padding: 14px 0;
}

.c-table {
  height: 100%;
  width: 100%;
}

.c-tableWrapper {
  margin: 0 0 120px 0;
}

.c-table__lessonTypeList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  /*display: flex;*/
  display: block;
}

.c-trainingTable table.c-table td ul li.classroom {
	background: url(https://www.topout.co.jp/common/img/classroom.svg) no-repeat left center / 20px;
}
.c-trainingTable table.c-table td ul li.online {
	background: url(https://www.topout.co.jp/common/img/online.svg) no-repeat left center / 20px;
}
.c-trainingTable table.c-table td ul li.elearning {
	background: url(https://www.topout.co.jp/common/img/elearning.svg) no-repeat left center / 20px;
}
.c-trainingTable table.c-table td ul li {
    margin-right: 15px;
    padding-left: 25px;
}

td.c-table__lessonType ul li {
    margin-top: 10px;
}

.c-table th, .c-table td {
  border-bottom: 1px solid #1F1F1F;
  color: #1F1F1F;
  line-height: 1.4;
  padding: 14px 20px;
  vertical-align: middle;
}

.c-table th {
  background: #F5F6F7;
  font-size: 16px;
  font-weight: 700;
  max-width: 200px;
  width: 33%;
}

.table-about th {
  width: 25%;
}

.c-table .c-form__cart--price {
  color: #1F1F1F;
  text-align: center;
}

/*------------------------------------------------  Training_contents */
.c-trainingSchedule__title {
  border-bottom: 2px solid #1F1F1F;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  padding: 0 0 20px 0;
  position: relative;
  text-align: center;
  /*&:before{
            background: $color-darkgray;
            border-radius: 50%;
            content:"";
            display: inline-block;
            height: 36px;
            position: absolute;
            right: 20px;
            width: 36px;
        }
        &:after {
            border-top: 2px solid $color-base;
            border-right: 2px solid $color-base;
            bottom: 12px;
            content: '';
            display: block;
            right: 32px;
            margin: auto;
            position: absolute;
            transform: rotate(135deg);
            top: 0;
            height: 8px;
            width: 8px;
            z-index: 2;
        }
        &.js-is-open:after{
            bottom: 6px;
            transform: rotate(-45deg);
        }*/
}

.c-trainingSchedule__content {
  background: #F5F6F7;
  padding: 30px;
}

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

.c-trainingScheduleTable th {
  background: #797979;
  border-right: 1px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  vertical-align: middle;
}

.c-trainingScheduleTable th:last-child {
  border: none;
}

.c-trainingScheduleTable th:nth-child(2) {
  width: 18%;
}

.c-trainingScheduleTable td {
  background: #fff;
  border-bottom: 1px solid #1F1F1F;
  border-right: 1px solid #1F1F1F;
  line-height: 1.5;
  padding: 10px;
  text-align: left;
  vertical-align: middle;
}

td.c-trainingScheduleTable__price{
 text-align: right;
}

.c-trainingScheduleTable td.c-trainingScheduleTable__availability{
    text-align: center;
  }

.c-selfpaceTable td.c-trainingScheduleTable__date{
    text-align: center;
  }


.c-trainingScheduleTable__date {
  font-weight: 700;
}

.c-trainingScheduleTable__place a {
  color: #F76B1C;
  font-weight: 700;
  text-decoration: underline;
}

.c-trainingScheduleTable__cartBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #F76B1C;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 40px 10px 20px;
}

.c-trainingScheduleTable__cartBtnWrapper {
  position: relative;
}

.c-trainingScheduleTable__cartBtnWrapper:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  bottom: 0;
  content: '';
  display: block;
  right: 20px;
  margin: auto;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  height: 8px;
  width: 8px;
  z-index: 2;
}

.c-trainingScheduleTable__price {
  font-size: 18px;
  font-weight: 700;
}

.voucherSelect {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.voucherSelect:after {
  border-top: 2px solid #F76B1C;
  border-right: 2px solid #F76B1C;
  bottom: 8px;
  content: '';
  display: block;
  right: 20px;
  margin: auto;
  position: absolute;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 0;
  height: 8px;
  width: 8px;
  z-index: 2;
}

.voucherSelect select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /*min-width: 160px;*/
  min-width: 330px;
  height: 2.8em;
  padding: 0.4em calc(.8em + 20px) 0.4em 0.8em;
  border: 1px solid #F76B1C;
  border-radius: 3px;
  background-color: #fff;
  color: #F76B1C;
  font-size: 1em;
  cursor: pointer;
}

/*.c-trainingDetailContent {
  margin: 0 0 0 40px;
  width: calc(70% - 25px);
}*/

.c-trainingDetailContent__title {
  border-bottom: 2px solid #797979;
  color: #1F1F1F;
  font-size: 28px;
  line-height: 1;
  margin: 0 0 40px 0;
  padding: 0 0 20px 0;
}

.c-trainingDetailContent__item {
  margin: 0 0 40px 0;
}

.c-trainingDetailContent__item:last-child {
  margin: 0 0 0 0;
}

.c-trainingDetailContent__item dl {
  margin: 0 0 40px 0;
}

.c-trainingDetailContent__item dt, .c-trainingDetailContent__item dd {
  font-size: 18px;
  line-height: 1.8;
}

.c-trainingDetailContent__item dt {
  font-weight: 700;
}

.c-trainingDetailContent__item dd li:before {
  content: '・';
}

.c-trainingDetailContent__item dd li a {
  color: orange;
  text-decoration: underline;
}

.c-trainingDetailContent__item dl dd a {
    color: orange;
    text-decoration: underline;
}

.c-trainingDetailContent__item .c-trainingDetailContent__text a:link { 
  color: orange;
  text-decoration: underline;
}

.c-trainingDetailContent__text {
  margin: 0 0 20px 0;
}

.c-trainingDetailContent__certificateListItem {
  margin: 0 0 40px 0;
}

.c-trainingDetailContent__certificateListItem a {
  border: 1px solid #797979;
  border-radius: 10px;
  display: block;
  padding: 20px 30px;
}

.c-trainingDetailContent__certificateTitle {
  font-size: 20px;
  margin: 0 0 20px 0;
}

.c-trainingDetailIndexListItem.is__current a {
  opacity: 1;
}

.c-trainingDetailIndexListItem a {
  color: #797979;
  display: block;
  font-size: 18px;
  opacity: .3;
  padding: 18px 0;
  position: relative;
}

.c-trainingDetailIndexListItem a:after {
  background: #D2D2D2;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 40px;
  width: 2px;
}

.c-trainingVoiceListItem {
  background: #fff;
  border: 4px solid #F76B1C;
  border-radius: 15px;
  margin: 0 0 40px 0;
  padding: 30px;
}

.c-trainingVoiceListItem__title {
  font-size: 20px;
  margin: 0 0 20px 0;
}

.c-trainingVoiceListItem__name {
  color: #F76B1C;
  font-size: 14px;
  text-align: right;
}

.c-trainingVoiceListItem__text {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.c-trainingSupportList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-trainingSupportListItem {
  background: #fff;
  border: 2px solid #797979;
  border-radius: 15px;
  margin: 0 0 40px 0;
  padding: 20px;
  text-align: center;
  width: calc(100% / 4 - 20px);
}

.c-trainingSupportListItem__title {
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.c-trainingSupportListItem .c-btn--gray a {
  padding: 10px 20px;
}

.c-trainingSupportListItem .c-btn--gray .c-btnArrow {
  margin: 0 0 0 10px;
}

.c-trainingLinkListItem__title {
  font-size: 20px;
  margin: 0 0 10px 0;
}

.training .c-trainingLinkListItem__title {
  font-size: 20px;
  margin: 0 0 10px 0;
  width: 700px;
}

.c-trainingLinkListItem a {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 40px 0;
}

.c-trainingLinkListItem__image {
  width: calc(30% - 25px);
}

.c-trainingLinkListItem__areaText {
  width: calc(80% - 25px);
}

.c-trainingLinkListItem__tagList--training {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.c-trainingLinkListItem_margin {
  margin: 0 0 0.625rem 0;
}


.c-trainingLinkListItem__btn {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #F76B1C;
  border-radius: 8px;
  color: #F76B1C;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 1;
  margin: 0 0 0 auto;
  max-width: 140px;
  padding: 8px 10px;
}

.c-trainingSearch {
  margin: 0 0 40px 0;
}

.c-trainingSearch:last-child {
  margin: 0 0 30px 0;
}

.c-trainingSearch__title {
  font-size: 28px;
  margin: 0 0 40px 0;
}

.c-trainingSearch__linkList {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-trainingSearch__linkListt:after {
  content: "";
  display: block;
  width: calc(100% / 4 - 20px);
}

.c-trainingSearch__linkListItem {
  margin: 0 0 20px 0;
  vertical-align: middle;
  width: calc(100% / 4 - 10px);
}

.c-trainingSearch__linkListItemBtn {
  background: #1F1F1F;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 16px;
  height: 100%;
  line-height: 1.5;
  padding: 20px 0 19px 0;
}

.c-trainingSearch__linkListItemBtn:hover {
  background: -webkit-linear-gradient(left, #F47219, #FACD59);
}

.c-trainingSearch__linkListItem--multi .c-trainingSearch__linkListItemBtn {
  padding: 16px 0 16px 0;
}
.c-trainingTable .c-table td a {
  color: #f76a1c;
  text-decoration: underline;
}

.exam-list li {
    display: flex;
    align-items: flex-start;
}

.exam-list li span {
    width: 260px;          /* 左列の幅を固定 */
    flex-shrink: 0;        /* 縮まないようにする */
}

ol.number {
	counter-reset: listnum; /* カウンターをリセット */
	list-style: none; /* 標準のスタイルは消す */
}
ol.number > li::before{
	counter-increment: listnum; /* counter-resetと同じ文字列 */
	content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
	padding-right: 4px;
        color: #1F1F1F;
        font-size: 16px;
        font-family: 'Noto Sans JP';
        font-weight: normal;
}
.newWindowIcon:after {
vertical-align: middle;
content: "";
display: inline-block;
width: 16px;
height: 16px;
background-image: url(/img/outside_link.svg);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
margin: 6px;
}


@media screen and (max-width: 768px) {
  .c-trainingTable {
    width: 100%;
  }
  .c-trainingTable .c-table th, .c-trainingTable .c-table td {
    display: block;
    max-width: unset;
    padding: 12px 20px;
  }
  .c-trainingTable .c-table td a {
    color: #f76a1c;
    text-decoration: underline;
  }
  .c-trainingTable .c-table th {
    width: 100%;
  }
  .c-trainingTable__title {
    font-size: 20px;
  }
  #scheduleDetail {
    padding: 60px 0;
  }
  .l-section__headerAreaImage {
    margin: 0 0 30px 0;
    width: 100%;
  }
  .l-section__headerAreaText {
    width: 100%;
  }
  .c-trainingDetailIndexListItem {
    border-bottom: 1px solid #D2D2D2;
  }
  .c-trainingDetailIndexListItem a:after {
    background: transparent;
    border-top: 2px solid #D2D2D2;
    border-right: 2px solid #D2D2D2;
    bottom: 0;
    height: 6px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    margin: auto;
    top: 0;
    width: 6px;
  }
  .c-trainingDetailContent {
    margin: 0 auto;
    width: 100%;
  }
  .c-trainingDetailContent__title {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .c-trainingDetailContent__text {
    font-size: 18px;
  }
  .c-trainingDetailContent__certificateText {
    font-size: 17px;
  }
  .c-serviceListItem__tagList {
    margin: 0 0 20px 0px;
  }
  .c-trainingVoiceListItem {
    padding: 20px;
  }
  .c-trainingVoiceListItem__text {
    font-size: 17px;
    margin: 0 0 10px 0;
  }
  .c-trainingVoiceListItem__name {
    text-align: left;
  }
  .c-trainingVoiceListItem__title {
    line-height: 1.3;
  }
  .c-trainingSupportList {
    display: block;
  }
  .c-trainingSupportListItem {
    background: #fff;
    border-radius: 10px;
    margin: 0 0 40px 0;
    padding: 20px 20px 20px 20px;
    width: 100%;
  }
  .c-trainingSupportListItem a {
    display: block;
    padding: 20px;
    position: relative;
  }
  .c-trainingSupportListItem__tagListItem {
    margin: 0 0 0 0;
    width: 50%;
  }
  .c-trainingSupportListItem .c-btnWrapper {
    position: relative;
  }
  .c-trainingSupportListItem .c-btn--gray .c-btnArrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;
  }
  .c-trainingSupportListItem__tagList {
    margin: 0 0 20px 0;
  }
  .c-trainingLinkListItem__areaText {
    width: 100%;
  }
  .c-trainingLinkListItem__image {
    margin: 0 0 30px 0;
    width: 100%;
  }
  .c-trainingLinkListItem__title {
    margin: 0 0 20px 0;
  }
  .c-trainingLinkListItem__btn {
    margin: 0 0 0 0;
    max-width: 160px;
    padding: 4px 20px;
  }
  .c-trainingLinkListItem__text {
    margin: 0 0 20px 0;
  }
  .c-trainingLinkListItem.c-trainingRelatedListItem--training {
    margin: 0 0 40px 0;
  }
  .c-trainingLinkListItem--vendor, .c-trainingLinkListItem--category {
    width: 100%;
  }
  .c-trainingLinkListItem a {
    display: block;
  }
  .c-trainingSchedule__title {
    font-size: 20px;
  }
  .c-trainingScheduleListItem {
    background: #fff;
    border-radius: 10px;
    margin: 0 0 40px 0;
    padding: 0 20px 20px 20px;
  }
  .c-trainingScheduleListItem__date, .c-trainingScheduleListItem__place, .c-trainingScheduleListItem__absent, .c-trainingScheduleListItem__voucher {
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    padding: 20px 0;
    text-align: left;
  }
  .c-trainingScheduleListItem__date {
    font-weight: 700;
  }
  .c-trainingScheduleListItem__voucherText {
    font-size: 16px;
    margin: 0 0 10px 0;
  }
  .c-trainingScheduleListItem__price {
    font-size: 18px;
    font-weight: 700;
    padding: 20px 0 10px 0;
  }
  .voucherSelect select {
    font-size: 16px;
    width: 100%;
  }
}

/*------------------------------------------------  Form_contents */
input {
  border: 1px solid #797979;
  display: block;
  font-size: 16px;
  line-height: 1;
  padding: 20px;
  width: 100%;
}

input.c-cartSearchInput__btn {
  background: #797979;
  border: none;
  border-radius: 0 0.3125rem 0.3125rem 0;
  bottom: 0;
  color: #fff;
  display: block;
  max-width: 140px;
  padding: 22px 0;
  position: absolute;
  right: 0;
}

input[type="checkbox"] {
  position: absolute;
  right: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 16px;
  width: 16px;
}

input.c-btn { /* add from 2024/05/07 rt */
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

input[type="text"], textarea[type="text"] {
  border: 1px solid #797979;
  display: block;
  font-size: 16px;
  padding: 20px;
  width: 100%;
}

label {
  position: relative;
}

form {
  margin: 0 0 20px 0;
  position: relative;
}


/* selfpace */

.c-selfpace__title {
  border-bottom: 2px solid #1F1F1F;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  padding: 0 0 20px 0;
  position: relative;
  text-align: center;


}
.c-selfpaceTable {
/*  border-left: 1px solid #1F1F1F;*/
}

.c-selfpaceTable th {
    background: #797979;
    border-right: 1px solid #fff;
    color: #fff;
    font-weight: 700;
    padding: 20px;
    vertical-align: middle;
}

.c-selfpaceTable th:first-child, .c-selfpaceTable .c-form__cart--delete {
/*  border-left: 1px solid #1F1F1F;*/
  width: 25%;
}

.c-selfpaceTable th.c-selfpaceTable__productTitle {
  width: 35%;
}

.c-selfpaceTable th.c-selfpaceTable__durationTitle {
  width: 10%;
}

.c-selfpaceTable th.c-selfpaceTable__priceTitle {
  width: 11%;
}

.c-selfpaceTable th.c-selfpaceTable__vouchernameTitle {
  width: 12%;
}

.c-selfpaceTable th.c-selfpaceTable__btnTitle {
  width: 10%;
}

.c-selfpaceTable {
    background: #F5F6F7;
    padding: 30px;
}

.c-selfpace__title:before {
    background: #797979;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 36px;
    position: absolute;
    right: 20px;
    width: 36px;
}

.c-selfpace__title {
  border-bottom: 2px solid #1F1F1F;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  padding: 0 0 20px 0;
  position: relative;
  text-align: center;
        &:after {
            border-top: 2px solid $color-base;
            border-right: 2px solid $color-base;
            bottom: 12px;
            content: '';
            display: block;
            right: 32px;
            margin: auto;
            position: absolute;
            transform: rotate(135deg);
            top: 0;
            height: 8px;
            width: 8px;
            z-index: 2;
        }
        &.js-is-open:after{
            bottom: 6px;
            transform: rotate(-45deg);
        }
}




.c-trainingScheduleTable {
  border-left: 1px solid #1F1F1F;
}

.c-trainingScheduleTable th:first-child, .c-trainingScheduleTable .c-form__cart--delete {
/*  border-left: 1px solid #1F1F1F;*/
  width: 10%;
}

.c-form .c-trainingScheduleTable th:last-child {
  width: 40%;
}

.c-form .c-trainingScheduleTable th:nth-child(2) {
  width: 18%;
}

.c-form .c-trainingScheduleTable td {
  padding: 16px 20px;
}

.c-form__cart {
  margin: 0 0 40px 0;
}

.c-form__cart--price {
  color: #1F1F1F;
  font-size: 18px;
  font-weight: 700;
  padding: 24px 10px;
  text-align: center;
}

.c-form__cart--priceLabel {
  border-left: 1px solid #1F1F1F;
  color: #1F1F1F;
  font-weight: 700;
  padding: 16px 40px;
}

.c-form__cart--name {
  width: 50%;
}

.c-formText {
  color: #1F1F1F;
}

.c-formText__example {
  font-size: 14px;
  margin: 10px 0 0 0;
}

.c-form__titleRequired:after {
  background: #F76B1C;
  content: '必須';
  color: #fff;
  font-size: 11px;
  margin: 0 0 0 20px;
  padding: 3px 6px;
}

.c-form__checkbox__text {
  background: #1F1F1F;
  border-radius: 60px;
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 20px;
  text-align: center;
}

.c-form__checkbox label { /* add from 2024/05/07 rt */
  max-width: 400px;
  display: block;
}

.c-form .c-table th, .c-form .c-table td {
  background: #fff;
  border: none;
  vertical-align: middle;
}

.c-form .c-table th {
  color: #1F1F1F;
  position: relative;
  text-align: left;
}

.c-form--cart {
  margin: 0 0 50px 0;
}

.c-form__select select, .c-form__select label {
  display: block;
  position: relative;
  width: 100%;
}

.c-form__select select {
  border: 1px solid #797979;
  padding: 20px;
}

.c-form__select label:before {
  border-right: 2px #fff solid;
  border-top: 2px #fff solid;
  bottom: 0;
  content: '';
  display: block;
  height: 10px;
  margin: auto;
  position: absolute;
  right: 25px;
  top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  width: 10px;
  z-index: 2;
}

.c-form__select label:after {
  bottom: 0;
  background: #797979;
  content: "";
  display: block;
  height: 59px;
  position: absolute;
  right: 0;
  width: 60px;
}

.c-form__radio--label {
  font-size: 18px;
  padding: 0 0 0 0;  /* add from 2024/05/07 rt */
}

.c-form__radioWrapper label {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #1F1F1F;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 400px;
  padding: 10px 0;  /* adjust to 2024/05/074 rt  old  padding: 20px; */
}

.c-form__radioWrapper label.inquiry {
  display: -webkit-box;
  -webkit-box-direction: normal;
  -webkit-box-pack: start;
}

.c-form__radioWrapper label.inquiry input[type="radio"] {
  margin-right: 10px;
}

.c-form__radioWrapper input[type="radio"] {
  margin: 0 0 0 20px;
  width: 16px;   /* add from 2024/05/07 rt  old  *width: auto;  */
  height: 16px;  /* add from 2024/05/07 rt */
}

.c-cartContentDetail__text {
  margin: 0 0 30px 0;
}

.c-cartContentDetail__areaBtn {
  background: #F5F6F7;
  margin: 0 0 30px 0;
  padding: 20px;
  text-align: center;
}

.c-cartContentDetail__areaBtnTitle {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.c-cartContentDetail__areaBtn a {
  text-decoration: underline;
}

.c-cartContentDetail__areaBtnList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-cartContentDetail__areaBtnListItem {
  margin: 0 20px 0 0;
  width: calc( 40% - 20px);
}

.c-cartContentDetail__areaBtnListItem .c-btnWrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.c-cartContentDetail__areaBtnListItem .c-btnArrow {
  background: #fff;
  position: absolute;
  right: 20px;
}

.c-cartContentDetail__areaBtnListItem .c-btnArrow:before {
  border-right: 0.0625rem #797979 solid;
  border-top: 0.0625rem #797979 solid;
}

.c-cartContentDetail__areaBtnListItem .c-btnArrow:after {
  background: #797979;
}

.c-cartContentDetail__areaBtnListItem .c-btn--send {
  background: -webkit-linear-gradient(left, #F76B1C, #FACD59);
  color: #fff;
}

.c-cartContentDetail__areaBtn .c-form__radioWrapper label {
    font-weight: 700;
    padding: 10px;
    line-height: 1.5;
    max-width: 330px;  /* add from 2024/05/07 rt */
}

.c-cartContentDetail__btnList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 20px 0;
}

.c-cartContentDetail__btnListWrapper {
  width: calc(100% - 150px);
}

.c-cartContentDetail__btnListItem {
  margin: 0 0 20px 0;
  width: calc(50% - 10px);
}

.c-cartContentDetail__btnWrapperDelete {
  margin: 0 0 60px 0;
}

.c-cartContentDetail__btnWrapperDelete input.c-btn--gray {
  margin: 0 auto;
  width: 60%;
}

.c-cartContentDetail--cart .c-cartContentDetail__inputWrapper {
  border-top: 1px solid #1F1F1F;
  margin: 40px 0 0 0;
  padding: 40px 0 0 0;
}

.c-cartContentDetail--payment .c-cartSearchInput__areaInput {
  width: 100%;
}

.c-cartContentDetail--letter .c-form__checkbox {
  display: block;
  margin: 0 auto 0 0;
  max-width: 400px;
  text-align: left;
}

.c-cartContentDetail--address .c-form__checkbox__text {
  background: #F5F6F7;
  color: #1F1F1F;
  display: inline-block;
}

.c-cartContentDetail--address .c-cartContentDetail__areaBtn {
  padding: 20px;
}

.c-cartContentDetail--address input[type="checkbox"] {
  right: 20px;  /* changed from 2024/05/07 rt */
}

.c-cartContentDetail--letter .c-cartContentDetail__areaBtn, .c-cartContentDetail--questionnaire .c-cartContentDetail__areaBtn {
  background: transparent;
  padding: 0;
  text-align: left;
}

.c-cartContentDetail--term .c-cartContentDetail__areaBtn a {
  text-decoration: underline;
}

.c-cartContentDetail--term .c-cartContentDetail__areaBtn .c-btn--gray {
  background: -webkit-linear-gradient(left, #7D7A7B, #9E9F9F);
  color: #fff;
  margin: 0 auto 30px 0;
  padding: 10px 20px;
  text-decoration: none;
}

.c-cartContentDetail--send .c-cartContentDetail__btnWrapper {
  margin: 0 auto;
  max-width: 320px;
  position: relative;
}

.c-cartContentDetail--send .c-cartContentDetail__btnWrapper .c-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: -webkit-linear-gradient(left, #F47219, #FACD59);
  border: none;
  border-radius: 5px;
  color: #fff;
  outline: none;
  padding: 30px 20px;
  text-align: left;
  width: 100%;
}

.c-cartContentDetail--send .c-cartContentDetail__btnWrapper .c-btnArrow {
  background: #fff;
  position: absolute;
  right: 20px;
  bottom: 0;
  top: 0;
  margin: auto;
}

.c-cartContentDetail--send .c-cartContentDetail__btnWrapper .c-btnArrow:before {
  border-right: 0.0625rem #ec9420 solid;
  border-top: 0.0625rem #eb9522 solid;
}

.c-cartContentDetail--send .c-cartContentDetail__btnWrapper .c-btnArrow:after {
  background: #F76B1C;
}

.c-cartContentDetail--send .c-cartContentDetail__btnWrapper .c-btn:disabled {
  background: #F5F6F7;
  cursor: not-allowed;
}

.c-cartContentDetail__areaBtnWrapper { /* begin add 2024/05/07 rt */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-animation: 0;
          animation: 0;
  padding: 0 20px;
}

.c-cartContentDetail__areaBtnWrapper .c-cartContentDetail__text {
  margin: 0 0 0 0;
}

.c-cartContentDetail--address .c-cartContentDetail__areaBtn {
  margin: 0 0 0 0;
  width: 40%;
} /* end add from 2024/05/07 rt */

.c-cartSearchInput__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 50px 0 0;
}

.c-cartSearchInput__areaInput {
  width: calc(100% - 150px);
}

.c-cartSearchInput__text {
  display: block;
  margin: 0 0 20px 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  tr {
    display: block;
    margin: 0 0 40px 0;
  }
  .c-trainingScheduleTable {
    border: none;
  }
  .c-trainingScheduleTable td {
    border: none;
    display: block;
    padding: 0 0 0 0;
    width: 100%;
  }
  .c-trainingScheduleTable td:before {
    background: #797979;
    color: #fff;
    content: attr(data-label);
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 20px;
  }
  .c-trainingScheduleTable thead {
    display: none;
  }
  .c-trainingScheduleTable .c-form__cart--delete {
    border: none;
    position: relative;
    width: 100%;
  }
  .c-trainingScheduleTable .c-form__cart--delete .c-form__radio {
    margin: 12px 0 12px 0;
  }
  .c-trainingScheduleTable .c-form__cart--codeText {
    display: block;
    padding: 12px 20px 12px 20px;
  }
  .c-trainingScheduleTable .c-form__cart--price {
    border-bottom: 1px solid #1F1F1F;
    text-align: left;
  }
  .c-trainingScheduleTable .c-form__cart--priceText {
    display: block;
    padding: 12px 20px 12px 20px;
  }
  .c-trainingScheduleTable .c-form__cart--priceLabel {
    background: #F76B1C;
    color: #fff;
    padding: 12px;
  }
  .c-trainingScheduleTable .c-form__cart--nameText {
    display: block;
    padding: 12px 20px 12px 20px;
  }
  .c-trainingScheduleTable .c-form__cart--total td::before {
    display: none;
  }
  .c-trainingScheduleTable .c-form__cart--total .c-form__cart--price {
    padding: 12px 20px;
  }
  .c-trainingDetailContent__item {
    margin: 0 0 60px 0;
    text-align: left;
  }
  .c-form--cart {
    margin: 0 0 20px 0;
  }
  .c-formText {
    text-align: left;
  }
  .c-form__checkbox__text {
    display: block;
    font-size: 18px;
  }
  .c-form tr {
    display: block;
  }
  .c-form .c-table th, .c-form .c-table td {
    display: block;
    max-width: unset;
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
  }
  .c-cartContentDetail__areaBtn {
    margin: 0 calc(50% - 50vw) 60px calc(50% - 50vw);
    padding: 40px 40px 20px 40px;
  }
  .c-cartContentDetail__areaBtnTitle {
    font-size: 20px;
  }
  .c-cartContentDetail__areaBtnList {
    display: block;
  }
  .c-cartContentDetail__areaBtnListItem {
    margin: 0 0 20px 0;
    width: 100%;
  }
  .c-cartContentDetail__inputWrapper {
    text-align: center;
  }
  .c-cartContentDetail__btnList {
    display: block;
  }
  .c-cartContentDetail__btnListItem {
    width: 100%;
  }
  .c-cartContentDetail__btnListWrapper {
    width: 100%;
  }
  .c-cartContentDetail--applicant td:before {
    display: none;
  }
  .c-cartContentDetail--applicant .c-form tr:last-child {
    margin: 0 0 0 0;
  }
  .c-cartContentDetail--address .c-cartContentDetail__areaBtn {
    margin: 0 calc(50% - 50vw) 60px calc(50% - 50vw);
  }
  .c-cartContentDetail--letter .c-cartContentDetail__areaBtn, .c-cartContentDetail--questionnaire .c-cartContentDetail__areaBtn {
    margin: 0 0 0 0;
  }
  .c-cartContentDetail--term .c-trainingDetailContent__item {
    margin: 0 0 40px 0;
  }
  .c-cartContentDetail--term .c-cartContentDetail__areaBtn {
    margin: 0 0 20px 0;
    padding: 30px 20px;
  }
  .c-cartContentDetail__areaBtnWrapper { /* begin add from 2024/05/07 rt */
    gap: 20px;
    margin: 0 0 40px 0;
    padding: 0 0 0 0;
  }
  .c-cartContentDetail--address .c-cartContentDetail__areaBtn {
    margin: 0;
    padding: 10px;
    width: 100%;
  } /* end add from 2024/05/07 rt */
  .c-cartSearchInput__areaInput {
    width: 100%;
  }
  .c-cartSearchInput__areaInput form {
    margin: 0 0 0 0;
  }
  .c-cartSearchInput__title {
    font-size: 22px;
    margin: 0 0 20px 0;
    width: 100%;
  }
}

/*-----------------------  add*/
.c-form__radioWrapper label {
  padding: 10px 0;
  line-height: 1.5;
}

.c-form__radioWrapper input[type="radio"] {
  height: 16px;
  width: 16px;
}

.c-form__checkbox__text {
  font-size: 16px;
  padding: 10px;
  line-height: 1.5;
}

.c-form__radio--label {
  padding: 0 0 0 0;
}

.c-form__checkbox label {
  max-width: 400px;
  display: block;
}

input.c-btn {
  font-family: 'Noto Sans JP';
}

.ut-fwBold {
  font-weight: 700;
}

/*------------------------------------------------ 
    vendorColor
------------------------------------------------*/
.ut-vendor_aruba {
  background: #ea8f16;
}

.ut-vendor_cisco {
  background: #4fb1da;
}

.ut-vendor_citrix {
  background: #265e6f;
}

.ut-vendor_comptia {
  background: #a72c34;
}

.ut-vendor_devops {
  background: #831914;
}

.ut-vendor_ec-council {
  background: #e6cf4f;
}

.ut-vendor_netapp {
  background: #0067c5;
}

.ut-vendor_exin {
  background: #283560;
}

.ut-vendor_f5 {
  background: #ca074e;
}

.ut-vendor_self {
  background: #F76B24;
}

.ut-vendor_redhat {
  background: #e0000c;
}

.ut-vendor_python {
  background: #316a99;
}

.blink {
  animation-name: blinking; /*アニメーション名*/
  animation-duration: 1s; /*アニメーション1回分の時間の長さ*/
  animation-timing-function: ease-in-out;/*アニメーションの動き方*/
  animation-delay: 0s;/*アニメーションの開始時間*/
  animation-iteration-count: infinite;/*繰り返す回数*/
  animation-direction: alternate;/*反転再生するかどうか*/
}

.error-text-blink {
  color: red;
  font-weight: bold;
  animation-name: blinking; /*アニメーション名*/
  animation-duration: 1s; /*アニメーション1回分の時間の長さ*/
  animation-timing-function: ease-in-out;/*アニメーションの動き方*/
  animation-delay: 0s;/*アニメーションの開始時間*/
  animation-iteration-count: infinite;/*繰り返す回数*/
  animation-direction: alternate;/*反転再生するかどうか*/
}


#trainingCourse .c-trainingSearch__linkListItem input ,
#trainingSelf .c-trainingSearch__linkListItem input {
  display: none;
}

#trainingCourse .c-trainingSearch__linkListItem label ,
#trainingSelf .c-trainingSearch__linkListItem label {
  background: #1F1F1F;
  border-radius: 50px;
  color: #fff;
  cursor:pointer;
  display: block;
  font-size: 16px;
  height: 100%;
  line-height: 1.5;
  padding: 10px 0 10px 0;
  text-align: center;
}

#trainingSelf #resetButton {
    /*background: #1F1F1F*/
    background: #9a9b9b;
    border-radius: 50px;
    color: #fff;
    display: block;
    /*margin: 80px auto 40px auto;*/
    margin: 20px auto auto auto;
    padding: 10px 60px;
    m
}


#trainingCourse .c-trainingSearch__linkListItem label:hover , #trainingCourse .c-trainingSearch__linkListItem label.selected {
  background: -webkit-linear-gradient(left, #F47219, #FACD59);
}

#trainingCourse #resetButton {
  background: #9a9b9b;
  border-radius: 50px;
  color: #Fff;
  display: block;
  margin: -20px auto  auto;
  padding: 10px 60px;
}

#trainingList #resetButton {
  background: #9a9b9b;
  border-radius: 50px;
  color: #Fff;
  display: block;
  margin: -20px auto 40px auto;
  padding: 10px 60px;
}


@keyframes blinking {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*# sourceMappingURL=common.css.map */
