@charset "UTF-8";

.pagelink-lists {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.pagelink-list {
  flex-basis: calc(100% / 3);
  border-right: 1px solid #454646;
}

.pagelink-list:first-child {
  border-left: 1px solid #454646;
}

.pagelink-list a {
  display: block;
  text-align: center;
  position: relative;
  height: 50px;
  padding-top: 10px;
}

.pagelink-list a:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-left: 1px solid #3d92ad;
  border-bottom: 1px solid #3d92ad;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: rotate(-45deg) translateX(-50%);
}

.pagelink-list a:hover {
  text-decoration: none;
}


@media screen and (max-width: 39.9375em) {
  .pagelink-list a {
    font-size: 0.75rem;
  }
}

/*料金テーブル*/

.fs32 {
  font-size: 2rem;
}

.fs20 {
  font-size: 1.25rem;
}

.fs10 {
  font-size: 0.8rem;
}

.plan-title {
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #2d3840;
  height: 57px;
  font-size: 28px;
  line-height: 57px;
}

.price-table-wrap {
  display: flex;
  background-color: #fff;
  border-left: 1px solid #cecece;
  border-right: 1px solid #cecece;
}

.price-table-right {
  order: 2;
}

.price-table-left {
  order: 1;
}

.tbody-th-first {
  height: 103px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #cecece;
  padding-bottom: 15px;
  font-weight: 700;
}

.tbody-th {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #cecece;
}

.tbody-th:not(:last-of-type) {
  height: 200px;
}

.tbody-th:last-of-type {
  height: 200px;
}

.tbody-th .label {
  color: #208da7;
  padding: 4px 20px;
  border-radius: 15px;
  background-color: #eaf5f6;
  margin-bottom: 6px;
  font-weight: 500;
}

.tbody-th p {
  text-align: center;
}

.tbody-th p.text-note {
  font-size: 0.8rem;
}

