@charset "utf-8";
/* --------------------------------------------------
kokomoney index css
-------------------------------------------------- */
body::before {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background-color: var(--color-red);
  z-index: -1;
  content: '';
}
html {
  background-color: #fff;
}

/* ------------------------------
mv
------------------------------ */
.mv {
  position: relative;
  background: var(--color-red);
  border-bottom: 3px solid var(--color-red);
}
.mv::after {
  display: block;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: #fff;
  content: '';
}
.mv .mv_inner {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 0 35px;
}
.mv h1 {
  display: inline-block;
  position: relative;
  padding: 0.5em 1em;
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.mv h1::before,
.mv h1::after {
  position: absolute;
  width: 68px;
  height: 68px;
  border: 1px solid #fff;
  content: '';
}
.mv h1::before {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}
.mv h1::after {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}
.mv h1 .txt_l {
  font-size: 49px;
}
.mv .logo svg {
  width: 100%;
  max-width: 441.802px;
  height: auto;
}
.mv .txt {
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 2.0;
}
@media screen and (min-width: 760px) {
  .mv .mv_inner {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 350px;
  }
  .mv .h1 {
    grid-column: 2/3;
    grid-row: 1/2;
    text-align: center;
    align-self: center;
  }
  .mv .logo {
    grid-column: 1/2;
    grid-row: 1/4;
    justify-self: center;
    align-self: center;
  }
  .mv .txt {
    grid-column: 2/3;
    grid-row: 2/3;
    margin: 0.5em 0;
  }
  .mv .btn {
    grid-column: 2/3;
    grid-row: 3/4;
    align-self: self-end;
  }
}
@media screen and (min-width: 600px) and (max-width: 1219px) {
  .mv .mv_inner {
    grid-template-columns: 33% 66%;
    column-gap: 1%;
  }
}
@media screen and (max-width: 1049px) {
  .mv h1 {
    padding: 0.5em;
    font-size: 30px;
  }
  .mv h1::before,
  .mv h1::after {
    width: 58px;
    height: 58px;
  }
  .mv h1 .txt_l {
    font-size: 39px;
  }
  .mv .txt {
    font-size: 18px;
  }
  .mv .btn_colorful .btn_inner {
    font-size: 20px;
  }
}
@media screen and (max-width: 759px) {
  .mv .mv_inner {
    text-align: center;
  }
  .mv h1 {
    margin-bottom: 0.6em;
  }
  .mv .logo svg {
    max-width: 288.22px;
  }
  .mv .txt {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 599px) {
  .mv {
    border-bottom: 2px solid var(--color-red);
  }
  .mv::after {
    height: 4px;
  }
  .mv .mv_inner {
    width: 90%;
  }
  .mv h1 {
    margin-bottom: 1em;
    font-size: 20px;
  }
  .mv h1::before,
  .mv h1::after {
    width: 36px;
    height: 36px;
  }
  .mv h1 .txt_l {
    font-size: 25px;
  }
  .mv .txt {
    font-size: 16px;
  }
  .mv .btn_colorful .btn_inner {
    font-size: initial;
  }
}

/* ------------------------------
showcase
------------------------------ */
.showcase .company_logo {
  width: 100vw;
  background: #fff;
}
.showcase .company_logo .logo_slick {
  display: none;
}
.showcase .company_logo .logo_slick.slick-initialized {
  display: block;
}
.showcase .achieve {
  padding: 20px 2%;
  text-align: center;
}
.showcase .achieve .txt {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
}
.showcase .achieve .mark {
  line-height: 0;
}
@media screen and (min-width: 600px) {
  .showcase .achieve {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .showcase .achieve .txt {
    margin-right: 1em;
  }
}
@media screen and (max-width: 769px) {
  .showcase .achieve .txt {
    font-size: 24px;
  }
}
@media screen and (max-width: 599px) {
  .showcase .achieve {
    padding: 15px 2%;
  }
  .showcase .achieve .txt {
    margin-bottom: 1em;
    font-size: 18px;
    line-height: 1.6;
  }
}

/* ------------------------------
about
------------------------------ */
.about .feature_list li {
  padding: 23px 3%;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}
.about .feature_list li + li {
  margin-top: 40px;
}
.about .feature_list h4 {
  margin-bottom: 0.8em;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.6;
}
.about .btn_colorful {
  margin-top: 60px;
}
@media screen and (min-width: 600px) {
  .about .feature_list li {
    display: grid;
    grid-template-columns: 230px auto;
    column-gap: 15px;
  }
  .about .feature_list h4 {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .about .feature_list .img {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .about .feature_list .txt {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 1000px) {
  .about .feature_list li {
    column-gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .about .feature_list h4 {
    font-size: 18px;
    text-align: center;
  }
  .about .feature_list .img {
    text-align: center;
  }
  .about .feature_list .img img {
    max-width: 230px;
  }
  .about .feature_list .txt {
    margin-top: 1em;
    line-height: 2.2;
  }
  .about .btn_colorful {
    margin-top: 45px;
  }
}

/* ------------------------------
voices
------------------------------ */
.voices .company_name {
  margin-bottom: 0.5em;
  color: var(--color-red);
  font-size: 16px;
  font-weight: bold;
}
.voices .company_lead {
  font-size: 16px;
}
.voices .main_voice .company_lead {
  font-size: 20px;
  font-weight: bold;
}
.voices .voice_detail {
  margin-top: 20px;
}
.voices .voice_detail dt {
  padding: 0.5em;
  background-color: var(--color-pink);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.voices .voice_detail dd {
  padding: 0.5em 1em;
  background-color: var(--color-transparent-pink);
}
.voices .voice_list {
  margin-top: 50px;
}
.voices .voice_list li {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.voices .voice_list li .list_inner {
  padding: 1em;
  font-size: 16px;
}
.voices .move {
  display: block;
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}
.voices .move:hover {
  transform: translateY(2px);
  opacity: 0.8;
}
.voices .move a {
  display: block;
  height: 100%;
  color: #000;
  text-decoration: none;
}
.voices .btn_01 {
  margin-top: 60px;
}
@media screen and (min-width: 700px) {
  .voices .voice_detail {
    display: grid;
    grid-template-columns: auto 37.5%;
    column-gap: 2%;
  }
  .voices .voice_detail .img {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .voices .voice_detail .txt {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .voices .voice_detail dl {
    display: grid;
    grid-template-columns: 90px auto;
    column-gap: 5px;
    row-gap: 5px;
  }
  .voices .voice_detail dt {
    align-content: center;
  }
  .voices .voice_list {
    display: flex;
    justify-content: space-between;
  }
  .voices .voice_list li {
    width: 31%;
  }
}
@media screen and (max-width: 699px) {
  .voices .voice_detail .txt {
    margin-top: 15px;
  }
  .voices .voice_detail dt {
    margin: 5px 0;
  }
  .voices .voice_list li + li {
    margin-top: 30px;
  }
  .voices .main_voice,
  .voices .voice_list {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 599px) {
  .voices .main_voice .company_lead {
    font-size: 16px;
  }
  .voices .voice_detail dd {
    padding: 0.8em;
    line-height: 2;
  }
  .voices .voice_list {
    margin-top: 30px;
  }
  .voices .btn_01 {
    margin-top: 45px;
  }
}

/* ------------------------------
clients
------------------------------ */
.clients .company_logo {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.clients .company_logo .logo_slick {
  display: none;
}
.clients .company_logo .logo_slick.slick-initialized {
  display: block;
}
.clients .client_list {
  margin-top: 2em;
  font-size: 14px;
}
.clients .client_list li {
  line-height: 1.4;
}
.clients .client_list li + li {
  margin-top: 0.8em;
}
.clients .note_list {
  margin-top: 2em;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  text-align: left;
}
.clients .btn_01 {
  margin-top: 50px;
}
@media screen and (min-width: 600px) {
  .clients .client_list {
    column-count: 2;
  }
}
@media screen and (min-width: 900px) {
  .clients .client_list {
    column-count: 3;
  }
}
@media screen and (max-width: 599px) {
  .clients .inner {
    text-align: center;
  }
  .clients .client_list {
    display: inline-block;
    min-width: 300px;
    text-align: left;
  }
  .clients .client_list li {
    font-size: 12px;
  }
  .clients .btn_01 {
    margin-top: 40px;
  }
}

/* ------------------------------
benefits
------------------------------ */
.benefits {
  overflow: hidden;
}
.benefits .benefit_list {
  position: relative;
  margin-bottom: 40px;
}
.benefits .benefit_list::after {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
  width: 120vw;
  height: 150px;
  background: var(--color-red);
  box-shadow: var(--box-shadow);
  content: '';
}
.benefits .benefit_list li {
  position: relative;
  z-index: 5;
  width: 320px;
  height: 320px;
  background-color: #fff;
  border: 5px solid var(--color-red);
  border-radius: 50%;
}
.benefits .tail_txt {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}
.benefits .benefit_list .img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.benefits .benefit_list li {
  padding-top: 130px;
  text-align: center;
}
.benefits .benefit_list li:nth-child(2) {
  padding-top: 160px;
}
.benefits .benefit_list li:nth-child(1) .img {
  top: -20px;
  width: 246px;
}
.benefits .benefit_list li:nth-child(2) .img {
  top: -26px;
  width: 270px;
}
.benefits .benefit_list li:nth-child(3) .img {
  top: -45px;
  width: 200px;
}
.benefits .benefit_list .txt {
  margin-bottom: 0.2em;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
.benefits .benefit_list .strong {
  color: var(--color-red);
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 600px) {
  .benefits .tail_txt .txt_red {
    font-size: 30px;
  }
}
@media screen and (min-width: 700px) {
  .benefits .benefit_list {
    display: flex;
    justify-content: space-between;
  }
  .benefits .benefit_list li:nth-child(1) {
    margin-top: 80px;
  }
  .benefits .benefit_list li:nth-child(2) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 700px) and (max-width: 1079px) {
  .benefits .benefit_list li {
    width: 29.63vw;
    height: 29.63vw;
  }
  .benefits .benefit_list li {
    padding-top: 12.04vw;
  }
  .benefits .benefit_list li:nth-child(2) {
    padding-top: 14.81vw;
  }
  .benefits .benefit_list li:nth-child(1) .img {
    top: -1.85vw;
    width: 22.78vw;
  }
  .benefits .benefit_list li:nth-child(2) .img {
    top: -2.41vw;
    width: 25vw;
  }
  .benefits .benefit_list li:nth-child(3) .img {
    top: -4.17vw;
    width: 18.52vw;
  }
  .benefits .benefit_list .txt {
    font-size: 1.85vw;
  }
  .benefits .benefit_list .strong {
    font-size: 2.78vw;
  }
}
@media screen and (max-width: 699px) {
  .benefits .benefit_list::after {
    transform: translate(-50%, -50%);
    width: 97px;
    height: 670px;
    box-shadow: none;
  }
  .benefits .benefit_list {
    width: 290px;
    margin: 0 auto 40px;
  }
  .benefits .benefit_list li {
    width: 290px;
    height: 290px;
    padding-top: 140px;
  }
  .benefits .benefit_list li + li {
    margin-top: 75px;
  }
  .benefits .benefit_list .txt {
    font-size: 16px;
  }
  .benefits .benefit_list .strong {
    font-size: 25px;
  }
}
@media screen and (max-width: 599px) {
  .benefits .tail_txt {
    font-size: 20px;
  }
}

/* ------------------------------
training_lineup
------------------------------ */
.training_lineup .head_area {
  margin-bottom: 50px;
}
.training_lineup .head_area .lead {
  line-height: 2;
}
.training_lineup .item_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.training_lineup .item_list li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 31.5%;
  padding: 0.8em 0.5em;
  border: 1px solid var(--color-red);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.training_lineup .item_list li:nth-child(n + 4) {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .training_lineup .head_area {
    display: grid;
    grid-template-columns: 45% 53%;
    column-gap: 2%;
  }
  .training_lineup .head_area .heading_01 {
    grid-column: 1/2;
    grid-row: 1/2;
    text-align: left;
  }
  .training_lineup .head_area .lead {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .training_lineup .head_area .list_wrap {
    grid-column: 2/3;
    grid-row: 1/3;
    align-self: flex-end;
  }
}
@media screen and (max-width: 899px) {
  .training_lineup .item_list {
    margin-top: 2em;
  }
}
@media screen and (max-width: 599px) {
  .training_lineup .head_area {
    margin-bottom: 30px;
  }
  .training_lineup .item_list li {
    min-height: 51.3px;
    padding: 0.5em;
    font-size: 13px;
  }
  .training_lineup .item_list li:nth-child(n + 4) {
    margin-top: 10px;
  }
}
/* ranking_box */
.training_lineup .ranking_box h3 span {
  display: inline-block;
  position: relative;
  min-height: 30px;
  padding: 0 2em;
}
.training_lineup .ranking_box h3 span::before,
.training_lineup .ranking_box h3 span::after {
  display: block;
  position: absolute;
  bottom: 0.4em;
  width: 35px;
  height: 30px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2234.521%22%20height%3D%2227.041%22%20viewBox%3D%220%200%2034.521%2027.041%22%3E%3Cpath%20d%3D%22M29.507%2C30.265l5.2-15.76C23.268%2C27.08%2C20.354%2C10.83%2C20.354%2C10.83S17.441%2C27.08%2C6%2C14.5l5.2%2C15.76H29.507Z%22%20transform%3D%22translate(-3.091%20-5.58)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(0%204.688)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(30.818%204.688)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(15.411)%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M17.9.991H0V-.5H17.9Z%22%20transform%3D%22translate(8.313%2026.05)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center;
  content: '';
}
.training_lineup .ranking_box h3 span::before {
  left: 0;
}
.training_lineup .ranking_box h3 span::after {
  right: 0;
}
.training_lineup .ranking_list {
  max-width: 700px;
  margin: 0 auto;
}
.training_lineup .ranking_list > li {
  min-height: 60px;
  padding: 0.5em 4%;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}
.training_lineup .ranking_list > li + li {
  margin-top: 10px;
}
.training_lineup .ranking_list .txt {
  display: flex;
  align-items: center;
  min-height: 30px;
  padding-left: 50px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2234.521%22%20height%3D%2226.125%22%20viewBox%3D%220%200%2034.521%2026.125%22%3E%3Cg%20transform%3D%22translate(-320%20-5207)%22%3E%3Cpath%20d%3D%22M17.261%2C0%2C0%2C8.864l17.261%2C8.77%2C17.261-8.77Z%22%20transform%3D%22translate(320%205207)%22%20fill%3D%22%23fc5c65%22%2F%3E%3Cpath%20d%3D%22M19%2C34l8.4%2C4.138L35.85%2C34v4.138l-8.425%2C4.814L19%2C38.18Z%22%20transform%3D%22translate(309.864%205188.861)%22%20fill%3D%22%23fc5c65%22%2F%3E%3Cpath%20d%3D%22M61.642%2C37.8h1.3l.812%2C8.49H60.91Z%22%20transform%3D%22translate(287.505%205186.834)%22%20fill%3D%22%23fc5c65%22%2F%3E%3Cpath%20d%3D%22M1.5%2C0A1.5%2C1.5%2C0%2C1%2C1%2C0%2C1.5%2C1.5%2C1.5%2C0%2C0%2C1%2C1.5%2C0Z%22%20transform%3D%22translate(348.3%205220)%22%20fill%3D%22%23fc5c65%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: left top;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}
.training_lineup .ranking_list .no1 .txt,
.training_lineup .ranking_list .no2 .txt,
.training_lineup .ranking_list .no3 .txt {
  font-size: 22px;
}
.training_lineup .ranking_list .no1 .txt {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2234.521%22%20height%3D%2227.041%22%20viewBox%3D%220%200%2034.521%2027.041%22%3E%3Cpath%20d%3D%22M29.507%2C30.265l5.2-15.76C23.268%2C27.08%2C20.354%2C10.83%2C20.354%2C10.83S17.441%2C27.08%2C6%2C14.5l5.2%2C15.76H29.507Z%22%20transform%3D%22translate(-3.091%20-5.58)%22%20fill%3D%22%23debd44%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(0%204.688)%22%20fill%3D%22%23debd44%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(30.818%204.688)%22%20fill%3D%22%23debd44%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(15.411)%22%20fill%3D%22%23debd44%22%2F%3E%3Cpath%20d%3D%22M17.9.991H0V-.5H17.9Z%22%20transform%3D%22translate(8.313%2026.05)%22%20fill%3D%22%23debd44%22%2F%3E%3C%2Fsvg%3E');
}
.training_lineup .ranking_list .no2 .txt {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2234.521%22%20height%3D%2227.041%22%20viewBox%3D%220%200%2034.521%2027.041%22%3E%3Cpath%20d%3D%22M29.507%2C30.265l5.2-15.76C23.268%2C27.08%2C20.354%2C10.83%2C20.354%2C10.83S17.441%2C27.08%2C6%2C14.5l5.2%2C15.76H29.507Z%22%20transform%3D%22translate(-3.091%20-5.58)%22%20fill%3D%22%23c1c1c6%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(0%204.688)%22%20fill%3D%22%23c1c1c6%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(30.818%204.688)%22%20fill%3D%22%23c1c1c6%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(15.411)%22%20fill%3D%22%23c1c1c6%22%2F%3E%3Cpath%20d%3D%22M17.9.991H0V-.5H17.9Z%22%20transform%3D%22translate(8.313%2026.05)%22%20fill%3D%22%23c1c1c6%22%2F%3E%3C%2Fsvg%3E');
}
.training_lineup .ranking_list .no3 .txt {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2234.521%22%20height%3D%2227.041%22%20viewBox%3D%220%200%2034.521%2027.041%22%3E%3Cpath%20d%3D%22M29.507%2C30.265l5.2-15.76C23.268%2C27.08%2C20.354%2C10.83%2C20.354%2C10.83S17.441%2C27.08%2C6%2C14.5l5.2%2C15.76H29.507Z%22%20transform%3D%22translate(-3.091%20-5.58)%22%20fill%3D%22%23d9af91%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(0%204.688)%22%20fill%3D%22%23d9af91%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(30.818%204.688)%22%20fill%3D%22%23d9af91%22%2F%3E%3Cpath%20d%3D%22M1.852%2C0A1.852%2C1.852%2C0%2C1%2C1%2C0%2C1.852%2C1.852%2C1.852%2C0%2C0%2C1%2C1.852%2C0Z%22%20transform%3D%22translate(15.411)%22%20fill%3D%22%23d9af91%22%2F%3E%3Cpath%20d%3D%22M17.9.991H0V-.5H17.9Z%22%20transform%3D%22translate(8.313%2026.05)%22%20fill%3D%22%23d9af91%22%2F%3E%3C%2Fsvg%3E');
}
.training_lineup .btn_01 {
  margin-top: 50px;
}
@media screen and (min-width: 760px) {
  .training_lineup .ranking_list > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 899px) {
  .training_lineup .ranking_list > li {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media screen and (max-width: 599px) {
  .training_lineup .ranking_box h3 span::before,
  .training_lineup .ranking_box h3 span::after {
    bottom: 0.3em;
    width: 30px;
    height: 25px;
    background-size: contain;
  }
  .training_lineup .ranking_list > li + li {
    margin-top: 15px;
  }
  .training_lineup .ranking_list .txt {
    padding-left: 40px;
    background-size: 30px auto;
    font-size: 14px;
  }
  .training_lineup .ranking_list .no1 .txt,
  .training_lineup .ranking_list .no2 .txt,
  .training_lineup .ranking_list .no3 .txt {
    font-size: 16px;
  }
  .training_lineup .btn_01 {
    margin-top: 40px;
  }
}
/* curriculum_box */
.training_lineup .curriculum_box {
  margin-top: 60px;
}
.training_lineup .curriculum_box .tab_btn {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.training_lineup .curriculum_box .tab_btn li {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 22%;
  min-height: 70px;
  padding: 0.5em;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  cursor: pointer;
}
.training_lineup .curriculum_box .tab_btn li .time {
  display: block;
  margin-top: 0.2em;
  font-size: 14px;
  font-weight: normal;
}
.training_lineup .curriculum_box .tab_btn li.active {
  min-height: 80px;
  background: #fff;
  color: var(--color-red);
}
.training_lineup .curriculum_box .tab_btn li.active::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-top: 10px solid var(--color-red);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: '';
}
.training_lineup .curriculum_box .tab_content {
  display: none;
  margin-top: -1px;
  padding: 40px 4% 35px;
  background: #fff;
  border: 1px solid var(--color-red);
}
.training_lineup .curriculum_box .tab_content.active {
  display: block;
}
.training_lineup .curriculum_list li {
  padding: 0.6em 0;
  border-bottom: 1px dashed var(--color-red);
}
.training_lineup .curriculum_list li .txt {
  font-size: 14px;
  line-height: 2;
}
.training_lineup .curriculum_list .tag_list {
  margin: 0.5em 0;
}
@media screen and (min-width: 600px) {
  .training_lineup .curriculum_box .tab_btn li:last-child {
    width: 31%;
  }
}
@media screen and (max-width: 949px) {
  .training_lineup .curriculum_box .tab_btn li {
    font-size: 14px;
  }
  .training_lineup .curriculum_box .tab_btn li .time {
    font-size: 12px;
  }
}
@media screen and (max-width: 599px) {
  .training_lineup .curriculum_box {
    margin-top: 40px;
  }
  .training_lineup .curriculum_box .tab_btn li {
    min-height: 80px;
    width: 24%;
    padding: 0.5em 0.1em;
    font-size: 12px;
  }
  .training_lineup .curriculum_box .tab_btn li .time {
    font-size: 11px;
  }
  .training_lineup .curriculum_box .tab_btn li.active {
    min-height: 90px;
  }
  .training_lineup .curriculum_box .tab_btn li.active::after {
    border-top: 8px solid var(--color-red);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
  }
  .training_lineup .curriculum_box .tab_content {
    padding-top: 20px;
  }
}
/* tag_list */
.training_lineup .tag_list {
  display: flex;
}
.training_lineup .tag_list li {
  padding: 0.3em;
  border: 1px solid var(--color-pink);
  border-radius: 4px;
  color: var(--color-pink);
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.training_lineup .tag_list li + li {
  margin-left: 10px;
}
@media screen and (max-width: 759px) {
  .training_lineup .tag_list {
    margin-top: 5px;
  }
}

/* ------------------------------
schedule
------------------------------ */
.schedule .schedule_list li + li {
  margin-top: 35px;
}
.schedule .schedule_list li {
  display: grid;
  grid-template-columns: 150px 215px auto;
  position: relative;
  min-height: 80px;
}
.schedule .schedule_list li::before {
  position: absolute;
  bottom: -30px;
  left: 73px;
  width: 4px;
  height: 35px;
  background: var(--color-pink);
  content: '';
}
.schedule .schedule_list li::after {
  position: absolute;
  bottom: -35px;
  left: 66px;
  border-top: 13px solid var(--color-pink);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  content: '';
}
.schedule .schedule_list li:last-child::before,
.schedule .schedule_list li:last-child::after {
  content: none;
}
.schedule .schedule_list .time_series {
  align-content: center;
  padding: 0.5em;
  background: var(--color-pink);
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.schedule .schedule_list .ttl {
  align-content: center;
  padding: 0.5em 0.8em;
  background: var(--color-light-pink);
  font-size: 18px;
  font-weight: bold;
}
.schedule .schedule_list .txt {
  align-content: center;
  padding: 0.5em 1em;
  background: #fff;
  border-radius: 0 8px 8px 0;
}
.schedule .btn_01 {
  margin-top: 50px;
}
@media screen and (max-width: 699px) {
  .schedule .schedule_list li {
    grid-template-columns: 150px auto;
  }
  .schedule .schedule_list .time_series {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .schedule .schedule_list .ttl {
    grid-column: 2/3;
    grid-row: 1/2;
    border-radius: 0 8px 0 0;
    text-align: center;
  }
  .schedule .schedule_list .txt {
    grid-column: 2/3;
    grid-row: 2/3;
    border-radius: 0 0 8px 0;
  }
}
@media screen and (max-width: 599px) {
  .schedule .schedule_list li {
    grid-template-columns: 80px auto;
    grid-template-rows: 40px auto;
    min-height: 120px;
  }
  .schedule .schedule_list li::before {
    left: 38px;
  }
  .schedule .schedule_list li::after {
    left: 31px;
  }
  .schedule .schedule_list .ttl {
    font-size: 16px;
  }
  .schedule .schedule_list .txt {
    font-size: 12px;
  }
  .schedule .btn_01 {
    margin-top: 40px;
  }
}

/* ------------------------------
support
------------------------------ */
.support .head_area .lead {
  line-height: 2;
}
.support .head_area .option {
  padding: 1.5em;
  border: 1px solid var(--color-red);
  border-radius: 20px;
}
.support .head_area .option .strong {
  margin-bottom: 0.2em;
  color: var(--color-red);
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .support .head_area {
    display: grid;
    grid-template-columns: 45% 53%;
    column-gap: 2%;
  }
  .support .head_area .heading_01 {
    grid-column: 1/2;
    grid-row: 1/2;
    text-align: left;
  }
  .support .head_area .lead {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .support .head_area .option {
    grid-column: 2/3;
    grid-row: 1/3;
    align-self: flex-end;
  }
}
@media screen and (max-width: 899px) {
  .support .head_area .option {
    margin-top: 1.5em;
    padding: 1em;
  }
}
@media screen and (max-width: 599px) {
  .support .head_area .option .strong {
    font-size: 16px;
  }
}

/* ------------------------------
contact
------------------------------ */
.contact .form_area {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.contact .form_area .label_required {
  margin-right: 0.7em;
  padding: 0.25em 0.4em;
  border: 1px solid var(--color-pink);
  border-radius: 4px;
  color: var(--color-pink);
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
}
.contact .form_area dt {
  margin-bottom: 0.3em;
  font-weight: bold;
}
.contact .form_area dd + dt {
  margin-top: 1em;
}
.contact .form_area label {
  display: block;
  padding-left: 2.2em;
  text-indent: -2.2em;
  line-height: 1.6;
}
.contact .form_area label + label {
  margin-top: 0.8em;
}
.contact .btn_submit {
  display: block;
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0;
  padding: 1em;
  background: var(--color-pink);
  border: none;
  border-radius: 9999px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
}
.contact .btn_submit::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}
.contact .btn_submit:hover {
  opacity: 0.8;
}
.contact .box_01 + .box_01 {
  margin-top: 40px;
}
.contact .tel_box {
  padding-top: 30px;
  padding-bottom: 30px;
}
.contact .tel_box h3 {
  margin-bottom: 0.2em;
}
.contact .telno {
  font-family: "Noto Sans JP", sans-serif;
  color: #1c2569;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
.contact .tel_note {
  margin-top: 0.5em;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .contact .form_area .person_name input[type="text"] {
    width: 200px;
  }
  .contact .form_area .person_name input[type="text"] + input[type="text"] {
    margin-left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .contact .form_area .person_name input[type="text"] + input[type="text"] {
    margin-top: 10px;
  }
  .contact .form_area label {
    padding-left: 2.6em;
    text-indent: -2.6em;
  }
  .contact .btn_submit {
    margin-top: 30px;
    font-size: 15px;
  }
  .contact .box_01 + .box_01 {
    margin-top: 25px;
  }
  .contact .tel_box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .contact .telno {
    font-size: 30px;
  }
  .contact .tel_note {
    font-size: 12px;
  }
}

/* ------------------------------
form
------------------------------ */
input,
textarea {
  font-family: 'ƒqƒ‰ƒMƒmŠpƒSƒVƒbƒN Pro', 'Hiragino Kaku Gothic Pro','‚l‚r ‚oƒSƒVƒbƒN','MS P Gothic', system-ui, sans-serif;
  font-size: 16px;
}
input[type="text"] {
  width: 100%;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 1em;
  border: 1px solid #ccc;
  border-radius: 2px;
  vertical-align: middle;
}
textarea {
  width: 100%;
  height: 140px;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}

/* ------------------------------
about_us
------------------------------ */
.about_us .head_area {
  position: relative;
  z-index: 2;
}
.about_us .head_area .lead {
  line-height: 2;
}
.about_us .head_area .ico_no1 {
  width: 100%;
}
.about_us .head_area .no1_caution {
  margin-top: 3em;
  font-size: 10px;
}
.about_us .img_izumijuku {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin: -45px calc(50% - 50vw) 0;
}
.about_us h3 {
  margin: 2em 0;
}
.about_us .logo_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  column-gap: 26px;
  row-gap: 40px;
  text-align: center;
}
.about_us .logo_list dt img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}
.about_us .logo_list dd {
  margin-top: 1em;
  line-height: 1.4;
}
.about_us .school_list {
  margin-top: 80px;
  font-size: 14px;
  column-count: 4;
  column-width: 200px;
}
.about_us .school_list li {
  line-height: 1.2em;
  margin-bottom: 1em;
}
.about_us .btn_01 {
  margin-top: 40px;
}
@media screen and (min-width: 900px) {
  .about_us .head_area {
    display: grid;
    grid-template-columns: 49.5% 48%;
    column-gap: 2.5%;
  }
  .about_us .head_area .heading_01 {
    grid-column: 1/2;
    grid-row: 1/2;
    text-align: left;
  }
  .about_us .head_area .lead {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .about_us .head_area .box_no1 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: flex-end;
  }
}
@media screen and (max-width: 899px) {
  .about_us .head_area .box_no1 {
    margin-top: 30px;
    text-align: center;
  }
  .about_us .head_area .ico_no1 {
    max-width: 500px;
  }
  .about_us .head_area .no1_caution {
    margin-top: 2em;
    text-align: left;
  }
  .about_us .img_izumijuku {
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .about_us .logo_list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
    row-gap: 30px;
  }
  .about_us .logo_list dt img {
    width: 88px;
    height: 88px;
  }
  .about_us .logo_list dd {
    font-size: 12px;
  }
  .about_us .school_list {
    margin-top: 30px;
    font-size: 12px;
    column-count: 2;
    column-width: auto;
  }
  .about_us .btn_01 {
    margin-top: 30px;
  }
}
/* list_media */
.about_us .list_media_wrapper {
  background-color: #fff;
  padding: 0 0 35px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}
.about_us .loop.pc {
  display: flex !important;
}
.about_us .loop.sp {
  display: none !important;
}
.about_us .loop img {
  width: calc(100% - 50px);
  padding: 0 25px;
}
.about_us .loop img:first-child {
  animation: loop 50s -25s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.about_us .loop img:last-child {
  animation: loop2 50s linear infinite;
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@media screen and (max-width: 599px) {
  .about_us .list_media_wrapper {
    padding: 0 0 20px;
  }
  .about_us .loop.pc {
    display: none !important;
  }
  .about_us .loop.sp {
    display: flex !important;
  }
  .about_us .loop img {
    width: calc(200% - 20px);
    padding: 0 10px;
    max-width: initial;
  }
}
