@charset "UTF-8";
/* CSS Document */
body {
  min-width: 1170px;
}
/* ---------------------------------------------------------
#main
----------------------------------------------------------*/
#main {
  background: url(../img/main_training.jpg) no-repeat;
  width: 100%;
  height: 250px;
  background-size: cover;
}
#main h1 {
  font-size: 38px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 78px;
  margin-bottom: 38px;
}
#main p {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
}
/* ---------------------------------------------------------
#sec1
----------------------------------------------------------*/
#sec1 {
  padding: 100px 0 0;
}
#sec1 h2,
#sec2 h2,
#sec3 h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #e6132d;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 33px;
}
#sec1 h2::after,
#sec2 h2::after,
#sec3 h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #e6132d;
  margin: 20px auto 0;
}
#sec1 .wrapper {
  display: flex;
  justify-content: space-between;
  width: 980px;
  margin: 0 auto;
}
#sec1 .pic img {
  width: 100%;
  height: auto;
}
#sec1 .pic {
  width: 340px;
  margin-left: 10px;
}
#sec1 .block {
  width: 580px;
}
#sec1 .block p {
  font-size: 16px;
  line-height: 1.87;
  letter-spacing: 0.05em;
}
#sec1 .block p:first-child {
  margin-bottom: 7px;
}
/* ---------------------------------------------------------
#sec2
----------------------------------------------------------*/
#sec2 {
  padding: 95px 0 0;
}
#sec2 h2,
#sec3 h2 {
  padding-bottom: 40px;
}
#sec2 table {
  table-layout: fixed;
  width: 980px;
  margin: 0 auto;
}
#sec2 th {
  width: 180px;
  border-top: 3px solid #e6132d;
  color: #e6132d;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.87;
  letter-spacing: .05em;
  vertical-align: top;
  padding: 23px 0;
}
#sec2 td {
  width: 800px;
  border-top: 3px solid #dddddd;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.87;
  letter-spacing: 0.05em;
  padding: 23px 30px;
  box-sizing: border-box;
}
/* ---------------------------------------------------------
#sec3
----------------------------------------------------------*/
#sec3 {
  padding: 100px 0 0;
  margin: 0 auto;
}
#sec3 .bg-grey {
  background: #f6f6f6;
}
#sec3 .inner {
  width: 800px;
  padding: 55px 0 34px;
  margin: 0 auto;
}
#sec3 .inner:nth-of-type(2) {
  padding: 55px 0 65px;
}
#sec3 .bg-grey:last-of-type .inner {
  padding: 55px 0 60px;
}
#sec3 h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.05em;
  border-left: 5px solid #e6132d;
  padding-left: 15px;
  margin-bottom: 15px;
}
#sec3 dl {
  margin: 36px 0 0;
}
#sec3 dt {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .05em;
  margin-bottom: 3px;
}
#sec3 dt::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/num_01.png) no-repeat;
  background-size: contain;
  margin-right: 9px;
}
#sec3 dt:nth-of-type(2)::before {
  background: url(../img/num_02.png) no-repeat;
  background-size: contain;
}
#sec3 dt:nth-of-type(3)::before {
  background: url(../img/num_03.png) no-repeat;
  background-size: contain;
}
#sec3 dt:nth-of-type(4)::before {
  background: url(../img/num_04.png) no-repeat;
  background-size: contain;
}
#sec3 dd {
  font-size: 16px;
  line-height: 1.87;
  letter-spacing: .05em;
  margin-bottom: 33px;
}
#sec3 .bg-grey:first-of-type dd {
  margin-bottom: 25px;
}
#sec3 .caution {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .05em;
}
/* ---------------------------------------------------------
#link-box
----------------------------------------------------------*/
#link-box {
  width: 100%;
  padding: 100px 0;
  margin: 0 auto;
}
#link-box .wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
#link-box .btn1,
#link-box .btn2,
#link-box .btn3 {
  width: 33.33%;
}
#link-box .wrapper a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 168px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .04em;
  background-color: #e6132d;
  color: #e6132d;
  border: 3px solid #e6132d;
  border-right: none;
  z-index: 2;
}
#link-box .wrapper .btn3 a {
  border-right: 3px solid #e6132d;
}
#link-box .wrapper a:hover {
  color: #fff;
  text-decoration: none;
}
/* ---------------------------------------------------------
#recommend
----------------------------------------------------------*/
#recommend {
  padding-bottom: 40px;
}
#recommend .wrapper {
  flex-wrap: wrap;
}
#recommend .wrapper a {
  margin-bottom: 40px;
}