@media screen and (max-width: 39.9375em) {
  .tbody-th-first {
    font-size: 0.8rem;
  }

  .tbody-th .label {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
}

.table-row {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.free .table-row {
  background-color: #f3f8f5;
}

.standard .table-row {
  background-color: #f1f7f7;
}

.volume .table-row {
  background-color: #ecf3f6;
}

.table-row.row1 {
  height: 319px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #cecece;
}

.table-row.row2 {
  height: 200px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #cecece;
}

.table-row.row3 {
  height: 110px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #cecece;
}

.free .table-row.row3 {
  position: relative;
}

.thead-th {
  width: 100%;
  height: 119px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thead-th.sp-not-show {
  height: 110px;
}

.standard .thead-th {
  background-color: #76aeb0;
}

.volume .thead-th {
  background-color: #3f8aa3;
}

.enterprise .thead-th {
  background-color: #58708e;
}

.free .thead-th {
  background-color: #82b79d;
}

.plan-ttl {
  font-weight: 700;
  font-size: 1.25rem;
}

.thead-th .label {
  font-size: 0.8rem;
  line-height: 22px;
  padding: 0 10px;
  border-radius: 12px;
  background-color: #fff;
  margin-top: 10px;
}

.standard .thead-th .label {
  color: #76aeb0;
}

.volume .thead-th .label {
  color: #3f8aa3;
}

.table-row__lists {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.enterprise .table-row.row1 .table-row__lists {
  margin-top: 0;
}

.enterprise .table-row.row2 .table-row__lists {
  padding-top: 0;
}

.table-row__lists li {
  text-align: center;
  margin-bottom: 8px;
  /* line-height: 1.1; */
}

.table-row__lists li small {
  display: block;
  font-size: 0.8rem;
}

.table-row__planbox {
  background-color: #fff;
  border-radius: 8px;
  padding: 5px 10px;
}

.table-row__lists li.table-row__plus {
  line-height: 1;
  margin-top: -10px;
  margin-bottom: 0px;
}

a.price-table-button {
  display: block;
  text-align: center;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 3px 10px rgba(52, 53, 55, 0.2);
  position: relative;
  background: rgb(191, 0, 20);
  background: -moz-linear-gradient(left,
      rgba(191, 0, 20, 1) 0%,
      rgba(255, 49, 57, 1) 78%);
  background: -webkit-linear-gradient(left,
      rgba(191, 0, 20, 1) 0%,
      rgba(255, 49, 57, 1) 78%);
  background: linear-gradient(to right,
      rgba(191, 0, 20, 1) 0%,
      rgba(255, 49, 57, 1) 78%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bf0014', endColorstr='#ff3139', GradientType=1);
}

a.price-table-button.button-color-blue {
  background: rgb(31, 140, 166);
  background: -moz-linear-gradient(left, rgba(31, 140, 166, 1) 0%, rgba(65, 177, 183, 1) 77%, rgba(65, 177, 183, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(31, 140, 166, 1) 0%, rgba(65, 177, 183, 1) 77%, rgba(65, 177, 183, 1) 100%);
  background: linear-gradient(to right, rgba(31, 140, 166, 1) 0%, rgba(65, 177, 183, 1) 77%, rgba(65, 177, 183, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f8ca6', endColorstr='#41b1b7', GradientType=1);
}

a.price-table-button:hover {
  text-decoration: none;
  opacity: 0.8;
}

.table-row a.price-table-button {
  color: #fff;
  height: 38px;
  line-height: 35px;
  width: 185px;
}

a.price-table-button.arrow:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: rotate(45deg) translateX(-50%);
}

a.price-table-button.expanded {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  height: 53px;
  padding-top: 13px;
  width: 660px;
  box-shadow: 0 3px 10px rgba(52, 53, 55, 0.2);
  margin: 60px auto 0;
}

.row3 a.price-table-button.expanded {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
}

a.price-table-button.expanded small {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  display: block;
}

.sp-show {
  display: none;
}

@media screen and (max-width: 39.9375em) {
  .sp-not-show {
    display: none;
  }

  .sp-show {
    display: block;
  }

  .table-row a.price-table-button {
    font-size: 0.7rem;
    width: 165px;
  }

  a.price-table-button.expanded {
    font-size: 1rem;
    height: 70px;
    line-height: 70px;
    padding-top: 0;
    width: 100%;
  }
}

/* 評価メトリクス */
#metrics{
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding: 80px 0;
}

.metricswrappper {
  background-color: #eaf5f6;
  padding: 37px 25px;
}

.metricswrappper h3 {
  width: 220px;
  font-size: 1.5rem;
  margin: 0 auto;
  position: relative;
}

.metricswrappper h3:after {
  content: "";
  width: 70px;
  height: 30px;
  background: url(/img/plan/icon_hakarumetrics.png) no-repeat, center;
  position: absolute;
  right: -70px;
  bottom: 3px;
}

.metricssince {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.metricswrappper .flex {
  flex-wrap: wrap;
  justify-content: center;
}

.metrics {
  flex-basis: calc(20% - 30px);
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(52, 53, 55, 0.1);
  margin: 0 5px 20px;
  padding: 30px 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metrics__ttl {
  font-size: 0.85rem;
}

.metrics__number {
  color: #096f90;
  font-weight: 700;
  font-size: 1.5rem;
}

.metrics__number .unit {
  font-weight: 400;
  font-size: 1rem;
}

.metrics__paercentage {
  font-size: 0.85rem;
  padding-left: 14px;
  position: relative;
}

.metrics__paercentage:before {
  content: "";
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -6px;
  top: 4px;
}

.metrics__paercentage.down:before {
  background-image: url(/img/plan/icon_arrow_down.png);
}

.metrics__paercentage.up:before {
  background-image: url(/img/plan/icon_arrow_up.png);
}

.metrics__paercentage.current:before {
  background-image: url(/img/plan/icon_arrow_current.png);
}

.metrics__image {
  display: flex;
  align-items: center;
  height: 90px;
}

.metrics__message {
  font-size: 0.75rem;
}

@media screen and (max-width: 39.9375em) {
  #metrics{
    padding-bottom: 40px;
  }
  .metricswrappper {
    padding: 37px 10px;
  }

  .metrics {
    margin: 0 auto 20px;
  }
}

/* 評価メトリクス　ここまで */

.test-planlink-box {
  background: rgb(64, 117, 158);
  background: -moz-linear-gradient(left,
      rgba(64, 117, 158, 1) 0%,
      rgba(71, 150, 186, 1) 100%);
  background: -webkit-linear-gradient(left,
      rgba(64, 117, 158, 1) 0%,
      rgba(71, 150, 186, 1) 100%);
  background: linear-gradient(to right,
      rgba(64, 117, 158, 1) 0%,
      rgba(71, 150, 186, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#40759e', endColorstr='#4796ba', GradientType=1);
  color: #fff;
  padding: 50px 30px;
}

.test-planlink-box .ttl-h3 {
  font-weight: 700;
}

.testplan-button {
  background-color: #fff;
  color: #40759e;
  max-width: 430px;
  box-shadow: 0 3px 6px rgba(52, 53, 55, 0.4);
  margin: 0 auto 20px;
  font-size: 1.2rem;
  padding: 18px 0;
  font-weight: 500;
  display: block;
}

a.testplan-button:hover {
  opacity: 0.8;
  text-decoration: none;
}

.label_dash_red {
  font-weight: normal;
  display: inline-block;
  background-color: #ec685e;
  color: #fff;
  position: relative;
  padding: 0 5px;
  height: 35px;
  line-height: 34px;
}

.label_dash_red:before,
.label_dash_red:after {
  content: "";
  position: absolute;
  top: 0;
}

.label_dash_red:before {
  border-bottom: 35px solid #ec685e;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  left: -5px;
}

.label_dash_red:after {
  border-top: 35px solid #ec685e;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  right: -5px;
}

.testplan-text {
  font-size: 1.3rem;
}

.testplan-text span {
  font-size: 1.2rem;
}

.testplan-text .number {
  font-size: 1.8rem;
  font-weight: 500;
}

.test-planlink-box+.text-right {
  margin-bottom: 60px;
}

/***** plan/introduction-plan.html *****/
.testplan-lead {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.testplan-lead strong {
  background-color: #e2eef1;
}

.terms-table {
  display: grid;
  box-shadow: 0 0 6px 2px rgb(17 26 43 / 11%);
  padding: 40px 30px;
}

.terms-table article {
  text-align: center;
}

.terms-table strong {
  font-size: 2.3rem;
  font-weight: 700;
}

.testplan_order {
  margin-top: 100px;
}

.testplan_order .button {
  margin: 0 auto;
}

.can_box_img {
  margin-top: 16px;
  margin-bottom: 16px;
  min-height: 120px;
}

.can_box_ttl {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testplan-box {
  display: flex;
}

.testplan-box .plan-box-img {
  flex-basis: 50px;
  margin-right: 10px;
}

.testplan-box .testplan-box-text {
  flex-basis: calc(100% - 60px);
}

/***** plan/introduction-plan.html ここまで*****/
@media screen and (min-width: 40em) {
  .plan-box.column-4 {
    height: 87px;
  }

  .sec-plan,
  .conditions {
    padding: 70px 0;
  }

  .plan-box.column-4.ttl-only {
    padding: 32px 0;
  }

  .plan-box.column-4.ttl-only.line2 {
    padding: 24px 0 20px;
  }

  .pagelink-lists {
    margin-bottom: 80px;
  }

  .price-table-right-wrap {
    display: flex;
    justify-content: space-between;
  }

  .price-table-right {
    flex-basis: calc(100% - 252px);
  }

  .table-column {
    flex-basis: calc(100% / 3);
    max-width: 248px;
  }

  .price-table-left {
    flex-basis: 252px;
  }

  /***** plan/introduction-plan.html*****/
  .terms-table {
    max-width: 660px;
    margin: 0 auto;
    grid-template-columns: 50% 50%;
  }

  .terms-table article:nth-of-type(2) {
    border-left: 1px solid #e1e2e3;
  }
}

@media screen and (max-width: 39.9375em) {
  .plan-box,
  .plan-box.conpane,
  .plan-box.moniter,
  .plan-box.meter-box {
    padding: 20px 20px;
  }

  .plan-box.column-4 {
    padding: 28px 5px 10px;
    height: 78px;
  }

  .planspecial {
    margin-left: 8px;
    font-size: 0.7rem;
    padding: 0 0.5rem;
  }

  .plan-box.column-4.line2 {
    padding: 20px 5px;
  }

  .sec-plan,
  .conditions {
    padding: 30px 0;
  }

  .sec-plan {
    margin-bottom: 40px;
  }

  .pagelink-lists {
    margin-bottom: 30px;
  }

  .pagelink-list.long {
    font-size: 0.9rem;
  }

  .price-table-left {
    flex-basis: 104px;
  }

  .tbody-th {
    padding: 0 5px;
  }

  .price-table-right {
    overflow: hidden;
    overflow-x: scroll;
    flex-basis: calc(100% - 104px);
  }

  .price-table-right-wrap {
    display: table;
    width: 780px;
  }

  .table-column {
    display: table-cell;
    vertical-align: bottom;
    width: 240px;
    padding: 0 2px 0 0;
  }

  /***** plan/introduction-plan.html*****/
  .testplan-lead {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .testplan-lead strong {
    display: block;
  }

  .can_box {
    margin-bottom: 40px;
  }

  .terms-table article:first-of-type {
    padding-bottom: 16px;
  }

  .terms-table article:nth-of-type(2) {
    padding-top: 16px;
    border-top: 1px solid #e1e2e3;
  }

  .testplan_order {
    margin-top: 50px;
  }
}

@media screen and (max-width: 71em) {}

.api-plan {
  background-color: #fff;
  border-top: 1px solid #cecece;
  border-left: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  display: flex;
}

.api-plan>div {
  width: calc(100% / 3);
  border-right: 1px solid #cecece;
}

.api-plan>.api-plan__rightparts {
  display: flex;
  width: calc(100% * 2 / 3);
}

.api-plan__rightparts>.api-plan__contents {
  width: 50%;
}

.api-plan__rightparts>.api-plan__contents:first-child {
  border-right: 1px solid #cecece;
}

.api-plan__contents>div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 40px);
  justify-content: center;
  text-align: center;
}

.api-plan__contents:nth-child(2)>div {
  text-align: left;
  font-size: 14px;
}

.api-plan__contents .price-table-button {
  margin: 20px auto 0;
  width: 185px;
  height: 38px;
  line-height: 38px;
}

.bold {
  font-weight: bold;
}

.table-row__planbox.bg-gray {
  background-color: #f5f5f5;
  padding-left: 40px;
  padding-right: 40px;
}

#option{
  margin-top: 60px;
}

.option-title {
  background-color: #76aeb0;
  color: #fff;
  text-align: center;
  position: relative;
}

.plan-title__caution {
  font-size: 12px;
  position: absolute;
  right: 10px;
  letter-spacing: -1.2px;
}

.option-plan {
  background-color: #fff;
  border-top: 1px solid #cecece;
  border-left: 1px solid #cecece;
  display: flex;
}

a.option-plan__link {
  text-decoration: underline;
  font-weight: bold;
}

.option-plan>div {
  width: calc(100% / 3);
  border-right: 1px solid #cecece;
}

.option-plan>.option-plan__rightparts {
  display: flex;
  width: calc(100% * 2 / 3);
}

.option-plan__rightparts>.option-plan__contents {
  width: 50%;
}

.option-plan__rightparts>.option-plan__contents:first-child {
  border-right: 1px solid #cecece;
}

.option-plan__contents {
  display: flex;
  flex-direction: column;
}

.option-plan__contents>div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 40px);
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid #cecece;
  height: 105px;
}

.option-plan__contents:nth-child(2)>div {
  text-align: left;
  font-size: 14px;
}

.option-plan__contents .price-table-button {
  margin: 20px 48px 0;
  height: 38px;
  line-height: 38px;
}

.option-plan__contents .table-row__lists {
  height: auto;
}

.option-plan__contents strong {
  font-size: 32px;
}

.option-contents {
  position: relative;
}

.option-tag {
  position: absolute;
  left: 0;
  top: 0;
  padding: 3px 6px 3px 6px;
  font-size: 12px;
  background-color: #76aeb0;
  color: #fff;
  border-bottom-right-radius: 4px;
  z-index: 1;
}

@media screen and (max-width: 39.9375em) {
  .plan-title {
    font-size: 1.1rem;
  }

  .plan-title__caution {
    top: 19px;
  }

  .api-plan>.api-plan__rightparts {
    overflow: hidden;
    overflow-x: scroll;
    flex-basis: calc(100% - 150px);
    width: 720px;
  }

  .api-plan__contents {
    min-width: 150px;
  }

  .api-plan__rightparts>.api-plan__contents {
    min-width: 240px;
  }

  .option-plan>.option-plan__rightparts {
    overflow: hidden;
    overflow-x: scroll;
    flex-basis: calc(100% - 150px);
    width: 720px;
  }

  .option-plan__contents {
    min-width: 150px;
  }

  .option-plan__rightparts>.option-plan__contents {
    min-width: 240px;
  }
}

.sec-top-box {
  padding-top: 0;
}

.top-box {
  margin: 40px 0;
}

/* ご利用アカウントの発行数は無制限！ */
.unlimited {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.unlimited p {
  margin-bottom: 0;
}

.unlimited-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 20px;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
}

.unlimited-list li {
  display: grid;
  place-content: center;
  place-items: center;
  font-size: 16px;
}

.unlimited-list li img {
  width: 80px;
  height: auto;
}

.unlimited-list li span {
  font-size: 18px;
  font-weight: bold;
  color: #0A819A;
}

@media screen and (max-width: 39.9375em) {
  .unlimited-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width:420px) {
  .unlimited-list {
    grid-template-columns: 1fr;
  }
}

.anchor{
  scroll-margin-top: 200px;
}
.anchor-small {
  scroll-margin-top: 80px;
}