@charset "UTF-8";
/*============================mixin==================================*/
/* ブレークポイントのmixin */
/*============================/mixin==================================*/
/* foundation
==================== */
/* 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: collapse;
  border-spacing: 0;
}

/* _base
------------------------------ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #f3f5f8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #373737;
}

img {
  max-width: 100%;
}

button, a {
  color: inherit;
  text-decoration: none;
}
button:active, button:visited, button:hover, a:active, a:visited, a:hover {
  text-decoration: none;
}
button:hover, a:hover {
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

h1, h2, h3, h4 {
  line-height: 1.4;
  font-weight: 400;
}

h1 {
  font-size: 6.8vmin;
}

h1 + p {
  margin-top: 8px;
  font-size: 18px;
}

h1.small {
  font-size: 29px;
}

@media screen and (max-width: 427px) {
  h1.small {
    font-size: 24px;
  }

  h1.small + p {
    font-size: 15px;
  }
}
@media screen and (orientation: landscape) {
  h1 {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 6.3vmin;
  }
}
@media screen and (min-width: 768px) and (orientation: landscape) {
  h1 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1024px) {
  h1 {
    font-size: 44px;
  }
}
p {
  line-height: 1.6;
}

/* layout
==================== */
body {
  color: #333;
}

strong {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, yellow), color-stop(31%, rgba(255, 255, 0, 0)));
  background: linear-gradient(to top, yellow 30%, rgba(255, 255, 0, 0) 31%);
}

/* _header
------------------------------ */
header {
  padding: 40px 0;
}

.headerInner {
  text-align: center;
}
.headerInner .logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 200px;
}
.headerInner h1 {
  font-size: 25px;
}
.headerInner h1::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 30px;
  border-bottom: solid 4px #D6000F;
}

