/**********************************************************************/
/* プラン
/**********************************************************************/

section.plan .heading{
  margin-bottom: 4em;
}
section.plan .plantable{
  --gap_block: .5em;
  --gap_inline: .75em;
  overflow: auto;
  padding-top: 2em; /* planのpromoteの分 */
}
section.plan .plantable .wrapper{

}
@media screen and (max-width: 520px){
  section.plan .heading{
    margin-bottom: 1em;
  }
  section.plan .plantable{
    --gap_block: .25em;
    --gap_inline: .25em;
  }
}

/*--------------------------------------------------------------------*/
/* grid */

section.plan .plantable ._grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--gap_inline);
}
section.plan .plantable ._grid > *{
  min-width: 200px;
}
@media screen and (max-width: 768px){
  
}

/*--------------------------------------------------------------------*/
/* head */

section.plan .plantable .wrapper .head .upper{
  color: var(--c_white);
  background-color: #6B6B6B;
  text-align: center;
  border-radius: 1em 1em 0 0;
  min-height: 8em;
  padding: 1.5em 1em 1em 1em;
  position: relative;
}
section.plan .plantable .wrapper .head .upper .promote{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  padding: .1em 2em;
  min-width: 8em;
  background-color: var(--c_yellow);
  color: var(--c_primary);
  font-weight: 700;
}

/*--------------------------------------------------------------------*/
/* middle */

section.plan .plantable .wrapper .middle{
  margin-block: var(--gap_block);
}
section.plan .plantable .wrapper .middle .price{
  background-color: #FCFCFC;
  padding: .5em;
}

/*--------------------------------------------------------------------*/
/* features */