@media screen and (max-width:750px) {
  body {
  min-width: 100%;
  }

  /* ---------------------------------------------------------
  #main
  ----------------------------------------------------------*/
  #main {
    background: url(../img/main_training_sp.jpg) no-repeat;
    height: 36.6vw;
    background-size: cover;
  }
  #main h1 {
    font-size: 23px;
    font-weight: bold;
    padding-top: 41px;
    margin-bottom: 18px;
  }
  #main p {
    font-size: 13px;
  }
  
  /* ---------------------------------------------------------
  #sec1
  ----------------------------------------------------------*/
  #sec1 {
    padding: 50px 0 0;
  }
  #sec1 h2,
  #sec2 h2,
  #sec3 h2 {
    font-size: 20px;
    padding-bottom: 33px;
  }
  #sec1 h2::after,
  #sec2 h2::after,
  #sec3 h2::after {
    width: 60px;
    height: 4px;
    margin: 15px auto 0;
  }
  #sec1 .wrapper {
    display: block;
    width: 100%;
  }
  #sec1 .pic {
    width: 80vw;
    margin: 0 auto;
  }
  #sec1 .block {
    width: 100%;
    padding: 25px 4vw 0;
    box-sizing: border-box;
  }
  #sec1 .block p {
    font-size: 15px;
    line-height: 1.66;
  }
  #sec1 .block p:first-child {
    margin-bottom: 10px;
  }
  /* ---------------------------------------------------------
  #sec2
  ----------------------------------------------------------*/
  #sec2 {
    padding: 56px 0 0;
  }
  #sec2 h2,
  #sec3 h2 {
    padding-bottom: 30px;
  }
  #sec2 table {
    width: 100%;
  }
  #sec2 th {
    position: relative;
    width: 92vw;
    display: block;
    border-top: 3px solid #eee;
    font-size: 15px;
    line-height: 1;
    padding: 20px 0 16px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  #sec2 th::before {
    position: absolute;
    top: -3px;
    left: 0;
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    background: #e6132d;
  }
  #sec2 td {
    width: 92vw;
    display: block;
    font-size: 15px;
    line-height: 1.66;
    border-top: none;
    vertical-align: top;
    padding: 0 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  /* ---------------------------------------------------------
  #sec3
  ----------------------------------------------------------*/
  #sec3 {
    padding: 40px 0 0;
  }
  #sec3 .bg-grey {
    background: #f6f6f6;
  }
  #sec3 .inner {
    width: 100%;
    padding: 30px 4vw 25px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  #sec3 .inner:nth-of-type(2),
  #sec3 .bg-grey:last-of-type .inner {
    padding: 30px 4vw 25px;
  }
  #sec3 h3 {
    font-size: 17px;
    line-height: 1.8;
    border-left: 4px solid #e6132d;
    padding-left: 2.5vw;
  }
  #sec3 .pic img {
    width: 100%;
    height: auto;
  }
  #sec3 .pic {
    width: 100%;
    margin: 0 auto;
  }
  #sec3 dl {
    margin: 30px 0 0;
  }
  #sec3 dt {
    font-size: 15px;
    margin-bottom: 5px;
  }
  #sec3 dt::before {
    width: 18px;
    height: 18px;
    margin-right: 1.4vw;
  }
  #sec3 dd {
    font-size: 15px;
    line-height: 1.66;
    margin-bottom: 25px;
  }
  #sec3 .bg-grey:first-of-type dd:last-of-type,
  #sec3 dd:last-of-type {
    margin-bottom: 0;
  }
  #sec3 .caution {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .05em;
  }
 /* ---------------------------------------------------------
  #link-box
  ----------------------------------------------------------*/
  #link-box {
    width: 100%;
    padding: 30px 0;
  }
  #link-box .wrapper {
    width: 92vw;
    max-width: 100%;
  }
  #link-box .btn1,
  #link-box .btn2 {
    width: 50%;
  }
  #link-box .btn3 {
    width: 100%;
  }
  #link-box .wrapper a {
    height: 110px;
    font-size: 15px;
    box-sizing: border-box;
  }
  #link-box .wrapper .btn1 a,
  #link-box .wrapper .btn2 a {
    border-bottom: none;
    box-sizing: border-box;
  }
  #link-box .wrapper .btn2 a {
    border-right: 3px solid #e6132d;
  }
  #link-box .wrapper .btn3 a {
    box-sizing: border-box;
  }
  /* ---------------------------------------------------------
  #recommend
  ----------------------------------------------------------*/
  #recommend {
    padding: 0 4vw 5vw;
  }
  #recommend .wrapper .block {
    margin-bottom: 8vw;
  }
}

@media screen and (max-width:320px) {
  
}