/* _main
------------------------------ */
main.training h1 {
  position: relative;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #17194f;
}
main.training h1::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 30px;
  border-bottom: solid 4px #ef0000;
}
main.training .container {
  background-color: #fff;
  border: 1px solid #24374626;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  margin: 0 auto 60px;
  padding: 0 5%;
  max-width: 1150px;
}
main.training .container + .container {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  main.training .container {
    border-radius: 10px;
    margin-bottom: 80px;
    padding: 0 40px;
  }
  main.training .container + .container {
    margin-top: 80px;
  }
}
main.training .content {
  padding: 30px 0 40px;
}
main.training .content h2 {
  border-left: 3px solid #ef0000;
  margin: 0 0 1em;
  padding: 0 0.5em;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 22px;
}
main.training .content .overview {
  margin: 0 -10px;
}
main.training .content .overview dl {
  line-height: 1.4;
  border: 2px solid #eee;
  border-radius: 5px;
  margin: 10px;
  margin: 20px 0;
  letter-spacing: 1px;
  background: #fff;
}
main.training .content .overview dl dt {
  padding: 1em 0.5em;
  font-size: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.training .content .overview dl dt a {
  line-height: 1.6;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main.training .content .overview dl dt a:not(:hover) {
  text-decoration: underline;
}
main.training .content .overview dl dt a:before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: auto 0.8em auto 0;
  font-size: 0.8em;
  color: #fff;
  padding: 0.25em;
}
main.training .content .overview dl dt a span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main.training .content .overview dl dt span.time{
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.5);
  font-size: 19px;
  border-radius: 10px;
  background: #fff;
  width: 3em;
  height: 3em;
  padding: 5px;
  margin-left: 10px;
  font-weight: bold;
}
main.training .content .overview dl dd {
  padding: 1em;
}
main.training .content .overview dl dd h3 {
  display: inline-block;
  margin-bottom: 5px;
  background: #eee;
  padding: 0.25em 1em;
}
main.training .content .overview dl.smilenext dt {
  background: #fff3f3;
}
main.training .content .overview dl.smilenext dt a:before {
  background: url(../images/icon-smilenext.svg) no-repeat 50% 50%;
  background-size: contain;
}
main.training .content .overview dl.smilenext.is-blue dt {
  background: #f1fdff;
}
@media screen and (min-width: 768px) {
  main.training .content .overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main.training .content .overview dl {
    width: calc(50% - 20px);
  }
  main.training .content .overview dl.is-wide {
    width: 100%;
  }
  main.training .content .overview dl dt,
main.training .content .overview dl dd {
    vertical-align: middle;
  }
  main.training .content .overview dl dt {
    vertical-align: middle;
  }
  main.training .content .overview dl dd h3 {
    display: none;
  }
  main.training .content .overview dl dd.time {
    min-width: 100px;
    text-align: center;
  }
  main.training .content .overview dl.thead dt,
main.training .content .overview dl.thead dd {
    background: #eee;
    text-align: center;
    border-right: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  main.training .content .overview dl.thead {
    display: none;
  }
  main.training .content .overview dl dd div + div {
    margin-top: 10px;
  }
}
main.training .content .applyBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px -5px;
}
main.training .content .applyBtn li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 5px;
}
main.training .content .applyBtn a {
  display: block;
  padding: 0.75em 0.5em;
  border-radius: 0.25em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  overflow: hidden;
}
main.training .content .applyBtn a:hover {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  opacity: 0.7;
}
main.training .content .applyBtn a.is-individual {
  background: #f5ba02;
}
main.training .content .applyBtn a.is-corporation {
  background: #ff9800;
}
main.training .content .applyBtn a.is-reserve {
  pointer-events: none;
  position: relative;
}
main.training .content .applyBtn a.is-reserve::after {
  background: #afafaf;
  color: #666;
  content: "準備中";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.training .content .contentHead {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.training .content .contentHead h2 {
  margin-bottom: 0;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  main.training .content .contentHead h2 {
    font-size: 22px;
  }
}
main.training .content .contentHead span.time{
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  color: #787878;
  font-size: 24px;
  border-radius: 10px;
  border: 2px solid #eee;
}
@media screen and (max-width: 767px) {
  main.training .content .contentHead span.time{
    font-size: 20px;
  }
}
main.training .content .contentHead span.time small{
  font-size: .6em;
  width: 100%;
  background: #eee;
  padding: 5px;
  text-align: center;
}
main.training .content .contentHead span.time b{
  margin: auto;
  font-weight: bold;
  padding: 10px;
}
main.training .schedule {
  margin-top: 1.5em;
}
main.training .schedule .month {
  margin-top: 1.5em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
main.training .schedule .month dt {
  background: #eee;
  text-align: center;
  -webkit-box-shadow: inset 0 0 0 1px #fff;
          box-shadow: inset 0 0 0 1px #fff;
  padding: 0.5em;
}
main.training .schedule .month dd {
  padding: 0.75em 0.5em;
}
main.training .schedule h3 {
  text-align: center;
  padding: 0.25em 0;
  background: #eee;
}
main.training .schedule table th, main.training .schedule table td {
  border: 2px solid #fff;
}
main.training .schedule table th {
  background: #eee;
  text-align: center;
  padding: 0.5em;
  min-width: 4em;
}
main.training .schedule table td {
  padding: 0.75em 0.5em;
}
main.training .schedule table td ul li {
  display: inline-block;
  padding: 0.5em;
  margin: 2px 1px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  border-radius: 3px;
}
main.training .schedule table td ul li b {
  font-weight: 700;
}
main.training .schedule table td ul li span {
  display: inline-block;
  padding: 0 0.5em;
  font-size: 0.9em;
}
main.training .schedule table td ul li span + span {
  border-left: 1px solid;
}

/* 2025/04 add */
main.training .content .overviewBlock{
  padding: 0 10px 10px;
  padding: 0;
  /* background: #fff3f3; */
}
@media screen and (min-width: 768px) {
  main.training .content .overviewBlock {
    /* width: 50%; */
    flex: 1;
    width: calc(50% - 20px);
    margin: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  main.training .content .overviewBlock + .overviewBlock {
    margin-top: 40px;
  }
}
main.training .content .overviewBlock.is-blue{
  /* background: #f1fdff; */
}
main.training .content .overviewTitle{
  text-align: center;
  color: #fff;
  /* color: #e00000; */
  background: #D6000F;
  border-bottom: 2px solid;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0 10px;
  margin: 0 0 20px;
  position: relative;
  border-radius: 3px;
}
main.training .content .overviewTitle::after{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  /* border-right: 2px solid; */
  /* border-bottom: 2px solid; */
  background: #fff;
  background: #D6000F;
  transform: rotate(45deg);
  position: absolute;
  bottom: -8px;
  left: calc(50% - 8px);
}
main.training .content .overviewTitle.is-blue{
  /* color: #2265ce; */
  background: #2265ce;
}
main.training .content .overviewTitle.is-blue::after{
  background: #2265ce;
}
/* /2025/04 add */

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}