section.plan .plantable .wrapper .features{
  gap: 0 var(--gap_inline);
}
section.plan .plantable .wrapper .features .data{
  background-color: #fff;
  padding: .9em 1em;
  line-height: 1.5;
}
section.plan .plantable .wrapper .features .sep{
  height: 1.5em;
  background-color: #fff;
}
section.plan .plantable .wrapper .features .data.value{
  display: flex;
  align-items: center;
  justify-content: center;
}
section.plan .plantable .wrapper .features .data i{
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
section.plan .plantable .wrapper .features .data i.yes{
  background-image: url("../img/icon/yes.svg");
}
section.plan .plantable .wrapper .features .data i.no{
  background-image: url("../img/icon/no.svg");
}
@media screen and (max-width: 520px){
  section.plan .plantable .wrapper .features .data{
    background-color: #fff;
    padding: .5em 1em;
    line-height: 1.5;
  }
}

/*--------------------------------------------------------------------*/
/* hover */

section.plan .plantable .wrapper .features .data.cover:hover,
section.plan .plantable .wrapper .features .data.cover:hover + .data,
section.plan .plantable .wrapper .features .data.cover:hover + .data + .data{
  background-color: #fafafa;
}

/*--------------------------------------------------------------------*/
/* 左端の見出し */

section.plan .plantable .wrapper .features .data.cover{
  padding-right: 3em;
  white-space: nowrap;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px){
  section.plan .plantable .wrapper .features .data.cover{
    padding-right: 2em;
    text-align: left;
  }
}
@media screen and (max-width: 520px){
  section.plan .plantable .wrapper .features .data.cover{
    padding-right: 1em;
    white-space: normal;
  }
}

/*--------------------------------------------------------------------*/
/* LITE */
section.plan .plantable .wrapper .head .upper[data-plan="lite"]{
  background-color: #135187;
}

/*--------------------------------------------------------------------*/
/* STANDARD */
section.plan .plantable .wrapper .head .upper[data-plan="standard"]{
  background-color: #133E87;
}

/*--------------------------------------------------------------------*/
/* PROFESSIONAL */
section.plan .plantable .wrapper .head .upper[data-plan="professional"]{
  background-color: #3f3b7d;
}

/*--------------------------------------------------------------------*/
/*plus*/

section.plan .bodying .plus{
  width: 100%;
  height: 4em;
  display: flex;
  align-self: center;
  width: 100%;
}
section.plan .bodying .plus::before,
section.plan .bodying .plus::after{
  width: 1.25em;
  height: 3px;
  background-color: var(--c_primary);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
section.plan .bodying .plus::after{
  transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (max-width: 520px){
  section.plan .bodying .plus{
    height: 3em;
  }
}

/**********************************************************************/
/* 導入費用
/**********************************************************************/

section.plan .cost{

}
section.plan .cost .panel{
  background-color: var(--c_white);
  border-radius: 1em;
  padding: 2em 2em;
  flex: 1;
  gap: 3em;
}
section.plan .cost .panel .upper{
  gap: 2em 1em;
  padding: 2em 1em;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}
section.plan .cost .panel .upper .medal{
  min-width: 5em;
  min-height: 5em;
  background-color: var(--c_yellow);
  border-radius: 50%;
}
section.plan .cost .panel .lower{
  padding-bottom: 1em;
}
section.plan .cost .panel sup{
  vertical-align: super;
}
section.plan .cost .annotation{
  margin-top: 1em;
}
@media screen and (max-width: 768px){
  section.plan .cost .panel{
    flex-direction: column;
    gap: 0;
    padding: 1em;
  }
  section.plan .cost .panel .lower{
    padding-bottom: 0;
  }
}
@media screen and (max-width: 520px){
  section.plan .cost{
    flex-direction: column;
  }
  section.plan .cost .panel{
    max-width: 100%;
    padding: 7vw;
  }
  section.plan .cost .panel .upper{
    gap: 1em;
    padding-inline: 0;
    padding-top: 1em;
    padding-bottom: 1em;
    border-bottom: 1px dotted var(--c_border);
    margin-bottom: 1em;
    width: 100%;
    box-sizing: border-box;
  }
  section.plan .cost .panel .upper .label .title{
    font-size: 4.8vw;
  }
  section.plan .cost .panel .upper .label .value{
    font-size: 5.3vw;
  }
  section.plan .cost .panel .lower{
    font-size: clamp(12px, 3.3vw, 15px);
  }
}

/*--------------------------------------------------------------------*/
/* initial */

section.plan .cost .panel.initial{
  display: flex;
}
section.plan .cost .panel.initial .title{
  margin-right: 1em;
}
section.plan .cost .panel.initial sup{
  vertical-align: super;
}
@media screen and (max-width: 520px){
  section.plan .cost .panel.initial .label{
    flex-direction: column;
  }
}

/**********************************************************************/
/* モニタープラン
/**********************************************************************/

section.plan .monitor{
  margin-top: 4em;
}
section.plan .monitor .panel{
  background-color: #fff;
  border-radius: .5em;
  overflow: hidden;
}
section.plan .monitor .panel .label{
  background-color: #137787;
  padding: 1em;
  min-width: 15em;
  min-height: 7em;
  box-sizing: border-box;
}
section.plan .monitor .panel .text{
  padding: 1em 1em 1em 3em;
}
section.plan .monitor .panel .link{
  margin-left: auto;
  padding: 1.5em;
}
section.plan .monitor .panel .link a{
  background-color: #323C51;
  border-radius: .75em;
  display: inline-block;
  padding: .75em 1em;
  min-width: 13em;
  text-align: center;
}
@media screen and (max-width: 768px){
  section.plan .monitor .panel{
    flex-direction: column;
  }
  section.plan .monitor .panel .label{
    min-height: 5em;
  }
  section.plan .monitor .panel .text{
    text-align: center;
    justify-content: center;
    padding: 1em;
  }
  section.plan .monitor .panel .link{
    padding-top: 1em;
    margin-right: auto;
  }
}
@media screen and (max-width: 520px){
  section.plan .monitor .panel .text{
    text-align: left;
    padding: 1.5em;
    padding-bottom: 0;
  }
  section.plan .monitor .panel .text br{
    display: none;
  }
}

/**********************************************************************/
/* サマリー
/**********************************************************************/

section.summary{

}
section.summary .heading{
  margin-bottom: 5em;
}
section.summary .annotation{
  color: #9b9b9b;
}
@media screen and (max-width: 768px){
  section.summary .heading{
    margin-bottom: 2em;
  }
  section.summary .heading .overview{
    text-align: left;
  }
  section.summary .heading .overview br{
    display: none;
  }
  section.summary .bodying .table{
    overflow: auto;
    margin-bottom: 0;
  }
  section.summary .bodying img{
    min-width: 1000px;
  }
  section.summary .annotation{
    margin-top: 1em;
  }
}

/**********************************************************************/
/* よくあるご質問
/**********************************************************************/

section.faq .heading{
  margin-bottom: 3em;
}
section.faq .bodying .list .q{
  line-height: 1.5;
}
@media screen and (max-width: 768px){
  section.faq .heading{
    margin-bottom: 1em;
  }
}