@charset "UTF-8";
@import url("/css/root.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&display=swap');

.main .maxbold{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
}

.main .title_style1 {
  margin-top: 30px;
  background-color: var(--main-color);
  color: #fff;
  border: none;
}

.main .title_style2 {
  font-size: 1.2em;
  border-color: #dcdcdc;
  color: var(--main-text-color);
}

.main .sample {
  margin-left: auto;
  margin-right: auto;
}

.main .sample img{
  padding: 10px;
  box-sizing: border-box;
}

.main .sample .caption {
  margin-top: 10px;
  font-size: .9em;
  background-color: var(--sub-color);
  color: #fff;
  padding: 10px;
  text-align: center;
}

.main .shadow {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.main .highlight_block {
  position: relative;
  background: var(--gray-color);
  border: solid 1px #ddd;
}

.main .highlight_block .label {
  position: relative;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  padding: 5px 15px;
  margin-right: 5px;
  position: absolute;
  left: 10px;
  top: -10px;
  font-weight: bold;
}

.main .highlight_block .label:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 5px solid #000000;
}

.main .list li {
  list-style-type: disc;
  margin-left: 1em;
  margin-left: 1em;
  margin-bottom: 0.1em;
}

.main .highlight_block .title {
  margin-bottom: 5px;
}

@media (min-width: 480px) {
  .main .highlight_block .title {
    font-size: 1.1em;
  }
}

.main .btn_cta {
  text-align: center;
}

.main .btn_cta a {
  font-size: 2rem;
  font-weight: bold;
}

.main .num_block {
  gap: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
}

.main .num {
  background-color: #000;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

.main .btn_flex_free {
  border-top: solid 1px var(--gray-border-color);
  padding-top: 30px;
}

/*---------------------------------------
  point
--------------------------------------- */

.features_box {
  max-width: 900px;
  margin: 30px auto;
  background: var(--gradation-main);
  border-radius: 10px;
  color: #fff;
  text-align: center;
  padding: 20px;
  color: var(--key-color);
}

.features_box h2 {
  font-size: 1.8em;
  margin: 0 0 10px;
  font-weight: bold;
  color: var(--key-color);
  padding-bottom: 10px;
  text-align: center;
}

@media (min-width: 480px) {
  .features_box h2 {
    font-size: 2em;
  }
}

.features_box h2 span:first-child {
  font-size: .8em;
  display: block;
  color: #fff;
}



.features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  background: #fff;
  border-radius: 10px;
}

.feature {
  padding: 20px;
  text-align: center;
  border-right: 1px solid #eee;
  position: relative;
  font-weight: bold;
}

.feature:last-child {
  border-right: none;
}

.feature .badge {
  display: inline-block;
  background: #ffeb3b;
  color: var(--main-text-color);
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
  position: absolute;
  margin-top: -15px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.feature .badge .en {
  font-size: 1.2em;
  font-weight: bold;
}

.feature p {
  margin-top: 10px;
  font-size: 1.2em;
  line-height: 1.5;
  background: var(--gradation-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
  .features {
    display: block;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .feature:last-child {
    border-bottom: none;
  }

  .feature .badge {
    margin-top: -10px;
  }

  .feature p {
    margin-top: 15px;
  }
}

/*---------------------------------------
  about
--------------------------------------- */
.about .sample {
  max-width: 300px;
}

.about .grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
}

@media screen and (max-width:768px) {
  .about .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/*---------------------------------------
  kihon
--------------------------------------- */
@media screen and (min-width:768px) {
  .kihon .grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

/*---------------------------------------
  matome
--------------------------------------- */
@media screen and (min-width:768px) {
  .matome .grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

å

/*---------------------------------------
  graph
--------------------------------------- */
.graph {
  padding: 0 10px;
  border-radius: 5px;
  margin: 20px auto 30px auto;
  max-width: 650px;
}

.graph h3 {
  text-align: center;
  margin: 30px 0 40px 0;
}

.graph h3 span {
  text-align: center;
  color: var(--main-text-color);
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 1.2em;
  position: relative;
  border-bottom: 4px solid var(--key-color);
  padding-bottom: 10px;
}

.graph h3 span:before,
.graph h3 span:after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  height: 0;
  width: 0;
}

.graph h3 span:before {
  border: 16px solid;
  border-color: transparent;
  border-top-color: var(--key-color);
  margin-left: -16px;
}

.graph h3 span:after {
  border: 10px solid;
  border-color: transparent;
  border-top-color: white;
  margin-left: -10px;
}

.bar-container {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.bar {
  flex: 1;
  height: 40px;
  background: #eee;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.bar-fill {
  height: 100%;
  background: linear-gradient(to right, #233658, #2c5ea0);
  border-radius: 50px;
  position: relative;
}

.bar-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: #fff;
}

.tag {
  margin-left: 10px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
}

.tag.good {
  background: var(--key-color);
  color: var(--main-text-color);
  border: solid 1px #ffe606f0;
}

.tag.average {
  background: #f5b400;
  border: solid 1px #f5b400e0;
}

.tag.soso {
  background: #f77f00;
  border: solid 1px #f78000e1;
}

.tag.wave {
  background: #d32f2f;
  border: solid 1px #a00909dd;
}


/*---------------------------------------
  info
--------------------------------------- */
.info h3 {
  text-align: center;
  color: var(--main-text-color);
  font-size: 1.6em;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

@media screen and (min-width:768px) {
  .info h3 {
    font-size: 2.2em;
  }
}